diff options
author | danw <danw@pkgsrc.org> | 2003-09-25 03:00:57 +0000 |
---|---|---|
committer | danw <danw@pkgsrc.org> | 2003-09-25 03:00:57 +0000 |
commit | e06a3e973e16e4d15c912c32a16984dc09f3a3b5 (patch) | |
tree | 33feb8900e3799f3f3819d972462bc619be2dbe1 | |
parent | 2fa6129ceba066690a3acb8c62c70fb8203d41e2 (diff) | |
download | pkgsrc-e06a3e973e16e4d15c912c32a16984dc09f3a3b5.tar.gz |
add -DSTATIC=static to the Darwin-specific defines so that libintl
doesn't completely gratuitously export a symbol that conflicts with
libiconv
-rw-r--r-- | devel/gettext-lib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/gettext-lib/Makefile b/devel/gettext-lib/Makefile index 71f5335e88d..cd01a7ab69f 100644 --- a/devel/gettext-lib/Makefile +++ b/devel/gettext-lib/Makefile @@ -1,11 +1,11 @@ -# $NetBSD: Makefile,v 1.25 2003/07/21 16:43:22 martti Exp $ +# $NetBSD: Makefile,v 1.26 2003/09/25 03:00:57 danw Exp $ # FreeBSD Id: Makefile,v 1.1.1.1 1998/08/09 15:13:33 kuriyama Exp # DISTNAME= gettext-0.11.5 PKGNAME= gettext-lib-0.11.5 SVR4_PKGNAME= gttli -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=gettext/} @@ -34,7 +34,7 @@ BUILD_DIRS= ${WRKSRC}/intl .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "Darwin" -CPPFLAGS+= -D_INTL_REDIRECT_MACROS=1 +CPPFLAGS+= -D_INTL_REDIRECT_MACROS=1 -DSTATIC=static .endif .include "../../converters/libiconv/buildlink2.mk" |