mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
config/lyxinclude.m4: add support for --enable-cxx11
Using --enable-cxx11 turns on C++11 mode in gcc.
This commit is contained in:
parent
54d1cb1880
commit
393ade85ec
@ -232,6 +232,10 @@ AC_ARG_ENABLE(pch,
|
|||||||
enable_pch=no;)
|
enable_pch=no;)
|
||||||
lyx_pch_comp=no
|
lyx_pch_comp=no
|
||||||
|
|
||||||
|
AC_ARG_ENABLE(cxx11,
|
||||||
|
AC_HELP_STRING([--enable-cxx11],[enable C++11 mode]),,
|
||||||
|
enable_cxx11=no;)
|
||||||
|
|
||||||
AC_ARG_ENABLE(assertions,
|
AC_ARG_ENABLE(assertions,
|
||||||
AC_HELP_STRING([--enable-assertions],[add runtime sanity checks in the program]),,
|
AC_HELP_STRING([--enable-assertions],[add runtime sanity checks in the program]),,
|
||||||
[AS_CASE([$build_type], [dev*|pre*], [enable_assertions=yes],
|
[AS_CASE([$build_type], [dev*|pre*], [enable_assertions=yes],
|
||||||
@ -306,6 +310,18 @@ if test x$GXX = xyes; then
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
if test x$enable_cxx11 = xyes ; then
|
||||||
|
case $gxx_version in
|
||||||
|
4.3*|4.4*|4.5*|4.6*)
|
||||||
|
lyx_flags="$lyx_flags c++11-mode"
|
||||||
|
CXXFLAGS="-std=gnu++0x $CXXFLAGS"
|
||||||
|
;;
|
||||||
|
4.7*|4.8*)
|
||||||
|
lyx_flags="$lyx_flags c++11-mode"
|
||||||
|
CXXFLAGS="-std=gnu++11 $CXXFLAGS"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
test "$lyx_pch_comp" = yes && lyx_flags="$lyx_flags pch"
|
test "$lyx_pch_comp" = yes && lyx_flags="$lyx_flags pch"
|
||||||
AM_CONDITIONAL(LYX_BUILD_PCH, test "$lyx_pch_comp" = yes)
|
AM_CONDITIONAL(LYX_BUILD_PCH, test "$lyx_pch_comp" = yes)
|
||||||
|
Loading…
Reference in New Issue
Block a user