diff options
author | grant <grant@pkgsrc.org> | 2003-02-17 21:21:37 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-02-17 21:21:37 +0000 |
commit | c72b4b9bad69c7d1857b1321e122ea6e54641c09 (patch) | |
tree | 1c0f4b9e56d025cfbacf5099b1872c73bf2258fa /www | |
parent | 186b57d77a927b0549cf3e5e1ad9f51ab8cde3d4 (diff) | |
download | pkgsrc-c72b4b9bad69c7d1857b1321e122ea6e54641c09.tar.gz |
- move LDFLAGS to Makefile, patch-aa no longer needed.
fixes runtime problem noted by zuntum.
- add MESSAGE.
Diffstat (limited to 'www')
-rw-r--r-- | www/ap-xslt/MESSAGE | 9 | ||||
-rw-r--r-- | www/ap-xslt/Makefile | 3 | ||||
-rw-r--r-- | www/ap-xslt/distinfo | 3 | ||||
-rw-r--r-- | www/ap-xslt/patches/patch-aa | 18 |
4 files changed, 12 insertions, 21 deletions
diff --git a/www/ap-xslt/MESSAGE b/www/ap-xslt/MESSAGE new file mode 100644 index 00000000000..95c17213e0f --- /dev/null +++ b/www/ap-xslt/MESSAGE @@ -0,0 +1,9 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1 2003/02/17 21:21:37 grant Exp $ + +In order to use this module in your Apache installation, you need to +add the following to your httpd.conf file: + + LoadModule mod_xslt_module lib/httpd/mod_xslt.so + +=========================================================================== diff --git a/www/ap-xslt/Makefile b/www/ap-xslt/Makefile index 4f662236a8d..c1a8882289c 100644 --- a/www/ap-xslt/Makefile +++ b/www/ap-xslt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2003/02/17 21:01:08 grant Exp $ +# $NetBSD: Makefile,v 1.13 2003/02/17 21:21:37 grant Exp $ DISTNAME= modxslt PKGNAME= ap-xslt-1.1 @@ -13,6 +13,7 @@ COMMENT= Simple, fast XSLT transformations for apache USE_BUILDLINK2= YES APACHE_MODULE_NAME= mod_xslt.so +LDFLAGS+= -lsablot -liconv -lstdc++ -lm .include "../../textproc/sablotron/buildlink2.mk" .include "../../www/apache/module.mk" diff --git a/www/ap-xslt/distinfo b/www/ap-xslt/distinfo index 9941119bb2f..8805a2d573b 100644 --- a/www/ap-xslt/distinfo +++ b/www/ap-xslt/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.3 2002/01/05 21:18:03 jwise Exp $ +$NetBSD: distinfo,v 1.4 2003/02/17 21:21:37 grant Exp $ SHA1 (modxslt.tar.gz) = 136edef75ef6caf53eb865102a2ebfa15383df47 Size (modxslt.tar.gz) = 11693 bytes -SHA1 (patch-aa) = 8261947da9bde091ccbc9e55b40a74e984445649 SHA1 (patch-ab) = 2c93353e7a296602cb19d2fca3f0213f867e4d42 diff --git a/www/ap-xslt/patches/patch-aa b/www/ap-xslt/patches/patch-aa deleted file mode 100644 index f2774308383..00000000000 --- a/www/ap-xslt/patches/patch-aa +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-aa,v 1.3 2002/01/05 21:18:03 jwise Exp $ ---- Makefile.orig Wed Aug 23 22:30:50 2000 -+++ Makefile Tue Sep 25 15:12:22 2001 -@@ -1,12 +1,12 @@ - # the used tools --APXS=/usr/local/lib/httpd/bin/apxs -+APXS=${PREFIX}/sbin/apxs - - # the default target - all: mod_xslt.so - - # compile the shared object file - mod_xslt.so: mod_xslt.c -- $(APXS) -c mod_xslt.c -o mod_xslt.so -+ $(APXS) -c -I${LOCALBASE}/include mod_xslt.c -o mod_xslt.so -L${LOCALBASE}/lib -R${LOCALBASE}/lib -lsablot -liconv -lstdc++ -lm - - # cleanup - clean: |