Your message dated Sun, 30 Jul 2006 16:11:30 +0200
with message-id <[EMAIL PROTECTED]>
and subject line exult: FTBFS (gcc-4.1): fmopldrv.h:79: error: extra
qualification 'OplDriver::' on member 'send'
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: exult
Version: 1.2-6.1
Severity: normal
Tags: patch
When building 'exult' on unstable with gcc-4.1,
I get the following error:
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I./../../headers -I./../../conf -I./../..
-I./.. -I./../../files -I./../../imagewin -I./../../shapes -I/usr/include/SDL
-D_REENTRANT -DXWIN -O2 -Wno-long-long -I../../conf -I../../files -g -O2
-I/usr/include/SDL -D_REENTRANT -Wp,-MD,.deps/fmopl_midi.pp -c fmopl_midi.cc -o
fmopl_midi.o
fmopldrv.h:79: error: extra qualification 'OplDriver::' on member 'send'
make[4]: *** [fmopl_midi.lo] Error 1
With the attached patch 'exult' can be compiled using gcc-4.1.
Regards
Andreas Jochens
diff -urN ../tmp-orig/exult-1.2/audio/midi_drivers/fmopldrv.h
./audio/midi_drivers/fmopldrv.h
--- ../tmp-orig/exult-1.2/audio/midi_drivers/fmopldrv.h 2002-08-06
18:10:31.000000000 +0000
+++ ./audio/midi_drivers/fmopldrv.h 2006-04-21 17:35:04.000000000 +0000
@@ -76,7 +76,7 @@
/* output a packed midi command to the midi stream
* valid only if mode is MO_SIMPLE
*/
- void OplDriver::send(uint32 b);
+ void send(uint32 b);
/* retrieve a string representation of an error code */
static const char *get_error_name(int error_code);
diff -urN ../tmp-orig/exult-1.2/usecode/ucxt/include/ucfunc.h
./usecode/ucxt/include/ucfunc.h
--- ../tmp-orig/exult-1.2/usecode/ucxt/include/ucfunc.h 2003-08-31
17:32:28.000000000 +0000
+++ ./usecode/ucxt/include/ucfunc.h 2006-04-21 17:37:13.000000000 +0000
@@ -206,7 +206,7 @@
bool output_list(std::ostream &o, unsigned int funcno, const
UCOptions &options);
bool output_ucs(std::ostream &o, const FuncMap &funcmap, const
std::map<unsigned int, std::string> &intrinsics, const UCOptions &options);
- std::ostream &UCFunc::output_ucs_funcname(std::ostream &o,
const FuncMap &funcmap);
+ std::ostream &output_ucs_funcname(std::ostream &o, const
FuncMap &funcmap);
std::ostream &output_ucs_funcname(std::ostream &o, const
FuncMap &funcmap,
unsigned int funcid,
unsigned int numargs, bool return_var);
--- End Message ---
--- Begin Message ---
Version: 1.2-7
Hi,
sorry, I forgot to mention this in the changelog, this is fixed now.
thanks,
Michael
--- End Message ---