[Python-ogre-commit] SF.net SVN: python-ogre: [484] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
|
From: <and...@us...> - 2007-12-02 06:25:04
|
Revision: 484
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=484&view=rev
Author: andy_miller
Date: 2007-12-01 22:25:09 -0800 (Sat, 01 Dec 2007)
Log Message:
-----------
More missing files and some cleanup
Added Paths:
-----------
trunk/python-ogre/boost/tools/build/v2/user-config.jam.Python-Ogre
trunk/python-ogre/patch/navi.patch
Removed Paths:
-------------
trunk/python-ogre/code_generators/physx/customization_data.pyc
trunk/python-ogre/code_generators/physx/hand_made_wrappers.pyc
Added: trunk/python-ogre/boost/tools/build/v2/user-config.jam.Python-Ogre
===================================================================
--- trunk/python-ogre/boost/tools/build/v2/user-config.jam.Python-Ogre (rev 0)
+++ trunk/python-ogre/boost/tools/build/v2/user-config.jam.Python-Ogre 2007-12-02 06:25:09 UTC (rev 484)
@@ -0,0 +1,56 @@
+# Copyright 2003, 2005 Douglas Gregor
+# Copyright 2004 John Maddock
+# Copyright 2002, 2003, 2004 Vladimir Prus
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
+
+# This file is used to configure your Boost.Build installation. Please read
+# the user manual to find out where to put it.
+
+# Toolset declarations are most important in this file. They tell Boost.Build
+# what compilers are available and where to look for them. The first toolset
+# will become "default" one.
+# Some important libraries can also be configured.
+# Uncomment relevant parts to suite your local configuration and preferences.
+
+import toolset : using ;
+using python ;
+#using python : 2.5 ;
+##using msvc : 7.1 ;
+# GCC configuration
+
+# Configure gcc (default version)
+# using gcc ;
+
+# Configure specific gcc version, giving alternative name to use
+# using gcc : 3.2 : g++-3.2 ;
+
+# MSVC configuration
+
+# Configure msvc (default version, searched in standard location
+# and PATH).
+# using msvc ;
+
+# Borland configuration
+# using borland ;
+
+
+# STLPort configuration
+
+# Configure, specifying location of STLPort headers.
+# Libraries must be either not needed, or available to
+# the compiler by default
+# using stlport : : /usr/include/stlport ;
+
+# Configure, specifying locatioh of both headers and libraries
+# using stlport : : /usr/include/stlport /usr/lib ;
+
+
+# QT configuration
+
+# Configure, assuming QTDIR gives the installation prefix
+# using qt ;
+
+# Configure with explicit installation prefix
+# using qt : /usr/opt/qt ;
+
Deleted: trunk/python-ogre/code_generators/physx/customization_data.pyc
===================================================================
(Binary files differ)
Deleted: trunk/python-ogre/code_generators/physx/hand_made_wrappers.pyc
===================================================================
(Binary files differ)
Added: trunk/python-ogre/patch/navi.patch
===================================================================
--- trunk/python-ogre/patch/navi.patch (rev 0)
+++ trunk/python-ogre/patch/navi.patch 2007-12-02 06:25:09 UTC (rev 484)
@@ -0,0 +1,45 @@
+--- Navi/Include/Navi.h (revision 25)
++++ Navi/Include/Navi.h (working copy)
+@@ -34,7 +34,7 @@
+ {
+ class _NaviExport Navi : public LLEmbeddedBrowserWindowObserver, public Ogre::WindowEventListener, public Ogre::ManualResourceLoader
+ {
+- friend NaviManager;
++ friend class NaviManager;
+
+ std::string naviName;
+ unsigned short naviWidth;
+@@ -69,8 +69,8 @@
+ std::multimap<std::string, NaviDelegate> delegateMap;
+ std::multimap<std::string, NaviDelegate>::iterator delegateIter;
+ std::pair<std::multimap<std::string, NaviDelegate>::iterator, std::multimap<std::string, NaviDelegate>::iterator> dmBounds;
+- std::map<std::string, std::vector<std::string>> ensureKeysMap;
+- std::map<std::string, std::vector<std::string>>::iterator ensureKeysMapIter;
++ std::map<std::string, std::vector<std::string> > ensureKeysMap;
++ std::map<std::string, std::vector<std::string> >::iterator ensureKeysMapIter;
+ bool okayToDelete;
+ bool isVisible;
+ bool fadingOut;
+
+--- Navi/Include/NaviMouse.h (revision 25)
++++ Navi/Include/NaviMouse.h (working copy)
+@@ -41,7 +41,7 @@
+ class _NaviExport NaviMouse : public Singleton<NaviMouse>, public Ogre::ManualResourceLoader
+ {
+ friend class NaviManager;
+- friend NaviCursor;
++ friend class NaviCursor;
+ int mouseX, mouseY;
+ unsigned short width, height;
+ unsigned short texWidth, texHeight;
+
+--- Navi/Include/NaviManager.h (revision 25)
++++ Navi/Include/NaviManager.h (working copy)
+@@ -37,6 +37,7 @@
+
+ namespace NaviLibrary
+ {
++ class Navi; // needed for Python-Ogre gccxml processing
+ /**
+ * Enumerates relative positions. Used by NaviManager::NaviPosition
+ */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|