diff options
author | Carlo Bramini <carlo.bramix@libero.it> | 2012-06-05 12:20:38 +0300 |
---|---|---|
committer | Carlo Bramini <carlo.bramix@libero.it> | 2012-06-05 12:20:38 +0300 |
commit | 8ef238a8cc53fe097808e79de0682b140ff07057 (patch) | |
tree | 8c9a2059324b289c2f14a78d552fd72722e3dc99 | |
parent | 43d2cc9a1598132bda53d1e95bf7f90e5cc82fab (diff) | |
download | xine-lib-8ef238a8cc53fe097808e79de0682b140ff07057.tar.gz xine-lib-8ef238a8cc53fe097808e79de0682b140ff07057.tar.bz2 |
Fixed LIBS with cygwin
@INTLLIBS@ is wrong because it should be $(INTLLIBS)
instead (and infact it causes an error at compile time because it is not
expanded), that piece of code is a nonsense: under cygwin, libintl is added
like in all posix environments.
-rw-r--r-- | configure.ac | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 1ff889dbc..656904649 100644 --- a/configure.ac +++ b/configure.ac @@ -2350,12 +2350,6 @@ case "$host_or_hostalias" in AC_DEFINE(FPM_INTEL,1,[Define to select libmad fixed point arithmetic implementation]) arch_x86="32" enable_impure_text="yes" - - case "$host_or_hostalias" in - *-*-cygwin) - LIBS="$LIBS @INTLLIBS@ -lkernel32" - ;; - esac ;; x86_64-*) AC_DEFINE_UNQUOTED(ARCH_X86_64,,[Define this if you're running x86 architecture 64 bits]) |