diff options
author | steve <steve@FreeBSD.org> | 1999-10-10 23:45:11 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-10-10 23:45:11 +0000 |
commit | 2cf4babe30d29776b6685adbef263b4c6709b70d (patch) | |
tree | 8232f0513a7bfab517b1a16acddee7e501d5828f /net/freewais-sf/files | |
parent | 32a23f949315a0d4f691731131f952c148a64b78 (diff) | |
download | FreeBSD-ports-2cf4babe30d29776b6685adbef263b4c6709b70d.zip FreeBSD-ports-2cf4babe30d29776b6685adbef263b4c6709b70d.tar.gz |
Update to version 2.2.12.
PR: 14125
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'net/freewais-sf/files')
-rw-r--r-- | net/freewais-sf/files/patch-ab | 18 | ||||
-rw-r--r-- | net/freewais-sf/files/patch-ac | 11 | ||||
-rw-r--r-- | net/freewais-sf/files/patch-ad | 13 | ||||
-rw-r--r-- | net/freewais-sf/files/patch-ae | 13 | ||||
-rw-r--r-- | net/freewais-sf/files/patch-af | 14 |
5 files changed, 69 insertions, 0 deletions
diff --git a/net/freewais-sf/files/patch-ab b/net/freewais-sf/files/patch-ab new file mode 100644 index 0000000..9f54a44 --- /dev/null +++ b/net/freewais-sf/files/patch-ab @@ -0,0 +1,18 @@ +--- lib/Makefile.SH.orig Tue Oct 5 01:46:11 1999 ++++ lib/Makefile.SH Tue Oct 5 02:00:50 1999 +@@ -157,6 +157,7 @@ + $(RANLIB) $@ + + install:: libwais.a ++ if test ! -d $(PRIVLIB); then mkdir $(PRIVLIB); else true; fi + $(INSTALL) -c -m 644 libwais.a $(PRIVLIB) + $(RANLIB) $(PRIVLIB)/libwais.a + chmod 444 $(PRIVLIB)/libwais.a +@@ -188,6 +189,7 @@ + install:: wais.h ++ if test ! -d $(PRIVINC); then mkdir $(PRIVINC); else true; fi + @case '${MFLAGS}' in *[i]*) set +e;; esac; \ + for i in wais.h; do \ + (set -x; $(INSTALL) -c -m 664 $$i $(PRIVINC)); \ + done + diff --git a/net/freewais-sf/files/patch-ac b/net/freewais-sf/files/patch-ac new file mode 100644 index 0000000..f350952 --- /dev/null +++ b/net/freewais-sf/files/patch-ac @@ -0,0 +1,11 @@ +--- lib/cdialect.h.orig Sun Oct 10 17:41:50 1999 ++++ lib/cdialect.h Sun Oct 10 17:42:14 1999 +@@ -135,7 +135,7 @@ + + + #ifndef HAS_STRDUP +-extern char * strdup _((char *s)); ++extern char * strdup _((const char *s)); + #endif /* not HAS_STRDUP */ + #endif /* not C_DIALECT */ + diff --git a/net/freewais-sf/files/patch-ad b/net/freewais-sf/files/patch-ad new file mode 100644 index 0000000..8826c54 --- /dev/null +++ b/net/freewais-sf/files/patch-ad @@ -0,0 +1,13 @@ +--- lib/cutil.c.orig Sun Oct 10 17:46:37 1999 ++++ lib/cutil.c Sun Oct 10 17:47:45 1999 +@@ -788,6 +788,10 @@ + } + + ++#ifdef __FreeBSD__ ++#define HAS_VPRINTF 1 ++#endif ++ + #ifndef HAS_VPRINTF + /* Portable vsprintf by Robert A. Larson <blarson@skat.usc.edu> */ + diff --git a/net/freewais-sf/files/patch-ae b/net/freewais-sf/files/patch-ae new file mode 100644 index 0000000..584d6af --- /dev/null +++ b/net/freewais-sf/files/patch-ae @@ -0,0 +1,13 @@ +--- lib/ftw/alphasort.c.orig Sun Oct 10 17:50:02 1999 ++++ lib/ftw/alphasort.c Sun Oct 10 17:51:33 1999 +@@ -13,6 +13,10 @@ + + #include "config.h" + ++#ifdef __FreeBSD__ ++#define HAS_ALPHASORT 1 ++#endif ++ + #ifndef HAS_ALPHASORT + + /* diff --git a/net/freewais-sf/files/patch-af b/net/freewais-sf/files/patch-af new file mode 100644 index 0000000..b9dbd1e --- /dev/null +++ b/net/freewais-sf/files/patch-af @@ -0,0 +1,14 @@ +--- lib/ftw/scandir.c.orig Sun Oct 10 17:51:58 1999 ++++ lib/ftw/scandir.c Sun Oct 10 17:52:24 1999 +@@ -12,6 +12,11 @@ + */ + + #include "config.h" ++ ++#ifdef __FreeBSD__ ++#define HAS_SCANDIR 1 ++#endif ++ + #ifndef HAS_SCANDIR + + /* |