diff options
author | 2008-04-30 21:29:02 +0000 | |
---|---|---|
committer | 2008-04-30 21:29:02 +0000 | |
commit | 8c4f2489326260ed354ff20a53aa6fb8cae2f84c (patch) | |
tree | db2a05f46dc408b41fd51e033f7dbf0ca7cd75cf /games-action/poopmup/files | |
parent | add subversion 1.5 use flags (diff) | |
download | historical-8c4f2489326260ed354ff20a53aa6fb8cae2f84c.tar.gz historical-8c4f2489326260ed354ff20a53aa6fb8cae2f84c.tar.bz2 historical-8c4f2489326260ed354ff20a53aa6fb8cae2f84c.zip |
Fix building with gcc-4.3
Package-Manager: portage-2.1.5_rc6
Diffstat (limited to 'games-action/poopmup/files')
-rw-r--r-- | games-action/poopmup/files/poopmup-1.2-gcc43.patch | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/games-action/poopmup/files/poopmup-1.2-gcc43.patch b/games-action/poopmup/files/poopmup-1.2-gcc43.patch new file mode 100644 index 000000000000..da4a455673a4 --- /dev/null +++ b/games-action/poopmup/files/poopmup-1.2-gcc43.patch @@ -0,0 +1,42 @@ +--- common.h ++++ common.h +@@ -38,7 +38,7 @@ + #define STDCALL + #endif + +-#include <iostream.h> ++#include <iostream> + #include "includes/base/myDisplayLists.h" + #include "myTimeStats.h"
+ +--- includes/base/myMatrix.h ++++ includes/base/myMatrix.h +@@ -57,7 +57,7 @@ + #include "my3dPoint.h" + #include "myVector.h" + +-#include <iostream.h> ++#include <iostream> + #include <math.h> + + /** +--- includes/osd/menu.h ++++ includes/osd/menu.h +@@ -21,6 +21,7 @@ + #define POOPMUP_MENU_H + + #include <stdio.h> ++#include <cstring> + #include "../base/myColor.h" + #include "formElem/button.h" + #include "formElem/intSelector.h" +--- includes/osd/onScreenDisplay.h ++++ includes/osd/onScreenDisplay.h +@@ -21,6 +21,7 @@ + #define ONSCREENDISPLAY_H + + #include <stdio.h> ++#include <cstring> + #include "../base/my3dPoint.h" + #include "../base/myColor.h" + |