svn commit: r546122 - head/textproc/qr
Piotr Kubaj
pkubaj at FreeBSD.org
Mon Aug 24 23:35:53 UTC 2020
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
More information about the svn-ports-all
mailing list