diff options
author | 2004-04-22 23:29:32 +0000 | |
---|---|---|
committer | 2004-04-22 23:29:32 +0000 | |
commit | 6f9430a6bceb4155a6a5220532349a95da7774d2 (patch) | |
tree | 41de4dcb919324a646f48e6527537f3be696f134 /net-www | |
parent | Version bumped. (diff) | |
download | historical-6f9430a6bceb4155a6a5220532349a95da7774d2.tar.gz historical-6f9430a6bceb4155a6a5220532349a95da7774d2.tar.bz2 historical-6f9430a6bceb4155a6a5220532349a95da7774d2.zip |
Added patch, fix compilation error. Closes #39427.
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/mod_xslt/ChangeLog | 8 | ||||
-rw-r--r-- | net-www/mod_xslt/Manifest | 7 | ||||
-rw-r--r-- | net-www/mod_xslt/files/mod_xslt-1.05a.patch | 22 | ||||
-rw-r--r-- | net-www/mod_xslt/mod_xslt-1.0.5a.ebuild | 5 |
4 files changed, 35 insertions, 7 deletions
diff --git a/net-www/mod_xslt/ChangeLog b/net-www/mod_xslt/ChangeLog index 6e9dc676e6e6..d6e5d6f83cdf 100644 --- a/net-www/mod_xslt/ChangeLog +++ b/net-www/mod_xslt/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-www/mod_xslt -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mod_xslt/ChangeLog,v 1.5 2003/07/21 03:16:44 woodchip Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/mod_xslt/ChangeLog,v 1.6 2004/04/22 23:29:32 zul Exp $ + + 22 Apr 2004; Chuck Short <zul@gentoo.org> mod_xslt-1.0.5a.ebuild, + files/mod_xslt-1.05a.patch: + Added patch, fix compilation error. Closes #39427. 20 Jul 2003; Donny Davies <woodchip@gentoo.org> mod_xslt-1.0.5a.ebuild: Close #24823. diff --git a/net-www/mod_xslt/Manifest b/net-www/mod_xslt/Manifest index a689cc7084a6..442d5a6c2095 100644 --- a/net-www/mod_xslt/Manifest +++ b/net-www/mod_xslt/Manifest @@ -1,5 +1,6 @@ -MD5 08cf1afe8942e33f43a70c4c0b580be4 ChangeLog 424 -MD5 92f9eb3eb071740ae6f3765eb7ada05b mod_xslt-1.0.5a.ebuild 1363 +MD5 8f737f774de72549881c4d902452679d ChangeLog 571 +MD5 139c36533aa579438bbab98ff3cf1897 mod_xslt-1.0.5a.ebuild 1399 +MD5 d7cbbfbcf4bd6baa202abdabbb1564a4 files/mod_xslt-1.05a.patch 700 MD5 2779031f2b6ac43f6763189009bad231 files/25_mod_xslt.conf 350 -MD5 426f6f25b09522583bdfce52e8b2b8b8 files/digest-mod_xslt-1.0.5a 66 MD5 7e2fafd6b92cfb45e536cd508c0d2098 files/mod_xslt-1.0.5a-register.patch 671 +MD5 426f6f25b09522583bdfce52e8b2b8b8 files/digest-mod_xslt-1.0.5a 66 diff --git a/net-www/mod_xslt/files/mod_xslt-1.05a.patch b/net-www/mod_xslt/files/mod_xslt-1.05a.patch new file mode 100644 index 000000000000..d56da43ca13d --- /dev/null +++ b/net-www/mod_xslt/files/mod_xslt-1.05a.patch @@ -0,0 +1,22 @@ +--- src/mod-xslt.c.orig 2003-09-21 22:35:43.000000000 +0000 ++++ src/mod-xslt.c 2003-09-21 22:37:15.000000000 +0000 +@@ -104,7 +104,7 @@ + temp = (char*)malloc((tmplen + 1) *sizeof(char)); + va_start(args,msg); + tmplen = vsnprintf(temp,tmplen,msg,args); +- va_end; ++ va_end(args); + temp[tmplen] = 0; + writeLog(APLOG_NOTICE,temp); + free(temp); +--- src/logging.c.orig 2003-09-21 22:35:43.000000000 +0000 ++++ src/logging.c 2003-09-21 22:37:27.000000000 +0000 +@@ -74,7 +74,7 @@ + temp = (char*)malloc((tmplen + 2) *sizeof(char)); + va_start(args,msg); + tmplen = vsnprintf(temp,tmplen + 1,msg,args); +- va_end; ++ va_end(args); + temp[tmplen + 1] = 0; + if (request && (level < LOGLEVEL)) { + #ifdef DEBUG diff --git a/net-www/mod_xslt/mod_xslt-1.0.5a.ebuild b/net-www/mod_xslt/mod_xslt-1.0.5a.ebuild index c92a2f8e5bcc..6e040f622b4c 100644 --- a/net-www/mod_xslt/mod_xslt-1.0.5a.ebuild +++ b/net-www/mod_xslt/mod_xslt-1.0.5a.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mod_xslt/mod_xslt-1.0.5a.ebuild,v 1.5 2003/07/21 03:16:44 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mod_xslt/mod_xslt-1.0.5a.ebuild,v 1.6 2004/04/22 23:29:32 zul Exp $ inherit eutils @@ -19,6 +19,7 @@ SLOT="0" src_unpack() { unpack ${A} || die; cd ${S} || die epatch ${FILESDIR}/mod_xslt-1.0.5a-register.patch + epatch ${FILESDIR}/mod_xslt-1.05a.patch #oh brother cp configure.ac configure.ac.orig sed -e 's|libxml/|libxml2/libxml/|' configure.ac.orig > configure.ac |