]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Patch from Pekka Savola <[email protected]> to keep from dragging in our
authorguy <guy>
Tue, 2 Jan 2001 22:36:50 +0000 (22:36 +0000)
committerguy <guy>
Tue, 2 Jan 2001 22:36:50 +0000 (22:36 +0000)
version of "snprintf()" unless the platform on which we're running lacks
"snprintf()" or "vsnprintf()" - if it lacks one of the "asprintf" family
of routines, we don't drag it in, as we don't use those routines.

CREDITS
configure.in

diff --git a/CREDITS b/CREDITS
index db30a50ad961477bbd3878cc5e7039a29216fb85..53da847991e0ba53da809e74dbae214d287bae84 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -34,6 +34,7 @@ Additional people who have contributed patches:
        Motonori Shindo                 <[email protected]>
        Onno van der Linden             <[email protected]>
        Pasvorn Boonmark                <[email protected]>
+       Pekka Savola                    <[email protected]>
        Peter Jeremy                    <[email protected]>
        Rafal Maszkowski                <[email protected]>
        Richard Sharpe                  <[email protected]>
index 4b7e10a8b5fb987a72233c1bb9d275d8a9e9e760..978a86bb16b917d1bce854411ea02f9d50d8732b 100644 (file)
@@ -1,4 +1,4 @@
-dnl @(#) $Header: /tcpdump/master/tcpdump/configure.in,v 1.130 2000-12-09 02:58:47 fenner Exp $ (LBL)
+dnl @(#) $Header: /tcpdump/master/tcpdump/configure.in,v 1.131 2001-01-02 22:36:50 guy Exp $ (LBL)
 dnl
 dnl Copyright (c) 1994, 1995, 1996, 1997
 dnl    The Regents of the University of California.  All rights reserved.
@@ -6,7 +6,7 @@ dnl
 dnl Process this file with autoconf to produce a configure script.
 dnl
 
-AC_REVISION($Revision: 1.130 $)
+AC_REVISION($Revision: 1.131 $)
 AC_PREREQ(2.13)
 AC_INIT(tcpdump.c)
 
@@ -461,7 +461,7 @@ if test $usegetipnodeby = yes; then
 fi
 
 needsnprintf=no
-AC_CHECK_FUNCS(vsnprintf snprintf asprintf asnprintf vasprintf vasnprintf,,
+AC_CHECK_FUNCS(vsnprintf snprintf,,
        [needsnprintf=yes])
 if test $needsnprintf = yes; then
        LIBOBJS="$LIBOBJS snprintf.o"