New commits:
commit e29a83c2befa6f914eea3865cda201f7e0426f48
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
graphics-libs/mesalib: removed fixes for flex 2.6.2
commit 89c432344d47fc41b0aeb699c8c3a4222d7c0bd4
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
crypto/libgcrypt: disabled -Ofast if in CFLAGS, cosmetic fixes
diff --git a/crypto/libgcrypt/BUILD b/crypto/libgcrypt/BUILD
index 0398d32..47d7b08 100755
--- a/crypto/libgcrypt/BUILD
+++ b/crypto/libgcrypt/BUILD
@@ -2,5 +2,7 @@
# Disable -O compiler flags; see HISTORY entry from 2008-01-07
#
# cryptsetup wants the static lib
-OPTS="$OPTS --enable-static" &&
-CFLAGS="${CFLAGS//-O?/}" default_build
+OPTS+=" --enable-static" &&
+shopt -s extglob &&
+CFLAGS="${CFLAGS//-O+([[:digit:]]|fast)/}" default_build &&
+shopt -u extglob
diff --git a/crypto/libgcrypt/HISTORY b/crypto/libgcrypt/HISTORY
index 5b0f291..e1f4d89 100644
--- a/crypto/libgcrypt/HISTORY
+++ b/crypto/libgcrypt/HISTORY
@@ -1,3 +1,6 @@
+2017-01-03 Pavel Vinogradov <public AT sourcemage.org>
+ * BUILD: disabled -Ofast compiler flag as well, compacted OPTS line
+
2017-01-02 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.7.5
diff --git a/graphics-libs/mesalib/HISTORY b/graphics-libs/mesalib/HISTORY
index fea5674..665882b 100644
--- a/graphics-libs/mesalib/HISTORY
+++ b/graphics-libs/mesalib/HISTORY
@@ -1,3 +1,6 @@
+2017-01-03 Pavel Vinogradov <public AT sourcemage.org>
+ * PRE_BUILD: removed fixes for flex 2.6.2
+
2016-12-06 Pavel Vinogradov <public AT sourcemage.org>
* BUILD: added filtering of Vulkan choices here, reformatted OPTS
* CONFIGURE: dropped Vulkan choice check for "none"
@@ -8,7 +11,7 @@
2016-11-14 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 13.0.1
-2016-qq-01 Treeve Jelbert <treeve AT sourcemage.org>
+2016-11-01 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 13.0.0
* DEPENDS: add nettle
* CONFIGURE: more gallium options
diff --git a/graphics-libs/mesalib/PRE_BUILD b/graphics-libs/mesalib/PRE_BUILD
index 01bc4cf..d92617f 100755
--- a/graphics-libs/mesalib/PRE_BUILD
+++ b/graphics-libs/mesalib/PRE_BUILD
@@ -14,13 +14,6 @@ sed -e '/lib_LTLIBRARIES += es1api/s:lib_LTLIBRARIES
+=:gles_LTLIBRARIES =:' \
-i mapi/Makefile.am &&
sed -i '/includedir/s;GL;&/.mesa;' Makefile.am mesa/Makefile.am &&