diff options
author | grant <grant@pkgsrc.org> | 2003-05-29 23:14:07 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-05-29 23:14:07 +0000 |
commit | 712c21283a3273130919635485aa657bfcf2df4a (patch) | |
tree | 2ab39a00d70ddd1fe87ded8ec8941560f6ff8dee /textproc | |
parent | 392ba6fb3d2d351009bec6eaba0af88df7641d33 (diff) | |
download | pkgsrc-712c21283a3273130919635485aa657bfcf2df4a.tar.gz |
s/USE_CXX/USE_GCC_SHLIB/ - there are more shared libraries than just
libstdc++ in gcc3.
when defined, USE_GCC_SHLIB ensures that the correct rpath is passed
to the linker, and a full dependency on the compiler package is
registered.
packages which define USE_GCC_SHLIB should not include
mk/gcc.buildlink2.mk (or gcc{,3}/buildlink2.mk) as it is handled
automatically.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/sablotron/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/textproc/sablotron/Makefile b/textproc/sablotron/Makefile index cee54d3a1f9..3aa2f471abd 100644 --- a/textproc/sablotron/Makefile +++ b/textproc/sablotron/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2003/05/27 08:30:24 grant Exp $ +# $NetBSD: Makefile,v 1.11 2003/05/29 23:14:10 grant Exp $ DISTNAME= Sablot-0.96 PKGNAME= sablotron-0.96 @@ -11,7 +11,7 @@ HOMEPAGE= http://www.gingerall.com/charlie/ga/xml/p_sab.xml COMMENT= XML toolkit implementing XSLT, DOM, and XPath USE_BUILDLINK2= YES -USE_CXX= YES +USE_GCC_SHLIB= YES GNU_CONFIGURE= YES USE_GMAKE= YES USE_LIBTOOL= YES @@ -26,5 +26,4 @@ LDFLAGS+= -lstdc++ -lm .include "../../converters/libiconv/buildlink2.mk" .include "../../textproc/expat/buildlink2.mk" -.include "../../mk/gcc.buildlink2.mk" .include "../../mk/bsd.pkg.mk" |