On Sat, 07 Jun 2003 20:11:01 -0700 Paul Scott <[EMAIL PROTECTED]> wrote: > getopt-long.cc: In function `char* dcgettext(...)': > getopt-long.cc:24: `s' undeclared (first use this function)
Are you sure you're building with gcc 3.2? This is the error that we saw with gcc 3.3; Jan supplied a patch for it. > inline char* > gettext (char const* s) > { > return (char*)s; > } > #else > #include <libintl.h> > #endif (results of the patch) Replace that section with this: ----- #if !HAVE_GETTEXT #ifndef gettext inline char* gettext (char const* s) { return (char*)s; } #else #warning huh? #endif #else #include <libintl.h> #endif ----- It should work now. Cheers, - Graham _______________________________________________ Lilypond-devel mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-devel