diff options
author | cy <cy@FreeBSD.org> | 2016-08-07 11:26:49 +0800 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2016-08-07 11:26:49 +0800 |
commit | 595ffaea2d25f4b46df0400a34919eb6b233c19c (patch) | |
tree | 67612276835b41b0814cfa436e21092b8700a215 | |
parent | 9ab736fd692e13a78d75806a6c49d45a70fe3b44 (diff) | |
download | freebsd-ports-gnome-595ffaea2d25f4b46df0400a34919eb6b233c19c.tar.gz freebsd-ports-gnome-595ffaea2d25f4b46df0400a34919eb6b233c19c.tar.zst freebsd-ports-gnome-595ffaea2d25f4b46df0400a34919eb6b233c19c.zip |
Fix issues identified by Mk/Scripts/qa.sh.
-rw-r--r-- | sysutils/cfengine37/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sysutils/cfengine37/Makefile b/sysutils/cfengine37/Makefile index e12bff18be28..792db57d22d2 100644 --- a/sysutils/cfengine37/Makefile +++ b/sysutils/cfengine37/Makefile @@ -27,9 +27,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 @@ -48,12 +48,14 @@ 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 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} @@ -61,6 +63,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> |