diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-06-20 17:11:16 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-06-20 17:11:16 +0000 |
commit | 7f6b8c50b00f21690bc5e1702004b9d0d0738a42 (patch) | |
tree | dde2f9beea6520583552e0ac9f5da7eebdd9652b /dev-games/ogre/files | |
parent | Bug #215160, again. (diff) | |
download | gentoo-2-7f6b8c50b00f21690bc5e1702004b9d0d0738a42.tar.gz gentoo-2-7f6b8c50b00f21690bc5e1702004b9d0d0738a42.tar.bz2 gentoo-2-7f6b8c50b00f21690bc5e1702004b9d0d0738a42.zip |
version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-games/ogre/files')
-rw-r--r-- | dev-games/ogre/files/ogre-1.4.9-as-needed.patch | 11 | ||||
-rw-r--r-- | dev-games/ogre/files/ogre-1.4.9-cegui.patch | 19 |
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-games/ogre/files/ogre-1.4.9-as-needed.patch b/dev-games/ogre/files/ogre-1.4.9-as-needed.patch new file mode 100644 index 000000000000..ce218097f770 --- /dev/null +++ b/dev-games/ogre/files/ogre-1.4.9-as-needed.patch @@ -0,0 +1,11 @@ +--- acinclude.m4.orig 2008-04-09 17:49:30.848987000 +0100 ++++ acinclude.m4 2008-04-09 17:53:25.652068359 +0100 +@@ -340,7 +340,7 @@ + * --disable-cg to this configure script but this is highly * + * discouraged as this breaks many of the examples. * + ****************************************************************]) +- ) ++ ,-Xlinker --no-as-needed) + fi + + AM_CONDITIONAL(BUILD_CGPLUGIN, test x$build_cg = xyes) diff --git a/dev-games/ogre/files/ogre-1.4.9-cegui.patch b/dev-games/ogre/files/ogre-1.4.9-cegui.patch new file mode 100644 index 000000000000..c089164af219 --- /dev/null +++ b/dev-games/ogre/files/ogre-1.4.9-cegui.patch @@ -0,0 +1,19 @@ +--- acinclude.m4 ++++ acinclude.m4 +@@ -411,6 +411,8 @@ + ]) + + AC_DEFUN([OGRE_CHECK_CEGUI], [ ++ AC_ARG_ENABLE(cegui) ++ if test x$enable_cegui != xno; then + PKG_CHECK_MODULES(CEGUI, CEGUI >= 0.5.0, + [build_cegui_sample=true], [build_cegui_sample=false]) + if test x$build_cegui_sample = xtrue; then +@@ -426,6 +428,7 @@ + else + AC_MSG_RESULT([CEGUI not available, Gui and FacialAnimation samples will not be built]) + fi ++ fi + AM_CONDITIONAL([HAVE_CEGUI], [test x$build_cegui_sample = xtrue]) + ]) + |