diff options
author | Conrad Parker <conrad@users.sourceforge.net> | 2004-09-07 07:46:59 +0000 |
---|---|---|
committer | Conrad Parker <conrad@users.sourceforge.net> | 2004-09-07 07:46:59 +0000 |
commit | a6e8497a4bf6b5f03dd57e927a4db2c05e9bd1ed (patch) | |
tree | 43baf2fefb4c3af04e3e4dd6d01400f6e2fbc68e | |
parent | 261088452aebcd55874ba9cfdea8bbc6534122a0 (diff) | |
download | xine-lib-a6e8497a4bf6b5f03dd57e927a4db2c05e9bd1ed.tar.gz xine-lib-a6e8497a4bf6b5f03dd57e927a4db2c05e9bd1ed.tar.bz2 |
fix broken include in TRY_LINK configure test for speex
CVS patchset: 6945
CVS date: 2004/09/07 07:46:59
-rw-r--r-- | m4/speex.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/speex.m4 b/m4/speex.m4 index b92d87118..a39e1dd6a 100644 --- a/m4/speex.m4 +++ b/m4/speex.m4 @@ -63,7 +63,7 @@ int main () LIBS="$LIBS $SPEEX_LIBS $OGG_LIBS" AC_TRY_LINK([ #include <stdio.h> -#include <speex/codec.h> +#include <speex.h> ], [ return 0; ], [ echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding Speex or finding the wrong" |