diff options
author | Kyle Guinn <elyk03@gmail.com> | 2011-03-03 00:10:21 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-04 10:12:45 -0600 |
commit | 28091409e585946c0a51f27aea51cfccbcc5f3a2 (patch) | |
tree | 4510b70b3d9c104c4c3a7ab0b09bf7e4df67365a /audio/TiMidity++/patches | |
parent | 3ea4389ecf732f917e4069a0142c28f497e4ad0e (diff) | |
download | slackbuilds-28091409e585946c0a51f27aea51cfccbcc5f3a2.tar.gz |
audio/TiMidity++: Misc tweaks including +jack +speex -arts
For clarity's sake, this commit adds jack and speex support,
removes artsd support, and has various other minor cleanups.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'audio/TiMidity++/patches')
-rw-r--r-- | audio/TiMidity++/patches/speex.diff | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/audio/TiMidity++/patches/speex.diff b/audio/TiMidity++/patches/speex.diff new file mode 100644 index 0000000000..c0f71b1190 --- /dev/null +++ b/audio/TiMidity++/patches/speex.diff @@ -0,0 +1,38 @@ +diff --git a/configure b/configure +--- a/configure ++++ b/configure +@@ -14785,7 +14785,7 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + +- #include <speex.h> ++ #include <speex/speex.h> + #include <ogg/ogg.h> + + int +diff --git a/configure.in b/configure.in +--- a/configure.in ++++ b/configure.in +@@ -1230,7 +1230,7 @@ + if test "x$au_enable_speex" = xyes; then + AC_CACHE_VAL(have_speex, + [AC_TRY_LINK([ +- #include <speex.h> ++ #include <speex/speex.h> + #include <ogg/ogg.h> + ], + [ +diff --git a/timidity/speex_a.c b/timidity/speex_a.c +--- a/timidity/speex_a.c ++++ b/timidity/speex_a.c +@@ -33,8 +33,8 @@ + #include <fcntl.h> + #endif + +-#include <speex.h> +-#include <speex_header.h> ++#include <speex/speex.h> ++#include <speex/speex_header.h> + #include <ogg/ogg.h> + + #include "timidity.h" |