Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Sep 2019 19:54:16 +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: r512286 - head/databases/pspg
Message-ID:  <201909181954.x8IJsG4e047229@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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