diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-06-11 22:26:49 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-06-11 22:26:49 +0000 |
commit | 38c2447dd0bda3f974eb9954c374780b354741ae (patch) | |
tree | ee9bebfc120238c4f0523943750df71af3c9a84e /net/xmule/files/patch-configure | |
parent | Improve detection on whether wxgtk was built against gtk12 or gtk20 (diff) |
o After repo copy from ports/net/lmule (this is a fork of lmule):
update to xmule version 1.4.0
o Special thanks to [1] who helped patching the application for
FreeBSD
Reviewed by: Lauri Watts <lauri@fruitsalad.org>,
Frerich Raabe <frerich.raabe@gmx.de> [1]
Repo copy approved by: portmgr (self)
Repo copied by: cvs (joe)
Notes
Notes:
svn path=/head/; revision=82815
Diffstat (limited to 'net/xmule/files/patch-configure')
-rw-r--r-- | net/xmule/files/patch-configure | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/net/xmule/files/patch-configure b/net/xmule/files/patch-configure index a0cca454fc69..b58f27461f1e 100644 --- a/net/xmule/files/patch-configure +++ b/net/xmule/files/patch-configure @@ -1,11 +1,29 @@ ---- configure.orig Sat Mar 29 14:13:57 2003 -+++ configure Sat Mar 29 14:14:04 2003 -@@ -1710,8 +1710,6 @@ +--- configure.orig Mon May 26 22:56:09 2003 ++++ configure Tue May 27 17:55:59 2003 +@@ -1712,8 +1712,6 @@ # Checks for programs. # hopefully this prevents -O2 --CXXFLAGS="-g" --CFLAGS="-g" +-CXXFLAGS="-g -rdynamic" +-CFLAGS="-g -rdynamic" ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +@@ -7149,7 +7147,7 @@ + + echo "$as_me:$LINENO: checking if wxWindows was linked with GTK2" >&5 + echo $ECHO_N "checking if wxWindows was linked with GTK2... $ECHO_C" >&6 +- if $WX_CONFIG_NAME --cppflags | grep -q 'gtk2' ; then ++ if $WX_CONFIG_NAME --static --libs | grep -q 'glib-2' ; then + GTK_USEDVERSION=2 + echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6 +@@ -7161,7 +7159,7 @@ + + + +-if test x$GTK_USEDVERSION == x2 ; then ++if test x$GTK_USEDVERSION = x2 ; then + # Check whether --enable-gtktest or --disable-gtktest was given. + if test "${enable_gtktest+set}" = set; then + enableval="$enable_gtktest" |