]> git.lyx.org Git - features.git/commitdiff
fix one AM_CONDITIONAL thingie
authorLars Gullik Bjønnes <larsbj@gullik.org>
Tue, 15 Oct 2002 08:09:27 +0000 (08:09 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Tue, 15 Oct 2002 08:09:27 +0000 (08:09 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5403 a592a061-630c-0410-9148-cb99ea01b6c8

config/ChangeLog
config/configure.ac
config/configure.in
config/xforms.m4

index 93a62aa773d0f891333c9333f102fac5e626142a..ddb48af6140c1b9d1c2b2f92ec686ae6d1a2497e 100644 (file)
@@ -1,21 +1,28 @@
+2002-10-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
+
+       * xforms.m4 (lyx_use_xforms_image_loader): move the AM_CONDITIONAL
+       USE_BASIC_IMAGE_LOADER from here...
+       * configure.ac: ... here
+       * configure.in: ...to here, and ...
+
 2002-09-13  John Levon  <levon@movementarian.org>
 
        * qt.m4: tweak sed usage
+
 2002-09-12  John Levon  <levon@movementarian.org>
 
        * Makefile.am: qt.m4 not qt2.m4
+
 2002-09-12  John Levon  <levon@movementarian.org>
 
        * configure.ac:
        * configure.in:
        * qt.m4: output Qt version
+
 2002-09-12  John Levon  <levon@movementarian.org>
 
        * qt.m4: make $FATAL actually work
+
 2002-09-12  John Levon  <levon@movementarian.org>
 
        * configure.ac:
        * lyxinclude.m4:
        * qt2.m4:
        * qt.m4: new Qt configure script
+
 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
 
-       * relyx_configure.ac: 
+       * relyx_configure.ac:
        * configure.ac: only require autoconf 2.52
 
        * Makefile.am (EXTRA_DIST): distribute also xforms.m4
@@ -34,7 +41,7 @@
 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
 
        * lyxinclude.m4 (LYX_PATH_XPM): do not pass XPM_LIB as 5th
-       argument of AC_CHECK_LIB 
+       argument of AC_CHECK_LIB
 
        * xforms.m4 (LYX_PATH_XFORMS): use 5th argument of AC_CHECK_LIB to
        make sure that -lXpm is used when linking. Require LYX_PATH_XPM.
@@ -44,7 +51,7 @@
 
        * configure.in:
        * configure.ac: no xforms check with Qt
+
 2002-08-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
 
        * configure.in: change AC_LANG(XX) back to the AC_LANG_XX variant.
index 6494a3871259fe22b3ab5eb89bc7961f097b5c1d..e198cd9edda7236bd4c614b21de0094f845298e1 100644 (file)
@@ -150,7 +150,6 @@ CPPFLAGS="$CPPFLAGS $X_CFLAGS"
 ## Check whether X is new enough to handle the input method stuff
 AC_CHECK_FUNCS(XOpenIM)
 
 ### check which frontend we want to use
 
 #LYX_USE_FRONTEND
@@ -202,6 +201,9 @@ case "$lyx_use_frontend" in
     LYX_ERROR(Unknown frontend $lyx_use_frontend);;
 esac
 
+AM_CONDITIONAL(USE_BASIC_IMAGE_LOADER,
+              test $lyx_use_xforms_image_loader = no)
+
 ### Check for xforms and xpm (only if X has been found).
 if test "$have_x" = no ; then
 LYX_ERROR(dnl
index 0d5c238963307dc77e24c852f6ead51eb74ef0bf..b8b614afa8705b101c94c7a5992beef8afa0235d 100644 (file)
@@ -203,6 +203,10 @@ case "$lyx_use_frontend" in
     LYX_ERROR(Unknown frontend $lyx_use_frontend);;
 esac
 
+AM_CONDITIONAL(USE_BASIC_IMAGE_LOADER,
+              test $lyx_use_xforms_image_loader = no)
+
+
 ### Check for xforms and xpm (only if X has been found).
 if test "$have_x" = no ; then
 LYX_ERROR(dnl
index bbfc6c7d0c9fce74f90080de9881ddb4df745321..6b9b71c92158961a529b9d8a19f31bc0bbaa4e2e 100644 (file)
@@ -92,7 +92,8 @@ fi
 
 ### If the gui cannot load images itself, then we default to the
 ### very simple one in graphics/GraphicsImageXPM.[Ch]
-AM_CONDITIONAL(USE_BASIC_IMAGE_LOADER,
-              test $lyx_use_xforms_image_loader = no)
+#AM_CONDITIONAL(USE_BASIC_IMAGE_LOADER,
+#             test $lyx_use_xforms_image_loader = no)
+
 AC_LANG_RESTORE
 LIBS=$save_LIBS])