diff options
author | skrll <skrll@pkgsrc.org> | 2002-08-12 16:23:23 +0000 |
---|---|---|
committer | skrll <skrll@pkgsrc.org> | 2002-08-12 16:23:23 +0000 |
commit | 4a9a02e45c75d981874122c8455c8e0466cda371 (patch) | |
tree | 945a7ed10b6916c76e36f249caa0fde1814aa9e2 /textproc/jade/Makefile | |
parent | 5a9b0e06f22940480bbd137d63bf0183cac51f41 (diff) | |
download | pkgsrc-4a9a02e45c75d981874122c8455c8e0466cda371.tar.gz |
Fix pkg/16053.
Remove the --disable-shared option from CONFIGURE_ARGS it doesn't do
anything as pkgsrc libtool isn't built this way. We want shared libraries
anyway...
Use CXX when linking the libraries as we have global contructors that need
calling. Problem only visible on a.out platforms.
Diffstat (limited to 'textproc/jade/Makefile')
-rw-r--r-- | textproc/jade/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/textproc/jade/Makefile b/textproc/jade/Makefile index 0346bd634c1..ec13828fa6a 100644 --- a/textproc/jade/Makefile +++ b/textproc/jade/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2002/05/08 11:41:27 kleink Exp $ +# $NetBSD: Makefile,v 1.20 2002/08/12 16:23:23 skrll Exp $ DISTNAME= jade-1.2.1 PKGREVISION= 4 @@ -25,8 +25,7 @@ LTCONFIG_OVERRIDE= ${WRKSRC}/config/ltconfig JADE_CATALOG_DIR= ${PREFIX}/share/sgml/jade/catalog -CONFIGURE_ARGS= --disable-shared -CONFIGURE_ARGS+= --enable-default-catalog=${JADE_CATALOG_DIR} +CONFIGURE_ARGS= --enable-default-catalog=${JADE_CATALOG_DIR} CONFIGURE_ARGS+= --enable-mif CXXFLAGS+= ${CFLAGS} |