]> git.lyx.org Git - lyx.git/commitdiff
make the use of --with-frontend mandatory; update README and INSTALL
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 18 Jul 2005 09:42:42 +0000 (09:42 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 18 Jul 2005 09:42:42 +0000 (09:42 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10318 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
INSTALL
README
config/ChangeLog
config/lyxinclude.m4

index 5bd6ea4fff67d79468431737bf81e124ea3e0c76..627e32ee557c84f63774ed59110bd8cf43c7b587 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-18  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * README: 
+       * INSTALL: update for 1.4
+
 2005-07-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
 
        * lyx.man: remove reLyX refs and ref to tex2lyx
diff --git a/INSTALL b/INSTALL
index a2daf7aecd3779c2d61a76ca49323151468a4d20..6e1a2a7f238a14204a5fc956ac394cb6dc0b7dea 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -9,10 +9,9 @@ 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
-          configures LyX to your system. By default, LyX configures
-           the xforms frontend, use --with-frontend=qt to build a Qt
-           version. You may have to set
+       1) ./configure --with-frontend=[qt or xforms]
+          configures LyX according to your system. 
+          When compiling for Qt, you may have to set
              --with-qt-dir=<path-to-your-qt-installation>
            if the environment variable QTDIR is not set. 
 
@@ -56,6 +55,24 @@ library to be able to compile this version of LyX. Users of gcc 2.95.x
 will have to install the STLPort version of these libraries as the
 ones that come with gcc 2.95.x are too broken for us to use.
 
+* Qt frontend
+
+LyX has been tested with Qt 3.x, though Qt 2.x may happen to work too.
+The only special point to make is that you must ensure that both LyX
+and the Qt libraries are compiled with the same C++ compiler.
+
+Note that if Qt is using Xft2/fontconfig, you may need to install the
+latex-xft-fonts package (at ftp://ftp.lyx.org/pub/lyx/contrib/) to get
+maths symbols displayed properly. To find out, type:
+
+       ldd `which lyx` | grep fontconfig
+
+at the console. Both RH8 and Debian unstable distributions are known
+to use fontconfig.
+
+If, however, your version of Qt does not use fontconfig, then TeX
+fonts should be added to the font path. 'man xset' is your friend.
+
 * xforms frontend
 
 Both an Xforms and Xpm libraries should be installed to compile LyX.
@@ -67,12 +84,10 @@ This version has been released under the LGPL (Lesser General Public
 License), and the availability of the source means that many bugs that
 have been plaguing LyX have been fixed in xforms. You are advised to
 upgrade to xforms 1.0 to enjoy all these new fixes.
-In fact, LyX 1.3.x no longer supports versions of xforms older than 0.89.5.
+In fact, LyX 1.4.x no longer supports versions of xforms older than 1.0.
 
 You can get the source from
-       http://world.std.com/~xforms/
-       ftp://ncmir.ucsd.edu/pub/xforms/OpenSource/xforms-1.0-release.tgz
-       ftp://ftp.lyx.org/pub/xforms/OpenSource/xforms-1.0-release.tgz
+       http://savannah.nongnu.org/download/xforms/
 
 If you use a rpm-based linux distribution, such as RedHat or Mandrake,
 we recommend that you grab a version of xforms from
@@ -81,34 +96,13 @@ Look for the xforms-1.0-release.src.rpm or the binary libforms*.i386.rpm.
 
 In addition, you must have libXpm version 4.7 or newer.
 
-* Qt frontend
-
-LyX has been tested with both Qt 2.x and 3.x libraries. The only special
-point to make is that you must ensure that both LyX and the Qt libraries
-are compiled with the same C++ compiler.
-
-Note that if Qt is using Xft2/fontconfig, you may need to install the
-latex-xft-fonts package (at ftp://ftp.lyx.org/pub/lyx/contrib/) to get
-maths symbols displayed properly. To find out, type:
-
-       ldd `which lyx` | grep fontconfig
-
-at the console. Both RH8 and Debian unstable distributions are known
-to use fontconfig.
-
-If, however, your version of Qt does not use fontconfig, then TeX
-fonts should be added to the font path. 'man xset' is your friend.
-
 * Other things to note
 
 If you make modifications to files in src/ (for example by applying a
 patch), you will need to have the GNU gettext package installed, due
 to some dependencies in the makefiles. You can get the latest version
 from:
-       ftp://ftp.gnu.org/gnu/gettext/gettext-0.11.4.tar.gz
-
-LyX contains a hack to work around this, but you should not rely too
-much on it.
+       ftp://ftp.gnu.org/gnu/gettext/
 
 To use the thesaurus, you will need to install libAikSaurus, available
 from:
@@ -352,14 +346,6 @@ notify us.
     latest updated gcc and related packages installed (at least -85),
     or LyX will not compile or will be mis-compiled.
 
-  o if you get an error message when compiling LyX that looks like this :
-
-    ../../src/minibuffer.h:17: using directive `Object' introduced
-    ambiguous type `_ObjectRec *'
-
-    then you need to upgrade the version of the xforms library you have
-    installed.
-
   o On SUN Sparc Solaris 8, you need gnumake. The LyX makefiles do not
     work with Solaris make.
 
diff --git a/README b/README
index cc5b3d1cc9bb82dacab89b875ca43f9be1c19d91..e6e2054d4dbd59609224ee5bedd67c789875df1f 100644 (file)
--- a/README
+++ b/README
@@ -1,47 +1,6 @@
-Preamble: LyX version scheme
-
-       In September of 1999 the LyX Team decided that we could no
-       longer successfully use the two strand development process
-       like the Linux kernel. The idea was to to switch to a
-       development model similar to that used by Fetchmail where
-       we would make only small stable changes between releases
-       and release more often.  This lead to the 1.1.x series of LyX
-       releases during which the inhards of the program were rewritten
-       to make use of the C++ Standard Library features, establish
-       the foundations of GUI/system independence, and generally
-       clean up the data structures used in the core of LyX.
-
-       As of April 2002, this transition phase is completed and we
-       feel it is time to switch to (yet) another version scheme.
-       This new series will be in a state of continual advancement.
-       Note the word "advancement" and not "development." Development
-       will be occurring in branches of CVS and once the
-       feature/modification has proved stable it will be merged into
-       the main releases.
-
-       LyX still uses a continuous numbering scheme in which odd or
-       even numbering is not significant. Instead a number '1.x.y'
-       indicates stable release '1.x', fix level 'y'. Prereleases
-       are labeled with a "pre" suffix. Thus there are three possible
-       file names:
-
-          lyx-1.2.0.tar.gz       -- stable release
-          lyx-1.2.2.tar.gz       -- second maintenance release of the
-                                    1.2.0 stable release
-          lyx-1.2.0pre1.tar.gz   -- potentially unstable test release
-
-       The maintenance releases are designed primarily to fix bugs. The
-       goal here is not to have parallel development as for the linux
-       kernel (the team is too small to afford that), but rather to
-       include all the simple (so that the maintenance burden on us
-       is not too high) and safe (so that system administrators can
-       install them without fear) bug fixes.  Experience shows that
-       these releases will contain a few new features, and that the
-       bulk of the patches will be documentation updates.
-
 What is LyX?
 
-       LyX is an advanced open-source "document processor". Unlike
+       LyX is an advanced, open-source "document processor". Unlike
        standard word processors, LyX encourages writing based on the
        structure of your documents, not their appearance. It lets you
        concentrate on writing, leaving details of visual layout to the
@@ -58,32 +17,62 @@ What is LyX not?
        Desktop Publishing program.  It's a more modern way of
        creating documents that look much nicer, but without wasting
        time with layout-fiddling.  For these reasons you might need
-       little time to get used to the differences.
+       little time to get used to the differences.
        If you are looking for a free Desktop Publishing program for
        Unix, you will be disappointed.
 
 What do I need to run LyX?
 
-       A Unix-like system or Windows with cygwin, OS/2 with XFree
-       At least X11 Release 5.
-       A decent LaTeX2e installation (e.g. teTeX or NTeX) not older
+       Either of :
+       * a Unix-like system (or Windows with cygwin, OS/2 with XFree)
+         with at least X11R5 
+       * Windows 98 or newer  
+       * Mac OS 10.2 or newer  
+
+       A decent LaTeX2e installation (e.g. teTeX for unix) not older
           than 1995/12/01.
-       Perl5.002 or later to import LaTeX files into LyX.
+       Python 1.5.2 or later to convert old LyX files
+
+How does the LyX version scheme work?
+
+       LyX uses a continuous numbering scheme in which odd or
+       even numbering is not significant. Instead a number '1.x.y'
+       indicates stable release '1.x', fix level 'y'. Prereleases
+       are labeled with a "pre" suffix. Thus there are three possible
+       file names:
+
+          lyx-1.4.0.tar.gz       -- stable release
+          lyx-1.4.5.tar.gz       -- fifth maintenance release of the
+                                    1.4 stable release
+          lyx-1.4.0pre1.tar.gz   -- potentially unstable test release
+
+       The maintenance releases are designed primarily to fix bugs. The
+       goal here is not to have parallel development as for the linux
+       kernel (the team is too small to afford that), but rather to
+       include all the simple (so that the maintenance burden on us
+       is not too high) and safe (so that system administrators can
+       install them without fear) bug fixes.  Experience shows that
+       these releases will contain a few new features, and that the
+       bulk of the patches will be documentation updates.
+
+       If you get the source from cvs, the version string will look like
+       one of:
+
+          1.4.1cvs     -- this is the stable branch on which maintenance
+                          release 1.4.1 will eventually be tagged.
+          1.5.0cvs     -- this is the main branch on which stable
+                          release 1.5.0 will eventually be tagged.
 
 What's new?
 
        Read NEWS.
 
-How do I install a binary distribution of LyX?
+How do I install .tar.gz a binary distribution of LyX?
 
        Unpack it and run it.  We recommend unpacking it in /usr/local,
        but it should work anywhere.  In particular, you can try LyX
-       in a temporary directory before installing permanently by
-       typing "bin/lyx".
-
-       We recommend that you configure LyX system-wide by copying the
-        file share/lyx/lyxrc.example to share/lyx/lyxrc, and then
-       reading and modifying it.
+       in a temporary directory 'my_bin' before installing permanently
+       by typing "my_bin/lyx".
 
        You should read the notes regarding this particular build in
        the file README.bin.
@@ -91,21 +80,20 @@ How do I install a binary distribution of LyX?
 How do I upgrade from an earlier LyX version?
 
        Read the file UPGRADING for info on this subject.
-       If you are upgrading from version 0.12.0 or later, you don't
-       need to do anything special.
 
 What do I need to compile LyX from the source distribution?
 
-       * A good c++ compiler.  Development is being done mainly on
-         gcc/g++, but some others work. As of LyX 1.3.0, you need at
-         least gcc 2.95.X (or egcs 1.1.x). Another compiler known to
-         work is compaq cxx 6.1.
+       * A good C++ compiler.  Development is being done mainly with
+         gcc/g++, but some others work also. As of LyX 1.4.0, you need at
+         least gcc 3.x.
+
        Either:
-       * The Xforms library, version 0.89.5 or newer. We recommend
-         the LGPL version 1.0.
+       * The Xforms library, version 1.0.
        * LibXpm, version 4.7 or newer.
+
        Or:
-       * The Qt library, version 2.x or 3.x.
+       * The Qt library, version 3.0 or newer (although version 2.3
+       may work).
 
        Read the file "INSTALL" for more information on compiling.
 
@@ -114,7 +102,7 @@ Okay, I've installed LyX. What now?
        Once you've installed it, and everything looks fine, go read
        the "Introduction" item under the Help menu.  You should follow
        the instructions there, which tell you to read (or at least skim)
-       the Tutorial. After that, you should also read "Help/LaTeX
+       the Tutorial. After that, you should also read "Help>LaTeX
        configuration" which provides info on your LaTeX configuration
        as LyX sees it.  You might be missing a package or two that you'd
        like to have.
@@ -123,34 +111,30 @@ Okay, I've installed LyX. What now?
 
 Does LyX have support for non-English speakers/writers/readers?
 
-       Yes. LyX supports writing in many languages.
+       Yes. LyX supports writing in many languages, including
+       right-to-left languages like Arabic or Hebrew. There is a port
+       of LyX named CJK-LyX which adds support for Chinese, Korean
+       and Japanese (http://cellular.phys.pusan.ac.kr/cjk.html)
 
        Menus and error messages have been translated to the following
        languages (* means there are language-specific keyboard menu
        bindings as well):
 
-       Basque      (eu)
-       Bulgarian   (bg)
-       Catalan     (ca)
-       Czech       (cs)
-       Danish      (da)
-       German      (de)    *
+       French      (fr)
        Spanish     (es)
-       Finnish     (fi)
-       French      (fr)    *
-       Hebrew      (he)
-       Hungarian   (hu)    *
        Italian     (it)
-       Dutch       (nl)
-       Norwegian   (no)
-       Polish      (pl)
-       Portuguese  (pt)    *
-       Romanian    (ro)
+       Danish      (da)
+       Basque      (eu)
+       Nynorsk     (nn)
+       Finnish     (fi)    *
+       German      (de)    *
        Russian     (ru)
+       Polish      (pl)
+       Slovak      (sk)
        Slovenian   (sl)
-       Swedish     (sv)    *
-       Turkish     (tr)
-       Walloon     (wa)
+       Romanian    (ro)
+       Norwegian   (no)
+       Dutch       (nl)
 
        Keymaps can ease typing in one or more of the following languages:
 
@@ -177,11 +161,15 @@ Internet resources of relevance to LyX
        LyX homepages around the world:
        http://www.lyx.org/
 
-       Main LyX archive site:
+       The LyX Wiki is the place where users can share information on
+       setting up and using LyX.
+       http://wiki.lyx.org/
+
+       The main LyX archive site:
        ftp://ftp.lyx.org/pub/lyx/
 
        The LyX Development page has information about the development
-       effort. LyX is now under CVS control, so you can get the very
+       effort. LyX is under CVS control, so you can get the very
        latest sources from there at any time.
        http://www.devel.lyx.org/
        ftp://www.devel.lyx.org/pub/lyx/
@@ -191,14 +179,14 @@ How do I submit a bug report?
        If possible, read the Introduction found under the Help menu in LyX.
        You'll find detailed info on submitting bug reports there.
 
-       If you can't do that, send details to the LyX Developers mailing
+       If you can't do that, send details to the LyX Developers' mailing
        list, or use the LyX bug tracker at http://bugzilla.lyx.org/.
        Don't forget to mention which version you are having problems with!
 
 How can I participate in the development of LyX?
 
-       Any help with the development of LyX is greatly appreciated--
-       after all LyX wouldn't be what it is today without the help
+       Any help with the development of LyX is greatly appreciated ---
+       after all, LyX wouldn't be what it is today without the help
        of volunteers. We need your help!
 
        If you want to work on LyX, you should contact the developer's
@@ -206,14 +194,15 @@ How can I participate in the development of LyX?
        cleaned up, and therefore it's important to follow some rules.
        Read about those rules in development/Code_rules/.
 
-       If you don't know C++, there are many other ways to contribute.
-       Write documentation. Help to internationalize LyX by translating
-       documentation or menus/error messages, or by writing a new keymap.
-       Write a new textclass.  Work on reLyX (Perl). Find bugs (but please
-       read the list of known bugs first). Contribute money. Or just offer
-       feature suggestions (but please read the online TODO list first).
+       If you don't know C++, there are many other ways to
+       contribute. Write documentation. Help to internationalize LyX
+       by translating documentation or menus/error messages, or by
+       writing a new keymap. Write a new textclass. Find bugs (but
+       please read the list of known bugs first). Contribute money.
+       Or just offer feature suggestions (but please read the online
+       TODO list first).
 
-Thank you for trying LyX, and we appreciate your feedback in the mailing
+Thank you for trying LyX. We appreciate your feedback in the mailing
 lists.
 
 The LyX Team.
index 457977a52e376e535c34fc2182487c508e324cb1..f5970993eb8ee90fac7e60a33a3befdfbcc961c0 100644 (file)
@@ -1,5 +1,8 @@
 2005-07-18  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
 
+       * lyxinclude.m4 (LYX_USE_FRONTENDS): require the user to select a
+       frontend. 
+
        * qt.m4 (QT_DO_IT_ALL): define QT_NO_STL.
 
 2005-07-18  Lars Gullik Bjønnes  <larsbj@lyx.org>
index 274a738bad4bbe455f04f24e17a9b419b1a409da..7ed3156a1502236c2ba4379d1291b99b8aa18f77 100644 (file)
@@ -559,7 +559,11 @@ AC_DEFUN([LYX_USE_FRONTENDS],
 AC_ARG_WITH(frontend,
   [  --with-frontend=THIS    Use THIS frontend as main GUI:
                            Possible values: xforms, qt, gtk(EXPERIMENTAL)],
-  [FRONTENDS="$withval"], [FRONTENDS="xforms"])
+  [FRONTENDS="$withval"])
+if test "x$FRONTENDS" = x ; then
+  AC_MSG_RESULT(none)
+  AC_ERROR("Please select a frontend using --with-frontend")
+fi
 AC_MSG_RESULT($FRONTENDS)
 AC_SUBST(FRONTENDS)
 AC_SUBST(FRONTENDS_SUBDIRS)