diff options
author | Zaheer Abbas Merali <zaheerm@gentoo.org> | 2005-06-23 10:52:36 +0000 |
---|---|---|
committer | Zaheer Abbas Merali <zaheerm@gentoo.org> | 2005-06-23 10:52:36 +0000 |
commit | 4fffc26e49c6fdbf1df8038f98d2d023a00e2847 (patch) | |
tree | a184bcd47916e8c9e00894cc038e5c582b729c22 /media-libs/libtheora/files | |
parent | cleaning up obsolete versions (diff) | |
download | gentoo-2-4fffc26e49c6fdbf1df8038f98d2d023a00e2847.tar.gz gentoo-2-4fffc26e49c6fdbf1df8038f98d2d023a00e2847.tar.bz2 gentoo-2-4fffc26e49c6fdbf1df8038f98d2d023a00e2847.zip |
fix stupid upstream configure, enable-encode disables encoder. Thanks bilboed for the patch, also been committed upstream in cvs
(Portage version: 2.0.51.19)
Diffstat (limited to 'media-libs/libtheora/files')
-rw-r--r-- | media-libs/libtheora/files/digest-libtheora-1.0_alpha4-r1 | 1 | ||||
-rw-r--r-- | media-libs/libtheora/files/libtheora-1.0_alpha4-enable-flags.patch | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/media-libs/libtheora/files/digest-libtheora-1.0_alpha4-r1 b/media-libs/libtheora/files/digest-libtheora-1.0_alpha4-r1 new file mode 100644 index 000000000000..c6071d3bcdce --- /dev/null +++ b/media-libs/libtheora/files/digest-libtheora-1.0_alpha4-r1 @@ -0,0 +1 @@ +MD5 a71ac42ec0f848da327930841a80ff2b libtheora-1.0alpha4.tar.bz2 1755132 diff --git a/media-libs/libtheora/files/libtheora-1.0_alpha4-enable-flags.patch b/media-libs/libtheora/files/libtheora-1.0_alpha4-enable-flags.patch new file mode 100644 index 000000000000..6a909ee48b64 --- /dev/null +++ b/media-libs/libtheora/files/libtheora-1.0_alpha4-enable-flags.patch @@ -0,0 +1,20 @@ +--- libtheora-1.0alpha4/configure.ac 2004-12-15 21:06:04.000000000 +0100 ++++ libtheora-1.0alpha4-works/configure.ac 2005-06-22 16:23:12.000000000 +0200 +@@ -83,7 +83,7 @@ + ac_enable_float=yes + AC_ARG_ENABLE(float, + [ --disable-float disable use of floating point code ], +- [ ac_enable_float=no ], [ ac_enable_float=yes] ) ++ [ ac_enable_float=$enableval ], [ ac_enable_float=yes] ) + + if test "x${ac_enable_float}" = xyes ; then + AC_DEFINE(THEORA_SUPPORT_FLOAT, [1], [Build floating point code]) +@@ -97,7 +97,7 @@ + ac_enable_encode=yes + AC_ARG_ENABLE(encode, + [ --disable-encode disable encoding support ], +- [ ac_enable_encode=no ], [ ac_enable_encode=yes] ) ++ [ ac_enable_encode=$enableval ], [ ac_enable_encode=yes] ) + + if test "x${ac_enable_encode}" = xyes ; then + BUILDABLE_EXAMPLES="$BUILDABLE_EXAMPLES encoder_example" |