Fix compiling for Android.
[platform/upstream/flac.git] / configure.ac
index 88e0995..c03e36b 100644 (file)
@@ -126,12 +126,15 @@ AM_CONDITIONAL(FLaC__CPU_PPC_SPE, test "x$abi_spe" = xtrue)
 
 os_is_windows=no
 case "$host" in
-       *-*-cygwin|*mingw*|*emx*)
+       *-*-cygwin|*mingw*)
                # define this variable for enabling strict exports with libtool; for now, it's supported by Win32 and OS/2
                LT_NO_UNDEFINED="-no-undefined"
                CPPFLAGS="-D__MSVCRT_VERSION__=0x0601 $CPPFLAGS"
                os_is_windows=yes
                ;;
+       *emx*)
+               LT_NO_UNDEFINED="-no-undefined"
+               ;;
        *)
                LT_NO_UNDEFINED=
                ;;