]> git.lyx.org Git - lyx.git/blobdiff - config/lyxinclude.m4
Initialize status_ in the 3rd constructor.
[lyx.git] / config / lyxinclude.m4
index 2cd73ab4fda232f388ea0d321dd041dde9fac9ac..509898034bd9ad9266cf3b452d04846da442f5c1 100644 (file)
@@ -31,6 +31,25 @@ if test $lyx_devel_version = yes ; then
   AC_DEFINE(DEVEL_VERSION, 1, Define if you are building a development version of LyX)
 fi])
 
+dnl Define the option to set a LyX version on installed executables and directories 
+dnl
+dnl
+AC_DEFUN(LYX_VERSION_SUFFIX,[ 
+AC_MSG_CHECKING([for install target ... ])
+AC_ARG_WITH(version-suffix,
+  [  --with-version-suffix[=<version>]  install lyx files as lyx<version>],
+  [if test "x$withval" = "xyes";
+   then
+     withval="-$VERSION"
+     ac_configure_args=`echo $ac_configure_args | sed "s,--with-version-suffix,--with-version-suffix=$withval,"`
+   fi
+   lyxname="lyx$withval"
+   program_suffix=$withval],
+  [lyxname=lyx])
+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,[
@@ -119,7 +138,19 @@ done
 AC_DEFUN(LYX_PROG_CXX_WORKS,
 [AC_LANG_SAVE
 AC_LANG_CPLUSPLUS
-AC_TRY_COMPILER([class foo { int bar; }; int main(){return(0);}], ac_cv_prog_cxx_works, ac_cv_prog_cxx_cross)
+AC_TRY_COMPILER(
+[class foo {
+   // we require the mutable keyword 
+   mutable int bar; 
+ }; 
+ // we require namespace support
+ namespace baz {
+   int bar;
+ }
+ int main() {
+   return(0);
+ }
+], ac_cv_prog_cxx_works, ac_cv_prog_cxx_cross)
 AC_LANG_RESTORE
 if test $ac_cv_prog_cxx_works = no; then
   CXX=
@@ -145,27 +176,30 @@ AC_MSG_RESULT($cross_compiling)
 
 AC_PROG_CXX_GNU
 
-dnl We might want to get or shut warnings.
-AC_ARG_WITH(warnings,
-  [  --with-warnings         tell the compiler to display more warnings],,
+### We might want to get or shut warnings.
+AC_ARG_ENABLE(warnings,
+  [  --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
-       with_warnings=yes;
+       enable_warnings=yes;
     else
-       with_warnings=no;
+       enable_warnings=no;
     fi;])
-if test x$with_warnings = xyes ; then
+if test x$enable_warnings = xyes ; then
   lyx_flags="$lyx_flags warnings"
   AC_DEFINE(WITH_WARNINGS, 1,
   [Define this if you want to see the warning directives put here and
    there by the developpers to get attention])
 fi
 
-# optimize less for development versions
-if test $lyx_devel_version = yes -o $lyx_prerelease = yes ; then
-  lyx_opt="-O"
-else
-  lyx_opt="-O2"
-fi
+### set up optimization
+AC_ARG_ENABLE(optimization,
+  [  --enable-optimization[=value]   enable compiler optimisation],,
+        enable_optimization=yes;)
+case $enable_optimization in
+  yes) lyx_opt=-O;;
+   no) lyx_opt=;;
+    *) lyx_opt=${enable_optimization};;
+esac
 
 # set the debug flags correctly.
 if test $ac_cv_prog_gxx = yes; then
@@ -188,26 +222,24 @@ dnl Check the version of g++
       2.95.2)  CXXFLAGS="-g $lyx_opt -fno-rtti -fno-exceptions";;
       2.95.*)  CXXFLAGS="-g $lyx_opt -fno-exceptions";;
       2.96*)  CXXFLAGS="-g $lyx_opt -fno-exceptions";;
-      2.97*)   CXXFLAGS="-g $lyx_opt -fvtable-thunks -fno-builtin -ffunction-sections -fdata-sections"
-              CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE=1";;
+      3.0*)    CXXFLAGS="-g $lyx_opt";;
       *2.91.*) CXXFLAGS="-g $lyx_opt -fno-rtti -fno-exceptions";;
       *)       CXXFLAGS="-g $lyx_opt -fno-rtti -fno-exceptions";;
     esac
   else
     CXXFLAGS="$lyx_opt"
   fi
-  if test x$with_warnings = xyes ; then
+  if test x$enable_warnings = xyes ; then
     case $gxx_version in
        2.95.*) CXXFLAGS="$CXXFLAGS -W -Wall";;
        2.96*)  CXXFLAGS="$CXXFLAGS -W -Wall";;
-       2.97*)  CXXFLAGS="$CXXFLAGS -W -Wall";;
        *)      CXXFLAGS="$CXXFLAGS -W -Wall";;
     esac
     if test $lyx_devel_version = yes ; then
        case $gxx_version in
            2.95.*) ;;
            2.96*) ;;
-           2.97*) CXXFLAGS="$CXXFLAGS -Wconversion -Winline";;
+           2.97*) ;;
            *2.91*) ;;
            *) ;;
         esac
@@ -215,11 +247,12 @@ dnl Check the version of g++
   fi
 else
   GXX=
-  test "${CXXFLAGS+set}" = set || CXXFLAGS="-g"
+  test "${CXXFLAGS+set}" = set || CXXFLAGS=""
 fi
 ])dnl
 
 
+dnl NOT USED CURRENTLY*************************************
 dnl Usage: LYX_CXX_RTTI : checks whether the C++ compiler
 dnl   supports RTTI
 AC_DEFUN(LYX_CXX_RTTI,[
@@ -277,6 +310,7 @@ if test $lyx_cv_explicit = no ; then
 fi])
 
 
+dnl NOT USED CURRENTLY*************************************
 dnl Usage: LYX_CXX_STL_STACK : checks whether the C++ compiler
 dnl   has a working stl stack template
 AC_DEFUN(LYX_CXX_STL_STACK,[
@@ -343,7 +377,8 @@ AC_DEFUN(LYX_CXX_STL_STRING,[
     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],
+       [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>
@@ -424,33 +459,7 @@ AC_DEFUN(LYX_REGEX,[
     AM_CONDITIONAL(USE_REGEX, test x$lyx_regex = xyes)
 ])
 
-
-dnl LYX_CXX_MUTABLE
-AC_DEFUN(LYX_CXX_MUTABLE, [
-    AC_REQUIRE([LYX_PROG_CXX])
-    AC_CACHE_CHECK([if C++ compiler supports mutable],
-    lyx_cv_cxx_mutable,[
-       AC_TRY_COMPILE(
-       [
-       class k {       
-               mutable char *c;
-       public:
-               void foo() const { c=0; }
-       };
-       ],[
-       ],[
-       lyx_cv_cxx_mutable=yes
-       ],[
-       lyx_cv_cxx_mutable=no
-       ])
-    ])
-    if test $lyx_cv_cxx_mutable = yes ; then
-       AC_DEFINE(HAVE_MUTABLE, 1,
-       [Defined if your compiler suports 'mutable'.])
-    fi
-])
-
-
+dnl NOT USED CURRENTLY*************************************
 dnl LYX_CXX_PARTIAL
 AC_DEFUN(LYX_CXX_PARTIAL, [
     AC_REQUIRE([LYX_PROG_CXX])
@@ -479,28 +488,6 @@ AC_DEFUN(LYX_CXX_PARTIAL, [
 ])
 
 
-dnl Usage: LYX_CXX_NAMESPACES : checks whether the C++ compiler
-dnl   has a correct namespace handling and define CXX_WORKING_NAMESPACES 
-dnl   if true. This macro does not do a thourough test, but it should be 
-dnl   good enough to suit our needs.
-AC_DEFUN(LYX_CXX_NAMESPACES,[
-    AC_CACHE_CHECK(for correct namespaces support,lyx_cv_cxx_namespace,
-    [AC_TRY_COMPILE([
-    namespace foo {
-       int bar;
-    }
-    ],[
-        foo::bar = 0;
-       return 0;
-    ],lyx_cv_cxx_namespace=yes,lyx_cv_cxx_namespace=no)
-    ])
-    if test x$lyx_cv_cxx_namespace = xyes ; then
-       AC_DEFINE(CXX_WORKING_NAMESPACES, 1, 
-       [Define if your C++ compiler has correct support for namespaces])
-    fi
-])
-
-
 dnl Usage: LYX_CXX_CHEADERS : checks whether the C++ compiler
 dnl   provides wrappers for C headers and use our alternate version otherwise.
 AC_DEFUN(LYX_CXX_CHEADERS,[
@@ -624,10 +611,11 @@ case "$lyx_cv_xfversion" in
 Version $lyx_cv_xfversion of xforms is not compatible with LyX. 
    This version of LyX works best with versions 0.88 (recommended) and later.) ;;
     0.88*) ;;
-    0.89*) LYX_WARNING(dnl
+    0.89[01234]) LYX_WARNING(dnl
 LyX should work ok with version $lyx_cv_xfversion of xforms[,] but
-it is an unproven version and might still have some bugs. If you
-have problems[,] please use version 0.88 instead.) ;;
+it is an unproven version and might still have some bugs. You should 
+probably use version 0.89.6 (or 0.88) instead) ;;
+    0.89*) ;;
        *) LYX_WARNING(dnl
 Version $lyx_cv_xfversion of xforms might not be compatible with LyX[,] 
  since it is newer than 0.88. You might have slight problems with it.);;
@@ -924,8 +912,8 @@ extern int select ($ac_cv_func_select_arg1,$ac_cv_func_select_arg234,$ac_cv_func
 AC_DEFUN(LYX_USE_FRONTEND,
 [AC_MSG_CHECKING(what frontend should be used as main GUI)
 AC_ARG_WITH(frontend,
-  [  --with-frontend[=value] Use THIS frontend as main GUI:
-                          Possible values: xforms,kde,gnome],
+  [  --with-frontend=THIS    Use THIS frontend as main GUI:
+                            Possible values: xforms, qt2, gnome],
   [lyx_use_frontend="$withval"], [lyx_use_frontend="xforms"])
 AC_MSG_RESULT($lyx_use_frontend)
 lyx_flags="$lyx_flags frontend-$lyx_use_frontend"
@@ -967,3 +955,39 @@ if eval "test \"\${lyx_cv_declare_${tr_hdr}_$1}\" = \"yes\""; then
      got="yes"
 fi
 done])
+
+
+## ------------------------------------------------------------------------
+## Find a file (or one of more files in a list of dirs)
+## ------------------------------------------------------------------------
+##
+AC_DEFUN(AC_FIND_FILE,
+[
+$3=NO
+for i in $2;
+do
+  for j in $1;
+  do
+    if test -r "$i/$j"; then
+      $3=$i
+      break 2
+    fi
+  done
+done
+])
+
+dnl just a wrapper to clean up configure.in
+AC_DEFUN(LYX_PROG_LIBTOOL,
+[
+AC_REQUIRE([AC_ENABLE_SHARED])
+AC_REQUIRE([AC_ENABLE_STATIC])
+dnl libtool is only for C, so I must force him
+dnl to find the correct flags for C++
+ac_save_cc=$CC
+ac_save_cflags="$CFLAGS"
+CC=$CXX
+CFLAGS="$CXXFLAGS"
+AM_PROG_LIBTOOL dnl for libraries
+CC=$ac_save_cc
+CFLAGS="$ac_save_cflags"
+])