diff options
author | Guy Harris <guy@alum.mit.edu> | 2018-01-08 18:49:50 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2018-01-08 18:50:06 -0800 |
commit | 3bc62cd35f4c52f590605c73d92c92b6b4a4bdc5 (patch) | |
tree | 08999d08162f893e84ce4529cda9d7d66167c2cb /configure.ac | |
parent | 447060b9fbb3aacdeba6fca7f86061118ead7ffa (diff) | |
download | tcpdump-3bc62cd35f4c52f590605c73d92c92b6b4a4bdc5.tar.gz |
Use pcapng as the name of the file format.
At one point, I remember a discussion resulting in the official name of
the next-generation replacement for pcap format being changed to
"pcapng", with no hyphen.
Make tcpdump reflect that.
While we're at it, uppdate to use "macOS" as the name of Apple's
UNIX-for-Macs, as appropriate (don't use it for versions that were still
called Mac OS X or OS X).
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index b39cc55e..485ac1f9 100644 --- a/configure.ac +++ b/configure.ac @@ -66,7 +66,7 @@ case "$host_os" in darwin*) AC_ARG_ENABLE(universal, - AC_HELP_STRING([--disable-universal],[don't build universal on OS X])) + AC_HELP_STRING([--disable-universal],[don't build universal on macOS])) if test "$enable_universal" != "no"; then case "$host_os" in @@ -644,9 +644,10 @@ fi # AC_CHECK_FUNCS(pcap_findalldevs) if test $ac_cv_func_pcap_findalldevs = "yes" ; then -dnl Check for Mac OS X, which may ship pcap.h from 0.6 but libpcap may -dnl be 0.8; this means that lib has pcap_findalldevs but header doesn't -dnl have pcap_if_t. +dnl Check for libpcap having pcap_findalldevs() but the pcap.h header +dnl not having pcap_if_t; some versions of Mac OS X shipped with pcap.h +dnl from 0.6 and libpcap 0.8, so that libpcap had pcap_findalldevs but +dnl pcap.h didn't have pcap_if_t. savedcppflags="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $V_INCLS" AC_CHECK_TYPES(pcap_if_t, , , [#include <pcap.h>]) @@ -891,7 +892,7 @@ if test "$want_libcrypto" != "no"; then # El Capitan, probably because they don't want you writing # nasty portable code that could run on other UN*Xes, they # want you writing code that uses their Shiny New Crypto - # Library and that only runs on OS X. + # Library and that only runs on macOS. # AC_CHECK_HEADER(openssl/crypto.h, [ |