mplayer: internal copies of libdvdread/libdvdcss require largefile support

So disable when we don't have largefile support in toolchain.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2010-05-04 21:38:14 +02:00
parent ca218debd5
commit 23ff3c2786
3 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,7 @@
Fixes all over the tree.
Updated/fixed packages: xdriver_xf86-video-openchrome
Updated/fixed packages: mplayer, xdriver_xf86-video-openchrome
2010.05-rc1, Released May 3rd, 2010:

View File

View File

@ -22,7 +22,10 @@ endif
ifeq ($(BR2_LARGEFILE),y)
MPLAYER_LARGEFILE:=--enable-largefiles
else
MPLAYER_LARGEFILE:=--disable-largefiles
# dvdread/dvdcss requires largefile support
MPLAYER_LARGEFILE:=--disable-largefiles \
--disable-dvdread-internal \
--disable-libdvdcss-internal
endif
ifeq ($(BR2_i386),y)