diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-21 17:58:46 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-21 17:58:46 +0000 |
commit | d1d7b874b3324da74716abb8fb820e7c3236b6d9 (patch) | |
tree | 38d13958f6f7d19c8c7c02e033537fb4cc0951d1 /usr.bin/sudo/Makefile.in | |
parent | ba487736f65afcf076779b8dd651785ea0e3db25 (diff) |
A few updates from the sudo developement tree:
- Add bsd authentication support (currently disabled)
- Always check setenv() return value
- Fix umask disabling
Diffstat (limited to 'usr.bin/sudo/Makefile.in')
-rw-r--r-- | usr.bin/sudo/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/sudo/Makefile.in b/usr.bin/sudo/Makefile.in index e9c3735a730..a3138b8e543 100644 --- a/usr.bin/sudo/Makefile.in +++ b/usr.bin/sudo/Makefile.in @@ -115,8 +115,8 @@ SRCS = alloc.c alloca.c check.c defaults.c fileops.c find_path.c fnmatch.c \ strerror.c sudo.c sudo.tab.c sudo_setenv.c testsudoers.c tgetpass.c \ utime.c visudo.c $(AUTH_SRCS) -AUTH_SRCS = auth/afs.c auth/aix_auth.c auth/dce.c auth/fwtk.c auth/kerb4.c \ - auth/kerb5.c auth/pam.c auth/passwd.c auth/rfc1938.c \ +AUTH_SRCS = auth/afs.c auth/aix_auth.c auth/bsdauth.c auth/dce.c auth/fwtk.c \ + auth/kerb4.c auth/kerb5.c auth/pam.c auth/passwd.c auth/rfc1938.c \ auth/secureware.c auth/securid.c auth/sia.c auth/sudo_auth.c HDRS = compat.h defaults.h ins_2001.h ins_classic.h ins_csops.h ins_goons.h \ @@ -230,6 +230,8 @@ afs.o: $(authdir)/afs.c $(AUTHDEP) $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(OPTIONS) $(authdir)/afs.c aix_auth.o: $(authdir)/aix_auth.c $(AUTHDEP) $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(OPTIONS) $(authdir)/aix_auth.c +bsdauth.o: $(authdir)/bsdauth.c $(AUTHDEP) + $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(OPTIONS) $(authdir)/bsdauth.c dce.o: $(authdir)/dce.c $(AUTHDEP) $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(OPTIONS) $(authdir)/dce.c fwtk.o: $(authdir)/fwtk.c $(AUTHDEP) |