diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-07-12 20:19:04 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-07-12 20:19:04 +0000 |
commit | ffc61aacc7a5156216aa1f2e31d8b207bf3dd59d (patch) | |
tree | 5826779acbe4e3ec8148717ab1b9d38d5053b1c5 | |
parent | 8c747c78299c1b4285f22657afc8fa888dece819 (diff) | |
download | xine-lib-ffc61aacc7a5156216aa1f2e31d8b207bf3dd59d.tar.gz xine-lib-ffc61aacc7a5156216aa1f2e31d8b207bf3dd59d.tar.bz2 |
Don't invoke AC_C_ALWAYS_INLINE.
Should fix inline use-before-define build failures on several architectures;
it certainly prevents this problem with debug/noopt builds on amd64.
CVS patchset: 8121
CVS date: 2006/07/12 20:19:04
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 09108c100..ff91be533 100644 --- a/configure.ac +++ b/configure.ac @@ -173,7 +173,7 @@ AC_C_BIGENDIAN dnl AC_C_BIGENDIAN triggers an AC_TRY_RUN warning; we can't cross compile dnl xine (oh, well) AC_C_CONST -AC_C_ALWAYS_INLINE +dnl AC_C_ALWAYS_INLINE removal allows ffmpeg to be more widely buildable AC_TYPE_OFF_T AC_TYPE_SIZE_T AC_CHECK_SIZEOF(long) |