Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Jun 2017 22:02:24 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r444784 - head/sysutils/rsyslog8
Message-ID:  <201706302202.v5UM2OBR042762@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: matthew
Date: Fri Jun 30 22:02:23 2017
New Revision: 444784
URL: https://svnweb.freebsd.org/changeset/ports/444784

Log:
  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

Modified:
  head/sysutils/rsyslog8/Makefile

Modified: head/sysutils/rsyslog8/Makefile
==============================================================================
--- head/sysutils/rsyslog8/Makefile	Fri Jun 30 21:12:59 2017	(r444783)
+++ head/sysutils/rsyslog8/Makefile	Fri Jun 30 22:02:23 2017	(r444784)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706302202.v5UM2OBR042762>