diff options
author | wiz <wiz> | 2004-11-28 23:25:17 +0000 |
---|---|---|
committer | wiz <wiz> | 2004-11-28 23:25:17 +0000 |
commit | e9e1c36657e721c6f84a22e952d584c03fe6d346 (patch) | |
tree | 0d89779cc019183d975ab3ebd6ecc1fbd751f616 /finance/gnucash/Makefile | |
parent | abc5cb2cf1b8d64010ef26b76c6bbd3fa075ba97 (diff) | |
download | pkgsrc-e9e1c36657e721c6f84a22e952d584c03fe6d346.tar.gz |
Remove -Werror from CFLAGS, since on -current this makes it fail
(lots of "char" uses where NetBSD expects "unsigned char" (tolower etc)).
Diffstat (limited to 'finance/gnucash/Makefile')
-rw-r--r-- | finance/gnucash/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/finance/gnucash/Makefile b/finance/gnucash/Makefile index 6a3069c35bd..d96e69ca4ec 100644 --- a/finance/gnucash/Makefile +++ b/finance/gnucash/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.72 2004/11/28 19:19:52 jlam Exp $ +# $NetBSD: Makefile,v 1.73 2004/11/28 23:25:17 wiz Exp $ DISTNAME= gnucash-1.8.9 PKGREVISION= 3 @@ -28,6 +28,9 @@ CONFIGURE_ARGS+= --with-perl-includes=${PERL5_ARCHLIB} CONFIGURE_ARGS+= --with-libiconv-prefix=${BUILDLINK_PREFIX.iconv} CONFIGURE_ENV+= PKG_CONFIG_PATH="${PREFIX}/lib/pkgconfig:${X11BASE}/lib/pkgconfig" +# code is using char/unsigned char inconsistently +BUILDLINK_TRANSFORM+= rm:-Werror + CFLAGS+= -Wl,-R${PREFIX}/${GUILE14_SUBDIR}/lib #CFLAGS+= -L${PREFIX}/${GUILE14_SUBDIR}/lib -Wl,-R${PREFIX}/${GUILE14_SUBDIR}/lib LDFLAGS+= -L${PREFIX}/${GUILE14_SUBDIR}/lib -Wl,-R${PREFIX}/${GUILE14_SUBDIR}/lib |