[private] add libevent1 and sqlite3 include files for our private libraries.

This, like including ucl private headers, is useful for writing new base
system tools.  Yes, anyone using these libraries shouldn't assume ABI
compatibility.

Reviewed by:	bdrewery, bapt
Differential Revision:	https://reviews.freebsd.org/D10123
This commit is contained in:
Adrian Chadd 2017-03-27 22:34:43 +00:00
parent 74308c6816
commit f906f2025b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=316063
3 changed files with 6 additions and 1 deletions

View File

@ -11,6 +11,10 @@
private
bsdstat
..
event
..
sqlite3
..
ucl
..
..

View File

@ -10,7 +10,7 @@ SHLIB_MAJOR= 1
PRIVATELIB=
SRCS= buffer.c evbuffer.c event.c kqueue.c log.c poll.c select.c signal.c
HDRS= event.h
INCS= event.h
CFLAGS+= -I${.CURDIR} \
-DHAVE_CLOCK_GETTIME \

View File

@ -7,6 +7,7 @@ SHLIB_MAJOR?= 0
LIBADD+= pthread
SRCS= sqlite3.c
INCS= sqlite3.h sqlite3ext.h
SQLITE= ${SRCTOP}/contrib/sqlite3
.PATH: ${SQLITE}