Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 294913 Details for
Bug 432694
boost python headers cause compile error with gcc-4.3
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
GCC 4.3 fixes for vegastrike
vegastrike-0.4.3-gcc43.patch (text/plain), 4.52 KB, created by
Petr Machata
on 2008-02-14 15:06:32 UTC
(
hide
)
Description:
GCC 4.3 fixes for vegastrike
Filename:
MIME Type:
Creator:
Petr Machata
Created:
2008-02-14 15:06:32 UTC
Size:
4.52 KB
patch
obsolete
>diff -urp vegastrike-0.4.3/objconv/asteroidgen.cpp vegastrike-0.4.3-pm/objconv/asteroidgen.cpp >--- vegastrike-0.4.3/objconv/asteroidgen.cpp 2003-06-06 02:51:07.000000000 +0200 >+++ vegastrike-0.4.3-pm/objconv/asteroidgen.cpp 2008-02-14 20:49:06.000000000 +0100 >@@ -2,6 +2,7 @@ > #include <stdio.h> > #include <stdlib.h> > #include <math.h> >+#include <time.h> > #ifndef M_PI > #define M_PI 3.14159265358979323846264338328 > #endif >diff -urp vegastrike-0.4.3/objconv/mesher/converter.cpp vegastrike-0.4.3-pm/objconv/mesher/converter.cpp >--- vegastrike-0.4.3/objconv/mesher/converter.cpp 2005-01-29 11:40:56.000000000 +0100 >+++ vegastrike-0.4.3-pm/objconv/mesher/converter.cpp 2008-02-14 20:45:39.000000000 +0100 >@@ -1,3 +1,4 @@ >+#include <string.h> > #include "from_obj.h" > #include "from_BFXM.h" > void usage(); >diff -urp vegastrike-0.4.3/objconv/mesher/hashtable.h vegastrike-0.4.3-pm/objconv/mesher/hashtable.h >--- vegastrike-0.4.3/objconv/mesher/hashtable.h 2004-02-06 10:16:13.000000000 +0100 >+++ vegastrike-0.4.3-pm/objconv/mesher/hashtable.h 2008-02-14 20:46:29.000000000 +0100 >@@ -26,6 +26,8 @@ > #include <list> > #include <string> > #include <vector> >+#include <string.h> >+#include <stdlib.h> > > using namespace std; > //const int hashsize = 1001; >diff -urp vegastrike-0.4.3/src/gfx/quadsquare.h vegastrike-0.4.3-pm/src/gfx/quadsquare.h >--- vegastrike-0.4.3/src/gfx/quadsquare.h 2004-02-07 11:41:28.000000000 +0100 >+++ vegastrike-0.4.3-pm/src/gfx/quadsquare.h 2008-02-14 20:26:56.000000000 +0100 >@@ -15,6 +15,7 @@ > #include "vec.h" > #include "gfxlib.h" > #include <vector> >+#include <stdlib.h> > #include "resizable.h" > #include "nonlinear_transform.h" > class Texture; >diff -urp vegastrike-0.4.3/src/gfx/stream_texture.cpp vegastrike-0.4.3-pm/src/gfx/stream_texture.cpp >--- vegastrike-0.4.3/src/gfx/stream_texture.cpp 2004-09-05 11:34:25.000000000 +0200 >+++ vegastrike-0.4.3-pm/src/gfx/stream_texture.cpp 2008-02-14 20:31:28.000000000 +0100 >@@ -1,5 +1,7 @@ > #include "stream_texture.h" > >+#include <stdlib.h> >+ > StreamTexture* StreamTexture::Clone(){ > unsigned char * x = Map(); > StreamTexture * ret = new StreamTexture(sizeX,sizeY,filtertype,x); >diff -urp vegastrike-0.4.3/src/gfx/tex_transform.cpp vegastrike-0.4.3-pm/src/gfx/tex_transform.cpp >--- vegastrike-0.4.3/src/gfx/tex_transform.cpp 2003-10-02 09:29:32.000000000 +0200 >+++ vegastrike-0.4.3-pm/src/gfx/tex_transform.cpp 2008-02-14 20:30:58.000000000 +0100 >@@ -1,5 +1,6 @@ > #include "vsimage.h" > >+#include <stdlib.h> > #include <png.h> > > unsigned char * texTransform (int &bpp, int &color_type, unsigned long &width, unsigned long &height, unsigned char ** rp){ >diff -urp vegastrike-0.4.3/src/gldrv/gl_light_state.cpp vegastrike-0.4.3-pm/src/gldrv/gl_light_state.cpp >--- vegastrike-0.4.3/src/gldrv/gl_light_state.cpp 2003-12-02 18:37:27.000000000 +0100 >+++ vegastrike-0.4.3-pm/src/gldrv/gl_light_state.cpp 2008-02-14 20:34:07.000000000 +0100 >@@ -1,4 +1,5 @@ > #include <assert.h> >+#include <string.h> > //#include <vegastrike.h> > #include "gl_globals.h" > #include "hashtable_3d.h" >diff -urp vegastrike-0.4.3/src/gldrv/gl_material.cpp vegastrike-0.4.3-pm/src/gldrv/gl_material.cpp >--- vegastrike-0.4.3/src/gldrv/gl_material.cpp 2004-08-05 06:06:00.000000000 +0200 >+++ vegastrike-0.4.3-pm/src/gldrv/gl_material.cpp 2008-02-14 20:34:35.000000000 +0100 >@@ -21,6 +21,7 @@ > > #include "gfxlib.h" > #include "gl_globals.h" >+#include <string.h> > //#include "gl_globals.h" > //#include "gfx_transform_vector.h" > >diff -urp vegastrike-0.4.3/src/networking/lowlevel/vsnet_debug.cpp vegastrike-0.4.3-pm/src/networking/lowlevel/vsnet_debug.cpp >--- vegastrike-0.4.3/src/networking/lowlevel/vsnet_debug.cpp 2004-04-13 16:52:05.000000000 +0200 >+++ vegastrike-0.4.3-pm/src/networking/lowlevel/vsnet_debug.cpp 2008-02-14 20:37:19.000000000 +0100 >@@ -1,4 +1,5 @@ > #include "vsnet_debug.h" >+#include <string.h> > > using namespace std; > >diff -urp vegastrike-0.4.3/src/pk3.cpp vegastrike-0.4.3-pm/src/pk3.cpp >--- vegastrike-0.4.3/src/pk3.cpp 2004-11-29 09:08:13.000000000 +0100 >+++ vegastrike-0.4.3-pm/src/pk3.cpp 2008-02-14 20:41:15.000000000 +0100 >@@ -43,6 +43,7 @@ > > #include "pk3.h" > #include <iostream> >+#include <stdlib.h> > #include "posh.h" > using std::cerr; > using std::endl; >diff -urp vegastrike-0.4.3/tools/vsrmake.cpp vegastrike-0.4.3-pm/tools/vsrmake.cpp >--- vegastrike-0.4.3/tools/vsrmake.cpp 2003-09-21 03:15:43.000000000 +0200 >+++ vegastrike-0.4.3-pm/tools/vsrmake.cpp 2008-02-14 20:49:39.000000000 +0100 >@@ -28,6 +28,7 @@ > > @todo Allow packaging of files named to the standard input. > */ >+#include <string.h> > #include "vsrtools.h" > #include "common.h" > #include <stdlib.h>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 432694
: 294913