]> git.sesse.net Git - vlc/commitdiff
configure.ac: Because of the ld text relocation bug on Mac OS X, we have to disable...
authorPierre d'Herbemont <pdherbemont@videolan.org>
Sun, 11 Nov 2007 14:50:30 +0000 (14:50 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Sun, 11 Nov 2007 14:50:30 +0000 (14:50 +0000)
configure.ac

index b3918c932ce940bac5b79dff0fc68d5a9001698d..649510ae24e99ca617d4e2c4b82ed3270b3ef556 100644 (file)
@@ -237,6 +237,8 @@ case "${host_os}" in
             echo "  Assuming --disable-mmx (due to a bug in ld)"
             enable_sse="no"
             echo "  Assuming --disable-sse (due to a bug in ld)"
+            enable_ffmpeg="no"
+            echo "  Assuming --disable-ffmpeg (due to a bug in ld)"
         fi
     fi
     ;;
@@ -6255,4 +6257,11 @@ with \`./vlc-config --list plugin'.
 You can tune the compiler flags in vlc-config.
 To build vlc and its plugins, type \`./compile' or \`make'.
 "
-
+if test "x$ac_ld_does_not_support_text_reloc" = "xyes"; then
+   echo ""
+   echo "Warning: Due to a bug in ld, mmx/sse support has been"
+   echo "         turned off."
+   echo "         More over FFmpeg support has been disabled."
+   echo "         VLC WILL NOT BE ABLE TO PLAY MOST FILES."
+   echo ""
+fi