Comment 27 for bug 942050

Revision history for this message
David Mathog (mathog) wrote :

This was built the normal way, as far as I can tell. Code was downloaded into two directories with:

bzr checkout lp:inkscape-devlibs devlibs
bzr checkout lp:inkscape trunk

respectively. Then:

//modify mingwenv to pick up the right path to devlibs
mingwenv
g++ buildtool.cpp -o btool
btool

The only modification to build.xml (later) was to add "-lwinspool" to support a local modification of the emf code that gets it to use a printer instead of the screen for the reference device (higher resolution). When I run it ghostscript is omitted in the .bat

% cat run_inkscape.bat
@echo Setting environment variables for MinGw build of Inkscape
IF "%DEVLIBS_PATH%"=="" set DEVLIBS_PATH=c:\progs\devlibs2
IF "%MINGW_PATH%"=="" set MINGW_PATH=c:\progs\mingw
set MINGW_BIN=%MINGW_PATH%\bin
set PKG_CONFIG_PATH=%DEVLIBS_PATH%\lib\pkgconfig
REM set GS_BIN=C:\latex\gs\gs8.61\bin
REM set PATH=%DEVLIBS_PATH%\bin;%DEVLIBS_PATH%\python;%MINGW_BIN%;%PATH%;%GS_BIN%
set PATH=%DEVLIBS_PATH%\bin;%DEVLIBS_PATH%\python;%MINGW_BIN%;%PATH%
inkscape

Maybe there is no version number because of the way bzr grabs code from trunk?