svn commit: r428269 - head/sysutils/goaccess

Adam Weinberger adamw at FreeBSD.org
Sat Dec 10 03:24:51 UTC 2016


Author: adamw
Date: Sat Dec 10 03:24:50 2016
New Revision: 428269
URL: https://svnweb.freebsd.org/changeset/ports/428269

Log:
  Fix the build when either of the tokyocabinet knobs are enabled.
  Previously, the tokyocabinet dependency was never actually installed.
  
  Approved by:	just-fix-it

Modified:
  head/sysutils/goaccess/Makefile

Modified: head/sysutils/goaccess/Makefile
==============================================================================
--- head/sysutils/goaccess/Makefile	Sat Dec 10 03:22:40 2016	(r428268)
+++ head/sysutils/goaccess/Makefile	Sat Dec 10 03:24:50 2016	(r428269)
@@ -39,7 +39,8 @@ TOKYOCABINET_BTREE_DESC=	Storage using o
 TOKYOCABINET_MHASH_DESC=	Storage using on-memory hash database
 TOKYOCABINET_BTREE_CONFIGURE_ON=	--enable-tcb=btree
 TOKYOCABINET_MHASH_CONFIGURE_ON=	--enable-tcb=memhash
-TOKYOCABINET_LIB_DEPENDS=	libtokyocabinet.so:databases/tokyocabinet
+TOKYOCABINET_BTREE_LIB_DEPENDS=	libtokyocabinet.so:databases/tokyocabinet
+TOKYOCABINET_HASH_LIB_DEPENDS=	libtokyocabinet.so:databases/tokyocabinet
 
 do-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}


More information about the svn-ports-all mailing list