On Sat, 24 Apr 2004 17:01:13 +1000 Mark Livingstone <[EMAIL PROTECTED]> wrote:
ML> > Should be fixed now, ML> ML> Yup. Thanks. Now it's broken here ;-) ML> ML> c++ -o modules/Migrate.so -shared -I/home/markl/projects/M/build/include -I/home/markl/projects/M/include -I/usr/include/python2.3 -DNO_IDEA -DNO_DSA -DOPENSSL_NO_KRB5 -DDEBUG -DDEBUG_markl -I/usr/local/lib/wx/include/gtkd-2.5 -I/usr/local/include -D__WXDEBUG__ -D__WXGTK__ -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/home/markl/projects/M/extra/include -I/home/markl/projects/M/build/extra/src/c-client -I/home/markl/projects/M/extra/src/compface -I/home/markl/projects/M/src/wx/vcard -fno-exceptions -fno-rtti -fno-operator-names -fno-exceptions -g3 -O0 -MMD -Wall .src/modules/Migrate.cpp -export-dynamic ML> .src/modules/Migrate.cpp: In constructor `MigrateWizard::MigrateWizard(wxWindow*)': ML> .src/modules/Migrate.cpp:1778: error: `GetBitmap' undeclared (first use this function) ML> .src/modules/Migrate.cpp:1778: error: (Each undeclared identifier is reported only once for each function it appears in.) ML> make[1]: *** [modules/Migrate.so] Error 1 ML> make[1]: Leaving directory `/home/markl/projects/M/build/src' ML> make: *** [all] Error 2 In general, when you get errors ike this, they're really simple to fix: in 99% it means that some header is not included under Unix (it is included under Windows via Mpch.h which is only used for the compilers supporting precompiled headers). For example, in this case it was missing wxIconManager.h include -- added now. Regards, VZ ------------------------------------------------------- This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek For a limited time only, get FREE Ground shipping on all orders of $35 or more. Hurry up and shop folks, this offer expires April 30th! http://www.thinkgeek.com/freeshipping/?cpg=12297 _______________________________________________ Mahogany-Developers mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/mahogany-developers
