[Midnightbsd-cvs] src [10448] trunk/lib/libunbound: add libunbound
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Wed Jun 6 19:34:45 EDT 2018
Revision: 10448
http://svnweb.midnightbsd.org/src/?rev=10448
Author: laffer1
Date: 2018-06-06 19:34:44 -0400 (Wed, 06 Jun 2018)
Log Message:
-----------
add libunbound
Added Paths:
-----------
trunk/lib/libunbound/
trunk/lib/libunbound/Makefile
Added: trunk/lib/libunbound/Makefile
===================================================================
--- trunk/lib/libunbound/Makefile (rev 0)
+++ trunk/lib/libunbound/Makefile 2018-06-06 23:34:44 UTC (rev 10448)
@@ -0,0 +1,44 @@
+# $MidnightBSD$
+# $FreeBSD: stable/10/lib/libunbound/Makefile 313601 2017-02-11 06:33:46Z ngie $
+
+# Vendor sources and generated files
+LDNSDIR= ${SRCTOP}/contrib/ldns
+UNBOUNDDIR= ${SRCTOP}/contrib/unbound
+
+# Hold my beer and watch this
+.PATH: ${UNBOUNDDIR} ${UNBOUNDDIR}/compat ${UNBOUNDDIR}/dns64 ${UNBOUNDDIR}/iterator ${UNBOUNDDIR}/sldns ${UNBOUNDDIR}/libunbound ${UNBOUNDDIR}/services ${UNBOUNDDIR}/services/cache ${UNBOUNDDIR}/util ${UNBOUNDDIR}/util/data ${UNBOUNDDIR}/util/storage ${UNBOUNDDIR}/validator
+
+LIB= unbound
+PRIVATELIB=
+
+CFLAGS= -I${UNBOUNDDIR} -I${LDNSDIR} -I${.OBJDIR}
+
+SRCS= alloc.c as112.c autotrust.c config_file.c configlexer.l configparser.y \
+ context.c dname.c dns.c dns64.c dnstree.c fptr_wlist.c infra.c \
+ iter_delegpt.c iter_donotq.c iter_fwd.c iter_hints.c iter_priv.c \
+ iter_resptype.c iter_scrub.c iter_utils.c iterator.c keyraw.c \
+ libunbound.c libworker.c listen_dnsport.c localzone.c locks.c log.c \
+ lookup3.c lruhash.c mesh.c mini_event.c modstack.c module.c \
+ msgencode.c msgparse.c msgreply.c net_help.c netevent.c \
+ outbound_list.c outside_network.c packed_rrset.c parse.c \
+ parseutil.c random.c rbtree.c reallocarray.c regional.c rrdef.c \
+ rrset.c rtt.c sbuffer.c slabhash.c str2wire.c timehist.c tube.c \
+ val_anchor.c val_kcache.c val_kentry.c val_neg.c val_nsec.c \
+ val_nsec3.c val_secalgo.c val_sigcrypt.c val_utils.c validator.c \
+ winsock_event.c wire2str.c
+
+WARNS?= 3
+
+DPADD+= ${LIBSSL} ${LIBCRYPTO} ${LIBPTHREAD}
+LDADD+= -lssl -lcrypto -lpthread
+
+# Misnamed file in upstream source
+configlexer.l: configlexer.lex
+ cp -p ${.ALLSRC} ${.TARGET}
+CLEANFILES+= configlexer.l
+
+# Symbol prefix for lex and yacc
+LFLAGS= -Pub_c_
+YFLAGS= -pub_c_ -d
+
+.include <bsd.lib.mk>
Property changes on: trunk/lib/libunbound/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list