Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (9cc2e683ab56b233329cd6c0f305cb11fe2cc87a)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (9cc2e683ab56b233329cd6c0f305cb11fe2cc87a)
  • Date: Tue, 4 Apr 2017 18:39:51 +0000

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

database/mysql/BUILD | 17 +++++------------
database/mysql/DETAILS | 4 ++--
database/mysql/HISTORY | 7 +++++++
3 files changed, 14 insertions(+), 14 deletions(-)

New commits:
commit 9cc2e683ab56b233329cd6c0f305cb11fe2cc87a
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

mysql: Updated to 5.1.73 (released September 2013...)

Someone should work on redoing this, latest stable is 5.7.17!
SECURITY_PATCH++

commit 7aec4699199a190d161923ef86287e52a9700beb
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

mysql: Fix compiling with gcc 6+ (C++11 and newer) (Use gnu++98)

Fixes:
DictTabInfo.cpp:72:1: error: narrowing conversion of '-1' from 'int' to
'Uint32 {aka unsigned int}' inside { } [-Wnarrowing]

diff --git a/database/mysql/BUILD b/database/mysql/BUILD
index 0d92aae..c08c733 100755
--- a/database/mysql/BUILD
+++ b/database/mysql/BUILD
@@ -58,19 +58,12 @@ fi &&
OPTS="$OPTS --with-mysqld-user=mysql --without-bench \
--localstatedir=${INSTALL_ROOT}/var/lib/mysql \
--enable-assembler --enable-thread-safe-client" &&
-default_build &&

-#./configure --build=$BUILD \
-# --prefix=$INSTALL_ROOT/usr \
-# --sysconfdir=$INSTALL_ROOT/etc \
-# --mandir=$INSTALL_ROOT/usr/share/man \
-# --infodir=$INSTALL_ROOT/usr/share/info \
-# --localstatedir=/var/lib/mysql \
-# --with-mysqld-user=mysql \
-# --without-bench \
-# --enable-assembler \
-# --enable-thread-safe-client \
-# $OPTS &&
+# Fix compiling with gcc 6+ (C++11 and newer)
+export CFLAGS=" -std=gnu++98 ${CFLAGS}" &&
+export CXXFLAGS=" -std=gnu++98 ${CXXFLAGS}" &&
+
+default_build &&

export LD_PRELOAD="$LD_PRELOAD_OLD" &&
make pkglibdir=${TRACK_ROOT}/usr/lib
diff --git a/database/mysql/DETAILS b/database/mysql/DETAILS
index 05db7df..82d3580 100755
--- a/database/mysql/DETAILS
+++ b/database/mysql/DETAILS
@@ -3,8 +3,8 @@ if [[ $OLD == y ]]; then
VERSION=5.0.96
SECURITY_PATCH=5
else
- VERSION=5.1.67
- SECURITY_PATCH=2
+ VERSION=5.1.73
+ SECURITY_PATCH=3
fi
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE2=$SOURCE.asc
diff --git a/database/mysql/HISTORY b/database/mysql/HISTORY
index b0cc4a7..ff45b64 100644
--- a/database/mysql/HISTORY
+++ b/database/mysql/HISTORY
@@ -1,3 +1,10 @@
+2017-04-04 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 5.1.73 (released September 2013...)
+ Someone should work on redoing this, latest stable is 5.7.17!
+ SECURITY_PATCH++
+ * BUILD: Fix compiling with gcc 6+ (C++11 and newer) (Use gnu++98)
+ Fixes: DictTabInfo.cpp:72:1: error: narrowing conversion of '-1'
from 'int' to 'Uint32 {aka unsigned int}' inside { } [-Wnarrowing]
+
2014-08-24 Treeve Jelbert <treeve AT sourcemage.org>
* DEPENDS: fix bad with-SSL usage




  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (9cc2e683ab56b233329cd6c0f305cb11fe2cc87a), Eric Sandall, 04/04/2017

Archive powered by MHonArc 2.6.24.

Top of Page