diff options
author | Scott Mace <smace@FreeBSD.org> | 1998-09-15 03:56:19 +0000 |
---|---|---|
committer | Scott Mace <smace@FreeBSD.org> | 1998-09-15 03:56:19 +0000 |
commit | 746979cfa9ef05d83ffed782d800094cdac53d58 (patch) | |
tree | 5410e822fe779722ffa6578d2da08b33e6624f63 | |
parent | make ELF conversion comply with standard (diff) |
Make elf conversion comply with standard
round up shlib version to 8
-rw-r--r-- | security/tcp_wrapper/files/patch-aa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/tcp_wrapper/files/patch-aa b/security/tcp_wrapper/files/patch-aa index 968dc5382ee8..d0d21b6e1934 100644 --- a/security/tcp_wrapper/files/patch-aa +++ b/security/tcp_wrapper/files/patch-aa @@ -1,5 +1,5 @@ *** Makefile.orig Fri Mar 21 12:27:21 1997 ---- Makefile Mon Sep 14 15:54:25 1998 +--- Makefile Mon Sep 14 22:41:29 1998 *************** *** 47,53 **** #REAL_DAEMON_DIR=/usr/sbin @@ -196,7 +196,7 @@ scaffold.h tcpdmatch.8 README.NIS ! LIB = libwrap.a -! SLIB = libwrap.so.7 +! SLIB = libwrap.so.8 ! ! all other: config-check $(LIB) $(SLIB) tcpd tcpdmatch try-from safe_finger tcpdchk ! @@ -258,7 +258,7 @@ ! $(SLIB): $(LIB_OBJ:S/o$/so/g) shdata.so ! rm -f $(SLIB) -! $(CC) -o $(SLIB) -shared -Wl,-rpath,${PREFIX}/lib -Wl,-soname,$(SLIB) $(LIB_OBJ:S/o$/so/g) shdata.so +! $(CC) -o $(SLIB) -shared -Wl,-soname,$(SLIB) $(LIB_OBJ:S/o$/so/g) shdata.so ! ln -sf $(SLIB) `echo $(SLIB) | sed 's/\.so.*$$/.so/'` ! ! tcpd: tcpd.o $(SLIB) |