Hi wxWidgets users, in order to use the ReportWriter under SuSE Linux 9.0 you should do the following: 1. Change to the directory where you installed wxWidgets. For example cd ~/wxGTK-2.4.2 2. Un-tar the repwrt*.tgz file which you have downloaded from http://www.daily.de/RepWrt (For example repwrt105.tgz or a later version if available) tar xvzf /tmp/repwrt105.tgz 3. As long as nobody of the core developers is kind enough of integrating the two necessary files into the default file-list(s), you have to do this manually. With your favorite editor open src/gtk/files.lst, find the corresponding locations and change them as shown: *** From (ca. line 143): common/regex.cpp \ common/resource.cpp \ To: common/regex.cpp \ common/repwrt.cpp \ common/resource.cpp \ *** From (ca. line 442): region.h \ resource.h \ To: region.h \ repwrt.h \ resource.h \ *** From (ca. line 734): regex.o \ resource.o \ To: regex.o \ repwrt.o \ resource.o \ 4. Rebuild the library make 5. Become 'root' and make install In order to use the demo/test program, un-tar the report_demo.tgz file which you have downloaded from http://www.daily.de/RepWrt and build it as described below: cd ~/wxGTK-2.4.2 tar xvzf /tmp/report_demo.tgz cd samples/report make -f makefile.unx This should give you an executable file "report" which you can start by entering ./report & Enjoy! Juergen