Joern Nettingsmeier
2005-Apr-17 09:39 UTC
[Vorbis-dev] [PATCH] trivial vorbis-tools build patch
hi everyone!
i know it's a little off-topic here, but can somebody with svn commit
access please consider this:
--- vorbis-tools/configure.in~ 2005-04-07 20:28:23.460547245 +0200
+++ vorbis-tools/configure.in 2005-04-07 20:28:23.460547245 +0200
@@ -161,7 +161,7 @@
AC_MSG_WARN(libspeex missing)
have_libspeex=no, [$SPEEX_LIBS]
)
-AC_CHECK_HEADER(speex.h,,
+AC_CHECK_HEADER(speex/speex.h,,
AC_MSG_WARN(libspeex headers missing)
have_libspeex=no,[ ])
as it is now, vorbis-tools will not find speex.h, since it's looking in
/usr/local/include instead of /usr/local/include/speex.
a few lines before there is a similar piece of code for FLAC which is
correct, so this is probably just an oversight.
regards,
j?rn
please cc: me on replies, i'm not subscribed to the list. thanks!
On Fri, Apr 08, 2005 at 08:55:50AM +0200, Joern Nettingsmeier wrote:> i know it's a little off-topic here, but can somebody with svn commit > access please consider this:Not off topic at all. Looks like you're right, thanks for the patch! -r> --- vorbis-tools/configure.in~ 2005-04-07 20:28:23.460547245 +0200 > +++ vorbis-tools/configure.in 2005-04-07 20:28:23.460547245 +0200 > @@ -161,7 +161,7 @@ > AC_MSG_WARN(libspeex missing) > have_libspeex=no, [$SPEEX_LIBS] > ) > -AC_CHECK_HEADER(speex.h,, > +AC_CHECK_HEADER(speex/speex.h,, > AC_MSG_WARN(libspeex headers missing) > have_libspeex=no,[ ]) >