]> git.lyx.org Git - lyx.git/commitdiff
--with-frontend=qt4 is not required anymore
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 7 Dec 2006 16:17:40 +0000 (16:17 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 7 Dec 2006 16:17:40 +0000 (16:17 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16202 a592a061-630c-0410-9148-cb99ea01b6c8

INSTALL
Status.15x
config/lyxinclude.m4

diff --git a/INSTALL b/INSTALL
index 2407f054ce87a069a8c0b5e12f0028f6b8fbcf18..70910637ea8ada4c6f6796879424b3841ea1b369 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -9,7 +9,7 @@ These four steps will compile, test and install LyX:
        0) Linux users beware: if compiling the Qt frontend, you need
            qt and qt-devel packages of the same version to compile LyX.
 
-       1) ./configure --with-frontend=qt4
+       1) ./configure
           configures LyX according to your system. 
           When compiling for Qt, you may have to set
              --with-qt-dir=<path-to-your-qt-installation>
@@ -107,9 +107,6 @@ to create the Makefile by typing
 For more complicated cases, LyX configure takes the following specific
 flags:
 
-  o --with-frontend=FRONTEND that allows to specify which frontend you
-    want to use. There is no default value: this switch is required.
-
   o --with-extra-lib=DIRECTORY that specifies the path where LyX will
     find extra libraries (qt4) it needs. Defaults to NONE
     (i.e. search in standard places). You can specify several
@@ -233,6 +230,10 @@ cases:
     latex cannot be found.  If you find that you have to use this
     flag, please report it as a bug.
 
+  o --with-frontend=FRONTEND that allows to specify which frontend you
+    want to use. The default value is qt4, which is the only available
+    frontend for now.
+
 
 Compiling and installing LyX
 ----------------------------
index b09eacfe2708cb0ffaa2916f7420fd89ef7b7510..5a43837dd93e7fe19b9c973d9c8ca84c002170fc 100644 (file)
@@ -266,12 +266,6 @@ PAINTING & PERFORMANCE
 
 
 
-BUILDING
-
-* It is ridiculous that you have to call configure with --with-frontend=qt4.
-  The existance of config/qt.m4 does not make much sense either.
-
-
 MAC OS X
 
 * Many issues with toolbars on MAC (Bennett 3/11/06):
@@ -498,3 +492,6 @@ CREDITS:
   in French. (J. P. Chretien)
   FIXED (Michael (found the problem), Georg (fix), 2006-11-30)
 
+* It is ridiculous that you have to call configure with --with-frontend=qt4.
+  The existance of config/qt.m4 does not make much sense either.
+  The first one is FIXED, the second WONTFIX (JMarc 07-12-2006)
index 96f37cb2c1cfbf1a7a7cf5c418231bb0c17dffc5..e022616aeb810a18e71f69b286497704b7031e85 100644 (file)
@@ -555,7 +555,7 @@ AC_DEFUN([LYX_USE_FRONTENDS],
 AC_ARG_WITH(frontend,
   [  --with-frontend=THIS    Use THIS frontend as main GUI:
                            Possible values: qt4],
-  [FRONTENDS="$withval"])
+  [FRONTENDS="$withval"],[FRONTENDS="qt4"])
 if test "x$FRONTENDS" = x ; then
   AC_MSG_RESULT(none)
   AC_ERROR("Please select a frontend using --with-frontend")