Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Aug 2020 23:35:53 +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: r546122 - head/textproc/qr
Message-ID:  <202008242335.07ONZrRW041460@repo.freebsd.org>

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

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

Modified:
  head/textproc/qr/Makefile

Modified: head/textproc/qr/Makefile
==============================================================================
--- head/textproc/qr/Makefile	Mon Aug 24 23:31:40 2020	(r546121)
+++ head/textproc/qr/Makefile	Mon Aug 24 23:35:52 2020	(r546122)
@@ -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?202008242335.07ONZrRW041460>