]> git.lyx.org Git - lyx.git/blobdiff - configure.in
Few more update text-inset issues + some fixes, see ChangeLog.
[lyx.git] / configure.in
index dc03e4e66bdcfeb75ef1ec8c9df9e57bfaf8d4c2..4a0dfa76c0d90f2443b24452fc9421a11a226df7 100644 (file)
@@ -19,7 +19,7 @@ AM_INIT_AUTOMAKE($lyxname, $VERSION)
 
 # The list of languages known to LyX
 # This is needed by GNU gettext
-ALL_LINGUAS="ca cs da de es fi fr hu it nl no pl pt ro ru sl sv tr wa"
+ALL_LINGUAS="ca cs da de es eu fi fr he hu it nl no pl pt ro ru sl sv tr wa"
 
 AC_PREFIX_PROGRAM(lyx)
 
@@ -42,6 +42,12 @@ if test "x$KPSEWHICH" = xkpsewhich ; then
     [Define this if you have the kpsewhich program working on your system.])
 fi
 
+# Work around a problem in automake 1.4: when invoking install-strip,
+# INSTALL_PROGRAM is changed to 'install -s', and since
+# INSTALL_SCRIPT==INSTALL_PROGRAM, we get errors with fileutils-4.0
+# which returns an error condition when stripping fails.
+INSTALL_SCRIPT='${INSTALL}'
+
 ### we will also need a C compiler to compile GNU gettext
 AC_PROG_CC
 
@@ -114,6 +120,29 @@ if test x$lyx_use_liberty = xyes; then
   AC_CHECK_LIB(iberty,main)
 fi
 
+### Check which libsigc++ we're using
+LYX_WITH_SIGC
+
+### check which frontend we want to use
+LYX_USE_FRONTEND
+dnl The code below is not in a macro, because this would cause big
+dnl problems with the AC_REQUIRE contained in KDE_DO_IT_ALL.  
+case "$lyx_use_frontend" in 
+  kde) 
+    KDE_DO_IT_ALL
+    FRONTEND="kde"
+    FRONTEND_GUILIB="\${top_builddir}/src/frontends/kde/libkde.la"
+    FRONTEND_LDFLAGS="\$(QT_LDFLAGS) \$(KDE_LDFLAGS)"
+    FRONTEND_INCLUDES="\$(QT_INCLUDES) \$(KDE_INCLUDES)"
+    FRONTEND_LIBS="\$(KDE_LIBS)"
+    AC_DEFINE(KDEGUI);;
+  xforms) 
+    FRONTEND="xforms"
+    FRONTEND_GUILIB="\${top_builddir}/src/frontends/xforms/libxforms.la";;
+  *)
+    LYX_ERROR(Unknown frontend $lyx_use_frontend);;
+esac
+
 ### Check for X libraries
 # Check for the pt library (for SCO, needed for X)
 AC_CHECK_LIB(pt,ptsname,X_EXTRA_LIBS="-lpt $X_EXTRA_LIBS")
@@ -220,7 +249,7 @@ if test "x$enable_assertions" = xyes ; then
 fi
 
 ### Finish the work.
-AC_CONFIG_SUBDIRS(lib lib/reLyX)
+AC_CONFIG_SUBDIRS(lib lib/reLyX sigc++)
 AC_OUTPUT([Makefile \
        development/lyx.spec \
        lib/Makefile \
@@ -230,6 +259,10 @@ AC_OUTPUT([Makefile \
        src/mathed/Makefile \
        src/insets/Makefile \
        src/support/Makefile \
+       src/xtl/Makefile \
+       src/frontends/Makefile \
+       src/frontends/xforms/Makefile \
+       src/frontends/kde/Makefile \
 ],  [sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])
 
 
@@ -249,4 +282,3 @@ EOF
 
 # Display a final warning if there has been a LYX_ERROR
 LYX_CHECK_ERRORS
-