Bo Peng a écrit :
to load an old document i needed to change
lyx2lyx_version.py.in
into
lyx2lyx_version.py
So the next big thing is this version_suffix business?
Anyway, I have on this scons TODO list,
1. remove unnecessay rebuild, since I found that adding fast_start=yes
can sometimes trigger rebuild.
I noticed that also.
2. qt4 adding "#include file_moc.cpp" to file.C. Abdel, I will give
you a patch to test. If you see a clear advantage, I will complete the
patch with autotools support.
That sounds like a good plan. Please note that the moc files are named
xxx_moc.C with autotools but I guess it's easy to change in
moc/Makefile.am :
- %_moc.C: $(srcdir)/../%.h
+ %_moc.cpp: $(srcdir)/../%.h
3. This lyx2lyx_version.py seems to be important.
4. version_suffix ....
5. Wait for feature request and bug report.
Please look at my CCFLAGS problem.
Then, I would like to investigate why cygwin/lyx can not quit.
Here is my wish list if you bother:
1. find a way to pass CCFLAGS options to gcc.
2. create multiple "config.h" in build directory not in the source (as
is done with autotools):
2.a. release/config.h for all general macro including
BOOST_USER_CONFIG
2.a. release/boost_config.h for all boost_specific macro except
BOOST_USER_CONFIG
2.c. release/support/config.h for all support specific macro (this
will include the general one)
3. link tex2lyx and lyxclient to liblyxbase_pre.a instead of recompiling
copied files.
Abdel.