]> git.lyx.org Git - lyx.git/blobdiff - config/lyxinclude.m4
Remove unused nopos_ mamber variable.
[lyx.git] / config / lyxinclude.m4
index 396a701e93831d4c38d48cd5d280e4c715c41d23..08dc0f96842b6d84914a7cb0befd9080a34dc451 100644 (file)
@@ -46,6 +46,7 @@ AC_ARG_WITH(version-suffix,
 AC_MSG_RESULT([$lyxname])
 ])
 
+
 dnl Usage: LYX_ERROR(message)  Displays the warning "message" and sets the
 dnl flag lyx_error to yes.
 AC_DEFUN(LYX_ERROR,[
@@ -162,7 +163,7 @@ AC_PROG_CXX
 
 ### We might want to get or shut warnings.
 AC_ARG_ENABLE(warnings,
-  [  --enable-warnings       tell the compiler to display more warnings],,
+  AC_HELP_STRING([--enable-warnings],[tell the compiler to display more warnings]),,
   [ if test $lyx_devel_version = yes -o $lyx_prerelease = yes && test $ac_cv_prog_gxx = yes ; then
        enable_warnings=yes;
     else
@@ -177,7 +178,7 @@ fi
 
 ### We might want to disable debug
 AC_ARG_ENABLE(debug,
-  [  --enable-debug          enable debug information],,
+  AC_HELP_STRING([--enable-debug],[enable debug information]),,
   [ if test $lyx_devel_version = yes -o $lyx_prerelease = yes && test $ac_cv_prog_gxx = yes ; then
        enable_debug=yes;
     else
@@ -186,7 +187,7 @@ AC_ARG_ENABLE(debug,
 
 ### set up optimization
 AC_ARG_ENABLE(optimization,
-  [  --enable-optimization[=value]   enable compiler optimisation],,
+  AC_HELP_STRING([--enable-optimization[=value]],[enable compiler optimisation]),,
        enable_optimization=yes;)
 case $enable_optimization in
   yes) lyx_opt=-O;;
@@ -211,6 +212,7 @@ if test x$GXX = xyes; then
       3.1*)    CXXFLAGS="$lyx_opt -finline-limit=500 -fno-exceptions";;
       3.2*)    CXXFLAGS="$lyx_opt -fno-exceptions";;
       3.3*)    CXXFLAGS="$lyx_opt -fno-exceptions";;
+      3.4*)    CXXFLAGS="$lyx_opt -fno-exceptions";;
       *)       CXXFLAGS="$lyx_opt";;
     esac
     if test x$enable_debug = xyes ; then
@@ -345,51 +347,6 @@ if test $lyx_cv_modern_streams = yes ; then
 fi])
 
 
-dnl Usage: LYX_CXX_STL_STRING : checks whether the C++ compiler
-dnl   has a std::string that is usable for LyX. LyX does not require this
-dnl   std::string to be standard.
-AC_DEFUN(LYX_CXX_STL_STRING,[
-    AC_REQUIRE([AC_PROG_CXX])
-    AC_MSG_CHECKING(whether the included std::string should be used)
-    AC_ARG_WITH(included-string,
-       [  --with-included-string  use LyX string class instead of STL string],
-       [lyx_cv_with_included_string=$withval
-       AC_MSG_RESULT([$with_included_string])],
-       [AC_CACHE_CHECK([],lyx_cv_with_included_string,
-       [AC_TRY_COMPILE([
-           #include <string>
-           using std::string;
-       ],[
-           // LyX has reduced its requirements on the basic_string
-           // implementation so that the basic_string supplied
-           // with gcc is usable. In particular this means that
-           // lyx does not use std::string::clear and not the
-           // strncmp version of std::string::compare. This is mainly
-           // done so that LyX can use precompiled C++ libraries that
-           // already uses the systems basic_string, e.g. gtk--
-           string a("hello there");
-           a.erase();
-           a = "hey";
-           //char s[] = "y";
-           //int t = a.compare(a.length() - 1, 1, s);
-           a.erase();
-       ],[
-           lyx_cv_with_included_string=no
-       ],[
-           lyx_cv_with_included_string=yes
-       ])
-       ])
-    ])
-    if test x$lyx_cv_with_included_string = xyes ; then
-       AC_DEFINE(USE_INCLUDED_STRING, 1,
-           [Define to use the lyxstring class bundled with LyX.])
-           lyx_flags="$lyx_flags included-string"
-    fi
-    AM_CONDITIONAL(USE_LYXSTRING, test x$lyx_cv_with_included_string = xyes)
-dnl    AC_MSG_RESULT([$with_included_string])
-])
-
-
 dnl Usage: LYX_USE_INCLUDED_BOOST : select if the included boost should
 dnl        be used.
 AC_DEFUN(LYX_USE_INCLUDED_BOOST,[
@@ -401,42 +358,6 @@ AC_DEFUN(LYX_USE_INCLUDED_BOOST,[
        AM_CONDITIONAL(USE_INCLUDED_BOOST, test x$lyx_cv_with_included_boost = xyes)
 ])
 
-dnl Usage: LYX_CXX_GOOD_STD_STRING : checks whether the C++ compiler
-dnl   has a std::string that is close to the standard. So close that
-dnl   methods not found in "unstandard" std::strings are present here.
-AC_DEFUN(LYX_CXX_GOOD_STD_STRING,[
-    AC_REQUIRE([AC_PROG_CXX])
-    AC_CACHE_CHECK([whether the systems std::string is really good],
-    [lyx_cv_std_string_good],
-    [AC_TRY_COMPILE([
-           #include <string>
-           using std::string;
-       ],[
-           // From a std::string that is supposed to be close to the
-           // standard we require at least three things:
-           // - clear() and erase()
-           // - the strncmp of compare()
-           // - push_back()
-           string a("hello there");
-           a.erase();
-           a = "hey";
-           char s[] = "y";
-           int t = a.compare(a.length() - 1, 1, s);
-           a.push_back('g');
-           a.clear();
-       ],[
-           lyx_cv_std_string_good=yes
-       ],[
-           lyx_cv_std_string_good=no
-
-       ])
-    ])
-    if test x$lyx_cv_std_string_good = xyes ; then
-       AC_DEFINE(STD_STRING_IS_GOOD, 1,
-           [Define if the systems std::string is really good.])
-    fi
-])
-
 
 dnl NOT USED CURRENTLY*************************************
 dnl LYX_CXX_PARTIAL
@@ -485,6 +406,7 @@ if test $lyx_cv_cxx_cheaders = no ; then
   LYX_ADD_INC_DIR(lyx_cppflags,\$(top_srcdir)/src/cheaders)
 fi])
 
+
 dnl Usage: LYX_CXX_GLOBAL_CSTD: checks whether C library functions
 dnl   are already in the global namespace
 AC_DEFUN(LYX_CXX_GLOBAL_CSTD,[
@@ -502,6 +424,7 @@ AC_DEFUN(LYX_CXX_GLOBAL_CSTD,[
     fi
 ])
 
+
 dnl Usage: LYX_WITH_DIR(dir-name,desc,dir-var-name,default-value,
 dnl                       [default-yes-value])
 dnl  Adds a --with-'dir-name' option (described by 'desc') and puts the
@@ -584,20 +507,18 @@ rm -f conftest*])
 ])
 ### end of LYX_PATH_HEADER
 
-### Check which frontend we want to use. The default is XForms
+### Check which frontends we want to use. The default is XForms only
 ###
-AC_DEFUN(LYX_USE_FRONTEND,
-[AC_MSG_CHECKING([what frontend should be used as main GUI])
+AC_DEFUN(LYX_USE_FRONTENDS,
+[AC_MSG_CHECKING([what frontend should be used for the GUI])
 AC_ARG_WITH(frontend,
   [  --with-frontend=THIS    Use THIS frontend as main GUI:
                            Possible values: xforms, qt],
-  [lyx_use_frontend="$withval"], [lyx_use_frontend="xforms"])
-AC_MSG_RESULT($lyx_use_frontend)
-AC_SUBST(FRONTEND)
-AC_SUBST(FRONTEND_GUILIB)
-AC_SUBST(FRONTEND_LDFLAGS)
-AC_SUBST(FRONTEND_INCLUDES)
-AC_SUBST(FRONTEND_LIBS)
+  [FRONTENDS="$withval"], [FRONTENDS="xforms"])
+AC_MSG_RESULT($FRONTENDS)
+AC_SUBST(FRONTENDS)
+AC_SUBST(FRONTENDS_SUBDIRS)
+AC_SUBST(FRONTENDS_PROGS)
 ])