CVS log entries from 26.03.2005 (Sat) 10:07:02 - 27.03.2005 (Sun) 10:07:02 GMT
=====================================================
Summary by authors
=====================================================
Author: guy
        File: tcpdump/tcpdump-stdinc.h; Revisions: 1.12, 1.11
        File: tcpdump/print-bgp.c; Revisions: 1.91
        File: tcpdump/configure; Revisions: 1.129
        File: tcpdump/aclocal.m4; Revisions: 1.106
        File: libpcap/configure; Revisions: 1.58, 1.57, 1.56, 1.55, 1.54, 1.53, 
1.52, 1.51, 1.50
        File: libpcap/config.h.in; Revisions: 1.17, 1.16
        File: libpcap/aclocal.m4; Revisions: 1.85, 1.84
        File: libpcap/configure.in; Revisions: 1.118, 1.117, 1.116, 1.115, 
1.114, 1.113, 1.112, 1.111
        File: libpcap/nametoaddr.c; Revisions: 1.76, 1.75

=====================================================
Combined list of identical log entries
=====================================================
Description:
Discard the cached result of a failure of the first test of
<netinet/if_ether.h>, so we try the second test with the additional
includes and definitions).

Log a message before doing the second test, to show why we're testing
twice.
Modified files:
        File: libpcap/configure; Revision: 1.53;
        Date: 2005/03/27 00:57:38; Author: guy; Lines: (+13 -6)
        File: libpcap/configure.in; Revision: 1.114;
        Date: 2005/03/27 00:57:08; Author: guy; Lines: (+14 -8)
-------------------------------
Description:
Use AC_LBL_LIBRARY_NET before checking for ether_hostton(), as, at least
on Solaris, it's a "gethostbyname() -ish function", and we'll find it
only when we're linking with whatever libraries are required for finding
those functions.

Get the AC_LBL_LIBRARY_NET macro from tcpdump; that macro works with
autoconf 2.5x, but the one here didn't.
Modified files:
        File: libpcap/aclocal.m4; Revision: 1.84;
        Date: 2005/03/26 23:57:42; Author: guy; Lines: (+14 -17)
        File: libpcap/configure; Revision: 1.51;
        Date: 2005/03/26 23:58:13; Author: guy; Lines: (+453 -1)
        File: libpcap/configure.in; Revision: 1.112;
        Date: 2005/03/26 23:57:42; Author: guy; Lines: (+8 -2)
-------------------------------
Description:
On some platforms, some extra stuff is needed in order to include
<netinet/if_ether.h>, so, if we don't find <netinet/if_ether.h>, try
adding that extra stuff when looking for it.
Modified files:
        File: libpcap/configure; Revision: 1.52;
        Date: 2005/03/27 00:30:46; Author: guy; Lines: (+67 -1)
        File: libpcap/configure.in; Revision: 1.113;
        Date: 2005/03/27 00:30:21; Author: guy; Lines: (+20 -4)
-------------------------------
Description:
When testing whether "inline" works, use the V_CCOPT flags, because some
of those might disable inlining; otherwise, the test for inlining will
succeed, but inlining won't work with the options we're using when
compiling.
Modified files:
        File: tcpdump/aclocal.m4; Revision: 1.106;
        Date: 2005/03/27 03:31:01; Author: guy; Lines: (+7 -1)
        File: tcpdump/configure; Revision: 1.129;
        Date: 2005/03/27 03:31:01; Author: guy; Lines: (+3 -0)
        File: libpcap/aclocal.m4; Revision: 1.85;
        Date: 2005/03/27 03:27:09; Author: guy; Lines: (+7 -1)
        File: libpcap/configure; Revision: 1.57;
        Date: 2005/03/27 03:27:09; Author: guy; Lines: (+3 -0)
-------------------------------
Description:
Unset ac_cv_have_decl_ether_hostton before testing whether
<netinet/ether.h> declares ether_hostton(), so the failure to find it
declared in <netinet/in_ether.h> doesn't cause us to assume we won't
find it anywhere.

Fix a typo in a comment.
Modified files:
        File: libpcap/configure; Revision: 1.58;
        Date: 2005/03/27 03:38:03; Author: guy; Lines: (+6 -2)
        File: libpcap/configure.in; Revision: 1.118;
        Date: 2005/03/27 03:36:36; Author: guy; Lines: (+7 -3)
-------------------------------
Description:
If we don't get a declaration of ether_hostton() by including
<netinet/if_ether.h>, try <netinet/ether.h>.
Modified files:
        File: libpcap/config.h.in; Revision: 1.17;
        Date: 2005/03/27 02:45:03; Author: guy; Lines: (+9 -0)
        File: libpcap/configure; Revision: 1.56;
        Date: 2005/03/27 02:45:32; Author: guy; Lines: (+245 -1)
        File: libpcap/configure.in; Revision: 1.117;
        Date: 2005/03/27 02:45:03; Author: guy; Lines: (+40 -3)
        File: libpcap/nametoaddr.c; Revision: 1.76;
        Date: 2005/03/27 02:45:03; Author: guy; Lines: (+8 -1)
-------------------------------
Description:
Make the first AC_CHECK_HEADERS test look the way it used to look, and
make the second one similar.

Get rid of the # in the "Rechecking with some additional #includes"
message, as it's a shell comment character and screws up the script.

Fix a typo in a comment.
Modified files:
        File: libpcap/configure; Revision: 1.54;
        Date: 2005/03/27 01:07:35; Author: guy; Lines: (+4 -9)
        File: libpcap/configure.in; Revision: 1.115;
        Date: 2005/03/27 01:07:01; Author: guy; Lines: (+8 -14)
-------------------------------
Description:
If we have ether_hostton(), check whether we have <netinet/if_ether.h>
and if including it declares ether_hostton(), and define
HAVE_DECL_ETHER_HOSTTON appropriately, and use that to determine whether
to define it ourselves, rather than having a set of OSes that don't need
it, as that set can change over time.

Make the default declaration of "ether_hostton()" declare its first
argument as "const char *", as that's what it's *supposed* to be
(although it's not declared as such in some OSes, so we still have to
cast a "const char *" when passed as the first argument).
Modified files:
        File: libpcap/config.h.in; Revision: 1.16;
        Date: 2005/03/26 23:07:50; Author: guy; Lines: (+4 -0)
        File: libpcap/configure; Revision: 1.50;
        Date: 2005/03/26 23:08:30; Author: guy; Lines: (+165 -3)
        File: libpcap/configure.in; Revision: 1.111;
        Date: 2005/03/26 23:07:51; Author: guy; Lines: (+21 -3)
        File: libpcap/nametoaddr.c; Revision: 1.75;
        Date: 2005/03/26 23:07:51; Author: guy; Lines: (+3 -13)
-------------------------------
Description:
One more header Solaris needs to get at ether_hostton().
Modified files:
        File: libpcap/configure; Revision: 1.55;
        Date: 2005/03/27 01:15:56; Author: guy; Lines: (+2 -1)
        File: libpcap/configure.in; Revision: 1.116;
        Date: 2005/03/27 01:15:20; Author: guy; Lines: (+3 -2)
=====================================================
Log entries
=====================================================
Description:
Protect some IPv6 code with #ifdef INET6/#endif.
Modified files:
        File: tcpdump/print-bgp.c; Revision: 1.91;
        Date: 2005/03/27 01:31:25; Author: guy; Lines:  (+3 -1)
-------------------------------
Description:
Some UN*Xes need INET_ADDRSTRLEN defined as well, for "inet_ntop_v4()".
Modified files:
        File: tcpdump/tcpdump-stdinc.h; Revision: 1.12;
        Date: 2005/03/27 01:35:45; Author: guy; Lines:  (+5 -5)
-------------------------------
Description:
Add declarations of __ntohl() and __ntohs() to squelch compiler warnings
on Solaris 7 x86 with GCC 2.8.1.
Modified files:
        File: tcpdump/tcpdump-stdinc.h; Revision: 1.11;
        Date: 2005/03/27 01:26:54; Author: guy; Lines:  (+4 -1)
=====================================================
Summary of modified files
=====================================================
File: libpcap/aclocal.m4
Revisions: 1.85, 1.84
Authors: guy (+7 -1), guy (+14 -17)
-------------------------------
File: libpcap/config.h.in
Revisions: 1.17, 1.16
Authors: guy (+9 -0), guy (+4 -0)
-------------------------------
File: libpcap/configure
Revisions: 1.58, 1.57, 1.56, 1.55, 1.54, 1.53, 1.52, 1.51, 1.50
Authors: guy (+6 -2), guy (+3 -0), guy (+245 -1), guy (+2 -1), guy (+4 -9), guy 
(+13 -6), guy (+67 -1), guy (+453 -1), guy (+165 -3)
-------------------------------
File: libpcap/configure.in
Revisions: 1.118, 1.117, 1.116, 1.115, 1.114, 1.113, 1.112, 1.111
Authors: guy (+7 -3), guy (+40 -3), guy (+3 -2), guy (+8 -14), guy (+14 -8), 
guy (+20 -4), guy (+8 -2), guy (+21 -3)
-------------------------------
File: libpcap/nametoaddr.c
Revisions: 1.76, 1.75
Authors: guy (+8 -1), guy (+3 -13)
-------------------------------
File: tcpdump/aclocal.m4
Revisions: 1.106
Authors: guy (+7 -1)
-------------------------------
File: tcpdump/configure
Revisions: 1.129
Authors: guy (+3 -0)
-------------------------------
File: tcpdump/print-bgp.c
Revisions: 1.91
Authors: guy (+3 -1)
-------------------------------
File: tcpdump/tcpdump-stdinc.h
Revisions: 1.12, 1.11
Authors: guy (+5 -5), guy (+4 -1)
-- 
Automatic cron job from /tcpdump/bin/makelog
-
This is the tcpdump-workers list.
Visit https://lists.sandelman.ca/ to unsubscribe.

Reply via email to