diff options
author | Cy Schubert <cy@FreeBSD.org> | 2016-08-07 03:26:35 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2016-08-07 03:26:35 +0000 |
commit | 88438c56e0842583ad918be03a6f4d841a32e399 (patch) | |
tree | 63823e8ed2dfeef67c8cedecd48bc4726a7ee636 | |
parent | Fix issues identified by Mk/Scripts/qa.sh. (diff) |
Fix issues identified by Mk/Scripts/qa.sh.
-rw-r--r-- | sysutils/cfengine38/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sysutils/cfengine38/Makefile b/sysutils/cfengine38/Makefile index effc5c230313..5715ee571ad1 100644 --- a/sysutils/cfengine38/Makefile +++ b/sysutils/cfengine38/Makefile @@ -28,9 +28,9 @@ USE_RC_SUBR= cf-execd cf-serverd cf-monitord MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes -USE_OPENSSL= yes GNU_CONFIGURE= yes -USES= autoreconf cpe gmake libtool shebangfix +USES= autoreconf cpe gmake libtool shebangfix ssl +USE_GNOME= libxml2 SHEBANG_FILES= examples/remake_outputs.pl CFLAGS+= -Wno-return-type CPPFLAGS+= -I${LOCALBASE}/include @@ -49,12 +49,15 @@ CONFIGURE_ARGS= --docdir=${DOCSDIR} \ INSTALL_TARGET= install-strip LIB_DEPENDS+= libpcre.so:devel/pcre \ - liblmdb.so:databases/lmdb + liblmdb.so:databases/lmdb \ + libyaml.so:textproc/libyaml \ + libcurl.so:ftp/curl OPTIONS_DEFINE= PGSQL MYSQL LIBVIRT PGSQL_USES= pgsql PGSQL_CONFIGURE_ON= --with-postgresql=${LOCALBASE} +PGSQL_CONFIGURE_OFF= --without-postgresql MYSQL_USE= MYSQL=yes MYSQL_CONFIGURE_ON= --with-mysql=${LOCALBASE} @@ -62,6 +65,7 @@ MYSQL_LIB_DEPENDS= libmysqlclient.so:${_MYSQL_CLIENT} MYSQL_LDFLAGS= -L${LOCALBASE}/lib/mysql LIBVIRT_CONFIGURE_ON= --with-libvirt=${LOCALBASE} -LIBVIRT_LIB_DEPENDS+= libvirt.so:devel/libvirt +LIBVIRT_CONFIGURE_OFF= --without-libvirt +LIBVIRT_LIB_DEPENDS= libvirt.so:devel/libvirt .include <bsd.port.mk> |