2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = 1.0 foreign
|
|
|
|
|
2007-10-07 17:14:51 +05:30
|
|
|
DEFS =
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-12-26 14:48:45 +05:30
|
|
|
noinst_LTLIBRARIES = libshadow.la
|
2007-10-07 17:14:51 +05:30
|
|
|
|
|
|
|
libshadow_la_LDFLAGS = -version-info 0:0:0
|
|
|
|
|
|
|
|
libshadow_la_SOURCES = \
|
|
|
|
commonio.c \
|
|
|
|
commonio.h \
|
|
|
|
defines.h \
|
|
|
|
encrypt.c \
|
2007-10-07 17:16:52 +05:30
|
|
|
exitcodes.h \
|
2007-10-07 17:14:51 +05:30
|
|
|
faillog.h \
|
2011-02-17 02:02:16 +05:30
|
|
|
fields.c \
|
2007-10-07 17:14:51 +05:30
|
|
|
fputsx.c \
|
|
|
|
getdef.c \
|
|
|
|
getdef.h \
|
2009-03-22 01:54:37 +05:30
|
|
|
get_gid.c \
|
2009-04-11 04:05:26 +05:30
|
|
|
getlong.c \
|
2009-04-25 04:58:15 +05:30
|
|
|
get_pid.c \
|
2009-03-22 01:54:37 +05:30
|
|
|
get_uid.c \
|
2009-04-25 04:58:15 +05:30
|
|
|
getulong.c \
|
2007-10-07 17:14:51 +05:30
|
|
|
groupio.c \
|
2007-11-19 04:50:02 +05:30
|
|
|
groupmem.c \
|
2007-10-07 17:14:51 +05:30
|
|
|
groupio.h \
|
|
|
|
gshadow.c \
|
|
|
|
lockpw.c \
|
2007-10-07 17:15:23 +05:30
|
|
|
nscd.c \
|
|
|
|
nscd.h \
|
2007-10-07 17:14:51 +05:30
|
|
|
pam_defs.h \
|
|
|
|
port.c \
|
|
|
|
port.h \
|
|
|
|
prototypes.h \
|
|
|
|
pwauth.c \
|
|
|
|
pwauth.h \
|
|
|
|
pwio.c \
|
|
|
|
pwio.h \
|
2007-11-19 04:50:02 +05:30
|
|
|
pwmem.c \
|
2011-12-10 03:00:19 +05:30
|
|
|
semanage.c \
|
2007-10-07 17:14:51 +05:30
|
|
|
sgetgrent.c \
|
|
|
|
sgetpwent.c \
|
2009-04-11 04:05:43 +05:30
|
|
|
sgetspent.c \
|
2007-10-07 17:14:51 +05:30
|
|
|
sgroupio.c \
|
|
|
|
sgroupio.h\
|
|
|
|
shadow.c \
|
|
|
|
shadowio.c \
|
|
|
|
shadowio.h \
|
2007-11-19 04:50:02 +05:30
|
|
|
shadowmem.c \
|
2011-08-20 19:03:38 +05:30
|
|
|
spawn.c \
|
2007-10-07 17:14:51 +05:30
|
|
|
utent.c
|
|
|
|
|
2010-01-30 Paweł Hajdan, Jr. <phajdan.jr@gentoo.org>
* NEWS: Add support for TCB.
* lib/tcbfuncs.h, lib/tcbfuncs.c, lib/Makefile.am: New library to
support TCB.
* lib/prototypes, libmisc/copydir.c (remove_tree): Add boolean
parameter remove_root.
* configure.in: Add conditional WITH_TCB.
* src/userdel.c, src/usermod.c: Add support for TCB. Update call to
remove_tree().
* src/pwconv.c, src/pwunconv.c: Should not be used with TCB enabled.
* src/vipw.c: Add support for TCB. Update call to remove_tree().
* src/useradd.c: Add support for TCB. Open the shadow file outside
of open_files().
* src/chage.c: Add support for TCB.
* src/Makefile.am: Install passwd sgid shadow when TCB is enabled.
* lib/getdefs.c, man/vipw.8.xml, man/login.defs.5.xml,
man/login.defs/TCB_AUTH_GROUP.xml, man/login.defs/USE_TCB.xml,
man/login.defs/TCB_SYMLINKS.xml, man/generate_mans.mak,
man/generate_mans.deps, man/Makefile.am: New configuration
parameters: TCB_AUTH_GROUP, TCB_SYMLINKS, USE_TCB.
* lib/shadowio.c, lib/commonio.c: Add support for TCB.
2010-03-04 23:41:13 +05:30
|
|
|
if WITH_TCB
|
|
|
|
libshadow_la_SOURCES += tcbfuncs.c tcbfuncs.h
|
|
|
|
endif
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
# These files are unneeded for some reason, listed in
|
|
|
|
# order of appearance:
|
|
|
|
#
|
|
|
|
# sources for dbm support (not yet used)
|
|
|
|
|
2007-10-07 17:14:51 +05:30
|
|
|
EXTRA_DIST = \
|
|
|
|
.indent.pro \
|
2007-10-07 17:15:58 +05:30
|
|
|
gshadow_.h
|