From: John L. <jla...@gm...> - 2006-02-16 01:20:47
|
On 2/15/06, Francesco Montorsi <f18...@ya...> wrote: > John Labenski ha scritto: > >> However as always the procedure is: download last official bakefile, > >> overwrite the rules/, output/, presets/ and src/ folders with the > >> respective files from my 0.2.2 > >> > >>>> http://www.geocities.com/f18m_cpp217828/frm-bakefile.tar.gz > > > > I tried to get this working again. I downloaded bakefile 0.2.0 and did > > $rm -Rf rules, output, presets.. then mv ../frm_bakefile/rules etc > > into the bakefile 0.2.0 dir. > > $configure --prefix=3D/home/john/lib/frm_bakefile/install (a new dir I = created) > > $make && make install > > > > then in wxLua/build/bakefiles/ I ran bakefile_gen and I get an error > > > > /home/john/cvs/wxLua_SF/wxLua/build/bakefiles/wxhacks.bkl:79: error: > > can't find file 'presets/wx.bkl' > > > > so I copy the presets (wx.bkl, wx_unix.bkl, wx_win32.bkl) from > > wxWidgets26/build/bakefiles/wxpresets (a cvs checkout of wxWidgets 26) > > to my bakefile install dir > > ..../frm_bakefile/install/share/bakefile/presets > > > > and rerun bakefile_gen and get a new error. > > > > [john@localhost bakefiles]$ ~/lib/bakefile-0.2.0/install/bin/bakefile_g= en > > [1/5] generating watcom from ./wxlua.bkl > > /home/john/cvs/wxLua_SF/wxLua/build/bakefiles/wxlua.bkl:136: error: > > unknown tag 'pkgconfig' > > [bakefile_gen] error: bakefile exited with error > > > > Any ideas? > Sorry! > I forgot to say that pkgconfig module must be installed manually (until > it will be accepted in bakefile CVS, of course ;)): > > Just copy frm-bakefile/rules/pkgconfig.bkl into > /home/john/lib/frm_bakefile/install/rules > > (maybe you'll also want to copy kdevelop.bkl). Ok, so bakefile works now, below is the diff for a new cvs update after running bakefile_gen in wxLua/build/bakefiles. Is it right? The reason why I want to regenerate the bakefiles is that I want to remove the files modules/wxlua/include/wxlintrp.h and modules/wxlua/src/wxlintrp.cpp. Maybe it would be easier if you could just remove those two files and regenerate the bakefiles? Thanks, John Labenski Index: wxLua/build/msw/makefile.bcc =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.bcc,v retrieving revision 1.26 diff -r1.26 makefile.bcc 82,86d81 < # Use monolithic build of wxWidgets? [0,1] < !ifndef WX_MONOLITHIC < WX_MONOLITHIC =3D 0 < !endif < 149,152c144,146 < -DWX_VERSION=3D"$(WX_VERSION)" -DWX_MONOLITHIC=3D"$(WX_MONOLITHIC)"= \ < -DUSE_UTIL=3D"$(USE_UTIL)" -DUSE_APPS=3D"$(USE_APPS)" \ < -DUSE_BIN2C=3D"$(USE_BIN2C)" -DUSE_WXBINDSTC=3D"$(USE_WXBINDSTC)" \ < -DUSE_WXLUADEBUG=3D"$(USE_WXLUADEBUG)" \ --- > -DWX_VERSION=3D"$(WX_VERSION)" -DUSE_UTIL=3D"$(USE_UTIL)" \ > -DUSE_APPS=3D"$(USE_APPS)" -DUSE_BIN2C=3D"$(USE_BIN2C)" \ > -DUSE_WXBINDSTC=3D"$(USE_WXBINDSTC)" -DUSE_WXLUADEBUG=3D"$(USE_WXLU= ADEBUG)" \ Index: wxLua/build/msw/makefile.gcc =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.gcc,v retrieving revision 1.27 diff -r1.27 makefile.gcc 31,33d30 < # Use monolithic build of wxWidgets? [0,1] < WX_MONOLITHIC =3D 0 < 75,76c72 < WX_SHARED=3D"$(WX_SHARED)" WX_VERSION=3D"$(WX_VERSION)" \ < WX_MONOLITHIC=3D"$(WX_MONOLITHIC)" USE_UTIL=3D"$(USE_UTIL)" \ --- > WX_SHARED=3D"$(WX_SHARED)" WX_VERSION=3D"$(WX_VERSION)" USE_UTIL=3D= "$(USE_UTIL)" \ Index: wxLua/build/msw/makefile.vc =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.vc,v retrieving revision 1.28 diff -r1.28 makefile.vc 36,38d35 < # Use monolithic build of wxWidgets? [0,1] < WX_MONOLITHIC =3D 0 < 80,81c77 < WX_SHARED=3D"$(WX_SHARED)" WX_VERSION=3D"$(WX_VERSION)" \ < WX_MONOLITHIC=3D"$(WX_MONOLITHIC)" USE_UTIL=3D"$(USE_UTIL)" \ --- > WX_SHARED=3D"$(WX_SHARED)" WX_VERSION=3D"$(WX_VERSION)" USE_UTIL=3D= "$(USE_UTIL)" \ Index: wxLua/build/msw/makefile.wat =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.wat,v retrieving revision 1.27 diff -r1.27 makefile.wat 36,38d35 < # Use monolithic build of wxWidgets? [0,1] < WX_MONOLITHIC =3D 0 < 122,123c119 < WX_SHARED=3D"$(WX_SHARED)" WX_VERSION=3D"$(WX_VERSION)" & < WX_MONOLITHIC=3D"$(WX_MONOLITHIC)" USE_UTIL=3D"$(USE_UTIL)" & --- > WX_SHARED=3D"$(WX_SHARED)" WX_VERSION=3D"$(WX_VERSION)" USE_UTIL=3D= "$(USE_UTIL)" & |