svn commit: r316063 - in head: etc/mtree lib/libevent lib/libsqlite3

Adrian Chadd adrian at FreeBSD.org
Mon Mar 27 22:34:45 UTC 2017


Author: adrian
Date: Mon Mar 27 22:34:43 2017
New Revision: 316063
URL: https://svnweb.freebsd.org/changeset/base/316063

Log:
  [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

Modified:
  head/etc/mtree/BSD.usr.dist
  head/lib/libevent/Makefile
  head/lib/libsqlite3/Makefile

Modified: head/etc/mtree/BSD.usr.dist
==============================================================================
--- head/etc/mtree/BSD.usr.dist	Mon Mar 27 22:00:03 2017	(r316062)
+++ head/etc/mtree/BSD.usr.dist	Mon Mar 27 22:34:43 2017	(r316063)
@@ -11,6 +11,10 @@
         private
             bsdstat
             ..
+            event
+            ..
+            sqlite3
+            ..
             ucl
             ..
         ..

Modified: head/lib/libevent/Makefile
==============================================================================
--- head/lib/libevent/Makefile	Mon Mar 27 22:00:03 2017	(r316062)
+++ head/lib/libevent/Makefile	Mon Mar 27 22:34:43 2017	(r316063)
@@ -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 \

Modified: head/lib/libsqlite3/Makefile
==============================================================================
--- head/lib/libsqlite3/Makefile	Mon Mar 27 22:00:03 2017	(r316062)
+++ head/lib/libsqlite3/Makefile	Mon Mar 27 22:34:43 2017	(r316063)
@@ -7,6 +7,7 @@ SHLIB_MAJOR?=	0
 LIBADD+=	pthread
 
 SRCS=	sqlite3.c
+INCS=	sqlite3.h sqlite3ext.h
 
 SQLITE=	${SRCTOP}/contrib/sqlite3
 .PATH:	${SQLITE}


More information about the svn-src-head mailing list