logo

oasis

Own branch of Oasis Linux (upstream: <https://git.sr.ht/~mcf/oasis/>) git clone https://anongit.hacktivis.me/git/oasis.git
commit: ef3322fdb9856195f53bdcde677ba113625b21e4
parent 464b2b2bbc45356cfa44bbf6804cb26992913150
Author: Michael Forney <mforney@mforney.org>
Date:   Wed,  4 Dec 2019 01:11:01 -0800

openntpd: Build against libtls-bearssl

Diffstat:

Mpkg/openntpd/gen.lua14++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/pkg/openntpd/gen.lua b/pkg/openntpd/gen.lua @@ -4,7 +4,11 @@ cflags{ '-I $srcdir/src', '-I $srcdir/include', '-I pkg/openbsd/include', - '-I $builddir/pkg/libressl/include', + '-I $builddir/pkg/libtls-bearssl/include', +} + +pkg.deps = { + 'pkg/libtls-bearssl/headers', } yacc('parse', '$srcdir/src/parse.y') @@ -34,11 +38,9 @@ exe('ntpd', [[ setproctitle.c ) $outdir/parse.tab.c - $builddir/pkg/( - libressl/(libcrypto.a.d libtls.a.d) - openbsd/libbsd.a.d - ) -]], {'pkg/libressl/headers'}) + $builddir/pkg/libtls-bearssl/libtls.a.d + $builddir/pkg/openbsd/libbsd.a +]]) file('bin/ntpd', '755', '$outdir/ntpd') sym('bin/ntpctl', 'ntpd') man{'src/ntpd.conf.5', 'src/ntpd.8', 'src/ntpctl.8'}