diff options
author | jkh <jkh@FreeBSD.org> | 1998-10-07 17:32:49 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-10-07 17:32:49 +0000 |
commit | 9734dc69e1a92b5862e7e7d3410dad1432024046 (patch) | |
tree | 6fb75f6d8a008b5217ae0141e9142a649c507186 /lib/libutil/Makefile | |
parent | 8f4fb55b8275d59a76998478e5bf4d5d79074835 (diff) | |
download | FreeBSD-src-9734dc69e1a92b5862e7e7d3410dad1432024046.zip FreeBSD-src-9734dc69e1a92b5862e7e7d3410dad1432024046.tar.gz |
Add a simple mechanism for reading property lists from files (which
I'll convert sysinstall to use shortly) and a simple call which uses
this mechanism to implement an /etc/auth.conf file. I'll let Mark Murray
handle the format and checkin of the sample auth.conf file.
Reviewed by: markm
Diffstat (limited to 'lib/libutil/Makefile')
-rw-r--r-- | lib/libutil/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libutil/Makefile b/lib/libutil/Makefile index 001faf0..47b728a 100644 --- a/lib/libutil/Makefile +++ b/lib/libutil/Makefile @@ -7,7 +7,7 @@ CFLAGS+=-Wall -DLIBC_SCCS -I${.CURDIR} -I${.CURDIR}/../../sys #CFLAGS+=LOGIN_CAP_AUTH SRCS= login.c login_tty.c logout.c logwtmp.c pty.c setproctitle.c \ login_cap.c login_class.c login_auth.c login_times.c login_ok.c \ - _secure_path.c uucplock.c + _secure_path.c uucplock.c property.c auth.c MAN3+= login.3 login_auth.3 login_tty.3 logout.3 logwtmp.3 pty.3 \ setproctitle.3 login_cap.3 login_class.3 login_times.3 login_ok.3 \ _secure_path.3 uucplock.3 |