aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorPawel Jakub Dawidek <pjd@FreeBSD.org>2013-12-01 09:41:06 +0000
committerPawel Jakub Dawidek <pjd@FreeBSD.org>2013-12-01 09:41:06 +0000
commit2f02600abfddfc4e9f20dd384a2e729b451e16bd (patch)
tree7e9ac081915c7b31efd36618ed8573de36a74750 /Makefile.inc1
parentc4dfe4abe23dd2481f0ab9125bef4e06bde37a8f (diff)
downloadsrc-2f02600abfddfc4e9f20dd384a2e729b451e16bd.tar.gz
src-2f02600abfddfc4e9f20dd384a2e729b451e16bd.zip
Move my simple logging API to a separate library. It is now already used
by hastctl(8), hastd(8) and auditdistd(8) and will soon be also used by casperd(8) and its services. There is no documentation and pjdlog.h header file is not installed in /usr/include/ to keep it private. Unfortunately we don't have /lib/private/ at this point, only /usr/lib/private/, so the library is installed in /lib/. Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=258791
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc14
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index b9c65e93842e..1fd5aa31e6d1 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1505,7 +1505,7 @@ _prebuild_libs= ${_kerberos5_lib_libasn1} \
lib/libradius lib/libsbuf lib/libtacplus \
${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
${_cddl_lib_libzfs_core} \
- lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
+ lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
${_secure_lib_libcrypto} ${_lib_libldns} \
${_secure_lib_libssh} ${_secure_lib_libssl}
@@ -1521,6 +1521,8 @@ _lib_libthr= lib/libthr
_ofed_lib= contrib/ofed/usr.lib/
.endif
+lib/libpjdlog__L: lib/libutil__L
+
_generic_libs= ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
.for _DIR in ${LOCAL_LIB_DIRS}
.if exists(${.CURDIR}/${_DIR}/Makefile)