svn commit: r512776 - head/devel/libstrfunc

Piotr Kubaj pkubaj at FreeBSD.org
Wed Sep 25 09:44:13 UTC 2019


Author: pkubaj
Date: Wed Sep 25 09:44:12 2019
New Revision: 512776
URL: https://svnweb.freebsd.org/changeset/ports/512776

Log:
  devel/libstrfunc: fix build on GCC architectures
  
  Needs new GCC:
  sf_core/split.c: In function 'splitf':
  sf_core/split.c:92: error: 'sed_t' undeclared (first use in this function)
  sf_core/split.c:92: error: (Each undeclared identifier is reported only once
  sf_core/split.c:92: error: for each function it appears in.)
  sf_core/split.c:92: error: 'st' undeclared (first use in this function)
  
  Approved by:	mentors (implicit approval)

Modified:
  head/devel/libstrfunc/Makefile

Modified: head/devel/libstrfunc/Makefile
==============================================================================
--- head/devel/libstrfunc/Makefile	Wed Sep 25 09:38:45 2019	(r512775)
+++ head/devel/libstrfunc/Makefile	Wed Sep 25 09:44:12 2019	(r512776)
@@ -11,7 +11,7 @@ MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-$
 MAINTAINER=	vlm at lionet.info
 COMMENT=	Handles CGI forms, MIME, templates, date conversions, etc
 
-USES=		autoreconf libtool
+USES=		autoreconf compiler:c11 libtool
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 CONFIGURE_ARGS=	--program-prefix=""


More information about the svn-ports-head mailing list