diff options
author | 2011-10-02 22:52:23 +0200 | |
---|---|---|
committer | 2011-10-02 22:52:23 +0200 | |
commit | 19c218875b42061e1b4d2d90897ea5ee34e56e52 (patch) | |
tree | 4bac0670056468a5240677c237b7828f529654a5 /media-libs | |
parent | fixed opencollada (diff) | |
download | mistafunk-19c218875b42061e1b4d2d90897ea5ee34e56e52.tar.gz mistafunk-19c218875b42061e1b4d2d90897ea5ee34e56e52.tar.bz2 mistafunk-19c218875b42061e1b4d2d90897ea5ee34e56e52.zip |
remove old stuff
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/opencollada/files/opencollada-r736-expat-and-include-fixes.patch | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/media-libs/opencollada/files/opencollada-r736-expat-and-include-fixes.patch b/media-libs/opencollada/files/opencollada-r736-expat-and-include-fixes.patch deleted file mode 100644 index d23aa69..0000000 --- a/media-libs/opencollada/files/opencollada-r736-expat-and-include-fixes.patch +++ /dev/null @@ -1,47 +0,0 @@ -Index: common/libBuffer/src/CommonFWriteBufferFlusher.cpp -=================================================================== ---- common/libBuffer/src/CommonFWriteBufferFlusher.cpp (revision 736) -+++ common/libBuffer/src/CommonFWriteBufferFlusher.cpp (working copy) -@@ -10,7 +10,8 @@ - - #include "CommonFWriteBufferFlusher.h" - -- #include <errno.h> -+#include <errno.h> -+#include <cstdio> - - namespace Common - { -Index: dae2ogre/include/DAE2OgreSerializer.h -=================================================================== ---- dae2ogre/include/DAE2OgreSerializer.h (revision 736) -+++ dae2ogre/include/DAE2OgreSerializer.h (working copy) -@@ -30,6 +30,8 @@ - #ifndef __DAE2OGRE_OGRESERIALIZER_H__
- #define __DAE2OGRE_OGRESERIALIZER_H__
-
-+#include <cstdio>
-+
- #include "DAE2OgrePrerequisites.h"
-
- namespace DAE2Ogre
-Index: Externals/expat/SConscript -=================================================================== ---- Externals/expat/SConscript (revision 736) -+++ Externals/expat/SConscript (working copy) -@@ -11,7 +11,7 @@ - targetPath = outputDir + libName - - --incDirs = ['include/'] -+incDirs = ['include/', '.'] - - src = [ variantDir + str(p) for p in Glob(srcDir + '*.c')] - VariantDir(variant_dir=variantDir + srcDir, src_dir=srcDir, duplicate=False) -@@ -19,5 +19,5 @@ - if env['SHAREDLIB']: - SharedLibrary(target=targetPath, source=src, CPPPATH=incDirs, CCFLAGS=env['CPPFLAGS']) - else: -- StaticLibrary(target=targetPath, source=src, CPPPATH=incDirs, CCFLAGS=env['CPPFLAGS']) -+ StaticLibrary(target=targetPath, source=src, CPPPATH=incDirs, CCFLAGS=env['CPPFLAGS'] + ' -DHAVE_EXPAT_CONFIG_H') - |