diff options
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | libvo/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2087,7 +2087,7 @@ EOF fi if test "$_x11" = yes ; then _def_x11='#define HAVE_X11 1' - _vosrc="$_vosrc vo_x11.c" + _vosrc="$_vosrc x11_common.c vo_x11.c" _vomodules="x11 $_vomodules" else _def_x11='#undef HAVE_X11' diff --git a/libvo/Makefile b/libvo/Makefile index c236430f8a..15772009ef 100644 --- a/libvo/Makefile +++ b/libvo/Makefile @@ -3,7 +3,7 @@ include config.mak LIBNAME = libvo.a -SRCS=aspect.c aclib.c osd.c font_load.c spuenc.c video_out.c vo_null.c vo_pgm.c vo_md5.c vo_mpegpes.c x11_common.c vo_yuv4mpeg.c $(OPTIONAL_SRCS) sub.c +SRCS=aspect.c aclib.c osd.c font_load.c spuenc.c video_out.c vo_null.c vo_pgm.c vo_md5.c vo_mpegpes.c vo_yuv4mpeg.c $(OPTIONAL_SRCS) sub.c OBJS=$(SRCS:.c=.o) ifeq ($(VIDIX),yes) |