diff options
author | tron <tron@pkgsrc.org> | 2012-02-10 08:50:14 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2012-02-10 08:50:14 +0000 |
commit | e361ac5b7f38456fe80b37ecc56b05fd779adb20 (patch) | |
tree | 50ed43abe96d02ccd674a0c0c16d45437cb56482 /textproc | |
parent | 8c8ac02d4bd9a33d1e1b74e3fbdaa381b9f691d1 (diff) | |
download | pkgsrc-e361ac5b7f38456fe80b37ecc56b05fd779adb20.tar.gz |
Fix build under NetBSD 5.1 and Mac OS X.
Why the "configure" script insists on being invoked with the argument
"--disable-Bsymbolic" after it has correctly detected that the linker
doesn't support this option is a mystery to me. You would think that the
whole purpose of the test is to disable this option if it doesn't work.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/libcroco/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproc/libcroco/Makefile b/textproc/libcroco/Makefile index fa17e0f0667..266d63d7e75 100644 --- a/textproc/libcroco/Makefile +++ b/textproc/libcroco/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2012/02/09 20:29:20 drochner Exp $ +# $NetBSD: Makefile,v 1.42 2012/02/10 08:50:14 tron Exp $ # DISTNAME= libcroco-0.6.4 @@ -21,6 +21,7 @@ PKGCONFIG_OVERRIDE+= libcroco-0.6.pc CONFIGURE_ARGS+= --enable-seleng=yes CONFIGURE_ARGS+= --enable-layeng=yes +CONFIGURE_ARGS+= --disable-Bsymbolic .include "../../devel/glib2/buildlink3.mk" .include "../../textproc/libxml2/buildlink3.mk" |