Anders Ekberg <a...@mac.com> writes: > Could something like this work?
I am a bit in a hurry, but a few comments on this: + ./configure --prefix=/Path/to/LyX.app --disable-concept-checks --with-version-suffix=-2.0 --with-qt4-dir=/Path/to/QT4/ --enable-optimization=-Os --without-x --with-included-gettext --with-frontend=qt4 --disable-stdlib-debug --without-aspell --without-pspell --disable-shared --enable-static --enable-build-type=rel Cut in parts + ./configure --prefix=/Path/to/LyX.app --disable-concept-checks Is --disable-concept-checks needed? --with-version-suffix=-2.0 --with-qt4-dir=/Path/to/QT4/ ----enable-optimization=-Os OK --without-x I think this is not needed. --with-included-gettext OK --with-frontend=qt4 I think this is not needed. --disable-stdlib-debug This is implied by build-type=rel --without-aspell --without-pspell This is not needed if you do not have the relevant libraries installed --disable-shared --enable-static This has no effect in trunk since we do not use libtool anymore. --enable-build-type=rel Note that this is * not needed with a normal release (it is the default) * not always wanted with a 1.x.ysvn release, since it disables debug options. This only make sense when one wants to compile a development version as if it were a stable one, e.g. for a normal use who follows the stable branch. With trunk, I'd advise against turning off all debug features, except in the important case where one wants to do profiling. JMarc