diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-03-07 01:04:13 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-03-07 01:04:13 +0800 |
commit | c577e362acc9f101a929a579c52ee3988a1d8928 (patch) | |
tree | 1d2012f867f41519831cd5ceffe814b9dd21ebb1 | |
parent | 6537af5c85ea05ea65150b2d6a4cdaf56132cb66 (diff) | |
download | marcuscom-ports-c577e362acc9f101a929a579c52ee3988a1d8928.tar marcuscom-ports-c577e362acc9f101a929a579c52ee3988a1d8928.tar.gz marcuscom-ports-c577e362acc9f101a929a579c52ee3988a1d8928.tar.bz2 marcuscom-ports-c577e362acc9f101a929a579c52ee3988a1d8928.tar.lz marcuscom-ports-c577e362acc9f101a929a579c52ee3988a1d8928.tar.xz marcuscom-ports-c577e362acc9f101a929a579c52ee3988a1d8928.tar.zst marcuscom-ports-c577e362acc9f101a929a579c52ee3988a1d8928.zip |
Remove -Wl,--no-undefined from LDFLAGS to fix the build with --as-needed on
6.X.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13762 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | databases/evolution-data-server/Makefile | 3 | ||||
-rw-r--r-- | mail/evolution/Makefile | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/databases/evolution-data-server/Makefile b/databases/evolution-data-server/Makefile index ee50a47a7..2c6639a59 100644 --- a/databases/evolution-data-server/Makefile +++ b/databases/evolution-data-server/Makefile @@ -3,7 +3,7 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/databases/evolution-data-server/Makefile,v 1.188 2010/02/08 13:34:04 kwm Exp $ +# $MCom: ports/databases/evolution-data-server/Makefile,v 1.189 2010/02/23 06:57:34 avl Exp $ # PORTNAME= evolution-data-server @@ -83,6 +83,7 @@ pre-everything:: post-patch: @${REINPLACE_CMD} -e 's|-ldb|-l${BDB_LIB_NAME}|g ; \ s|heimlibs=".*"|heimlibs="${KRB5_LIB}"|g ; \ + s|-Wl,--no-undefined||g \ s|-Wmissing-include-dirs||g' \ ${WRKSRC}/configure diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile index 40ca16f16..5d4d7341f 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -3,7 +3,7 @@ # Whom: Ade Lovett <ade@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/mail/evolution/Makefile,v 1.214 2010/02/08 15:48:42 kwm Exp $ +# $MCom: ports/mail/evolution/Makefile,v 1.215 2010/02/23 08:13:03 avl Exp $ # PORTNAME= evolution @@ -118,6 +118,7 @@ PLIST_SUB+= PST="@comment " post-patch: @${REINPLACE_CMD} -e '/^plugins_standard_always/s/audio-inline//' \ -e 's|-lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lgssapi|${KRB5_LIB}|g' \ + -e 's|-Wl,--no-undefined||g' \ -e 's|-Wmissing-include-dirs||g' \ ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \ |