mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
2.4 KiB

  1. diff -dur exult-1.2/audio/midi_drivers/fmopldrv.h exult-1.2-p/audio/midi_drivers/fmopldrv.h
  2. --- exult-1.2/audio/midi_drivers/fmopldrv.h 2002-08-06 20:10:31.000000000 +0200
  3. +++ exult-1.2-p/audio/midi_drivers/fmopldrv.h 2007-06-03 17:34:32.000000000 +0200
  4. @@ -76,7 +76,7 @@
  5. /* output a packed midi command to the midi stream
  6. * valid only if mode is MO_SIMPLE
  7. */
  8. - void OplDriver::send(uint32 b);
  9. + void send(uint32 b);
  10. /* retrieve a string representation of an error code */
  11. static const char *get_error_name(int error_code);
  12. diff -dur exult-1.2/hash_utils.h exult-1.2-p/hash_utils.h
  13. --- exult-1.2/hash_utils.h 2003-08-31 19:32:24.000000000 +0200
  14. +++ exult-1.2-p/hash_utils.h 2007-06-03 17:22:29.000000000 +0200
  15. @@ -26,7 +26,7 @@
  16. #else
  17. #if HAVE_EXT_HASH_MAP
  18. # include <ext/hash_map>
  19. -# if (defined(__GNUC__) && (__GNUC__ == 3) && ( __GNUC_MINOR__ > 0))
  20. +# if ( defined(__GNUC__) && ( ((__GNUC__ == 3) && ( __GNUC_MINOR__ > 0)) || (__GNUC__ > 3) ) )
  21. using __gnu_cxx::hash_map;
  22. # else
  23. using std::hash_map;
  24. @@ -44,7 +44,7 @@
  25. #else
  26. #if HAVE_EXT_HASH_SET
  27. # include <ext/hash_set>
  28. -# if (defined(__GNUC__) && (__GNUC__ == 3) && ( __GNUC_MINOR__ > 0))
  29. +# if ( defined(__GNUC__) && ( ((__GNUC__ == 3) && ( __GNUC_MINOR__ > 0)) || (__GNUC__ > 3) ) )
  30. using __gnu_cxx::hash_set;
  31. # else
  32. using std::hash_set;
  33. diff -dur exult-1.2/mouse.h exult-1.2-p/mouse.h
  34. --- exult-1.2/mouse.h 2003-08-31 19:32:24.000000000 +0200
  35. +++ exult-1.2-p/mouse.h 2007-06-03 17:33:53.000000000 +0200
  36. @@ -27,6 +27,8 @@
  37. #include "vgafile.h"
  38. #include "glshape.h"
  39. +class Game_window;
  40. +
  41. /*
  42. * Handle custom mouse pointers.
  43. */
  44. diff -dur exult-1.2/usecode/ucxt/include/ucfunc.h exult-1.2-p/usecode/ucxt/include/ucfunc.h
  45. --- exult-1.2/usecode/ucxt/include/ucfunc.h 2003-08-31 19:32:28.000000000 +0200
  46. +++ exult-1.2-p/usecode/ucxt/include/ucfunc.h 2007-06-03 17:37:05.000000000 +0200
  47. @@ -206,7 +206,7 @@
  48. bool output_list(std::ostream &o, unsigned int funcno, const UCOptions &options);
  49. bool output_ucs(std::ostream &o, const FuncMap &funcmap, const std::map<unsigned int, std::string> &intrinsics, const UCOptions &options);
  50. - std::ostream &UCFunc::output_ucs_funcname(std::ostream &o, const FuncMap &funcmap);
  51. + std::ostream &output_ucs_funcname(std::ostream &o, const FuncMap &funcmap);
  52. std::ostream &output_ucs_funcname(std::ostream &o, const FuncMap &funcmap,
  53. unsigned int funcid,
  54. unsigned int numargs, bool return_var);