From 23c3ed57f1caa0cdc678e8234b067fc5c52dee9c Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Thu, 7 Dec 2006 16:17:40 +0000 Subject: [PATCH] --with-frontend=qt4 is not required anymore git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16202 a592a061-630c-0410-9148-cb99ea01b6c8 --- INSTALL | 9 +++++---- Status.15x | 9 +++------ config/lyxinclude.m4 | 2 +- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/INSTALL b/INSTALL index 2407f054ce..70910637ea 100644 --- 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= @@ -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 ---------------------------- diff --git a/Status.15x b/Status.15x index b09eacfe27..5a43837dd9 100644 --- a/Status.15x +++ b/Status.15x @@ -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) diff --git a/config/lyxinclude.m4 b/config/lyxinclude.m4 index 96f37cb2c1..e022616aeb 100644 --- a/config/lyxinclude.m4 +++ b/config/lyxinclude.m4 @@ -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")