diff options
author | Guy Harris <guy@alum.mit.edu> | 2020-02-04 19:53:11 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2020-02-04 19:53:11 -0800 |
commit | 52561ff05323cc5aae2bf836ecccf62c878b7690 (patch) | |
tree | 4644f3f853b645b8ba5f048e99e442018daf4913 /Makefile.in | |
parent | aa2650ec0e9f4146a4f3c4dc9c3c58d231bbfef9 (diff) | |
download | tcpdump-52561ff05323cc5aae2bf836ecccf62c878b7690.tar.gz |
Push the floating-point test into a separate file.
Hopefully, that will make sure we don't optimize away anything that
will, for example, cause us not to do things differently on 32-bit x86
using the x87 instructions.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 694fb18b..2b3b7e3d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -70,7 +70,7 @@ DEPENDENCY_CFLAG = @DEPENDENCY_CFLAG@ @rm -f $@ $(CC) $(FULL_CFLAGS) -c $(srcdir)/$*.c -CSRC = tcpdump.c +CSRC = fptype.c tcpdump.c LIBNETDISSECT_SRC=\ addrtoname.c \ |