CVS didn't add these properly along with the rest of the update

This commit is contained in:
Kris Kennaway 2002-01-26 11:27:44 +00:00
parent 072a2bece2
commit 0438d90b36
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=53778
3 changed files with 52 additions and 0 deletions

10
net/gopher/files/patch-aa Normal file
View file

@ -0,0 +1,10 @@
--- ./object/util.h.orig Fri Aug 18 17:28:56 2000
+++ ./object/util.h Sat Jan 26 02:16:25 2002
@@ -57,7 +57,6 @@
void Fromhexstr(char * , char *);
void Tohexstr(char *input, char *output);
void Hexall(char *input, char *output);
-char *strcasestr(char *inputline, char *match);
char *skip_whitespace(char *);
/*

31
net/gopher/files/patch-ab Normal file
View file

@ -0,0 +1,31 @@
--- ./object/util.c.orig Tue Dec 19 17:19:20 2000
+++ ./object/util.c Sat Jan 26 02:16:51 2002
@@ -584,28 +584,6 @@
/*
- * String insensitive strstr
- */
-
-char *
-strcasestr(char *inputline, char *match)
-{
- int matchlen=0;
- int i, inlen;
-
- matchlen = strlen(match);
- inlen = strlen(inputline);
-
- for(i=0; i<inlen; i++) {
- if (strncasecmp(inputline+i, match, matchlen)==0)
- return(inputline+i);
- }
-
- return(NULL);
-}
-
-
-/*
* Iterate over a string, return a pointer to the next character
* that isn't whitespace.
*/

11
net/gopher/files/patch-ac Normal file
View file

@ -0,0 +1,11 @@
--- Makefile.in.orig Sat Jan 26 03:10:15 2002
+++ Makefile.in Sat Jan 26 03:10:23 2002
@@ -140,7 +140,7 @@
objects: object/libgopher.a
gopherd/gopherd: object/libgopher.a $(srcdir)/gopherd/*.c $(srcdir)/gopherd/*.h $(srcdir)/conf.h
- (cd gopherd; $(MAKE) $(MFLAGS))
+ (cd gopherd; $(MAKE) $(MFLAGS) all)
# gopher is dependant on conf.h - (as are other things)
gopher/gopher: object/libgopher.a conf.h $(srcdir)/gopher/*c $(srcdir)/gopher/*h