Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Aug 2020 23:36:41 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r546123 - branches/2020Q3/textproc/qr
Message-ID:  <202008242336.07ONafTb041649@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Mon Aug 24 23:36:41 2020
New Revision: 546123
URL: https://svnweb.freebsd.org/changeset/ports/546123

Log:
  MFH: r546122
  
  textproc/qr: fix build on GCC architectures
  
  sqrt() is only defined since C99:
  /tmp/ccn0UwwD.o:(.text+0x1cc): undefined reference to `sqrt'
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q3/textproc/qr/Makefile
Directory Properties:
  branches/2020Q3/   (props changed)

Modified: branches/2020Q3/textproc/qr/Makefile
==============================================================================
--- branches/2020Q3/textproc/qr/Makefile	Mon Aug 24 23:35:52 2020	(r546122)
+++ branches/2020Q3/textproc/qr/Makefile	Mon Aug 24 23:36:41 2020	(r546123)
@@ -17,6 +17,7 @@ TEST_DEPENDS=	${LOCALBASE}/share/fonts/freefont-ttf/Fr
 		zbarimg:graphics/zbar
 
 USES=		gmake
+USE_CSTD=	c99
 USE_GITHUB=	yes
 GH_ACCOUNT=	Y2Z
 GH_TAGNAME=	20713de



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