diff options
author | ben <ben> | 2006-08-28 17:11:04 +0000 |
---|---|---|
committer | ben <ben> | 2006-08-28 17:11:04 +0000 |
commit | b4b59e108879dd8563d566b389c31469a5ab1e63 (patch) | |
tree | dcc01812dab65a5f4c41f47396f3612281087eb8 | |
parent | 4b76eeef46c2236c179d4326f740383fcc754325 (diff) | |
download | pkgsrc-b4b59e108879dd8563d566b389c31469a5ab1e63.tar.gz |
_INSTALL_UNSTRIPPED=yes on OSX. Otherwise plugins fail to load because
OSX linker can't find symbols from parent program.
-rw-r--r-- | chat/gaim/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chat/gaim/Makefile b/chat/gaim/Makefile index 0a6eca7a973..f34e4297a1e 100644 --- a/chat/gaim/Makefile +++ b/chat/gaim/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.108 2006/07/07 15:49:31 jlam Exp $ +# $NetBSD: Makefile,v 1.109 2006/08/28 17:11:04 ben Exp $ DISTNAME= gaim-1.5.0 PKGREVISION= 6 @@ -28,6 +28,10 @@ CONFIGURE_ENV+= DLLIB=${BUILDLINK_LDADD.dl} .include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "Darwin" +_INSTALL_UNSTRIPPED= yes +.endif + .if !exists(${X11BASE}/include/X11/extensions/scrnsaver.h) CONFIGURE_ARGS+= --disable-screensaver .endif |