diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-22 22:31:48 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-22 22:31:48 +0000 |
commit | 37d08eb442b9bc48459b089a8abccba6f3e28ea3 (patch) | |
tree | 702804c3b63d738c4a95a3ce0ab3564dc162cb1c /m4 | |
parent | 62b1bb0c213c37b58e5a7bb8359f41168c34f817 (diff) | |
download | xine-lib-37d08eb442b9bc48459b089a8abccba6f3e28ea3.tar.gz xine-lib-37d08eb442b9bc48459b089a8abccba6f3e28ea3.tar.bz2 |
Move handling of Win32 codecs all in a single point of configure.ac rather than split in two. Check for GNU as (macro adapted from libtool's check for GNU ld), as for instance Apple's assembler is not going to compile the Win32 wrappers. When GNU as is not found and user hasn't requested win32 codecs support explicitely, skip over it; if user requested win32 codecs and GNU as is not found, bail out.
CVS patchset: 8740
CVS date: 2007/03/22 22:31:48
Diffstat (limited to 'm4')
-rw-r--r-- | m4/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/m4/Makefile.am b/m4/Makefile.am index d78fb6a88..3a5209dc3 100644 --- a/m4/Makefile.am +++ b/m4/Makefile.am @@ -32,4 +32,5 @@ EXTRA_DIST = glibc2.m4 intdiv0.m4 intmax.m4 inttypes.m4 inttypes_h.m4 inttypes-p xine.m4 \ _xine.m4 \ xv.m4 \ - pthreads.m4 + pthreads.m4 \ + gas.m4 |