document --with-frontend

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@6204 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2003-02-18 17:27:28 +00:00
parent 08ceef84b8
commit fd2e79b2b4
3 changed files with 32 additions and 17 deletions

View File

@ -1,3 +1,7 @@
2003-02-18 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* INSTALL: document the use of --with-frontend
2003-02-11 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* autogen.sh (autoversion): autoconf 2.57 works too

38
INSTALL
View File

@ -7,7 +7,9 @@ Quick compilation guide
These four steps will compile, test and install LyX:
1) ./configure
configures LyX to your system.
configures LyX to your system. By default, LyX configures
the xforms frontend, use --with-frontend=qt to build a Qt
version.
2) make
compiles the program.
@ -41,7 +43,7 @@ experience with other compilers. It is _not_ possible to compile LyX
with gcc 2.7.x and 2.8.x, and this is not likely to change in the
future.
Note that, contrary to LyX 1.0.x, LyX 1.2.x makes great use of C++
Note that, contrary to LyX 1.0.x, LyX 1.3.x makes great use of C++
Standard Template Library (STL); this means that gcc users will have
to install the relevant libstdc++ library to be able to compile this
version.
@ -137,10 +139,14 @@ to create the Makefile by typing
For more complicated cases, LyX configure takes the following specific
flags:
o --with-extra-lib=DIRECTORY that specifies the path where LyX will find
extra libraries (Xpm, xforms) it needs. Defaults to NONE (i.e. search
in standard places). You can specify several directories, separated
by colons.
o --with-frontend=FRONTEND that allows to specify which frontend you
want to use. Default is "xforms", and the other possible value is
"qt".
o --with-extra-lib=DIRECTORY that specifies the path where LyX will
find extra libraries (Xpm, xforms, qt) it needs. Defaults to NONE
(i.e. search in standard places). You can specify several
directories, separated by colons.
o --with-extra-inc=DIRECTORY that gives the place where LyX will find
xforms headers. Defaults to NONE (i.e. search in standard places).
@ -150,18 +156,20 @@ flags:
--with-extra-lib=DIRECTORY/lib --with-extra-inc=DIRECTORY/include
If DIRECTORY is not specified, the current prefix is used.
o --with-version-suffix will install LyX as lyx-<version>, e.g. lyx-1.2.0
The LyX data directory will be something like <whatever>/lyx-1.2.0/.
o --with-version-suffix will install LyX as lyx-<version>, e.g. lyx-1.3.1
The LyX data directory will be something like <whatever>/lyx-1.3.1/.
Additionally your user configuration files will be found in e.g.
$HOME/.lyx-1.2.0
$HOME/.lyx-1.3.1
You can use this feature to install more than one version of LyX on
the same system. You can optionally specify a "version" of your own,
by doing something like : ./configure --with-version-suffix=-latestcvs
You can use this feature to install more than one version of LyX
on the same system. You can optionally specify a "version" of your
own, by doing something like :
./configure --with-version-suffix=-latestcvs
Note that the standard configure options --program-prefix,--program-suffix
and the others will not affect the shared LyX directory etc. so it
is recommended that you use --with-version-suffix (or --prefix) instead.
Note that the standard configure options --program-prefix,
--program-suffix and the others will not affect the shared LyX
directory etc. so it is recommended that you use --with-version-suffix
(or --prefix) instead.
o --enable-optimization=VALUE enables you to set optimization to a
higher level as the default (-O), for example --enable-optimization=-O3.

View File

@ -36,7 +36,7 @@ What's new
- updated french translation of menus
- updates to Extended Manual and Customization Manual.
- updates to Extended Manual and Customization Manual
** Bug fixes
@ -66,6 +66,8 @@ What's new
- duplicate 'a' shortcut in graphics dialog fixed [XForms only]
- revert is now disabled for an unchanged or unsaved document [bug #783]
- fix bug where changing encoding of screen fonts would not work
immediately [XForms only]
@ -78,4 +80,5 @@ What's new
- fix strerror() build problem with some gcc/glibc versions [bug #874]
- revert is now disabled for an unchanged or unsaved document [bug #783]
- mention in INSTALL file that the qt frontend is selected using
--with-frontend=qt