diff options
author | Erwin Lansing <erwin@FreeBSD.org> | 2003-06-13 08:41:25 +0000 |
---|---|---|
committer | Erwin Lansing <erwin@FreeBSD.org> | 2003-06-13 08:41:25 +0000 |
commit | 1f1024a98148e84827d0cf2326a8a484d02742f3 (patch) | |
tree | 1065ebcda0d83e3e030ee26214ccac4e20305fe1 /security/proxycheck/files | |
parent | 6f09620e860486f34f6304a4978bbc21c29595ee (diff) |
Notes
Diffstat (limited to 'security/proxycheck/files')
-rw-r--r-- | security/proxycheck/files/patch-aa | 22 | ||||
-rw-r--r-- | security/proxycheck/files/patch-ab | 20 | ||||
-rw-r--r-- | security/proxycheck/files/patch-ac | 11 |
3 files changed, 53 insertions, 0 deletions
diff --git a/security/proxycheck/files/patch-aa b/security/proxycheck/files/patch-aa new file mode 100644 index 000000000000..a23ab13cf9db --- /dev/null +++ b/security/proxycheck/files/patch-aa @@ -0,0 +1,22 @@ +--- Makefile.orig Sun May 11 10:47:38 2003 ++++ Makefile Fri Jun 13 03:01:04 2003 +@@ -2,15 +2,15 @@ + # Makefile for proxycheck. GPL + +-CC = cc +-CFLAGS = -O ++CC ?= cc ++CFLAGS += -O + DEFS = -D_GNU_SOURCE + LD = $(CC) +-LDFLAGS = ++# LDFLAGS = + + # For Solaris, we need -lsocket -lnsl and -lresolv for inet_aton +-RSOCKLIBS = `[ -f /usr/lib/libsocket.so ] && echo -lresolv -lsocket -lnsl || :` +-SOCKLIBS = `[ -f /usr/lib/libsocket.so ] && echo -lsocket -lnsl || :` ++# RSOCKLIBS = `[ -f /usr/lib/libsocket.so ] && echo -lresolv -lsocket -lnsl || :` ++# SOCKLIBS = `[ -f /usr/lib/libsocket.so ] && echo -lsocket -lnsl || :` + + USE_CFLAGS = $(CFLAGS) $(DEFS) + diff --git a/security/proxycheck/files/patch-ab b/security/proxycheck/files/patch-ab new file mode 100644 index 000000000000..50002060e30e --- /dev/null +++ b/security/proxycheck/files/patch-ab @@ -0,0 +1,20 @@ +--- proxycheck.c.orig Fri Jun 13 03:07:12 2003 ++++ proxycheck.c Fri Jun 13 03:07:53 2003 +@@ -974,7 +974,7 @@ + dstspec = strdup(pxybuf); + } + +- dsbluser = egetenv("DSBL_USER", "anonimous"); ++ dsbluser = egetenv("DSBL_USER", "anonymous"); + dsblpass = egetenv("DSBL_PASS", ""); + dsblfrom = egetenv("DSBL_FROM", dsbluser); + dsblrcpt = egetenv("DSBL_RCPT", "listme@listme.dsbl.org"); +@@ -1015,7 +1015,7 @@ + { "dsbl", dsblh, dsbld, dsble, dsbli, "[:smtpserver[:port]]", + "attempt to submit proxy to DSBL-like system\n" + " DSBL settings are expected to be in environment:\n" +- "\t$DSBL_USER - username (anonimous)\n" ++ "\t$DSBL_USER - username (anonymous)\n" + "\t$DSBL_PASS - password (default is empty)\n" + "\t$DSBL_COOKIE_HOST - cookie server (cookie.dsbl.org)\n" + "\t$DSBL_COOKIE - already obtained DSBL cookie\n" diff --git a/security/proxycheck/files/patch-ac b/security/proxycheck/files/patch-ac new file mode 100644 index 000000000000..97751a5725c3 --- /dev/null +++ b/security/proxycheck/files/patch-ac @@ -0,0 +1,11 @@ +--- proxycheck.1.orig Fri Jun 13 03:07:05 2003 ++++ proxycheck.1 Fri Jun 13 03:07:42 2003 +@@ -72,7 +72,7 @@ + (username, password, recipient address, cookie server, ...) are + expected to be found in environment variables. Run \fBproxycheck\fR + with \fB\-h\fR option to see a list of recognized variables and +-their default values. By default, \fBproxycheck\fR will anonimously ++their default values. By default, \fBproxycheck\fR will anonymously + submit all found proxies to unconfirmed.dsbl.org (which isn't very + useful). For trusted DSBL user, at least DSBL_USER and DSBL_PASS + variables should be set properly. |