On Wednesday 28 September 2005 20:30, Luis Rivera wrote: > these binaries indeed work (100%, as predicted) on Win98SE [see below]; > I'm reporting failure on Win95, exclusively... sorry!
Don't worry. I want to know about the failures. I'm sure it has something to do with the emulation of GetLongPathName (which doesn't exist natively on Win95) in the NewAPIs.h header file. We'll solve the problem eventually. > Beware: Win98 is not %* aware; you need to state the usual set of > variables, like %1 %2 ... In a nutshell, you need a lyx2lyx.bat file in > /Resources/lyx/lyx2lyx, with a single line: > > <pathto>python <pathtolyx2lyx>/lyx2lyx %1 %2 %3 %4 %5 %6 %7 %8 Actually, we'd have something a little more sophisticated. More like: @echo off if "%~1" == "~1" goto win95 start "Python" "C:\Python24\python.exe" %* goto end :win95 start "Python" "C:\Python24\python.exe" %1 %2 %3 %4 %5 %6 %7 %8 %9 :end > Moreover: you need the new lyx2lyx files, distributed with tex2lyx, in > the lyx2lyx directory; the 1.3.3 distribution is tuned to older lyx > formats, and won't convert the output from tex2lyx... > > > I could not found workaround for my lyx crash (IE6.0.2600+LyX > > 1.3.7cvs). It is just exits during textclass.lst. > I've reported this failure before; if I undertand Angus's approach, > he's tackling down the Get-Cetera failures first; then we'll see if he > can make LyX GUI run, at least for Win98... Right. One thing at a time. Angus