From 14c5da6b1823e340d816f3ae23db4c766d79ab37 Mon Sep 17 00:00:00 2001 From: stefanocasazza Date: Fri, 13 May 2016 17:21:32 +0200 Subject: [PATCH] fix g++ 4.9.3 for Travis CI --- configure | 3 +++ configure.ac | 3 +++ 2 files changed, 6 insertions(+) diff --git a/configure b/configure index bedd1a19..e7c917b9 100755 --- a/configure +++ b/configure @@ -30630,6 +30630,9 @@ if test "$gcc_version" = "5.3.1"; then if test "$gcc_v" = "gcc (Ubuntu 5.3.1-14ubuntu2) 5.3.1 20160413"; then ULIB_LIBS="$ULIB_LIBS -lgcc_s -lgcc" fi +# TRAVIS CI +elif test "$gcc_version" = "4.9.3"; then + ULIB_LIBS="$ULIB_LIBS -lgcc_s -lgcc" fi # Check for availablity of "old style" C++ strstream header diff --git a/configure.ac b/configure.ac index d26ff89f..9835da89 100644 --- a/configure.ac +++ b/configure.ac @@ -2463,6 +2463,9 @@ if test "$gcc_version" = "5.3.1"; then if test "$gcc_v" = "gcc (Ubuntu 5.3.1-14ubuntu2) 5.3.1 20160413"; then ULIB_LIBS="$ULIB_LIBS -lgcc_s -lgcc" fi +# TRAVIS CI +elif test "$gcc_version" = "4.9.3"; then + ULIB_LIBS="$ULIB_LIBS -lgcc_s -lgcc" fi # Check for availablity of "old style" C++ strstream header