diff options
author | ade <ade@FreeBSD.org> | 2000-02-26 21:25:20 +0000 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2000-02-26 21:25:20 +0000 |
commit | 6b8780210c2f2f08d2d01083d22b70911893ee72 (patch) | |
tree | c242ddc6ffdcf8e818f883003483c7ebddc0e741 /security/xinetd/files | |
parent | 44cbdce5fdfe11c136157c86b6c3ff93d548a250 (diff) | |
download | FreeBSD-ports-6b8780210c2f2f08d2d01083d22b70911893ee72.zip FreeBSD-ports-6b8780210c2f2f08d2d01083d22b70911893ee72.tar.gz |
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>
Diffstat (limited to 'security/xinetd/files')
-rw-r--r-- | security/xinetd/files/patch-ac | 6 | ||||
-rw-r--r-- | security/xinetd/files/patch-ad | 37 |
2 files changed, 43 insertions, 0 deletions
diff --git a/security/xinetd/files/patch-ac b/security/xinetd/files/patch-ac new file mode 100644 index 0000000..c5e6de3 --- /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 0000000..39725dc --- /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 +- +- |