sumo: update to v0.26.0

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
Álvaro Fernández Rojas
2016-05-08 21:02:44 +02:00
parent d772bbc6a7
commit 500c519319
2 changed files with 16 additions and 14 deletions
+11 -11
View File
@@ -1,14 +1,14 @@
--- a/configure.ac
+++ b/configure.ac
@@ -13,11 +13,6 @@ AC_LANG([C++])
dnl the debug check has to be made before the program checks
dnl because it modifies CXXFLAGS
-if test x$CXX = xclang++; then
- CXXFLAGS="-msse2 $CXXFLAGS"
-else
- CXXFLAGS="-msse2 -mfpmath=sse $CXXFLAGS"
-fi
AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug],[enable sumo debugging code [default=no].])])
if test x$enable_debug = xyes; then
AC_DEFINE(_DEBUG, 1, [Define to 1 in order to enable sumo debugging code.])
case "$host" in
x86-*-linux* | ia64-*-linux* | i586-*-linux* | i686-*-linux* | x86_64-*-linux*)
dnl Make sure we are on architecture that supports SIMD
- if test x$CXX = xclang++; then
- CXXFLAGS="-msse2 $CXXFLAGS"
- else
- CXXFLAGS="-msse2 -mfpmath=sse $CXXFLAGS"
- fi
;;
*-cygwin*)
AC_DEFINE([HAVE_CYGWIN], [1], [Define if compiling under cygwin])