diff options
author | ade <ade@FreeBSD.org> | 2000-02-27 05:25:20 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2000-02-27 05:25:20 +0800 |
commit | 6b8780210c2f2f08d2d01083d22b70911893ee72 (patch) | |
tree | c242ddc6ffdcf8e818f883003483c7ebddc0e741 | |
parent | 44cbdce5fdfe11c136157c86b6c3ff93d548a250 (diff) | |
download | freebsd-ports-gnome-6b8780210c2f2f08d2d01083d22b70911893ee72.tar.gz freebsd-ports-gnome-6b8780210c2f2f08d2d01083d22b70911893ee72.tar.zst freebsd-ports-gnome-6b8780210c2f2f08d2d01083d22b70911893ee72.zip |
Update to 2.1.8.8p1 (previous version no longer available
at MASTER_SITE). Two extra patches to fix build warnings, and
make the inetd->xinetd configuration file translator work
a little better.
Submitted by: Mikhail Teterin <mi@video-collage.com>
-rw-r--r-- | security/xinetd/Makefile | 5 | ||||
-rw-r--r-- | security/xinetd/distinfo | 2 | ||||
-rw-r--r-- | security/xinetd/files/patch-ac | 6 | ||||
-rw-r--r-- | security/xinetd/files/patch-ad | 37 |
4 files changed, 46 insertions, 4 deletions
diff --git a/security/xinetd/Makefile b/security/xinetd/Makefile index bc0863a0f10b..681c13d6b9d8 100644 --- a/security/xinetd/Makefile +++ b/security/xinetd/Makefile @@ -1,12 +1,12 @@ # New ports collection makefile for: xinetd -# Version required: 2.1.8.8.pre11 +# Version required: 2.1.8.8p1 # Date created: 28 June 1996 # Whom: markm # # $FreeBSD$ # -DISTNAME= xinetd-2.1.8.8pre11 +DISTNAME= xinetd-2.1.8.8p1 CATEGORIES= security MASTER_SITES= http://synack.net/xinetd/ @@ -14,7 +14,6 @@ MAINTAINER= vanilla@FreeBSD.org FETCH_BEFORE_ARGS= -b GNU_CONFIGURE= yes -USE_GMAKE= yes ALL_TARGET= build MAN5= xinetd.conf.5 diff --git a/security/xinetd/distinfo b/security/xinetd/distinfo index 937a8c0fad8c..46cd0a072ece 100644 --- a/security/xinetd/distinfo +++ b/security/xinetd/distinfo @@ -1 +1 @@ -MD5 (xinetd-2.1.8.8pre11.tar.gz) = 92dc58461083f410fe82efab17bef363 +MD5 (xinetd-2.1.8.8p1.tar.gz) = 00d4dc83c562f36a9938ea5ce02665e3 diff --git a/security/xinetd/files/patch-ac b/security/xinetd/files/patch-ac new file mode 100644 index 000000000000..c5e6de36c4f3 --- /dev/null +++ b/security/xinetd/files/patch-ac @@ -0,0 +1,6 @@ +--- xinetd/xconv.pl Mon Oct 18 01:27:18 1999 ++++ xinetd/xconv.pl Fri Feb 25 16:30:16 2000 +@@ -43 +43 @@ +- @user = split /\./, $command[4]; ++ @user = split /[:\.]/, $command[4]; + diff --git a/security/xinetd/files/patch-ad b/security/xinetd/files/patch-ad new file mode 100644 index 000000000000..39725dc7e233 --- /dev/null +++ b/security/xinetd/files/patch-ad @@ -0,0 +1,37 @@ +--- configure Fri Dec 10 19:02:56 1999 ++++ configure Fri Feb 25 17:12:19 2000 +@@ -3020,34 +3019,0 @@ +-echo $ac_n "checking for R_OK""... $ac_c" 1>&6 +-echo "configure:3022: checking for R_OK" >&5 +-if eval "test \"`echo '$''{'ac_cv_type_R_OK'+set}'`\" = set"; then +- echo $ac_n "(cached) $ac_c" 1>&6 +-else +- cat > conftest.$ac_ext <<EOF +-#line 3027 "configure" +-#include "confdefs.h" +-#include <sys/types.h> +-#if STDC_HEADERS +-#include <stdlib.h> +-#include <stddef.h> +-#endif +-EOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- egrep "(^|[^a-zA-Z_0-9])R_OK[^a-zA-Z_0-9]" >/dev/null 2>&1; then +- rm -rf conftest* +- ac_cv_type_R_OK=yes +-else +- rm -rf conftest* +- ac_cv_type_R_OK=no +-fi +-rm -f conftest* +- +-fi +-echo "$ac_t""$ac_cv_type_R_OK" 1>&6 +-if test $ac_cv_type_R_OK = no; then +- cat >> confdefs.h <<\EOF +-#define R_OK 4 +-EOF +- +-fi +- +- |