[Python-ogre-commit] SF.net SVN: python-ogre:[852] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
|
From: <and...@us...> - 2009-01-26 02:56:26
|
Revision: 852
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=852&view=rev
Author: andy_miller
Date: 2009-01-26 02:56:21 +0000 (Mon, 26 Jan 2009)
Log Message:
-----------
Linux fixes -- changes due to module rename in py++
Modified Paths:
--------------
trunk/python-ogre/code_generators/betagui/generate_code.py
trunk/python-ogre/code_generators/bullet/generate_code.py
trunk/python-ogre/code_generators/bullet/generate_code_1.py
trunk/python-ogre/code_generators/cadunetree/generate_code.py
trunk/python-ogre/code_generators/caelum/generate_code.py
trunk/python-ogre/code_generators/canvas/generate_code.py
trunk/python-ogre/code_generators/cegui/generate_code.py
trunk/python-ogre/code_generators/et/generate_code.py
trunk/python-ogre/code_generators/hikari/generate_code.py
trunk/python-ogre/code_generators/hydrax/generate_code.py
trunk/python-ogre/code_generators/mygui/generate_code.py
trunk/python-ogre/code_generators/navi/generate_code.py
trunk/python-ogre/code_generators/noise/generate_code.py
trunk/python-ogre/code_generators/nxogre/generate_code.py
trunk/python-ogre/code_generators/nxogre_09/generate_code.py
trunk/python-ogre/code_generators/ode/generate_code.py
trunk/python-ogre/code_generators/ofusion/generate_code.py
trunk/python-ogre/code_generators/ogre/generate_code.py
trunk/python-ogre/code_generators/ogre/print_classes.py
trunk/python-ogre/code_generators/ogreal/generate_code.py
trunk/python-ogre/code_generators/ogrebulletc/generate_code.py
trunk/python-ogre/code_generators/ogrebulletd/generate_code.py
trunk/python-ogre/code_generators/ogredshow/generate_code.py
trunk/python-ogre/code_generators/ogreforests/generate_code.py
trunk/python-ogre/code_generators/ogreode/generate_code.py
trunk/python-ogre/code_generators/ogrepcz/generate_code.py
trunk/python-ogre/code_generators/ogrevideoffmpeg/generate_code.py
trunk/python-ogre/code_generators/ois/generate_code.py
trunk/python-ogre/code_generators/opcode/generate_code.py
trunk/python-ogre/code_generators/opensteer/generate_code.py
trunk/python-ogre/code_generators/particleuniverse/generate_code.py
trunk/python-ogre/code_generators/physx/generate_code.py
trunk/python-ogre/code_generators/plib/generate_code.py
trunk/python-ogre/code_generators/quickgui/generate_code.py
trunk/python-ogre/code_generators/template/generate_code.py
trunk/python-ogre/code_generators/theora/generate_code.py
trunk/python-ogre/code_generators/theora_v2/generate_code.py
trunk/python-ogre/code_generators/watermesh/generate_code.py
trunk/python-ogre/environment.py
Added Paths:
-----------
trunk/python-ogre/patch/ogre_1.6.1.patch
Modified: trunk/python-ogre/code_generators/betagui/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/betagui/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/betagui/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -36,7 +36,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/bullet/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/bullet/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/bullet/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -36,7 +36,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/bullet/generate_code_1.py
===================================================================
--- trunk/python-ogre/code_generators/bullet/generate_code_1.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/bullet/generate_code_1.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -28,7 +28,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/cadunetree/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/cadunetree/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/cadunetree/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -37,7 +37,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/caelum/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/caelum/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/caelum/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -37,7 +37,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/canvas/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/canvas/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/canvas/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -38,7 +38,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/cegui/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/cegui/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/cegui/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -22,7 +22,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
from pyplusplus.code_creators import include
import common_utils.extract_documentation as exdoc
Modified: trunk/python-ogre/code_generators/et/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/et/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/et/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -37,7 +37,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/hikari/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/hikari/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/hikari/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -38,7 +38,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/hydrax/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/hydrax/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/hydrax/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -38,7 +38,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/mygui/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/mygui/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/mygui/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -37,7 +37,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/navi/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/navi/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/navi/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -28,7 +28,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/noise/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/noise/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/noise/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -37,7 +37,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/nxogre/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/nxogre/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/nxogre/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -33,7 +33,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/nxogre_09/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/nxogre_09/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/nxogre_09/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -28,7 +28,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/ode/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/ode/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ode/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -50,8 +50,8 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import call_policies_resolver
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import call_policies_resolver
+from pyplusplus.creators_factory import sort_algorithms
from pyplusplus import code_repository
Modified: trunk/python-ogre/code_generators/ofusion/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/ofusion/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ofusion/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -37,7 +37,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/ogre/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/ogre/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ogre/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -43,7 +43,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/ogre/print_classes.py
===================================================================
--- trunk/python-ogre/code_generators/ogre/print_classes.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ogre/print_classes.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -20,7 +20,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/ogreal/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/ogreal/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ogreal/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -38,7 +38,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/ogrebulletc/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/ogrebulletc/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ogrebulletc/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -37,7 +37,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/ogrebulletd/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/ogrebulletd/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ogrebulletd/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -37,7 +37,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/ogredshow/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/ogredshow/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ogredshow/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -28,7 +28,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/ogreforests/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/ogreforests/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ogreforests/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -37,7 +37,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/ogreode/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/ogreode/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ogreode/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -38,7 +38,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/ogrepcz/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/ogrepcz/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ogrepcz/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -38,7 +38,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/ogrevideoffmpeg/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/ogrevideoffmpeg/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ogrevideoffmpeg/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -37,7 +37,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/ois/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/ois/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/ois/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -37,7 +37,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
from pyplusplus.code_creators import include
# import common_utils.extract_documentation as exdoc
Modified: trunk/python-ogre/code_generators/opcode/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/opcode/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/opcode/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -28,7 +28,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/opensteer/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/opensteer/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/opensteer/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -33,7 +33,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/particleuniverse/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/particleuniverse/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/particleuniverse/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -37,7 +37,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/physx/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/physx/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/physx/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -28,7 +28,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/plib/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/plib/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/plib/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -33,7 +33,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/quickgui/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/quickgui/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/quickgui/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -40,7 +40,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
from pyplusplus.code_creators import include
import common_utils.extract_documentation as exdoc
Modified: trunk/python-ogre/code_generators/template/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/template/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/template/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -33,7 +33,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/theora/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/theora/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/theora/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -28,7 +28,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/theora_v2/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/theora_v2/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/theora_v2/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -28,7 +28,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/code_generators/watermesh/generate_code.py
===================================================================
--- trunk/python-ogre/code_generators/watermesh/generate_code.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/code_generators/watermesh/generate_code.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -36,7 +36,7 @@
from pyplusplus import function_transformers as ft
from pyplusplus.module_builder import call_policies
-from pyplusplus.module_creator import sort_algorithms
+from pyplusplus.creators_factory import sort_algorithms
import common_utils.extract_documentation as exdoc
import common_utils.var_checker as varchecker
Modified: trunk/python-ogre/environment.py
===================================================================
--- trunk/python-ogre/environment.py 2009-01-26 00:08:10 UTC (rev 851)
+++ trunk/python-ogre/environment.py 2009-01-26 02:56:21 UTC (rev 852)
@@ -483,7 +483,7 @@
versionBase = '1_37' ## the version used on the library name
if isLinux() or isMac():
- bjambase = 'boost-jam-3.1.17'
+ bjambase = 'boost-jam-3.1.17-1-linuxx86'
if isMac():
bjambuilddir = 'bin.macosxx86'
bjambuildset = 'darwin'
@@ -491,13 +491,14 @@
if is64():
bjambuilddir = 'bin.linuxx86_64'
else:
- bjambuilddir = 'bin.linuxx86'
+ bjambuilddir = ''
bjambuildset = 'gcc'
- source = [
- [wget,'http://downloads.sourceforge.net/boost/boost-jam-3.1.17-1.tgz', downloadPath],
- [wget,'http://downloads.sourceforge.net/boost/'+base+'.tar.gz',downloadPath]
- ]
+ if isLinux():
+ source = [
+ [wget,'http://downloads.sourceforge.net/boost/boost-jam-3.1.17-1-linuxx86.tgz', downloadPath],
+ [wget,'http://downloads.sourceforge.net/boost/'+base+'.tar.gz',downloadPath]
+ ]
buildCmds = [
## first handle bjam
[0, tar + ' zxf ' + os.path.join(downloadPath, bjambase) + '.tgz --overwrite', ''],
@@ -635,7 +636,7 @@
base = "ogre-v1-6-1"
buildCmds = [
[0, tar + " jxf " + os.path.join(downloadPath,base)+".tar.bz2 --overwrite",os.getcwd() ],
- #[0, "patch -s -N -i ./python-ogre/patch/ogre_1.6.0.patch -p0 ", os.getcwd()],
+ [0, "patch -s -N -i ./python-ogre/patch/ogre_1.6.1.patch -p0 ", os.getcwd()],
#[0, "sed --in-place -s 's|#define OGRE_THREAD_SUPPORT 1|#define OGRE_THREAD_SUPPORT 0|' OgreConfig.h",os.path.join(os.getcwd(),"ogre","OgreMain", "include")],
[0, "aclocal", os.path.join(os.getcwd(), 'ogre')],
[0, "./bootstrap", os.path.join(os.getcwd(), 'ogre')],
@@ -718,7 +719,7 @@
# ]
buildCmds = [
- [0, tar + " zxf " + os.path.join(downloadPath,'ois_1.2.0')+".tar.gz --overwrite",os.getcwd() ],
+# [0, tar + " zxf " + os.path.join(downloadPath,'ois_1.2.0')+".tar.gz --overwrite",os.getcwd() ],
[0, "./bootstrap" ,os.path.join(os.getcwd(), base )],
[0,"./configure --prefix=%s --includedir=%s/include" %(PREFIX,PREFIX) ,os.path.join(os.getcwd(), base )],
[0,'make', os.path.join(os.getcwd(), base )],
@@ -872,13 +873,13 @@
[wget, "http://downloads.sourceforge.net/crayzedsgui/CEGUI-0.5.0b.tar.gz", downloadPath]
]
else:
- base = "CEGUI-0.6.1"
+ base = "CEGUI-0.6.2"
source=[
[wget, "http://prdownloads.sourceforge.net/crayzedsgui/CEGUI-0.6.2b.tar.gz?download", downloadPath]
]
buildCmds = [
- [0, tar + " zxf " + os.path.join(downloadPath,base)+".tar.gz --overwrite",os.getcwd() ],
+ [0, tar + " zxf " + os.path.join(downloadPath,base)+"b.tar.gz --overwrite",os.getcwd() ],
# [0, "patch -s -N -i ../python-ogre/patch/cegui.patch -p0", os.path.join(os.getcwd(),base)],
[0, "echo 'EMPTY' >>./INSTALL", os.path.join(os.getcwd(),base)],
[0, "echo 'EMPTY' >>./NEWS", os.path.join(os.getcwd(),base)],
Added: trunk/python-ogre/patch/ogre_1.6.1.patch
===================================================================
--- trunk/python-ogre/patch/ogre_1.6.1.patch (rev 0)
+++ trunk/python-ogre/patch/ogre_1.6.1.patch 2009-01-26 02:56:21 UTC (rev 852)
@@ -0,0 +1,74 @@
+Index: ogre/Samples/Common/include/ExampleFrameListener.h
+===================================================================
+--- ogre/Samples/Common/include/ExampleFrameListener.h (revision 8145)
++++ ogre/Samples/Common/include/ExampleFrameListener.h (working copy)
+@@ -41,7 +41,7 @@
+
+ //Use this define to signify OIS will be used as a DLL
+ //(so that dll import/export macros are in effect)
+-#define OIS_DYNAMIC_LIB
++//#define OIS_DYNAMIC_LIB
+ #include <OIS/OIS.h>
+
+ using namespace Ogre;
+Index: ogre/OgreMain/include/OgreAtomicWrappers.h
+===================================================================
+--- ogre/OgreMain/include/OgreAtomicWrappers.h (revision 8145)
++++ ogre/OgreMain/include/OgreAtomicWrappers.h (working copy)
+@@ -170,7 +170,7 @@
+
+ }
+
+- #elif OGRE_COMPILER == OGRE_COMPILER_MSVC && OGRE_THREAD_SUPPORT
++ #elif OGRE_COMPILER == OGRE_COMPILER_MSVC && OGRE_THREAD_SUPPORT && ! defined(__PYTHONOGRE_BUILD_CODE)
+
+ #undef NOMINMAX
+ #define NOMINMAX
+Index: ogre/OgreMain/include/OgreStdHeaders.h
+===================================================================
+--- ogre/OgreMain/include/OgreStdHeaders.h (revision 8145)
++++ ogre/OgreMain/include/OgreStdHeaders.h (working copy)
+@@ -36,7 +36,7 @@
+ // Note - not in the original STL, but exists in SGI STL and STLport
+ // For gcc 4.3 see http://gcc.gnu.org/gcc-4.3/changes.html
+ #if (OGRE_COMPILER == OGRE_COMPILER_GNUC) && !defined(STLPORT)
+-# if OGRE_COMP_VER >= 430
++# if OGRE_COMP_VER >= 430 && !(defined __PYTHONOGRE_BUILD_CODE)
+ # include <tr1/unordered_map>
+ # include <tr1/unordered_set>
+ # else
+Index: ogre/OgreMain/include/OgrePrerequisites.h
+===================================================================
+--- ogre/OgreMain/include/OgrePrerequisites.h (revision 8145)
++++ ogre/OgreMain/include/OgrePrerequisites.h (working copy)
+@@ -121,7 +121,7 @@
+ #endif
+
+ #if OGRE_COMPILER == OGRE_COMPILER_GNUC && OGRE_COMP_VER >= 310 && !defined(STLPORT)
+- # if OGRE_COMP_VER >= 430
++ # if OGRE_COMP_VER >= 430 && !defined(__PYTHONOGRE_BUILD_CODE)
+ # define HashMap ::std::tr1::unordered_map
+ # define HashSet ::std::tr1::unordered_set
+ # else
+Index: ogre/OgreMain/include/OgreString.h
+===================================================================
+--- ogre/OgreMain/include/OgreString.h (revision 8145)
++++ ogre/OgreMain/include/OgreString.h (working copy)
+@@ -35,7 +35,7 @@
+ #if OGRE_COMPILER == OGRE_COMPILER_GNUC && OGRE_COMP_VER >= 310 && !defined(STLPORT)
+
+ // For gcc 4.3 see http://gcc.gnu.org/gcc-4.3/changes.html
+-# if OGRE_COMP_VER >= 430
++# if OGRE_COMP_VER >= 430 && !defined (__PYTHONOGRE_BUILD_CODE)
+ # include <tr1/unordered_map>
+ # else
+ # include <ext/hash_map>
+@@ -158,7 +158,7 @@
+
+
+ #if OGRE_COMPILER == OGRE_COMPILER_GNUC && OGRE_COMP_VER >= 310 && !defined(STLPORT)
+-# if OGRE_COMP_VER < 430
++# if OGRE_COMP_VER < 430 || defined (__PYTHONOGRE_BUILD_CODE)
+ typedef ::__gnu_cxx::hash< _StringBase > _StringHash;
+ # else
+ typedef ::std::tr1::hash< _StringBase > _StringHash;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|