pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/blosc



Module Name:    pkgsrc
Committed By:   nia
Date:           Wed Oct 21 19:44:56 UTC 2020

Modified Files:
        pkgsrc/devel/blosc: Makefile

Log Message:
blosc: Assumes the compiler defaults to c99. Pass -std=c99 with USE_LANGUAGES.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/blosc/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/blosc/Makefile
diff -u pkgsrc/devel/blosc/Makefile:1.13 pkgsrc/devel/blosc/Makefile:1.14
--- pkgsrc/devel/blosc/Makefile:1.13    Wed Sep  9 07:06:56 2020
+++ pkgsrc/devel/blosc/Makefile Wed Oct 21 19:44:56 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2020/09/09 07:06:56 adam Exp $
+# $NetBSD: Makefile,v 1.14 2020/10/21 19:44:56 nia Exp $
 
 DISTNAME=      blosc-1.20.1
 CATEGORIES=    devel
@@ -12,7 +12,8 @@ COMMENT=      Blocking, shuffling, and lossle
 LICENSE=       modified-bsd
 
 USE_CMAKE=     yes
-USE_LANGUAGES= c c++
+# error: 'for' loop initial declarations are only allowed in C99 mode
+USE_LANGUAGES= c99 c++
 USE_TOOLS+=    pkg-config
 TEST_ENV+=     LD_LIBRARY_PATH=${WRKSRC}/blosc
 TEST_TARGET=   test



Home | Main Index | Thread Index | Old Index