diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-07-21 02:31:37 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-07-21 02:31:37 +0000 |
commit | 3c4249e772175df5718892c56861b4710a8158d5 (patch) | |
tree | 443f01bf436d9f81406d9a06315ec93fbcf12566 /net/wireshark/files/patch-configure | |
parent | Update to 0.215 (diff) |
* Update to 0.10.5 to add new features, and fix some security issues [1]
* Use the new libtool scheme
* Add USE_PERL5_BUILD [2]
* Make the GTK+ 2 frontend the default [2]
* Fix the lockup waiting for packets to arrive while capturing when built
with GTK+ 2
PR: 68819 [1]
Submitted by: UMENO Takashi <umeno@rr.iij4u.or.jp> [1]
billf [2]
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=114324
Diffstat (limited to 'net/wireshark/files/patch-configure')
-rw-r--r-- | net/wireshark/files/patch-configure | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/net/wireshark/files/patch-configure b/net/wireshark/files/patch-configure new file mode 100644 index 000000000000..c9f169180061 --- /dev/null +++ b/net/wireshark/files/patch-configure @@ -0,0 +1,24 @@ +--- configure.orig Wed Jul 7 18:26:59 2004 ++++ configure Tue Jul 20 19:11:24 2004 +@@ -15937,7 +15937,7 @@ + KRB5_LIBS="-lkrb5 -lasn1 -lcrypto -lroken -lcrypt -lresolv" + ethereal_save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -L$krb5_dir/lib" +- ac_krb5_version=`grep -i heimdal $krb5_dir/include/krb5.h | head -n 1 | sed 's/^.*heimdal.*$/HEIMDAL/i'` ++ ac_krb5_version=`grep -i heimdal $krb5_dir/include/krb5.h | head -n 1 | tr "[:lower:]" "[:upper:]" sed 's/^.*heimdal.*$/HEIMDAL/'` + else + # Extract the first word of "krb5-config", so it can be a program name with args. + set dummy krb5-config; ac_word=$2 +@@ -15980,10 +15980,10 @@ + + if test -x "$KRB5_CONFIG" + then +- KRB5_FLAGS=`"$KRB5_CONFIG" --cflags` ++ KRB5_FLAGS=`"$KRB5_CONFIG" --cflags | sed -e 's/@INCLUDE_des@//g'` + CFLAGS="$CFLAGS $KRB5_FLAGS" + CPPFLAGS="$CPPFLAGS $KRB5_FLAGS" +- KRB5_LIBS=`"$KRB5_CONFIG" --libs` ++ KRB5_LIBS=`"$KRB5_CONFIG" --libs | sed -e 's/@INCLUDE_des@//g'` + # Looks like krb5-config is lacking -lresolv on some systems + echo "$as_me:$LINENO: checking whether library list looks OK" >&5 + echo $ECHO_N "checking whether library list looks OK... $ECHO_C" >&6 |