e762ab8b54
Recently, we removed support for 'struct utmpx'. We did it because utmp and utmpx are identical, and while POSIX specifies utmpx (and not utmp), GNU/Linux documentation seems to favor utmp. Also, this project defaulted to utmp, so changing to utmpx would be more dangerous than keeping old defaults, even if it's supposed to be the same. Now, I just found more code that didn't make much sense: lib/utent.c provides definitions for getutent(3) and friends in case the system doesn't provide them, but we don't provide prototypes for those definitions, so code using the functions would have never compiled. Let's just remove these definitions as dead code. Fixes:3be7b9d75a
("Remove traces of utmpx") Fixes:170b76cdd1
("Disable utmpx permanently") Cc: Serge Hallyn <serge@hallyn.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
83 lines
1.2 KiB
Makefile
83 lines
1.2 KiB
Makefile
|
|
AUTOMAKE_OPTIONS = 1.0 foreign
|
|
|
|
DEFS =
|
|
|
|
noinst_LTLIBRARIES = libshadow.la
|
|
|
|
libshadow_la_CPPFLAGS = $(ECONF_CPPFLAGS)
|
|
if HAVE_VENDORDIR
|
|
libshadow_la_CPPFLAGS += -DVENDORDIR=\"$(VENDORDIR)\"
|
|
endif
|
|
|
|
libshadow_la_CPPFLAGS += -I$(top_srcdir)
|
|
libshadow_la_CFLAGS = $(LIBBSD_CFLAGS)
|
|
|
|
libshadow_la_SOURCES = \
|
|
commonio.c \
|
|
commonio.h \
|
|
defines.h \
|
|
encrypt.c \
|
|
exitcodes.h \
|
|
faillog.h \
|
|
fields.c \
|
|
fputsx.c \
|
|
getdef.c \
|
|
getdef.h \
|
|
get_gid.c \
|
|
getlong.c \
|
|
get_pid.c \
|
|
get_uid.c \
|
|
getulong.c \
|
|
groupio.c \
|
|
groupmem.c \
|
|
groupio.h \
|
|
gshadow.c \
|
|
lockpw.c \
|
|
nss.c \
|
|
nscd.c \
|
|
nscd.h \
|
|
shadowlog.c \
|
|
shadowlog.h \
|
|
shadowlog_internal.h \
|
|
sssd.c \
|
|
sssd.h \
|
|
pam_defs.h \
|
|
port.c \
|
|
port.h \
|
|
prototypes.h \
|
|
pwauth.c \
|
|
pwauth.h \
|
|
pwio.c \
|
|
pwio.h \
|
|
pwmem.c \
|
|
run_part.h \
|
|
run_part.c \
|
|
subordinateio.h \
|
|
subordinateio.c \
|
|
selinux.c \
|
|
semanage.c \
|
|
sgetgrent.c \
|
|
sgetpwent.c \
|
|
sgetspent.c \
|
|
sgroupio.c \
|
|
sgroupio.h\
|
|
shadow.c \
|
|
shadowio.c \
|
|
shadowio.h \
|
|
shadowmem.c \
|
|
spawn.c
|
|
|
|
if WITH_TCB
|
|
libshadow_la_SOURCES += tcbfuncs.c tcbfuncs.h
|
|
endif
|
|
|
|
# These files are unneeded for some reason, listed in
|
|
# order of appearance:
|
|
#
|
|
# sources for dbm support (not yet used)
|
|
|
|
EXTRA_DIST = \
|
|
.indent.pro \
|
|
gshadow_.h
|