1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/security/identify/files/patch-aa
Nick Sayer fb4a5e4afa Add "identify" daemon wrapper. Allows one to add ident lookup and logging
to arbitrary daemons (like telnetd or fingerd).
1999-04-02 19:07:30 +00:00

17 lines
406 B
Plaintext

--- Makefile.orig Mon Jul 20 09:01:27 1992
+++ Makefile Fri Apr 2 10:50:40 1999
@@ -1,2 +1,11 @@
-identify: identify.c
- $(CC) -o identify identify.c -lauthuser
+
+CFLAGS+= -I/usr/local/include -L/usr/local/lib
+
+all: identify
+
+install: identify
+ install identify ${PREFIX}/libexec
+ install README ${PREFIX}/share/doc/identify
+
+identify: identify.o
+ $(CC) $(CFLAGS) -o identify identify.o -lident