dect
/
libpcap
Archived
13
0
Fork 0

AC_LIBOBJ takes the name of an object file without the extension (as the

extension is platform-dependent).
This commit is contained in:
guy 2004-02-09 06:28:19 +00:00
parent 333b8942de
commit 7d3d1094ec
2 changed files with 5 additions and 5 deletions

4
configure vendored
View File

@ -1,5 +1,5 @@
#! /bin/sh #! /bin/sh
# From configure.in Revision: 1.105 . # From configure.in Revision: 1.106 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.57. # Generated by GNU Autoconf 2.57.
# #
@ -3718,7 +3718,7 @@ fi
done done
if test $needsnprintf = yes; then if test $needsnprintf = yes; then
LIBOBJS="$LIBOBJS snprintf.o.$ac_objext" LIBOBJS="$LIBOBJS snprintf.$ac_objext"
fi fi
echo "$as_me:$LINENO: checking if --disable-protochain option is specified" >&5 echo "$as_me:$LINENO: checking if --disable-protochain option is specified" >&5

View File

@ -1,4 +1,4 @@
dnl @(#) $Header: /tcpdump/master/libpcap/configure.in,v 1.105 2004-01-14 03:00:36 guy Exp $ (LBL) dnl @(#) $Header: /tcpdump/master/libpcap/configure.in,v 1.106 2004-02-09 06:28:19 guy Exp $ (LBL)
dnl dnl
dnl Copyright (c) 1994, 1995, 1996, 1997 dnl Copyright (c) 1994, 1995, 1996, 1997
dnl The Regents of the University of California. All rights reserved. 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 Process this file with autoconf to produce a configure script.
dnl dnl
AC_REVISION($Revision: 1.105 $) AC_REVISION($Revision: 1.106 $)
AC_PREREQ(2.50) AC_PREREQ(2.50)
AC_INIT(pcap.c) AC_INIT(pcap.c)
@ -36,7 +36,7 @@ needsnprintf=no
AC_CHECK_FUNCS(vsnprintf snprintf,, AC_CHECK_FUNCS(vsnprintf snprintf,,
[needsnprintf=yes]) [needsnprintf=yes])
if test $needsnprintf = yes; then if test $needsnprintf = yes; then
AC_LIBOBJ(snprintf.o) AC_LIBOBJ(snprintf)
fi fi
dnl to pacify those who hate protochain insn dnl to pacify those who hate protochain insn