Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Nov 2020 11:47:04 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r555639 - head/sysutils/inotify-tools
Message-ID:  <202011181147.0AIBl4om009330@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed Nov 18 11:47:04 2020
New Revision: 555639
URL: https://svnweb.freebsd.org/changeset/ports/555639

Log:
  sysutils/inotify-tools: fix build on GCC architectures
  
  cc1: warnings being treated as errors
  inotifywait.c: In function 'output_error':
  inotifywait.c:119: warning: declaration of 'syslog' shadows a global declaration
  /usr/include/syslog.h:197: warning: shadowed declaration is here

Modified:
  head/sysutils/inotify-tools/Makefile

Modified: head/sysutils/inotify-tools/Makefile
==============================================================================
--- head/sysutils/inotify-tools/Makefile	Wed Nov 18 11:45:49 2020	(r555638)
+++ head/sysutils/inotify-tools/Makefile	Wed Nov 18 11:47:04 2020	(r555639)
@@ -13,7 +13,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libinotify.so:devel/libinotify
 
-USES=		autoreconf gmake libtool localbase
+USES=		autoreconf compiler:c11 gmake libtool localbase
 USE_GITHUB=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-doxygen



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