summaryrefslogtreecommitdiff
path: root/www/w3m/files/patch-indep.c
diff options
context:
space:
mode:
authorFUJISHIMA Satsuki <sf@FreeBSD.org>2001-10-29 02:35:22 +0000
committerFUJISHIMA Satsuki <sf@FreeBSD.org>2001-10-29 02:35:22 +0000
commit1b73abb75e6b79f5abe437793d378706c0064457 (patch)
tree566b5e2a18919887f8e9804b857c67fc642e5782 /www/w3m/files/patch-indep.c
parento fix install: change GCC_REV to match existing one. (diff)
fix build for -CURRENT.
PR: 31569 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=49306
Diffstat (limited to 'www/w3m/files/patch-indep.c')
-rw-r--r--www/w3m/files/patch-indep.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/www/w3m/files/patch-indep.c b/www/w3m/files/patch-indep.c
new file mode 100644
index 000000000000..ebd135d10ddb
--- /dev/null
+++ b/www/w3m/files/patch-indep.c
@@ -0,0 +1,11 @@
+--- indep.c.orig Mon Oct 29 09:52:32 2001
++++ indep.c Mon Oct 29 09:52:37 2001
+@@ -181,7 +181,7 @@
+
+ /* string search using the simplest algorithm */
+ char *
+-strcasestr(char *s1, char *s2)
++strcasestr(const char *s1, const char *s2)
+ {
+ int len1, len2;
+ len1 = strlen(s1);