svn commit: r512286 - head/databases/pspg

Piotr Kubaj pkubaj at FreeBSD.org
Wed Sep 18 19:54:16 UTC 2019


Author: pkubaj
Date: Wed Sep 18 19:54:15 2019
New Revision: 512286
URL: https://svnweb.freebsd.org/changeset/ports/512286

Log:
  databases/pspg: fix build on GCC architectures
  
  Use new GCC:
  src/pspg.c: In function 'main':
  src/pspg.c:2743: error: '__SIZEOF_WCHAR_T__' undeclared (first use in this function)
  src/pspg.c:2743: error: (Each undeclared identifier is reported only once
  src/pspg.c:2743: error: for each function it appears in.)
  
  Approved by:    mentors (implicit approval)

Modified:
  head/databases/pspg/Makefile

Modified: head/databases/pspg/Makefile
==============================================================================
--- head/databases/pspg/Makefile	Wed Sep 18 19:23:33 2019	(r512285)
+++ head/databases/pspg/Makefile	Wed Sep 18 19:54:15 2019	(r512286)
@@ -10,7 +10,8 @@ COMMENT=	Tabular data pager designed to be used with p
 LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		autoreconf gmake localbase ncurses pkgconfig readline
+USES=		autoreconf compiler:c11 gmake localbase ncurses pkgconfig \
+		readline
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	okbob


More information about the svn-ports-head mailing list