svn commit: r506127 - head/sysutils/rsyslog8
Matthew Seaman
matthew at FreeBSD.org
Sun Jul 7 10:59:46 UTC 2019
Author: matthew
Date: Sun Jul 7 10:59:44 2019
New Revision: 506127
URL: https://svnweb.freebsd.org/changeset/ports/506127
Log:
Use the autoconf caching mechanism to set two variables thus
preventing configure from finding libinotify even if it is present.
This will have no effect on packages built in a clean environment, but
it will make it easier to just build ad-hoc out of the ports tree.
Submitted by: koobs
Reported by: atari83
Differential Revision: https://reviews.freebsd.org/D20815
Modified:
head/sysutils/rsyslog8/Makefile
Modified: head/sysutils/rsyslog8/Makefile
==============================================================================
--- head/sysutils/rsyslog8/Makefile Sun Jul 7 10:37:57 2019 (r506126)
+++ head/sysutils/rsyslog8/Makefile Sun Jul 7 10:59:44 2019 (r506127)
@@ -19,13 +19,10 @@ LIB_DEPENDS= libee.so:devel/libee \
libcurl.so:ftp/curl
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>0:textproc/py-docutils@${PY_FLAVOR}
-PORTSCOUT= limit:^8\.
-
USES= libtool pkgconfig autoreconf python:env
-
USE_LDCONFIG= yes
-CONFLICTS_BUILD= libinotify-*
+PORTSCOUT= limit:^8\.
OPTIONS_DEFINE= DBI DOCS ELASTIC GCRYPT GSSAPI HTTP JSONPARSE KAFKA \
MYSQL NORMALIZE PGSQL RABBITMQ RELP SNMP
@@ -72,7 +69,7 @@ JSONPARSE_PLIST_FILES= lib/rsyslog/mmjsonparse.so
KAFKA_DESC= Kafka input/output module for rsyslog
KAFKA_LIB_DEPENDS= librdkafka.so:net/librdkafka
-KAFKA_CONFIGURE_ENABLE= imkafka omkafka
+KAFKA_CONFIGURE_ENABLE= imkafka omkafka
KAFKA_PLIST_FILES= lib/rsyslog/imkafka.so \
lib/rsyslog/omkafka.so
@@ -147,7 +144,8 @@ SUB_FILES= pkg-message
CONFIGURE_ARGS+= --enable-imdiag --enable-imfile --enable-impstats \
--enable-mail --enable-omprog --enable-omstdout \
- --enable-omuxsock --enable-rfc3195 --disable-testbench
+ --enable-omuxsock --enable-rfc3195 --disable-testbench \
+ ac_cv_func_inotify_init=no ac_cv_header_sys_inotify_h=no
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200061
CONFIGURE_ARGS+= --enable-imuxsock-rfc5424
More information about the svn-ports-all
mailing list