diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-02-05 23:40:11 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-02-05 23:40:11 +0000 |
commit | 1cb9832ac0b6a132b172302ad76f68f16e3487e1 (patch) | |
tree | 5ad0663d62f6f76b236b11da63ec02b9be17a518 | |
parent | 32d2fc27aafb76dccb53b00457a8cf4c4f9ffed6 (diff) | |
download | xine-lib-1cb9832ac0b6a132b172302ad76f68f16e3487e1.tar.gz xine-lib-1cb9832ac0b6a132b172302ad76f68f16e3487e1.tar.bz2 |
Fix testing for DVB support.
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 01d0a5eb6..e039f4855 100644 --- a/configure.ac +++ b/configure.ac @@ -252,12 +252,12 @@ dnl --------------------------------------------- have_supported_dvb=yes SYS=other -case "$host" in - *-gnu*.*) +case "$build_os" in + gnu*) have_supported_dvb=no SYS=hurd ;; - *-*-mingw* | *-*-cygwin*) + mingw* | cygwin*) have_supported_dvb=no dnl check if we are using the cygwin, mingw or cygwin with mno-cygwin mode dnl in which case we are actually dealing with a mingw32 compiler |