--with-frontend=qt4 is not required anymore

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16202 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2006-12-07 16:17:40 +00:00
parent 612439eca9
commit 23c3ed57f1
3 changed files with 9 additions and 11 deletions

View File

@ -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
----------------------------

View 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)

View 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")