mirror of
https://git.freebsd.org/ports.git
synced 2025-07-09 13:29:24 -04:00
http://www.wireshark.org/docs/relnotes/wireshark-1.4.0.html for a list of changes in this release. Note: Wireless mesh support has not been updated for 1.4.0.
38 lines
1.9 KiB
Text
38 lines
1.9 KiB
Text
--- configure.orig 2010-08-29 18:20:30.000000000 -0400
|
|
+++ configure 2010-09-04 17:19:07.000000000 -0400
|
|
@@ -18072,7 +18072,7 @@ $as_echo_n "checking whether we should t
|
|
# Check whether --enable-warnings-as-errors was given.
|
|
if test "${enable_warnings_as_errors+set}" = set; then :
|
|
enableval=$enable_warnings_as_errors;
|
|
- if test "x$GCC" = "xyes" -a "x$enableval" == "xyes" -a "x$wireshark_extra_gcc_flags" != "xyes"; then
|
|
+ if test "x$GCC" = "xyes" -a "x$enableval" = "xyes" -a "x$wireshark_extra_gcc_flags" != "xyes"; then
|
|
with_warnings_as_errors="yes"
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
|
$as_echo "yes" >&6; }
|
|
@@ -19660,7 +19660,7 @@ fi
|
|
|
|
fi
|
|
|
|
- if test x$have_ige_mac == x
|
|
+ if test x$have_ige_mac = x
|
|
then
|
|
#
|
|
# Not found - check for the old integration functions in
|
|
@@ -22487,7 +22487,7 @@ $as_echo "yes" >&6; }
|
|
#
|
|
CFLAGS="$CFLAGS -I$krb5_dir/include"
|
|
CPPFLAGS="$CPPFLAGS -I$krb5_dir/include"
|
|
- ac_heimdal_version=`grep heimdal $krb5_dir/include/krb5.h | head -n 1 | sed 's/^.*heimdal.*$/HEIMDAL/'`
|
|
+ ac_heimdal_version=`grep heimdal $krb5_dir/include/krb5.h | head -n 1 | tr "[:lower:]" "[:upper:]" sed 's/^.*heimdal.*$/HEIMDAL/'`
|
|
# MIT Kerberos moved krb5.h to krb5/krb5.h starting with release 1.5
|
|
ac_mit_version_olddir=`grep 'Massachusetts Institute of Technology' $krb5_dir/include/krb5.h | head -n 1 | sed 's/^.*Massachusetts Institute of Technology.*$/MIT/'`
|
|
ac_mit_version_newdir=`grep 'Massachusetts Institute of Technology' $krb5_dir/include/krb5/krb5.h | head -n 1 | sed 's/^.*Massachusetts Institute of Technology.*$/MIT/'`
|
|
@@ -22546,7 +22546,7 @@ fi
|
|
|
|
if test -x "$KRB5_CONFIG"
|
|
then
|
|
- KRB5_FLAGS=`"$KRB5_CONFIG" --cflags`
|
|
+ KRB5_FLAGS=`"$KRB5_CONFIG" --cflags | sed -e 's/@INCLUDE_des@//g'`
|
|
KRB5_LIBS=`"$KRB5_CONFIG" --libs`
|
|
CFLAGS="$CFLAGS $KRB5_FLAGS"
|
|
CPPFLAGS="$CPPFLAGS $KRB5_FLAGS"
|