Blame


1 dd038bc6 2021-09-21 thomas.ad noinst_LIBRARIES = libopenbsd-compat.a
2 dd038bc6 2021-09-21 thomas.ad
3 dd038bc6 2021-09-21 thomas.ad AM_CPPFLAGS += -DGOT_VERSION='"@VERSION@"' \
4 dd038bc6 2021-09-21 thomas.ad -DGOT_VERSION_NUMBER='"@VERSION@"' \
5 0130fe58 2021-09-21 thomas.ad -DGOT_LIBEXECDIR="${bindir}" \
6 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir) \
7 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir)/compat \
8 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir)/lib \
9 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir)/include \
10 dd038bc6 2021-09-21 thomas.ad -I.
11 dd038bc6 2021-09-21 thomas.ad
12 dd038bc6 2021-09-21 thomas.ad libopenbsd_compat_a_SOURCES = \
13 dd038bc6 2021-09-21 thomas.ad asprintf.c \
14 dd038bc6 2021-09-21 thomas.ad base64.c \
15 dd038bc6 2021-09-21 thomas.ad closefrom.c \
16 dd038bc6 2021-09-21 thomas.ad fmt_scaled.c \
17 dd038bc6 2021-09-21 thomas.ad freezero.c \
18 dd038bc6 2021-09-21 thomas.ad getdtablecount.c \
19 dd038bc6 2021-09-21 thomas.ad getopt.c \
20 dd038bc6 2021-09-21 thomas.ad getprogname.c \
21 dd038bc6 2021-09-21 thomas.ad imsg-buffer.c \
22 dd038bc6 2021-09-21 thomas.ad imsg.c \
23 dd038bc6 2021-09-21 thomas.ad merge.c \
24 dd038bc6 2021-09-21 thomas.ad reallocarray.c \
25 dd038bc6 2021-09-21 thomas.ad recallocarray.c \
26 dd038bc6 2021-09-21 thomas.ad strlcat.c \
27 dd038bc6 2021-09-21 thomas.ad strlcpy.c \
28 dd038bc6 2021-09-21 thomas.ad strndup.c \
29 dd038bc6 2021-09-21 thomas.ad strnlen.c \
30 dd038bc6 2021-09-21 thomas.ad strsep.c \
31 dd038bc6 2021-09-21 thomas.ad strtonum.c \
32 dd514345 2021-09-21 thomas.ad imsg.h \
33 dd514345 2021-09-21 thomas.ad queue.h \
34 dd514345 2021-09-21 thomas.ad tree.h
35 92a9e85d 2021-09-24 thomas if HOST_FREEBSD
36 92a9e85d 2021-09-24 thomas else
37 92a9e85d 2021-09-24 thomas libopenbsd_compat_a_SOURCES += uuid.c
38 92a9e85d 2021-09-24 thomas endif
39 dd038bc6 2021-09-21 thomas.ad
40 2c6298d5 2021-09-24 thomas if HAVE_LINUX_LANDLOCK
41 2c6298d5 2021-09-24 thomas libopenbsd_compat_a_SOURCES += landlock.c
42 2c6298d5 2021-09-24 thomas endif
43 2c6298d5 2021-09-24 thomas
44 dd038bc6 2021-09-21 thomas.ad EXTRA_DIST = \
45 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/include/got_compat.h \
46 dd038bc6 2021-09-21 thomas.ad imsg.h \
47 dd038bc6 2021-09-21 thomas.ad queue.h \
48 c0faa645 2021-09-21 thomas.ad tree.h