diff options
author | Jesus Rivero <neurogeek@gentoo.org> | 2011-11-17 17:45:56 +0000 |
---|---|---|
committer | Jesus Rivero <neurogeek@gentoo.org> | 2011-11-17 17:45:56 +0000 |
commit | 13f171ca7ccfe762d68977a83ae3b5bf71afcb1e (patch) | |
tree | 3fe4d3e34ad6dad4679191fd2cbb2c8bd153f36a /app-accessibility/sphinx3/files | |
parent | Version bump. (diff) | |
download | gentoo-2-13f171ca7ccfe762d68977a83ae3b5bf71afcb1e.tar.gz gentoo-2-13f171ca7ccfe762d68977a83ae3b5bf71afcb1e.tar.bz2 gentoo-2-13f171ca7ccfe762d68977a83ae3b5bf71afcb1e.zip |
Version bump. Closes bug #344991
(Portage version: 2.2.0_alpha46/cvs/Linux i686)
Diffstat (limited to 'app-accessibility/sphinx3/files')
-rw-r--r-- | app-accessibility/sphinx3/files/sphinx3-0.8_heap_fix.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-accessibility/sphinx3/files/sphinx3-0.8_heap_fix.patch b/app-accessibility/sphinx3/files/sphinx3-0.8_heap_fix.patch new file mode 100644 index 000000000000..b7b71d974413 --- /dev/null +++ b/app-accessibility/sphinx3/files/sphinx3-0.8_heap_fix.patch @@ -0,0 +1,34 @@ +diff -uNr sphinx3-0.8.orig/python/setup.py sphinx3-0.8/python/setup.py +--- sphinx3-0.8.orig/python/setup.py 2008-12-31 23:20:08.000000000 -0500 ++++ sphinx3-0.8/python/setup.py 2011-11-17 09:46:57.000000000 -0500 +@@ -8,15 +8,10 @@ + define_macros = [] + + module = Extension('_sphinx3', +- include_dirs = ['../../sphinxbase/include', +- '../include', +- '/usr/local/include/sphinxbase/', +- '/usr/local/include/sphinx3', +- ], ++ include_dirs = ['../include', ++ '@GENTOO_PORTAGE_EPREFIX@/usr/include/sphinxbase'], + define_macros = define_macros, +- library_dirs = ['../../sphinxbase/src/libsphinxbase/.libs', +- '../src/libs3decoder/.libs', +- '../../sphinxbase/lib/debug', ++ library_dirs = ['../src/libs3decoder/.libs', + '../lib/debug', + ], + libraries = ['sphinxbase', 's3decoder'], +diff -uNr sphinx3-0.8.orig/src/libs3decoder/libsearch/vithist.c sphinx3-0.8/src/libs3decoder/libsearch/vithist.c +--- sphinx3-0.8.orig/src/libs3decoder/libsearch/vithist.c 2008-12-31 13:27:56.000000000 -0500 ++++ sphinx3-0.8/src/libs3decoder/libsearch/vithist.c 2011-11-17 09:46:24.000000000 -0500 +@@ -647,7 +647,7 @@ + { + int32 se, fe, filler_done, th; + vithist_entry_t *ve; +- heap_t h; ++ heap_t *h; + s3wid_t *wid; + int32 i; + |