[Scummvm-cvs-logs] SF.net SVN: scummvm:[53965] scummvm/trunk/tools
fingolfin at users.sourceforge.net
fingolfin at users.sourceforge.net
Sun Oct 31 00:44:15 CEST 2010
Revision: 53965
http://scummvm.svn.sourceforge.net/scummvm/?rev=53965&view=rev
Author: fingolfin
Date: 2010-10-30 22:44:15 +0000 (Sat, 30 Oct 2010)
Log Message:
-----------
TOOLS: Enable use of forbidden symbols
Modified Paths:
--------------
scummvm/trunk/tools/create_hugo/create_hugo.cpp
scummvm/trunk/tools/create_kyradat/create_kyradat.cpp
scummvm/trunk/tools/create_kyradat/extract.cpp
scummvm/trunk/tools/create_kyradat/games.cpp
scummvm/trunk/tools/create_kyradat/md5.cpp
scummvm/trunk/tools/create_kyradat/pak.cpp
scummvm/trunk/tools/create_kyradat/search.cpp
scummvm/trunk/tools/create_kyradat/tables.cpp
scummvm/trunk/tools/create_kyradat/util.cpp
scummvm/trunk/tools/create_lure/create_lure_dat.cpp
scummvm/trunk/tools/create_lure/process_actions.cpp
scummvm/trunk/tools/create_teenagent/create_teenagent.cpp
scummvm/trunk/tools/create_teenagent/md5.cpp
scummvm/trunk/tools/create_toon/create_toon.cpp
Modified: scummvm/trunk/tools/create_hugo/create_hugo.cpp
===================================================================
--- scummvm/trunk/tools/create_hugo/create_hugo.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_hugo/create_hugo.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -25,6 +25,9 @@
* data file, used by the game engine
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
// HACK to allow building with the SDL backend on MinGW
// see bug #1800764 "TOOLS: MinGW tools building broken"
#ifdef main
Modified: scummvm/trunk/tools/create_kyradat/create_kyradat.cpp
===================================================================
--- scummvm/trunk/tools/create_kyradat/create_kyradat.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_kyradat/create_kyradat.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -23,6 +23,9 @@
*
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
// HACK to allow building with the SDL backend on MinGW
// see bug #1800764 "TOOLS: MinGW tools building broken"
#ifdef main
Modified: scummvm/trunk/tools/create_kyradat/extract.cpp
===================================================================
--- scummvm/trunk/tools/create_kyradat/extract.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_kyradat/extract.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -23,6 +23,9 @@
*
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
#include "extract.h"
#include <algorithm>
Modified: scummvm/trunk/tools/create_kyradat/games.cpp
===================================================================
--- scummvm/trunk/tools/create_kyradat/games.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_kyradat/games.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -23,6 +23,9 @@
*
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
#include "create_kyradat.h"
// Game tables
Modified: scummvm/trunk/tools/create_kyradat/md5.cpp
===================================================================
--- scummvm/trunk/tools/create_kyradat/md5.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_kyradat/md5.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -23,6 +23,9 @@
*
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
#include "md5.h"
#define GET_UINT32(n, b, i) (n) = READ_LE_UINT32(b + i)
Modified: scummvm/trunk/tools/create_kyradat/pak.cpp
===================================================================
--- scummvm/trunk/tools/create_kyradat/pak.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_kyradat/pak.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -23,6 +23,9 @@
*
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
#include "pak.h"
bool PAKFile::loadFile(const char *file, const bool isAmiga) {
Modified: scummvm/trunk/tools/create_kyradat/search.cpp
===================================================================
--- scummvm/trunk/tools/create_kyradat/search.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_kyradat/search.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -23,6 +23,9 @@
*
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
#include "search.h"
#include "md5.h"
Modified: scummvm/trunk/tools/create_kyradat/tables.cpp
===================================================================
--- scummvm/trunk/tools/create_kyradat/tables.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_kyradat/tables.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -23,6 +23,9 @@
*
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
#include "tables.h"
#include "create_kyradat.h"
Modified: scummvm/trunk/tools/create_kyradat/util.cpp
===================================================================
--- scummvm/trunk/tools/create_kyradat/util.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_kyradat/util.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -23,6 +23,9 @@
*
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
#include "util.h"
#include <stdarg.h>
Modified: scummvm/trunk/tools/create_lure/create_lure_dat.cpp
===================================================================
--- scummvm/trunk/tools/create_lure/create_lure_dat.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_lure/create_lure_dat.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -27,6 +27,9 @@
* to work properly
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
// HACK to allow building with the SDL backend on MinGW
// see bug #1800764 "TOOLS: MinGW tools building broken"
#ifdef main
Modified: scummvm/trunk/tools/create_lure/process_actions.cpp
===================================================================
--- scummvm/trunk/tools/create_lure/process_actions.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_lure/process_actions.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -23,6 +23,9 @@
*
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
#include "common/scummsys.h"
#include "common/util.h"
#include "create_lure_dat.h"
Modified: scummvm/trunk/tools/create_teenagent/create_teenagent.cpp
===================================================================
--- scummvm/trunk/tools/create_teenagent/create_teenagent.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_teenagent/create_teenagent.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -23,6 +23,9 @@
*
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
Modified: scummvm/trunk/tools/create_teenagent/md5.cpp
===================================================================
--- scummvm/trunk/tools/create_teenagent/md5.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_teenagent/md5.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -23,6 +23,9 @@
*
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
#include "md5.h"
#define GET_UINT32(n, b, i) (n) = READ_LE_UINT32(b + i)
Modified: scummvm/trunk/tools/create_toon/create_toon.cpp
===================================================================
--- scummvm/trunk/tools/create_toon/create_toon.cpp 2010-10-30 22:43:25 UTC (rev 53964)
+++ scummvm/trunk/tools/create_toon/create_toon.cpp 2010-10-30 22:44:15 UTC (rev 53965)
@@ -25,6 +25,9 @@
* data file, used by the game engine
*/
+// Disable symbol overrides so that we can use system headers.
+#define FORBIDDEN_SYMBOL_ALLOW_ALL
+
// HACK to allow building with the SDL backend on MinGW
// see bug #1800764 "TOOLS: MinGW tools building broken"
#ifdef main
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list