Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Oct 2014 23:14:23 +0000 (UTC)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r273567 - in head: etc/mtree lib lib/libxo
Message-ID:  <201410232314.s9NNENYh022661@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marcel
Date: Thu Oct 23 23:14:23 2014
New Revision: 273567
URL: https://svnweb.freebsd.org/changeset/base/273567

Log:
  Hook libxo to the build.
  
  Sponsored by:	Juniper Networks, Inc.

Added:
  head/lib/libxo/
  head/lib/libxo/Makefile   (contents, props changed)
Modified:
  head/etc/mtree/BSD.include.dist
  head/lib/Makefile

Modified: head/etc/mtree/BSD.include.dist
==============================================================================
--- head/etc/mtree/BSD.include.dist	Thu Oct 23 23:12:30 2014	(r273566)
+++ head/etc/mtree/BSD.include.dist	Thu Oct 23 23:14:23 2014	(r273567)
@@ -249,6 +249,8 @@
     ..
     libmilter
     ..
+    libxo
+    ..
     lzma
     ..
     machine

Modified: head/lib/Makefile
==============================================================================
--- head/lib/Makefile	Thu Oct 23 23:12:30 2014	(r273566)
+++ head/lib/Makefile	Thu Oct 23 23:14:23 2014	(r273567)
@@ -106,6 +106,7 @@ SUBDIR=	${SUBDIR_ORDERED} \
 	${_libvgl} \
 	${_libvmmapi} \
 	libwrap \
+	libxo \
 	liby \
 	${_libypclnt} \
 	libz \

Added: head/lib/libxo/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lib/libxo/Makefile	Thu Oct 23 23:14:23 2014	(r273567)
@@ -0,0 +1,36 @@
+# $FreeBSD$
+
+LIBXO=	${.CURDIR:H:H}/contrib/libxo
+
+.PATH:	${LIBXO}/libxo
+
+LIB=	xo
+SHLIB_MAJOR=0
+
+SRCS=	libxo.c
+
+CFLAGS+=-I${LIBXO}/libxo
+
+INCS=	xo.h
+INCSDIR=${INCLUDEDIR}/libxo
+
+MAN+=	libxo.3
+MAN+=	xo_attr.3 \
+	xo_create.3 \
+	xo_emit.3 \
+	xo_err.3 \
+	xo_finish.3 \
+	xo_flush.3 \
+	xo_no_setlocale.3 \
+	xo_open_container.3 \
+	xo_open_list.3 \
+	xo_parse_args.3 \
+	xo_set_allocator.3 \
+	xo_set_flags.3 \
+	xo_set_info.3 \
+	xo_set_options.3 \
+	xo_set_style.3 \
+	xo_set_writer.3
+MAN+=	xo_format.5
+
+.include <bsd.lib.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410232314.s9NNENYh022661>