osx fixes

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@7856 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2003-10-03 13:34:40 +00:00
parent 9904eb8a9e
commit 68e5b0224b
9 changed files with 37 additions and 15 deletions

View File

@ -1,3 +1,7 @@
2003-10-02 Ronald Florence <ron@18james.com>
* README.MacOSX: reformatting
2003-09-26 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* Makefile.am (EXTRA_DIST): add README.MacOSX

View File

@ -1,5 +1,5 @@
Building LyX on Aqua
Building LyX/Mac
Ronald Florence <ron@18james.com>
@ -29,11 +29,8 @@
as above), cd to the top of the LyX source hierarchy. Then:
% setenv CXX g++2
% setenv LDFLAGS "-framework Carbon -framework OpenGL -framework AGL -framew
ork QuickTime -lz"
% ./configure --with-frontend=qt --without-x --datadir=/Applications/LyX.app
/Contents/Resources --bindir=/Applications/LyX.app/Contents/MacOS --mandir=/App
lications/LyX.app/Contents/Resources/man
% setenv LDFLAGS "-framework Carbon -framework OpenGL -framework AGL -framework QuickTime -lz"
% ./configure --with-frontend=qt --without-x --datadir=/Applications/LyX.app/Contents/Resources --bindir=/Applications/LyX.app/Contents/MacOS --mandir=/Applications/LyX.app/Contents/Resources/man
% make
Download the LyX Framework at
@ -45,12 +42,12 @@ lications/LyX.app/Contents/Resources/man
For information on configuring LyX/Mac, please see the howto at
http://www.18james.com/lyx_on_aqua.html . The binary installation
of LyX on Aqua sets the PATH in ~/.MacOS/environment.plist,
installs the LyX math fonts, configures LyX to use the reLyX and
noweb2lyx commands in the application package and to use system
defaults for viewers, sets up the lyxpipe for Start-LyX, and
optionally installs latex-preview; you will need to do this
configuration manually if you build LyX/Mac yourself.
of LyX/Mac sets the PATH in ~/.MacOS/environment.plist, installs
the LyX math fonts, configures LyX to use the reLyX and noweb2lyx
commands in the application package and to use system defaults for
viewers, sets up the lyxpipe for Start-LyX, and optionally installs
latex-preview; you will need to do this configuration manually if
you build LyX/Mac yourself.
The information on this page is believed to be accurate, has been
used successfully on many systems and sites, and has benefited from

View File

@ -1,3 +1,8 @@
2003-10-02 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* boost/config/user.hpp (BOOST_REGEX_NARROW_INSTANTIATE): define
on OSX
2003-05-26 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* boost/config/compiler/gcc.hpp: accept gcc 3.3 as valid compiler

View File

@ -70,3 +70,6 @@
#define BOOST_NO_WREGEX 1
#define BOOST_NO_WSTRING 1
#define BOOST_FUNCTION_NO_DEPRECATED 1
#if defined(__APPLE__) && defined(__GNUC__)
#define BOOST_REGEX_NARROW_INSTANTIATE
#endif

View File

@ -1,3 +1,7 @@
2003-10-02 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* bind/aqua.bind: fix typo
2003-09-23 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* CREDITS: add Hartmut Haase

View File

@ -18,7 +18,7 @@
\bind "M-~S-i r" "reference-insert"
\bind "M-~S-i n" "note-insert"
\bind "M-~S-i l" "label-insert"
\bind "M-~S-i i "index-insert"
\bind "M-~S-i i" "index-insert"
\bind "M-~S-i s s" "command-sequence math-mode ; math-superscript ; font-free; "
\bind "M-~S-i s u" "command-sequence math-mode ; math-subscript ; font-free; "

View File

@ -1,4 +1,8 @@
2003-10-01 Vitaly Lipatov <lav@vl3143.spb.edu>
2003-10-02 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* qfont_loader.C: add an #include
2003-10-01 Vitaly Lipatov <lav@vl3143.spb.edu>
* FileDialog.C: use fromqstr in a few places to enable the dialog to
read non-latin filenames.

View File

@ -25,6 +25,7 @@
#include <qglobal.h>
#include <qfontmetrics.h>
#include <qfontdatabase.h>
#include <qfontinfo.h>
#include <qstringlist.h>
#include "support/lstrings.h"

View File

@ -22,9 +22,13 @@ What's new
** Updates
- updated italian interface localization
** Bug fixes
- enable the file dialog to open files with non-latin filenames [Qt only]
- add a couple forgotten MacOSX-related files
- enable the file dialog to open files with non-latin filenames. (Qt only.)
- compilation fixes for MacOSX