diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1996-01-25 04:00:40 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1996-01-25 04:00:40 +0000 |
commit | 88c4f22d735ee4c98a69842e6929de42247e2d43 (patch) | |
tree | 645add3e06e667a2f3eb25784e230af2c645b48c /security/tcp_wrapper | |
parent | 5d82809e61bbfa68a571b3f71b2360b38b165ec9 (diff) |
Create share data block to resolve references
Notes
Notes:
svn path=/head/; revision=2657
Diffstat (limited to 'security/tcp_wrapper')
-rw-r--r-- | security/tcp_wrapper/files/patch-aa | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/security/tcp_wrapper/files/patch-aa b/security/tcp_wrapper/files/patch-aa index af718fe13eca..fc5397bdb1e4 100644 --- a/security/tcp_wrapper/files/patch-aa +++ b/security/tcp_wrapper/files/patch-aa @@ -1,5 +1,5 @@ *** Makefile.orig Mon Jan 30 21:51:43 1995 ---- Makefile Thu Jan 25 05:46:39 1996 +--- Makefile Thu Jan 25 06:51:54 1996 *************** *** 46,52 **** #REAL_DAEMON_DIR=/usr/sbin @@ -142,16 +142,17 @@ # Protection against weird shells or weird make programs. SHELL = /bin/sh -- .c.o:; $(CC) $(CFLAGS) -c $*.c +! .c.o:; $(CC) $(CFLAGS) -c $*.c ! CFLAGS = -O -DFACILITY=$(FACILITY) $(ACCESS) $(PARANOID) $(NETGROUP) \ $(BUGS) $(SYSTYPE) $(AUTH) $(UMASK) \ -DREAL_DAEMON_DIR=\"$(REAL_DAEMON_DIR)\" $(STYLE) $(KILL_OPT) \ -DSEVERITY=$(SEVERITY) -DRFC931_TIMEOUT=$(RFC931_TIMEOUT) \ ---- 576,588 ---- +--- 576,589 ---- # Protection against weird shells or weird make programs. SHELL = /bin/sh +! PREFIX = /usr/local ! .SUFFIXES: .c .so .o ! @@ -173,7 +174,7 @@ # Invalidate all object files when the compiler options (CFLAGS) have changed. ---- 607,636 ---- +--- 608,637 ---- refuse.c tcpdchk.8 setenv.c inetcf.c inetcf.h scaffold.c \ scaffold.h tcpdmatch.8 README.NIS @@ -233,13 +234,13 @@ shar: $(KIT) @shar $(KIT) ---- 647,677 ---- +--- 648,678 ---- ar $(ARFLAGS) $(LIB) $(LIB_OBJ) -$(RANLIB) $(LIB) -! $(SLIB): $(LIB_OBJ:S/o$/so/g) +! $(SLIB): $(LIB_OBJ:S/o$/so/g) shdata.so ! rm -f $(SLIB) -! ld -Bshareable -o $(SLIB) $(LIB_OBJ:S/o$/so/g) +! ld -Bshareable -o $(SLIB) $(LIB_OBJ:S/o$/so/g) shdata.so ! ! tcpd: tcpd.o $(SLIB) ! $(CC) $(CFLAGS) -o $@ tcpd.o -L. -lwrap $(LIBS) @@ -265,3 +266,10 @@ shar: $(KIT) @shar $(KIT) +*** /dev/null Thu Jan 25 06:52:04 1996 +--- shdata.c Thu Jan 25 06:54:34 1996 +*************** +*** 0 **** +--- 1,2 ---- ++ int allow_severity; ++ int deny_severity; |