mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
e8319f569d
PR: ports/4620
53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
*** xinetd/defs.h.orig Thu Mar 20 11:29:27 1997
|
|
--- xinetd/defs.h Thu Mar 20 11:29:46 1997
|
|
***************
|
|
*** 100,106 ****
|
|
/*
|
|
* Used for listen(2)
|
|
*/
|
|
! #define LISTEN_BACKLOG 7
|
|
|
|
/*
|
|
* When explicit values are given for enum's, that is because the structures
|
|
--- 100,106 ----
|
|
/*
|
|
* Used for listen(2)
|
|
*/
|
|
! #define LISTEN_BACKLOG 64
|
|
|
|
/*
|
|
* When explicit values are given for enum's, that is because the structures
|
|
|
|
--- xinetd/Makefile.orig Mon Apr 14 05:29:01 1997
|
|
+++ xinetd/Makefile Wed Sep 24 04:54:21 1997
|
|
@@ -131,7 +131,8 @@
|
|
|
|
XMODE = -m 700 # mode for executables
|
|
FMODE = -m 640 # mode for anything but executables
|
|
-INSTALL = install -c
|
|
+INSTALL_PROGRAM = install -c -s
|
|
+INSTALL_DATA = install -c
|
|
|
|
LINT_FLAGS = -hbux
|
|
PAGER = less
|
|
@@ -178,16 +179,16 @@
|
|
rm -f $(OPT_SOURCE) $(OPT_HEADER)
|
|
|
|
install: $(PROGRAM)
|
|
- $(INSTALL) $(XMODE) $(PROGRAM) $(INSTALLDIR)
|
|
+ $(INSTALL_PROGRAM) $(XMODE) $(PROGRAM) $(INSTALLDIR)
|
|
|
|
install.man:
|
|
if test "$(MANPROGDIR)" ; then \
|
|
- $(INSTALL) $(FMODE) $(MANPROGFILE) $(MANPROGDIR)/$(MANPROGPAGE) ;\
|
|
+ $(INSTALL_DATA) $(FMODE) $(MANPROGFILE) $(MANPROGDIR)/$(MANPROGPAGE) ;\
|
|
fi
|
|
if test "$(MANDATADIR)" ; then \
|
|
for i in $(MANDATANAMES) ; do \
|
|
name=$(PROGRAM).$$i ; \
|
|
- $(INSTALL) $(FMODE) $$name.man $(MANDATADIR)/$$name.$(MANDATASECTION);\
|
|
+ $(INSTALL_DATA) $(FMODE) $$name.man $(MANDATADIR)/$$name.$(MANDATASECTION);\
|
|
done ;\
|
|
fi
|
|
|