pkgsrc/misc/celestia/patches/patch-src_celengine_cmdparser.cpp
dholland ebcd261201 Update to 1.6.1. Reset PKGREVISION from 38 (!).
Upstream changes: 5+ years of development; try these links:
   http://www.shatters.net/celestia/161changes.txt
   http://www.shatters.net/celestia/features/160-features.html
   http://www.shatters.net/celestia/151changes.txt
   http://www.shatters.net/celestia/150-feature-summary.html

Restrictions:
   1. The Lua support still does not build, and given that I had to
      patch it to compile at all with Lua disabled it may not work all
      that well this way.
   2. The optional KDE (kde3) build is almost certainly broken; I will
      get to this in a few days if nobody beats me to it.
2013-10-27 21:21:26 +00:00

53 lines
1.8 KiB
C++

$NetBSD: patch-src_celengine_cmdparser.cpp,v 1.1 2013/10/27 21:21:26 dholland Exp $
Fix build with lua switched off.
(This is probably not the right place to switch it off, but it does
build this way.)
--- src/celengine/cmdparser.cpp~ 2011-06-05 16:11:09.000000000 +0000
+++ src/celengine/cmdparser.cpp
@@ -797,10 +797,14 @@ int parseRenderFlags(string s)
{
string name = tokenizer.getNameValue();
+#ifdef CELX
if (CelxLua::RenderFlagMap.count(name) == 0)
cerr << "Unknown render flag: " << name << "\n";
else
flags |= CelxLua::RenderFlagMap[name];
+#else
+ cerr << "Unknown render flag: " << name << "\n";
+#endif
ttype = tokenizer.nextToken();
if (ttype == Tokenizer::TokenBar)
@@ -826,10 +830,14 @@ int parseLabelFlags(string s)
{
string name = tokenizer.getNameValue();
+#ifdef CELX
if (CelxLua::LabelFlagMap.count(name) == 0)
cerr << "Unknown label flag: " << name << "\n";
else
flags |= CelxLua::LabelFlagMap[name];
+#else
+ cerr << "Unknown label flag: " << name << "\n";
+#endif
ttype = tokenizer.nextToken();
if (ttype == Tokenizer::TokenBar)
@@ -856,10 +864,14 @@ int parseOrbitFlags(string s)
string name = tokenizer.getNameValue();
name[0] = toupper(name[0]);
+#ifdef CELX
if (CelxLua::BodyTypeMap.count(name) == 0)
cerr << "Unknown orbit flag: " << name << "\n";
else
flags |= CelxLua::BodyTypeMap[name];
+#else
+ cerr << "Unknown orbit flag: " << name << "\n";
+#endif
ttype = tokenizer.nextToken();
if (ttype == Tokenizer::TokenBar)