1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
compatincludedir = ${pkgincludedir}/compat
compatinclude_HEADERS = \
lib/compat/compat.h \
lib/compat/getutent.h \
lib/compat/glib.h \
lib/compat/lfs.h \
lib/compat/pio.h \
lib/compat/socket.h \
lib/compat/string.h \
lib/compat/time.h \
lib/compat/openssl_support.h
compat_sources = \
lib/compat/getutent.c \
lib/compat/inet_aton.c \
lib/compat/memrchr.c \
lib/compat/pio.c \
lib/compat/strcasestr.c \
lib/compat/strtok_r.c \
lib/compat/time.c \
lib/compat/openssl_support.c
include lib/compat/tests/Makefile.am
|