svn commit: r546123 - branches/2020Q3/textproc/qr
Piotr Kubaj
pkubaj at FreeBSD.org
Mon Aug 24 23:36:42 UTC 2020
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
More information about the svn-ports-all
mailing list