Re: [Plib-devel] Example Program Changes
Brought to you by:
sjbaker
From: Melchior F. <mf...@us...> - 2006-11-21 22:37:33
|
* Fay John F Dr CTR USAF AFSEO/SK -- Monday 06 November 2006 14:50: > It appears that we are not looking at the same thing. I doubt it: $ cd ~/fgfs/plib $ svn up At revision 2104. There! A full revision, not an incomplete checkout. Only: $ svn status|grep "^M "|grep -v html M src/ssg/ssgLoadTexture.cxx There are only two changed lines in one unrelated file (texture compression patch). The changes to html files only fix the horrible colors so as to make the documentation actually useful. And still: $ find -type f|xargs grep PUCLASS_SCROLLINGLIST $ There! No PUCLASS_SCROLLINGLIST! So there's not surprise that it can't compile. After Wolfram's hint and the following patch, I could finally compile and the program runs here on Linux: $ svn diff Index: src/Makefile.am =================================================================== --- src/Makefile.am (revision 2104) +++ src/Makefile.am (working copy) @@ -1,7 +1,9 @@ bin_PROGRAMS = pguide -pguide_SOURCES = CreateWidget.cxx pGuide.cxx StatusWindow.cxx WidgetList.h \ +pguide_SOURCES = pGuide.cxx StatusWindow.cxx WidgetList.h \ WidgetWindow.cxx WriteCode.cxx LoadSave.cxx PropertiesWindow.cxx +pguide_LDADD = -lplibpuaux + EXTRA_DIST = pGuide.dsp So the file CreateWidget.cxx is really useless and should be removed? m. |