diff options
author | marcus <marcus@FreeBSD.org> | 2005-05-12 13:24:15 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2005-05-12 13:24:15 +0800 |
commit | e41c42c1b7c1bd656dc60492f7d9a3859e659f05 (patch) | |
tree | edb512bd6153839dc5fac5664237154bc0e5e5d4 /net-im | |
parent | 9df3b56022e7137a57c9e9f3f74a1cc642cbb320 (diff) | |
download | freebsd-ports-gnome-e41c42c1b7c1bd656dc60492f7d9a3859e659f05.tar.gz freebsd-ports-gnome-e41c42c1b7c1bd656dc60492f7d9a3859e659f05.tar.zst freebsd-ports-gnome-e41c42c1b7c1bd656dc60492f7d9a3859e659f05.zip |
Restore a patch to remove -ldl from the NSPR libs. Even though patch
seemed to think this patch wasn't needed, NSS support will not be enabled
without it.
Reported by: Matthew Luckie <mjl@luckie.org.nz>
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gaim/Makefile | 1 | ||||
-rw-r--r-- | net-im/gaim/files/patch-configure | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/net-im/gaim/Makefile b/net-im/gaim/Makefile index 7c3ac27f39a1..f8ef137eb6d6 100644 --- a/net-im/gaim/Makefile +++ b/net-im/gaim/Makefile @@ -7,6 +7,7 @@ PORTNAME= gaim PORTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES?= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/net-im/gaim/files/patch-configure b/net-im/gaim/files/patch-configure new file mode 100644 index 000000000000..8ce3e483b657 --- /dev/null +++ b/net-im/gaim/files/patch-configure @@ -0,0 +1,15 @@ +--- configure.orig Thu May 12 01:20:01 2005 ++++ configure Thu May 12 01:20:31 2005 +@@ -33445,10 +33445,10 @@ + + enable_nss="no" + else +- nsprlibs="-ldl $with_nspr_libs/libplc4.a $with_nspr_libs/libplds4.a $with_nspr_libs/libnspr4.a $PTHREAD_LIB" ++ nsprlibs="$with_nspr_libs/libplc4.a $with_nspr_libs/libplds4.a $with_nspr_libs/libnspr4.a $PTHREAD_LIB" + fi + else +- nsprlibs="-ldl -lplc4 -lplds4 -lnspr4 $PTHREAD_LIB" ++ nsprlibs="-lplc4 -lplds4 -lnspr4 $PTHREAD_LIB" + fi + + echo "$as_me:$LINENO: checking for Mozilla nspr libraries" >&5 |