diff options
author | tron <tron> | 2012-02-10 08:50:14 +0000 |
---|---|---|
committer | tron <tron> | 2012-02-10 08:50:14 +0000 |
commit | e0a3f23f86351b4317ddebf049ad93ed998522ed (patch) | |
tree | 50ed43abe96d02ccd674a0c0c16d45437cb56482 /textproc | |
parent | 0aa9ca60524d2f337b6ab73ac6d91b955de49e1d (diff) | |
download | pkgsrc-e0a3f23f86351b4317ddebf049ad93ed998522ed.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" |