diff options
author | Omar Polo <op@omarpolo.com> | 2023-08-23 20:18:59 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-08-23 20:18:59 +0000 |
commit | 4d9d3093d48025a1a66c125f7878a094cf2c9d10 (patch) | |
tree | b41280c9e32b33a7dc380d6abfbca08fded10554 /Makefile | |
parent | cedef5b09c13d8fac119a7ee5595ee253c2a37b4 (diff) |
resurrect landlock support
this time targetting ABI level 3; partially based on how claudio@
handled it in rpki-client. Fun how this bit of code has come full
circle (gmid inspired what I wrote for got, which inspired what was
written for rpki-client, which has come back.)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -43,7 +43,7 @@ GG_OBJS = ${GG_SRCS:.c=.o} ${COBJS} TITAN_SRCS = titan.c iri.c log.c utf8.c TITAN_OBJS = ${TITAN_SRCS:.c=.o} ${COBJS} -SRCS = gmid.h log.h parse.y proc.h \ +SRCS = gmid.h landlock_shim.h log.h parse.y proc.h \ ${GMID_SRCS} ${GEMEXP_SRCS} ${GG_SRCS} ${TITAN_SRCS} DISTNAME = gmid-${VERSION} @@ -130,9 +130,9 @@ lint: DISTFILES = .cirrus.yml .dockerignore .gitignore ChangeLog LICENSE \ Makefile README.md config.c configure configure.local.example \ crypto.c dirs.c fcgi.c ge.c gemexp.1 gg.1 gg.c gmid.8 gmid.c \ - gmid.conf.5 gmid.h iri.c iri.h log.c log.h logger.c mime.c \ - parse.y proc.c proc.h proxy.c puny.c sandbox.c server.c \ - titan.1 titan.c utf8.c utils.c y.tab.c + gmid.conf.5 gmid.h iri.c iri.h landlock_shim.h log.c log.h \ + logger.c mime.c parse.y proc.c proc.h proxy.c puny.c \ + sandbox.c server.c titan.1 titan.c utf8.c utils.c y.tab.c release: sed -i -e '/^RELEASE=/s/no/yes' configure |