summaryrefslogtreecommitdiff
path: root/textproc/namazu2/patches/patch-ae
diff options
context:
space:
mode:
authorsalo <salo>2006-03-17 12:03:46 +0000
committersalo <salo>2006-03-17 12:03:46 +0000
commitd223202782fd977c0219092878c0f8ae671c0aac (patch)
treedbcd9a957ae7f7b0b5e7cfc9642c2e52414ae61c /textproc/namazu2/patches/patch-ae
parentfbdf39e55f51b612e154606c797d8dc6e55171b4 (diff)
downloadpkgsrc-d223202782fd977c0219092878c0f8ae671c0aac.tar.gz
Pullup ticket 1226 - requested by Takahiro Kambe
security update for namazu2 Revisions pulled up: - pkgsrc/textproc/namazu2/Makefile 1.27, 1.29 - pkgsrc/textproc/namazu2/PLIST 1.11 - pkgsrc/textproc/namazu2/distinfo 1.8, 1.9 - pkgsrc/textproc/namazu2/patches/patch-ac removed - pkgsrc/textproc/namazu2/patches/patch-ad removed - pkgsrc/textproc/namazu2/patches/patch-ae removed - pkgsrc/textproc/namazu2/patches/patch-af removed - pkgsrc/textproc/namazu2/patches/patch-ag removed - pkgsrc/textproc/namazu2/patches/patch-ah removed - pkgsrc/textproc/namazu2/patches/patch-ai removed - pkgsrc/textproc/namazu2/patches/patch-aj removed - pkgsrc/textproc/namazu2/patches/patch-ak removed Module Name: pkgsrc Committed By: taca Date: Thu Mar 2 16:02:37 UTC 2006 Modified Files: pkgsrc/textproc/namazu2: Makefile PLIST distinfo Removed Files: pkgsrc/textproc/namazu2/patches: patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak Log Message: Update namazu2 pacakge to 2.0.15. Overview of Changes in Namazu 2.0.15 - Jan. 29, 2006 * The mistake of the document concerning ISO-8859-* is corrected. * RedHat software namazu.spec was taken in. The unnecessary patch was deleted. * Include File::MMagic 1.25. * Support MeCab. * Add -b and --use-mecab options for mknmz. * Add --norc option for mknmz and namazu. * Add --decode-base64 option for mknmz. * Add new filters (Gnumeric, Koffice, Mainman/Pipermail, Zip, Visio). * Add new directives for mknmzrc (MECAB, DENY_DDN). To skip when filename is DDN. * Add sorting function by date of field. * Added new files (nmzcat, nmzegrep). * Adapt new filter programs (wvWare 1.0.3, xlhtml 0.5.1, xpdf 3.01). * For Windows of filter (msword.pl, excel.pl, powerpoint.pl, postscript.pl, etc...). * Ole control filter renewal. * ';' can have been used for the delimiter of QUERY_STRING. * Add the Perl version test program (pltests). * Fix some bugs. --- Module Name: pkgsrc Committed By: taca Date: Sun Mar 12 14:36:54 UTC 2006 Modified Files: pkgsrc/textproc/namazu2: Makefile distinfo Log Message: Update namazu to 2.0.16. Overview of Changes in Namazu 2.0.16 - Mar 12, 2006 * Directory traversal problem by lang and result of CGI parameter is corrected. * Substitution of "-r" that doesn't correspond to ACL of NTFS. * It corresponds to the file name including space. * For MeCab-perl-0.90rc10.
Diffstat (limited to 'textproc/namazu2/patches/patch-ae')
-rw-r--r--textproc/namazu2/patches/patch-ae14
1 files changed, 0 insertions, 14 deletions
diff --git a/textproc/namazu2/patches/patch-ae b/textproc/namazu2/patches/patch-ae
deleted file mode 100644
index 1bd49859678..00000000000
--- a/textproc/namazu2/patches/patch-ae
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ae,v 1.1 2004/12/15 13:09:58 taca Exp $
-
---- nmz/idxname.c.orig 2004-03-21 00:25:10.000000000 +0900
-+++ nmz/idxname.c
-@@ -153,7 +153,8 @@ nmz_complete_idxnames(void)
- int i;
-
- for (i = 0; i < indices.num; i++) {
-- if (*indices.names[i] == '+' && isalnum(*(indices.names[i] + 1))) {
-+ if (*indices.names[i] == '+' &&
-+ isalnum((unsigned char)*(indices.names[i] + 1))) {
- char *tmp;
- tmp = malloc(strlen(defaultidx)
- + 1 + strlen(indices.names[i]) + 1);