svn commit: r498224 - head/irc/ctrlproxy

Mark Linimon linimon at FreeBSD.org
Sun Apr 7 01:26:34 UTC 2019


Author: linimon
Date: Sun Apr  7 01:26:33 2019
New Revision: 498224
URL: https://svnweb.freebsd.org/changeset/ports/498224

Log:
  Add USES=compiler:c11 to fix build on GCC-based architectures:
  
    /usr/local/include/gnutls/gnutls.h:482: error: expected identifier or '(' before '/' token
  
  While here, also add USES=gnome localbase:ldflags.
  
  PR:		237037
  Submitted by:	Piotr Kubaj
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/irc/ctrlproxy/Makefile

Modified: head/irc/ctrlproxy/Makefile
==============================================================================
--- head/irc/ctrlproxy/Makefile	Sun Apr  7 01:13:58 2019	(r498223)
+++ head/irc/ctrlproxy/Makefile	Sun Apr  7 01:26:33 2019	(r498224)
@@ -13,14 +13,11 @@ COMMENT=	Flexible IRC proxy
 
 LIB_DEPENDS=	libgnutls.so:security/gnutls
 
+USES=		compiler:c11 gmake gnome localbase:ldflags pathfix pkgconfig
 USE_GNOME=	glib20
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
-USES=		gmake pathfix pkgconfig
 PATHFIX_MAKEFILEIN=	Makefile
-
-CPPFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib
 
 OPTIONS_DEFINE=	DOCS
 


More information about the svn-ports-all mailing list