Changeset 2d06f4d7330c598464ba7cb5520753b490b181f3
- 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
| r018f3af |
r2d06f4d |
|
| 238 | 238 | enable_sse="no" |
|---|
| 239 | 239 | 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)" |
|---|
| 240 | 242 | fi |
|---|
| 241 | 243 | fi |
|---|
| … | … | |
| 6256 | 6258 | To build vlc and its plugins, type \`./compile' or \`make'. |
|---|
| 6257 | 6259 | " |
|---|
| 6258 | | |
|---|
| | 6260 | if 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 "" |
|---|
| | 6267 | fi |
|---|