diff options
author | mjl <mjl> | 2001-08-28 03:30:41 +0000 |
---|---|---|
committer | mjl <mjl> | 2001-08-28 03:30:41 +0000 |
commit | a9c8bb6eb427e6c714f3cc7a5e16bfcf0e2af0c8 (patch) | |
tree | 4eccba5495b156f321d098da8e910b8fadec87b4 /news/newscache/patches | |
parent | ed595a081fa3f2f2dd7d1837bc5d00deb3cba09a (diff) | |
download | pkgsrc-a9c8bb6eb427e6c714f3cc7a5e16bfcf0e2af0c8.tar.gz |
Update to 0.99.17.
* src/crypt.cc: corrected stupid salt calculation
* src/NewsCache.cc (ns_newgroups): fixed a y2k bug
(nnrpd): disabled stream buffering, some clients had problems with
this
Diffstat (limited to 'news/newscache/patches')
-rw-r--r-- | news/newscache/patches/patch-aa | 32 | ||||
-rw-r--r-- | news/newscache/patches/patch-ac | 13 | ||||
-rw-r--r-- | news/newscache/patches/patch-ae | 14 |
3 files changed, 27 insertions, 32 deletions
diff --git a/news/newscache/patches/patch-aa b/news/newscache/patches/patch-aa index 355fb4d0edb..3321808a7b8 100644 --- a/news/newscache/patches/patch-aa +++ b/news/newscache/patches/patch-aa @@ -1,29 +1,25 @@ -$NetBSD: patch-aa,v 1.1.1.1 1999/08/22 13:44:20 rh Exp $ +$NetBSD: patch-aa,v 1.2 2001/08/28 03:30:43 mjl Exp $ ---- configure.orig Sat Jul 3 23:14:38 1999 -+++ configure Sun Aug 22 13:34:41 1999 -@@ -1181,6 +1181,8 @@ - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ - char hosts_ctl(); -+int allow_severity; -+int deny_severity; - - int main() { - hosts_ctl() -@@ -1207,9 +1209,10 @@ - #define $ac_tr_lib 1 +--- configure.orig Tue Aug 28 05:11:12 2001 ++++ configure Tue Aug 28 05:13:05 2001 +@@ -1421,6 +1421,8 @@ EOF -- LIBS="-lwrap $LIBS" + ac_cv_lib_wrap_hosts_ctl=yes ++ LIBS="$ac_save_LIBS" + LIBWRAP="-lwrap" - else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 +@@ -1428,6 +1430,7 @@ + LIBS="$ac_save_LIBS" + echo "$ac_t""no" 1>&6 + ac_cv_lib_wrap_hosts_ctl=no + LIBWRAP="" - echo "$ac_t""no" 1>&6 fi + rm -f conftest* -@@ -2361,6 +2364,7 @@ +@@ -2435,6 +2438,7 @@ s%@DEFS@%$DEFS%g s%@LDFLAGS@%$LDFLAGS%g s%@LIBS@%$LIBS%g diff --git a/news/newscache/patches/patch-ac b/news/newscache/patches/patch-ac index 357dfacccfa..048d0df5cb6 100644 --- a/news/newscache/patches/patch-ac +++ b/news/newscache/patches/patch-ac @@ -1,21 +1,22 @@ -$NetBSD: patch-ac,v 1.1.1.1 1999/08/22 13:44:20 rh Exp $ +$NetBSD: patch-ac,v 1.2 2001/08/28 03:30:43 mjl Exp $ ---- src/Makefile.in.orig Mon Jul 5 19:08:49 1999 -+++ src/Makefile.in Sun Aug 22 13:37:26 1999 -@@ -120,6 +120,7 @@ +--- src/Makefile.in.orig Tue Aug 28 05:14:04 2001 ++++ src/Makefile.in Tue Aug 28 05:14:52 2001 +@@ -103,6 +103,8 @@ CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ +LIBWRAP = @LIBWRAP@ ++ cConfig_OBJECTS = AccessList.o cConfig.o Config.o cConfig_LDADD = $(LDADD) cConfig_DEPENDENCIES = ../NServer-0.9.1/libnserver.a \ -@@ -264,7 +265,7 @@ +@@ -251,7 +253,7 @@ NewsCache: $(NewsCache_OBJECTS) $(NewsCache_DEPENDENCIES) @rm -f NewsCache - $(CXXLINK) $(NewsCache_LDFLAGS) $(NewsCache_OBJECTS) $(NewsCache_LDADD) $(LIBS) -+ ${CXXLINK} ${NewsCache_LDFLAGS} ${NewsCache_OBJECTS} ${NewsCache_LDADD} ${LIBS} ${LIBWRAP} ++ $(CXXLINK) $(NewsCache_LDFLAGS) $(NewsCache_OBJECTS) $(NewsCache_LDADD) $(LIBS) $(LIBWRAP) NewsCacheClean: $(NewsCacheClean_OBJECTS) $(NewsCacheClean_DEPENDENCIES) @rm -f NewsCacheClean diff --git a/news/newscache/patches/patch-ae b/news/newscache/patches/patch-ae index 20af960ef8e..e44ac43dac6 100644 --- a/news/newscache/patches/patch-ae +++ b/news/newscache/patches/patch-ae @@ -1,14 +1,12 @@ -$NetBSD: patch-ae,v 1.1 1999/08/25 11:22:16 fredb Exp $ +$NetBSD: patch-ae,v 1.2 2001/08/28 03:30:43 mjl Exp $ ---- NServer-0.9.1/Article.h.orig Mon Jul 5 12:07:49 1999 -+++ NServer-0.9.1/Article.h Wed Aug 25 05:58:07 1999 -@@ -2,8 +2,8 @@ - #define _Article_h_ - +--- NServer-0.9.1/Article.h.orig Sun Jul 9 22:12:20 2000 ++++ NServer-0.9.1/Article.h Tue Aug 28 05:01:51 2001 +@@ -4,7 +4,7 @@ #include <ctype.h> -- + #include <stdio.h> + -#include <string> -+#include <stdio.h> +#include <string.h> #include "NSError.h" |