diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-19 23:02:49 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-19 23:02:49 +0000 |
commit | 18d33de1a5e37d4d9a64170c1464250867fc78e1 (patch) | |
tree | 87d863c20a07c6a9cedf93b7384c19683676aeb7 | |
parent | fc8fdee1f919c01000b209b1bc3d201557df9bb2 (diff) | |
download | xine-lib-18d33de1a5e37d4d9a64170c1464250867fc78e1.tar.gz xine-lib-18d33de1a5e37d4d9a64170c1464250867fc78e1.tar.bz2 |
We need to call CC_CHECK_WERROR first of all, as the autoconf automatic dependency support fails us, as the first time it's invoked is conditional.
CVS patchset: 8715
CVS date: 2007/03/19 23:02:49
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f2ca16e17..bcab9f2fd 100644 --- a/configure.ac +++ b/configure.ac @@ -133,6 +133,9 @@ AC_C_INLINE AC_CHECK_TOOL([STRINGS], [strings], [false]) +dnl We need to check this beforehand or autoconf bails out as we have it conditional. +CC_CHECK_WERROR + dnl --------------------------------------------- dnl Check for assembler (ffmpeg need it), don't call this before LIBTOOL dnl --------------------------------------------- |