To anyone trying to compile 1.5.1 under linux, these 2 patches should get you there.
celestia-1.5.1-gcc43.patch
Code: Select all
--- celestia-1.5.1-orig/src/buildstardb.cpp 2008-04-23 17:17:20.000000000 -0400
+++ celestia-1.5.1/src/buildstardb.cpp 2008-12-08 07:11:54.450967906 -0500
@@ -17,6 +17,7 @@
#include <assert.h>
#include <unistd.h>
#include "celengine/stardb.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/asterism.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/asterism.cpp 2008-12-08 07:11:54.451965825 -0500
@@ -8,6 +8,7 @@
// of the License, or (at your option) any later version.
#include <algorithm>
+#include <libintl.h>
#ifndef _WIN32
#ifndef TARGET_OS_MAC
--- celestia-1.5.1-orig/src/celengine/astro.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/astro.cpp 2008-12-08 07:11:54.451965825 -0500
@@ -10,12 +10,14 @@
#include <cmath>
#include <iomanip>
#include <cstdio>
+#include <cstring>
#include <time.h>
#include <celutil/basictypes.h>
#include <celmath/mathlib.h>
#include "celestia.h"
#include "astro.h"
#include <celutil/util.h>
+#include <libintl.h>
#ifndef TARGET_OS_MAC
#ifdef __GNUC__
--- celestia-1.5.1-orig/src/celengine/body.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/body.cpp 2008-12-08 07:11:54.452966926 -0500
@@ -14,6 +14,7 @@
#include <celmath/mathlib.h>
#include <celutil/util.h>
#include <celutil/utf8.h>
+#include <libintl.h>
#include "mesh.h"
#include "meshmanager.h"
#include "body.h"
--- celestia-1.5.1-orig/src/celengine/cmdparser.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/cmdparser.cpp 2008-12-08 07:11:54.453966822 -0500
@@ -30,6 +30,7 @@
#include "astro.h"
#include "cmdparser.h"
#include "glcontext.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/console.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/console.cpp 2008-12-08 07:11:54.453966822 -0500
@@ -10,6 +10,7 @@
#include <cstdarg>
#include <cstdio>
#include <cassert>
+#include <cstring>
#include "celutil/utf8.h"
#include "gl.h"
#include "vecgl.h"
--- celestia-1.5.1-orig/src/celengine/dds.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/dds.cpp 2008-12-08 07:11:54.453966822 -0500
@@ -15,6 +15,7 @@
#include <celengine/gl.h>
#include <celengine/glext.h>
#include <celengine/image.h>
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/dsodb.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/dsodb.cpp 2008-12-08 07:11:54.454967252 -0500
@@ -32,6 +32,7 @@
#include <celengine/galaxy.h>
#include <celengine/opencluster.h>
#include <celengine/nebula.h>
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/fragmentprog.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/fragmentprog.cpp 2008-12-08 07:11:54.470964862 -0500
@@ -13,6 +13,7 @@
#include "gl.h"
#include "glext.h"
#include "fragmentprog.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/galaxy.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/galaxy.cpp 2008-12-08 07:11:54.471965823 -0500
@@ -23,6 +23,8 @@
#include "vecgl.h"
#include "render.h"
#include "texture.h"
+#include <libintl.h>
+#include <string.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/glcontext.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/glcontext.cpp 2008-12-08 07:11:54.472966754 -0500
@@ -12,6 +12,7 @@
#include "gl.h"
#include "glext.h"
#include "glcontext.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/glext.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/glext.cpp 2008-12-08 07:11:54.473966966 -0500
@@ -8,6 +8,7 @@
// of the License, or (at your option) any later version.
#include <string.h>
+#include <cstring>
#include "gl.h"
#ifndef _WIN32
@@ -19,6 +20,7 @@
#endif /* ! _WIN32 */
#include "glext.h"
+#include <libintl.h>
// ARB_texture_compression
glx::PFNGLCOMPRESSEDTEXIMAGE3DARBPROC glx::glCompressedTexImage3DARB;
--- celestia-1.5.1-orig/src/celengine/image.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/image.cpp 2008-12-08 07:11:54.474966681 -0500
@@ -66,6 +66,7 @@
#include <iostream>
#include <algorithm>
#include <cmath>
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/location.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/location.cpp 2008-12-08 07:11:54.478966167 -0500
@@ -11,6 +11,7 @@
#include <celengine/location.h>
#include <celengine/body.h>
#include <celutil/util.h>
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/lodspheremesh.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/lodspheremesh.cpp 2008-12-08 07:11:54.479966143 -0500
@@ -17,6 +17,7 @@
#include "glext.h"
#include "vecgl.h"
#include "lodspheremesh.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/marker.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/marker.cpp 2008-12-08 07:11:54.480965949 -0500
@@ -9,6 +9,7 @@
#include "marker.h"
#include "gl.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/mesh.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/mesh.cpp 2008-12-08 07:11:54.481966554 -0500
@@ -14,6 +14,7 @@
#include <cassert>
#include <iostream>
#include <algorithm>
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/meshmanager.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/meshmanager.cpp 2008-12-08 07:11:54.482966904 -0500
@@ -26,6 +26,7 @@
#include "spheremesh.h"
#include "texmanager.h"
#include "meshmanager.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/modelfile.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/modelfile.cpp 2008-12-08 07:11:54.483966581 -0500
@@ -15,6 +15,8 @@
#include <cassert>
#include <cmath>
#include <cstdio>
+#include <libintl.h>
+#include <string.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/nebula.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/nebula.cpp 2008-12-08 07:11:54.484966034 -0500
@@ -21,6 +21,7 @@
#include "glext.h"
#include "vecgl.h"
#include "render.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/opencluster.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/opencluster.cpp 2008-12-08 07:11:54.484966034 -0500
@@ -19,6 +19,7 @@
#include "gl.h"
#include "vecgl.h"
#include "render.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/overlay.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/overlay.cpp 2008-12-08 07:11:54.485967010 -0500
@@ -9,6 +9,7 @@
#include <cstdarg>
#include <cstdio>
+#include <cstring>
#include <celutil/utf8.h>
#include "gl.h"
#include "vecgl.h"
--- celestia-1.5.1-orig/src/celengine/parseobject.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/parseobject.cpp 2008-12-08 07:11:54.486966881 -0500
@@ -21,6 +21,7 @@
#include "trajmanager.h"
#include "rotationmanager.h"
#include "universe.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/render.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/render.cpp 2008-12-08 07:11:54.491965739 -0500
@@ -11,6 +11,7 @@
#include <cstdio>
#include <cstring>
#include <cassert>
+#include <libintl.h>
#ifndef _WIN32
#ifndef TARGET_OS_MAC
--- celestia-1.5.1-orig/src/celengine/rotationmanager.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/rotationmanager.cpp 2008-12-08 07:11:54.508840536 -0500
@@ -14,6 +14,7 @@
#include <celutil/debug.h>
#include "samporient.h"
#include "rotationmanager.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/selection.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/selection.cpp 2008-12-08 07:11:54.509966966 -0500
@@ -8,6 +8,7 @@
// of the License, or (at your option) any later version.
#include <cstdio>
+#include <libintl.h>
#include "astro.h"
#include "selection.h"
--- celestia-1.5.1-orig/src/celengine/shadermanager.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/shadermanager.cpp 2008-12-08 07:11:54.511966254 -0500
@@ -15,6 +15,7 @@
#include <iomanip>
#include <cstdio>
#include <cassert>
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/simulation.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/simulation.cpp 2008-12-08 07:11:54.512965876 -0500
@@ -11,6 +11,7 @@
// of the License, or (at your option) any later version.
#include <algorithm>
+#include <libintl.h>
#include "simulation.h"
using namespace std;
--- celestia-1.5.1-orig/src/celengine/solarsys.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/solarsys.cpp 2008-12-08 07:11:54.513967058 -0500
@@ -30,6 +30,7 @@
#include "universe.h"
#include "multitexture.h"
#include "parseobject.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/solarsysxml.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/solarsysxml.cpp 2008-12-08 07:11:54.514969199 -0500
@@ -8,6 +8,8 @@
// of the License, or (at your option) any later version.
#include <cassert>
+#include <cstring>
+#include <string.h>
#include <libxml/parser.h>
#include <libxml/parserInternals.h>
@@ -20,6 +22,7 @@
#include "texmanager.h"
#include "meshmanager.h"
#include "solarsysxml.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/spiceinterface.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/spiceinterface.cpp 2008-12-08 07:11:54.514969199 -0500
@@ -11,6 +11,7 @@
#include "SpiceUsr.h"
#include "spiceinterface.h"
+#include <libintl.h>
bool
--- celestia-1.5.1-orig/src/celengine/spiceorbit.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/spiceorbit.cpp 2008-12-08 07:11:54.515966757 -0500
@@ -14,6 +14,7 @@
#include "SpiceUsr.h"
#include "astro.h"
#include "spiceorbit.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/stardb.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/stardb.cpp 2008-12-08 07:11:54.550839873 -0500
@@ -10,6 +10,7 @@
#include <cmath>
#include <cstdlib>
#include <cstdio>
+#include <cstring>
#include <cassert>
#include <algorithm>
#include <celmath/mathlib.h>
@@ -24,6 +25,7 @@
#include "multitexture.h"
#include "meshmanager.h"
#include <celutil/debug.h>
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/texmanager.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/texmanager.cpp 2008-12-08 07:11:54.550839873 -0500
@@ -13,6 +13,7 @@
#include <fstream>
#include "multitexture.h"
#include "texmanager.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/texture.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/texture.cpp 2008-12-08 07:11:54.551840599 -0500
@@ -28,6 +28,7 @@
#include <cstdlib>
#include <cstdio>
#include <cassert>
+#include <libintl.h>
#ifndef _WIN32
#ifndef TARGET_OS_MAC
--- celestia-1.5.1-orig/src/celengine/tokenizer.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/tokenizer.cpp 2008-12-08 07:11:54.551840599 -0500
@@ -12,6 +12,7 @@
#include <iomanip>
#include <celutil/utf8.h>
#include "tokenizer.h"
+#include <libintl.h>
static bool issep(char c)
--- celestia-1.5.1-orig/src/celengine/trajmanager.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/trajmanager.cpp 2008-12-08 07:11:54.552872989 -0500
@@ -15,6 +15,7 @@
#include <celutil/debug.h>
#include "samporbit.h"
#include "trajmanager.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/universe.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/universe.cpp 2008-12-08 07:11:54.552872989 -0500
@@ -13,6 +13,7 @@
#include <celmath/intersect.h>
#include <celutil/utf8.h>
#include <cassert>
+#include <libintl.h>
#include "astro.h"
#include "3dsmesh.h"
#include "meshmanager.h"
--- celestia-1.5.1-orig/src/celengine/vertexprog.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/vertexprog.cpp 2008-12-08 07:11:54.553840559 -0500
@@ -14,6 +14,7 @@
#include "gl.h"
#include "glext.h"
#include "vertexprog.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celengine/virtualtex.cpp 2008-04-23 17:17:16.000000000 -0400
+++ celestia-1.5.1/src/celengine/virtualtex.cpp 2008-12-08 07:11:54.553840559 -0500
@@ -19,6 +19,7 @@
#include "virtualtex.h"
#include "gl.h"
#include "parser.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celestia/celestiacore.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/celestiacore.cpp 2008-12-08 07:11:54.556840154 -0500
@@ -43,6 +43,7 @@
#include <celutil/debug.h>
#include <celutil/utf8.h>
#include "url.h"
+#include <libintl.h>
#ifdef CELX
#include <celengine/scriptobject.h>
--- celestia-1.5.1-orig/src/celestia/celx.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/celx.cpp 2008-12-08 07:11:54.558840324 -0500
@@ -11,7 +11,9 @@
#include <cassert>
#include <cstring>
+#include <string.h>
#include <cstdio>
+#include <libintl.h>
#include <map>
#include <celengine/astro.h>
#include <celengine/celestia.h>
--- celestia-1.5.1-orig/src/celestia/configfile.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/configfile.cpp 2008-12-08 07:11:54.559840924 -0500
@@ -16,6 +16,7 @@
#include <celengine/celestia.h>
#include <celengine/texmanager.h>
#include "configfile.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celestia/destination.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/destination.cpp 2008-12-08 07:11:54.559840924 -0500
@@ -14,6 +14,7 @@
#include <celengine/astro.h>
#include <celengine/parser.h>
#include "destination.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celestia/eclipsefinder.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/eclipsefinder.cpp 2008-12-08 07:11:54.559840924 -0500
@@ -15,6 +15,7 @@
#include <algorithm>
#include <set>
#include <cassert>
+#include <cstring>
#include "eclipsefinder.h"
#include "celmath/mathlib.h"
#include "celmath/ray.h"
--- celestia-1.5.1-orig/src/celestia/glutmain.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/glutmain.cpp 2008-12-08 07:11:54.559840924 -0500
@@ -15,6 +15,7 @@
#include <cstdlib>
#include <cctype>
#include <cstring>
+#include <libintl.h>
#include <time.h>
#include <unistd.h>
#include <celengine/gl.h>
--- celestia-1.5.1-orig/src/celestia/gtk/actions.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/actions.cpp 2008-12-08 07:11:54.560840647 -0500
@@ -15,6 +15,7 @@
#endif /* HAVE_CONFIG_H */
#include <cstring>
+#include <libintl.h>
#include <fstream>
#include <gtk/gtk.h>
--- celestia-1.5.1-orig/src/celestia/gtk/common.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/common.cpp 2008-12-08 07:11:54.560840647 -0500
@@ -20,6 +20,7 @@
#include <celestia/celestiacore.h>
#include "common.h"
+#include <libintl.h>
/* Returns the offset of the timezone at date */
--- celestia-1.5.1-orig/src/celestia/gtk/dialog-eclipse.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/dialog-eclipse.cpp 2008-12-08 07:11:54.587930113 -0500
@@ -18,6 +18,7 @@
#include "dialog-eclipse.h"
#include "common.h"
+#include <libintl.h>
/* Definitions: Callbacks */
--- celestia-1.5.1-orig/src/celestia/gtk/dialog-goto.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/dialog-goto.cpp 2008-12-08 07:11:54.588840984 -0500
@@ -18,6 +18,7 @@
#include "dialog-goto.h"
#include "common.h"
+#include <libintl.h>
/* Declarations: Callbacks */
--- celestia-1.5.1-orig/src/celestia/gtk/dialog-options.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/dialog-options.cpp 2008-12-08 07:11:54.588840984 -0500
@@ -17,6 +17,7 @@
#include "dialog-options.h"
#include "common.h"
#include "ui.h"
+#include <libintl.h>
/* Definitions: Callbacks */
--- celestia-1.5.1-orig/src/celestia/gtk/dialog-solar.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/dialog-solar.cpp 2008-12-08 07:11:54.589841416 -0500
@@ -22,6 +22,7 @@
#include "dialog-solar.h"
#include "actions.h"
#include "common.h"
+#include <libintl.h>
/* Declarations: Callbacks */
--- celestia-1.5.1-orig/src/celestia/gtk/dialog-star.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/dialog-star.cpp 2008-12-08 07:11:54.589841416 -0500
@@ -25,6 +25,7 @@
#include "dialog-star.h"
#include "actions.h"
#include "common.h"
+#include <libintl.h>
/* Declarations: Callbacks */
--- celestia-1.5.1-orig/src/celestia/gtk/dialog-time.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/dialog-time.cpp 2008-12-08 07:11:54.589841416 -0500
@@ -18,6 +18,7 @@
#include "dialog-time.h"
#include "common.h"
+#include <libintl.h>
/* Declarations: Callbacks */
--- celestia-1.5.1-orig/src/celestia/gtk/dialog-tour.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/dialog-tour.cpp 2008-12-08 07:11:54.590840833 -0500
@@ -18,6 +18,7 @@
#include "dialog-tour.h"
#include "common.h"
+#include <libintl.h>
/* Declarations: Callbacks */
--- celestia-1.5.1-orig/src/celestia/gtk/main.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/main.cpp 2008-12-08 07:11:54.590840833 -0500
@@ -19,6 +19,7 @@
#include <cstdlib>
#include <cctype>
#include <cstring>
+#include <libintl.h>
#include <time.h>
#ifdef WIN32
--- celestia-1.5.1-orig/src/celestia/gtk/menu-context.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/menu-context.cpp 2008-12-08 07:11:54.591840403 -0500
@@ -20,6 +20,7 @@
#include "menu-context.h"
#include "actions.h"
#include "common.h"
+#include <libintl.h>
/* Definitions: Callbacks */
--- celestia-1.5.1-orig/src/celestia/gtk/settings-file.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/settings-file.cpp 2008-12-08 07:11:54.591840403 -0500
@@ -11,6 +11,7 @@
*/
#include <gtk/gtk.h>
+#include <libintl.h>
#include <celengine/body.h>
#include <celengine/galaxy.h>
--- celestia-1.5.1-orig/src/celestia/gtk/settings-gconf.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/settings-gconf.cpp 2008-12-08 07:11:54.592840895 -0500
@@ -12,6 +12,7 @@
#include <gtk/gtk.h>
#include <gconf/gconf-client.h>
+#include <libintl.h>
#include <celengine/body.h>
#include <celengine/galaxy.h>
--- celestia-1.5.1-orig/src/celestia/gtk/splash.cpp 2008-04-23 17:16:49.000000000 -0400
+++ celestia-1.5.1/src/celestia/gtk/splash.cpp 2008-12-08 07:11:54.592840895 -0500
@@ -22,6 +22,7 @@
#include "splash.h"
#include "common.h"
+#include <libintl.h>
/* Declarations */
--- celestia-1.5.1-orig/src/celestia/kde/celestialbrowser.cpp 2008-04-23 17:17:05.000000000 -0400
+++ celestia-1.5.1/src/celestia/kde/celestialbrowser.cpp 2008-12-08 07:11:54.592840895 -0500
@@ -16,6 +16,7 @@
#include "cellistviewitem.h"
#include "selectionpopup.h"
#include "celutil/utf8.h"
+#include <libintl.h>
/*
* Constructs a CelestialBrowser which is a child of 'parent', with the
--- celestia-1.5.1-orig/src/celestia/kde/celsplashscreen.cpp 2008-04-23 17:17:05.000000000 -0400
+++ celestia-1.5.1/src/celestia/kde/celsplashscreen.cpp 2008-12-08 07:11:54.593840646 -0500
@@ -22,6 +22,7 @@
#include <kglobalsettings.h>
#include <celsplashscreen.h>
#include <X11/Xlib.h>
+#include <libintl.h>
CelSplashScreen::CelSplashScreen(const QString& filename, QWidget* _parent):
QWidget(0, 0, WStyle_Customize | WX11BypassWM),
--- celestia-1.5.1-orig/src/celestia/kde/eclipsefinderdlg.cpp 2008-04-23 17:17:05.000000000 -0400
+++ celestia-1.5.1/src/celestia/kde/eclipsefinderdlg.cpp 2008-12-08 07:11:54.593840646 -0500
@@ -11,6 +11,7 @@
#include "celestiacore.h"
#include "celengine/astro.h"
#include "eclipsefinder.h"
+#include <libintl.h>
/*
* Constructs a EclipseFinder which is a child of 'parent', with the
--- celestia-1.5.1-orig/src/celestia/kde/kcelbookmarkmanager.cpp 2008-04-23 17:17:05.000000000 -0400
+++ celestia-1.5.1/src/celestia/kde/kcelbookmarkmanager.cpp 2008-12-08 07:11:54.633473189 -0500
@@ -19,6 +19,7 @@
#include <qdir.h>
#include <kstandarddirs.h>
#include "kcelbookmarkmanager.h"
+#include <libintl.h>
KBookmarkManager* KCelBookmarkManager::self() {
if ( !s_bookmarkManager )
--- celestia-1.5.1-orig/src/celestia/kde/kcelbookmarkmenu.cpp 2008-04-23 17:17:05.000000000 -0400
+++ celestia-1.5.1/src/celestia/kde/kcelbookmarkmenu.cpp 2008-12-08 07:11:54.633840377 -0500
@@ -45,6 +45,7 @@
#include <kpopupmenu.h>
#include <kstdaccel.h>
#include <kstdaction.h>
+#include <libintl.h>
template class QPtrList<KCelBookmarkMenu>;
--- celestia-1.5.1-orig/src/celestia/kde/kdeapp.cpp 2008-04-23 17:17:05.000000000 -0400
+++ celestia-1.5.1/src/celestia/kde/kdeapp.cpp 2008-12-08 07:11:54.634841389 -0500
@@ -87,6 +87,7 @@
#endif
#include "celengine/glext.h"
+#include <libintl.h>
#define MENUMAXSIZE 100
--- celestia-1.5.1-orig/src/celestia/kde/kdeglwidget.cpp 2008-04-23 17:17:05.000000000 -0400
+++ celestia-1.5.1/src/celestia/kde/kdeglwidget.cpp 2008-12-08 07:11:54.634841389 -0500
@@ -48,6 +48,7 @@
#include <math.h>
#include <vector>
+#include <libintl.h>
KdeGlWidget::KdeGlWidget( QWidget* parent, const char* name, CelestiaCore* core)
: QGLWidget( parent, name )
--- celestia-1.5.1-orig/src/celestia/kde/kdemain.cpp 2008-04-23 17:17:05.000000000 -0400
+++ celestia-1.5.1/src/celestia/kde/kdemain.cpp 2008-12-08 07:11:54.635840731 -0500
@@ -20,6 +20,7 @@
#include <klocale.h>
#include "kdeuniquecelestia.h"
+#include <libintl.h>
static const char *description =
I18N_NOOP("Celestia");
--- celestia-1.5.1-orig/src/celestia/kde/kdepreferencesdialog.cpp 2008-04-23 17:17:05.000000000 -0400
+++ celestia-1.5.1/src/celestia/kde/kdepreferencesdialog.cpp 2008-12-08 07:11:54.635840731 -0500
@@ -40,6 +40,7 @@
#include "celengine/render.h"
#include "celengine/glcontext.h"
#include "celengine/astro.h"
+#include <libintl.h>
static uint32 FilterOtherLocations = ~(Location::City |
Location::Observatory |
--- celestia-1.5.1-orig/src/celestia/kde/kdeuniquecelestia.cpp 2008-04-23 17:17:05.000000000 -0400
+++ celestia-1.5.1/src/celestia/kde/kdeuniquecelestia.cpp 2008-12-08 07:11:54.636840551 -0500
@@ -21,6 +21,7 @@
#include <string>
#include <vector>
#include <klocale.h>
+#include <libintl.h>
KdeUniqueCelestia::KdeUniqueCelestia() {
--- celestia-1.5.1-orig/src/celestia/kde/selectionpopup.cpp 2008-04-23 17:17:05.000000000 -0400
+++ celestia-1.5.1/src/celestia/kde/selectionpopup.cpp 2008-12-08 07:11:54.636840551 -0500
@@ -29,6 +29,7 @@
#include <krun.h>
#include "celutil/utf8.h"
+#include <libintl.h>
SelectionPopup::SelectionPopup(QWidget* parent, CelestiaCore* _appCore, Selection _sel):
KPopupMenu(parent),
--- celestia-1.5.1-orig/src/celestia/kde/videocapturedlg.cpp 2008-04-23 17:17:05.000000000 -0400
+++ celestia-1.5.1/src/celestia/kde/videocapturedlg.cpp 2008-12-08 07:11:54.637843705 -0500
@@ -36,6 +36,7 @@
#include <kstatusbar.h>
#include <kapp.h>
#include "kdeapp.h"
+#include <libintl.h>
VideoCaptureDlg::VideoCaptureDlg(QWidget* p, const QString &dir):
accepted(false)
--- celestia-1.5.1-orig/src/celestia/oggtheoracapture.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/oggtheoracapture.cpp 2008-12-08 07:11:54.637843705 -0500
@@ -66,11 +66,13 @@
#include <celutil/util.h>
#include "../celengine/gl.h"
#include <string>
+#include <cstring>
#include "theora/theora.h"
using namespace std;
#include "oggtheoracapture.h"
+#include <libintl.h>
// {"video-rate-target",required_argument,NULL,'V'},
// {"video-quality",required_argument,NULL,'v'},
--- celestia-1.5.1-orig/src/celestia/scriptmenu.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/scriptmenu.cpp 2008-12-08 07:11:54.637843705 -0500
@@ -13,6 +13,7 @@
#include "celutil/directory.h"
#include "celutil/filetype.h"
#include <fstream>
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celestia/url.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/url.cpp 2008-12-08 07:11:54.638840519 -0500
@@ -16,10 +16,12 @@
***************************************************************************/
#include <string>
+#include <string.h>
#include <stdio.h>
#include "celestiacore.h"
#include "celengine/astro.h"
#include "url.h"
+#include <libintl.h>
static const unsigned int CurrentCelestiaURLVersion = 2;
--- celestia-1.5.1-orig/src/celestia/wglext.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/wglext.cpp 2008-12-08 07:11:54.638840519 -0500
@@ -14,7 +14,10 @@
#include "wglext.h"
#include <windows.h>
#include <cstdio>
+#include <cstring>
+#include <string.h>
#include <vector>
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celestia/winbookmarks.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/winbookmarks.cpp 2008-12-08 07:11:54.639840911 -0500
@@ -13,6 +13,7 @@
#include "res/resource.h"
#include <celutil/winutil.h>
#include <iostream>
+#include <string.h>
using namespace std;
--- celestia-1.5.1-orig/src/celestia/windatepicker.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/windatepicker.cpp 2008-12-08 07:11:54.639840911 -0500
@@ -11,10 +11,12 @@
#include <windows.h>
#include <commctrl.h>
+#include <cstring>
#include "celutil/basictypes.h"
#include "celengine/astro.h"
#include "celutil/util.h"
#include "celutil/winutil.h"
+#include <libintl.h>
// DatePicker is a Win32 control for setting the date. It replaces the
--- celestia-1.5.1-orig/src/celestia/wineclipses.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/wineclipses.cpp 2008-12-08 07:11:54.640840451 -0500
@@ -10,6 +10,7 @@
#include <string>
#include <sstream>
+#include <string.h>
#include <algorithm>
#include <set>
#include <cassert>
@@ -23,6 +24,7 @@
#include "celmath/distance.h"
#include "celutil/util.h"
#include "celutil/winutil.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celestia/winhyperlinks.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/winhyperlinks.cpp 2008-12-08 07:11:54.640840451 -0500
@@ -9,6 +9,7 @@
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
+#include <cstring>
#include "winhyperlinks.h"
#include "res/resource.h"
--- celestia-1.5.1-orig/src/celestia/winmain.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/winmain.cpp 2008-12-08 07:11:54.644840989 -0500
@@ -23,6 +23,7 @@
#include <windows.h>
#include <commctrl.h>
#include <mmsystem.h>
+#include <string.h>
#include <celmath/vecmath.h>
#include <celmath/quaternion.h>
@@ -59,6 +60,7 @@
#include "wglext.h"
#include <locale.h>
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celestia/winsplash.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/winsplash.cpp 2008-12-08 07:18:29.981938966 -0500
@@ -17,6 +17,7 @@
#include "celutil/util.h"
#include <iostream>
#include <locale.h>
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celestia/winstarbrowser.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/winstarbrowser.cpp 2008-12-08 07:11:54.645841081 -0500
@@ -15,10 +15,12 @@
#include <windows.h>
#include <commctrl.h>
#include <cstring>
+#include <string.h>
#include "winstarbrowser.h"
#include "celutil/winutil.h"
#include "res/resource.h"
+#include <libintl.h>
extern void SetMouseCursor(LPCTSTR lpCursor);
--- celestia-1.5.1-orig/src/celestia/wintime.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/wintime.cpp 2008-12-08 07:11:54.646840703 -0500
@@ -18,6 +18,7 @@
#include <celengine/astro.h>
#include "celutil/util.h"
#include "celutil/winutil.h"
+#include <libintl.h>
--- celestia-1.5.1-orig/src/celmath/quaternion.h 2008-04-23 17:17:20.000000000 -0400
+++ celestia-1.5.1/src/celmath/quaternion.h 2008-12-08 07:11:54.646840703 -0500
@@ -16,7 +16,6 @@
#include <celmath/mathlib.h>
#include <celmath/vecmath.h>
-
template<class T> class Quaternion
{
public:
--- celestia-1.5.1-orig/src/celutil/bigfix.cpp 2008-04-23 17:17:19.000000000 -0400
+++ celestia-1.5.1/src/celutil/bigfix.cpp 2008-12-08 07:11:54.647840697 -0500
@@ -10,6 +10,7 @@
#include <math.h>
#include <stdio.h>
#include "bigfix.h"
+#include <libintl.h>
/*** Constructors ***/
--- celestia-1.5.1-orig/src/celutil/color.cpp 2008-04-23 17:17:19.000000000 -0400
+++ celestia-1.5.1/src/celutil/color.cpp 2008-12-08 07:11:54.647840697 -0500
@@ -9,6 +9,7 @@
#include <cstdio>
#include <cstring>
+#include <string.h>
#include <cctype>
#include "color.h"
--- celestia-1.5.1-orig/src/celutil/directory.cpp 2008-04-23 17:17:19.000000000 -0400
+++ celestia-1.5.1/src/celutil/directory.cpp 2008-12-08 07:11:54.647840697 -0500
@@ -9,6 +9,7 @@
#include <iostream>
#include "directory.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celutil/filetype.cpp 2008-04-23 17:17:19.000000000 -0400
+++ celestia-1.5.1/src/celutil/filetype.cpp 2008-12-08 07:11:54.647840697 -0500
@@ -11,6 +11,7 @@
#include <cstdlib>
#include "util.h"
#include "filetype.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celutil/formatnum.cpp 2008-04-23 17:17:19.000000000 -0400
+++ celestia-1.5.1/src/celutil/formatnum.cpp 2008-12-08 07:11:54.648859468 -0500
@@ -10,6 +10,8 @@
#include <cmath>
#include <cstdio>
#include <string>
+#include <cstring>
+#include <limits.h>
#include "formatnum.h"
// HACK: MS Visual C++ has _snprintf declared in stdio.h but not snprintf
--- celestia-1.5.1-orig/src/celutil/utf8.cpp 2008-04-23 17:17:19.000000000 -0400
+++ celestia-1.5.1/src/celutil/utf8.cpp 2008-12-08 07:11:54.648859468 -0500
@@ -9,7 +9,9 @@
#include "utf8.h"
#include <cctype>
+#include <cstring>
#include "util.h"
+#include <libintl.h>
unsigned int WGL4_Normalization_00[256] = {
0x0000, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007,
--- celestia-1.5.1-orig/src/celutil/util.cpp 2008-04-23 17:17:19.000000000 -0400
+++ celestia-1.5.1/src/celutil/util.cpp 2008-12-08 07:11:54.648859468 -0500
@@ -12,6 +12,7 @@
#include "util.h"
#include <sys/types.h>
#include <sys/stat.h>
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/celutil/util.h 2008-04-23 17:17:19.000000000 -0400
+++ celestia-1.5.1/src/celutil/util.h 2008-12-08 07:11:54.673967001 -0500
@@ -22,11 +22,11 @@
switch(0){case 0: case pred:;}
#ifndef min
-#define min(a, b) ((a) < (b) ? (a) : (b))
+template <typename T1, typename T2> bool min(T1 a, T2 b){ return a<(T1)b; }
#endif
#ifndef max
-#define max(a, b) ((a) < (b) ? (b) : (a))
+template <typename T1, typename T2> bool max(T1 a, T2 b){ return a<(T1)b; }
#endif
#ifdef _WIN32
--- celestia-1.5.1-orig/src/celutil/windirectory.cpp 2008-04-23 17:17:19.000000000 -0400
+++ celestia-1.5.1/src/celutil/windirectory.cpp 2008-12-08 07:11:54.673967001 -0500
@@ -10,6 +10,7 @@
#include <iostream>
#include <windows.h>
#include "directory.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/packdb.cpp 2008-04-23 17:17:20.000000000 -0400
+++ celestia-1.5.1/src/packdb.cpp 2008-12-08 07:11:54.674969526 -0500
@@ -10,6 +10,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
+#include <libintl.h>
#define SPECTRAL_O 0
#define SPECTRAL_B 1
--- celestia-1.5.1-orig/src/tools/atmosphere/scattersim.cpp 2008-04-23 17:17:18.000000000 -0400
+++ celestia-1.5.1/src/tools/atmosphere/scattersim.cpp 2008-12-08 07:11:54.676967123 -0500
@@ -11,7 +11,9 @@
#include <iostream>
#include <fstream>
#include <string>
+#include <string.h>
#include <cstdlib>
+#include <libintl.h>
#include <cmath>
#include <algorithm>
#include <map>
--- celestia-1.5.1-orig/src/tools/buildstardb.cpp 2008-04-23 17:17:18.000000000 -0400
+++ celestia-1.5.1/src/tools/buildstardb.cpp 2008-12-08 07:11:54.676967123 -0500
@@ -16,6 +16,7 @@
#include <cstdio>
#include <assert.h>
#include "stardb.h"
+#include <libintl.h>
using namespace std;
--- celestia-1.5.1-orig/src/tools/cmod/cmodfix.cpp 2008-04-23 17:17:17.000000000 -0400
+++ celestia-1.5.1/src/tools/cmod/cmodfix.cpp 2008-12-08 07:11:54.677967254 -0500
@@ -18,6 +18,7 @@
#include <cassert>
#include <cmath>
#include <cstdio>
+#include <string.h>
#include <algorithm>
#include <vector>
#ifdef TRISTRIP
--- celestia-1.5.1-orig/src/tools/cmod/xtocmod.cpp 2008-04-23 17:17:17.000000000 -0400
+++ celestia-1.5.1/src/tools/cmod/xtocmod.cpp 2008-12-08 07:11:54.678966566 -0500
@@ -3,6 +3,7 @@
#include <iomanip>
#include <algorithm>
#include <cstdio>
+#include <string.h>
#include <cassert>
#include <cstring>
#include <d3dx9.h>
--- celestia-1.5.1-orig/src/tools/stardb/makestardb.cpp 2008-04-23 17:17:17.000000000 -0400
+++ celestia-1.5.1/src/tools/stardb/makestardb.cpp 2008-12-08 07:11:54.678966566 -0500
@@ -14,6 +14,7 @@
#include <iomanip>
#include <cctype>
#include <cassert>
+#include <string.h>
#include <celutil/basictypes.h>
#include <celutil/bytes.h>
#include <celengine/astro.h>
--- celestia-1.5.1-orig/src/tools/stardb/startextdump.cpp 2008-04-23 17:17:17.000000000 -0400
+++ celestia-1.5.1/src/tools/stardb/startextdump.cpp 2008-12-08 07:11:54.679966184 -0500
@@ -13,6 +13,7 @@
#include <iostream>
#include <fstream>
#include <iomanip>
+#include <string.h>
#include <celutil/basictypes.h>
#include <celutil/bytes.h>
#include <celengine/astro.h>
celestia-1.5.1-ctime.patch
Code: Select all
--- celestia-1.5.1-orig/src/celestia/oggtheoracapture.cpp 2008-04-23 17:17:06.000000000 -0400
+++ celestia-1.5.1/src/celestia/oggtheoracapture.cpp 2008-12-08 09:47:36.208839665 -0500
@@ -60,6 +60,7 @@
#endif
#include <cstdlib>
+#include <ctime>
#include <cstdio>
#include <cmath>
#include <celutil/debug.h>