mirror of
https://github.com/mpv-player/mpv
synced 2025-03-25 04:38:01 +00:00
Fix xvidix for non-x11 systems, 10l Alex :)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4169 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
a3c3bca337
commit
b01493a577
5
configure
vendored
5
configure
vendored
@ -2754,8 +2754,13 @@ test "$_debug" && _def_debug='#define MP_DEBUG 1'
|
||||
_def_linux='#undef TARGET_LINUX'
|
||||
linux && _def_linux='#define TARGET_LINUX 1'
|
||||
|
||||
# TODO cleanup the vidix stuff here
|
||||
_def_vidix='#define CONFIG_VIDIX 1'
|
||||
test "$_vidix" = no && _def_vidix='#undef CONFIG_VIDIX'
|
||||
if test "$_vidix" = yes && test "$_x11" = yes; then
|
||||
_vosrc="$_vosrc vo_xvidux.c"
|
||||
_vomodules="xvidix $_vomodules"
|
||||
fi
|
||||
echo Checking for vidix ... "$_vidix"
|
||||
#############################################################################
|
||||
echo "Creating config.mak"
|
||||
|
@ -7,7 +7,7 @@ SRCS=aspect.c aclib.c osd.c font_load.c video_out.c vo_null.c vo_pgm.c vo_md5.c
|
||||
OBJS=$(SRCS:.c=.o)
|
||||
|
||||
ifeq ($(VIDIX),yes)
|
||||
SRCS += vosub_vidix.c vo_xvidix.c
|
||||
SRCS += vosub_vidix.c
|
||||
endif
|
||||
|
||||
CFLAGS = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DVB_INC) -DMPG12PLAY #-Wall
|
||||
|
Loading…
Reference in New Issue
Block a user