]> The Tcpdump Group git mirrors - tcpdump/commitdiff
The string-comparison operator in the "test" command is "=", not "==".
authorguy <guy>
Tue, 5 Feb 2008 18:58:19 +0000 (18:58 +0000)
committerguy <guy>
Tue, 5 Feb 2008 18:58:19 +0000 (18:58 +0000)
configure
configure.in

index 8d23feacb4238783fec2f288958df95d30075ab2..ee78b46af2e4818363217c3763583dd7101a64b6 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
 #! /bin/sh
-# From configure.in Revision: 1.197 .
+# From configure.in Revision: 1.198 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.59.
 #
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.59.
 #
@@ -3490,7 +3490,7 @@ fi
 
 done
 
 
 done
 
-if test "$ac_cv_header_net_pfvar_h" == yes; then
+if test "$ac_cv_header_net_pfvar_h" = yes; then
        LOCALSRC="print-pflog.c $LOCALSRC"
 fi
 
        LOCALSRC="print-pflog.c $LOCALSRC"
 fi
 
index 50ed509f3d6f7b367f1d6353bbe90459971bc419..88882626ac23d9f21dd709761fc9fba29b58863d 100644 (file)
@@ -1,4 +1,4 @@
-dnl @(#) $Header: /tcpdump/master/tcpdump/configure.in,v 1.197 2008-02-04 20:33:21 guy Exp $ (LBL)
+dnl @(#) $Header: /tcpdump/master/tcpdump/configure.in,v 1.198 2008-02-05 18:58:19 guy Exp $ (LBL)
 dnl
 dnl Copyright (c) 1994, 1995, 1996, 1997
 dnl    The Regents of the University of California.  All rights reserved.
 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
 
 dnl Process this file with autoconf to produce a configure script.
 dnl
 
-AC_REVISION($Revision: 1.197 $)
+AC_REVISION($Revision: 1.198 $)
 AC_PREREQ(2.50)
 AC_INIT(tcpdump.c)
 
 AC_PREREQ(2.50)
 AC_INIT(tcpdump.c)
 
@@ -19,7 +19,7 @@ AC_CHECK_HEADERS(fcntl.h rpc/rpcent.h netdnet/dnetdb.h)
 AC_CHECK_HEADERS(net/pfvar.h, , , [#include <sys/types.h>
 #include <sys/socket.h>
 #include <net/if.h>])
 AC_CHECK_HEADERS(net/pfvar.h, , , [#include <sys/types.h>
 #include <sys/socket.h>
 #include <net/if.h>])
-if test "$ac_cv_header_net_pfvar_h" == yes; then
+if test "$ac_cv_header_net_pfvar_h" = yes; then
        LOCALSRC="print-pflog.c $LOCALSRC"
 fi
 AC_CHECK_HEADERS(netinet/if_ether.h, , , [#include <sys/types.h>
        LOCALSRC="print-pflog.c $LOCALSRC"
 fi
 AC_CHECK_HEADERS(netinet/if_ether.h, , , [#include <sys/types.h>