Changeset 2d06f4d7330c598464ba7cb5520753b490b181f3

Show
Ignore:
Timestamp:
11/11/07 15:50:30 (10 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1194792630 +0000
git-parent:

[518097e0f29a5536093f511e85b67c658825121a]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1194792630 +0000
Message:

configure.ac: Because of the ld text relocation bug on Mac OS X, we have to disable ffmpeg when using such linker for the time being. Add a big warning at the end of configure if we are in such a configuration.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • configure.ac

    r018f3af r2d06f4d  
    238238            enable_sse="no" 
    239239            echo "  Assuming --disable-sse (due to a bug in ld)" 
     240            enable_ffmpeg="no" 
     241            echo "  Assuming --disable-ffmpeg (due to a bug in ld)" 
    240242        fi 
    241243    fi 
     
    62566258To build vlc and its plugins, type \`./compile' or \`make'. 
    62576259" 
    6258  
     6260if test "x$ac_ld_does_not_support_text_reloc" = "xyes"; then 
     6261   echo "" 
     6262   echo "Warning: Due to a bug in ld, mmx/sse support has been" 
     6263   echo "         turned off." 
     6264   echo "         More over FFmpeg support has been disabled." 
     6265   echo "         VLC WILL NOT BE ABLE TO PLAY MOST FILES." 
     6266   echo "" 
     6267fi