summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2007-09-09 18:08:36 +0000
committerTim-Philipp Müller <tim@centricular.net>2007-09-09 18:08:36 +0000
commitd1187f71207f4adfc6df1cec1bf4ed5fc09fc8c2 (patch)
treedf9849aa52c5dd3212efdca5322ba5b3e9ee3c62
parent5e39863fca93bb8c74208c11e426b15efd15632d (diff)
configure.ac: Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for old flac versions, 's good for cross-compilation ...
Original commit message from CVS: * configure.ac: Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for old flac versions, 's good for cross-compilation karma.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac9
2 files changed, 11 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index a3d78f2f..0ece598a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-09-09 Tim-Philipp Müller <tim at centricular dot net>
+
+ * configure.ac:
+ Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for old
+ flac versions, 's good for cross-compilation karma.
+
2007-09-07 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
diff --git a/configure.ac b/configure.ac
index 01e62d98..dcfcb0c1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -667,10 +667,11 @@ AG_GST_CHECK_FEATURE(ESD, [ESounD sound daemon], esdsink, [
dnl *** FLAC ***
translit(dnm, m, l) AM_CONDITIONAL(USE_FLAC, true)
-AC_TRY_RUN([
-#include <FLAC/export.h>
-int main () { return FLAC_API_VERSION_CURRENT<8; }
-],legacy_flac=no,legacy_flac=yes,legacy_flac=no)
+AC_TRY_COMPILE([#include <FLAC/export.h>], [
+ #if FLAC_API_VERSION_CURRENT < 8
+ #error "legacy flac API"
+ #endif
+ ], [ legacy_flac=no ], [ legacy_flac=yes ], [ legacy_flac=no ])
if test "x$legacy_flac" = "xyes"; then
AG_GST_CHECK_FEATURE(FLAC, [FLAC lossless audio], flac, [