diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2003-09-27 13:46:50 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2003-09-27 13:46:50 +0000 |
commit | 7519d59beb7777b3920853c05e4e32f827d90625 (patch) | |
tree | 6092bcdbd719dd51ed3630216feb10ac165c4c85 /security | |
parent | 5d81e98931b67368de19411a39d7338da1327893 (diff) | |
download | ports-7519d59beb7777b3920853c05e4e32f827d90625.tar.gz ports-7519d59beb7777b3920853c05e4e32f827d90625.zip |
Notes
Diffstat (limited to 'security')
-rw-r--r-- | security/xinetd/Makefile | 2 | ||||
-rw-r--r-- | security/xinetd/distinfo | 2 | ||||
-rw-r--r-- | security/xinetd/files/patch-xinetd::Makefile.in | 11 | ||||
-rw-r--r-- | security/xinetd/files/patch-xinetd::signals.c | 40 |
4 files changed, 13 insertions, 42 deletions
diff --git a/security/xinetd/Makefile b/security/xinetd/Makefile index f3bf93f53c35..2697efb4e062 100644 --- a/security/xinetd/Makefile +++ b/security/xinetd/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xinetd -PORTVERSION= 2.3.11 +PORTVERSION= 2.3.12 PORTREVISION= 0 CATEGORIES= security ipv6 MASTER_SITES= http://www.xinetd.org/ diff --git a/security/xinetd/distinfo b/security/xinetd/distinfo index 8016b43d28f4..169dfd3b08a9 100644 --- a/security/xinetd/distinfo +++ b/security/xinetd/distinfo @@ -1 +1 @@ -MD5 (xinetd-2.3.11.tar.gz) = 37df520fb367beae040daac2b63be5a5 +MD5 (xinetd-2.3.12.tar.gz) = 16154191731b6449d934eecacef647dd diff --git a/security/xinetd/files/patch-xinetd::Makefile.in b/security/xinetd/files/patch-xinetd::Makefile.in new file mode 100644 index 000000000000..1020dea74700 --- /dev/null +++ b/security/xinetd/files/patch-xinetd::Makefile.in @@ -0,0 +1,11 @@ +--- xinetd/Makefile.in.orig Sun Jun 8 00:47:24 2003 ++++ xinetd/Makefile.in Sat Sep 27 21:24:00 2003 +@@ -40,7 +40,7 @@ + + INSTALL_CMD = @INSTALL@ + +-LIBS = -lsio -lmisc -lxlog -lstr -lpset -lportable @LIBS@ ++LIBS = -lsio -lmisc -lxlog -lpset -lportable -lstr @LIBS@ + + INCLUDEDIR = -I../libs/include + LIBDIR = -L../libs/lib diff --git a/security/xinetd/files/patch-xinetd::signals.c b/security/xinetd/files/patch-xinetd::signals.c deleted file mode 100644 index 1861275ac1b3..000000000000 --- a/security/xinetd/files/patch-xinetd::signals.c +++ /dev/null @@ -1,40 +0,0 @@ ---- xinetd/signals.c.orig Sun May 4 04:56:37 2003 -+++ xinetd/signals.c Sun May 4 04:57:19 2003 -@@ -353,7 +353,7 @@ - - switch (sig) { - case SIGSEGV: -- switch (siginfo->si_code) { -+/* switch (siginfo->si_code) { - case SEGV_MAPERR: - msg(LOG_CRIT, func, "address is not mapped for object"); - break; -@@ -361,13 +361,13 @@ - msg(LOG_CRIT, func, - "invalid permissions for mapped object"); - break; -- default: -+ default:*/ - msg(LOG_CRIT, func, "unknown fault code"); -- } -+ // } - break; - - case SIGBUS: -- switch(siginfo->si_code) { -+/* switch(siginfo->si_code) { - case BUS_ADRALN: - msg(LOG_CRIT, func, "invalid address alignment"); - break; -@@ -377,9 +377,9 @@ - case BUS_OBJERR: - msg(LOG_CRIT, func, "object-specific hardware error"); - break; -- default: -+ default:*/ - msg(LOG_CRIT, func, "unknown fault code"); -- } -+ //} - break; - } - |