diff options
author | matthew <matthew@FreeBSD.org> | 2017-07-01 06:02:23 +0800 |
---|---|---|
committer | matthew <matthew@FreeBSD.org> | 2017-07-01 06:02:23 +0800 |
commit | 837deb17d7495dd43d165c73d812ad58616f1b05 (patch) | |
tree | 2fa2493cfdb7987de80f48f4de4f3388288762b8 /sysutils | |
parent | e07ad900b070b3a45abcd5b89b6e6f6fed0ba29b (diff) | |
download | freebsd-ports-gnome-837deb17d7495dd43d165c73d812ad58616f1b05.tar.gz freebsd-ports-gnome-837deb17d7495dd43d165c73d812ad58616f1b05.tar.zst freebsd-ports-gnome-837deb17d7495dd43d165c73d812ad58616f1b05.zip |
rsyslog cannot use the Inotify emulation provided by the
devel/libinotify port -- the kqueue based emulation does not persist
over forking, unlike the genuine linux inotify.
However, the presence of certain header files will cause rsyslog to
attempt to unconditionally compile in Inotify support, and this breaks
the build.
Use CONFLICTS_BUILD to mark the incompatibility.
PR: 220376
Submitted by: dewayne@heuristicsystems.com.au
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/rsyslog8/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysutils/rsyslog8/Makefile b/sysutils/rsyslog8/Makefile index e27c9382848b..77bdb9ec066f 100644 --- a/sysutils/rsyslog8/Makefile +++ b/sysutils/rsyslog8/Makefile @@ -22,6 +22,8 @@ PORTSCOUT= limit:^8\. USE_LDCONFIG= yes +CONFLICTS_BUILD= libinotify-* + OPTIONS_DEFINE= DBI DOCS ELASTIC GCRYPT GNUTLS GSSAPI JSONPARSE MYSQL PGSQL \ RELP SNMP NORMALIZE OPTIONS_DEFAULT=GCRYPT |