diff options
author | Guy Harris <guy@alum.mit.edu> | 2013-10-17 16:50:43 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2013-10-17 16:50:43 -0700 |
commit | e462b975e29e76270df0e8a0bc7d6bebffe043f2 (patch) | |
tree | e4be46d757af529cab994ed3546e1ec3955a8d22 /config.h.in | |
parent | 73a0ef4fdaf7ee9a0cd8bad3bb5a85fa5440d60a (diff) | |
download | tcpdump-e462b975e29e76270df0e8a0bc7d6bebffe043f2.tar.gz |
Clean up handling of -g and -O flags.
AC_PROG_CC adds -g and -O2 to CFLAGS if you're using GCC; don't bother
adding either of them, or -O, ourselves if we're using GCC.
Add -O for all non-GCC compilers.
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/config.h.in b/config.h.in index 6eba6072..c5f334c8 100644 --- a/config.h.in +++ b/config.h.in @@ -106,6 +106,9 @@ /* define if libpcap has pcap_list_datalinks() */ #undef HAVE_PCAP_LIST_DATALINKS +/* Define to 1 if you have the `pcap_setdirection' function. */ +#undef HAVE_PCAP_SETDIRECTION + /* define if libpcap has pcap_set_datalink() */ #undef HAVE_PCAP_SET_DATALINK @@ -238,6 +241,9 @@ /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME +/* Define to the home page for this package. */ +#undef PACKAGE_URL + /* Define to the version of this package. */ #undef PACKAGE_VERSION @@ -284,17 +290,17 @@ #undef _SUN /* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>, - <pthread.h>, or <semaphore.h> is not used. If the typedef was allowed, the + <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the #define below would cause a syntax error. */ #undef _UINT32_T /* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>, - <pthread.h>, or <semaphore.h> is not used. If the typedef was allowed, the + <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the #define below would cause a syntax error. */ #undef _UINT64_T /* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>, - <pthread.h>, or <semaphore.h> is not used. If the typedef was allowed, the + <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the #define below would cause a syntax error. */ #undef _UINT8_T |