diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-09-26 16:39:56 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-09-26 16:39:56 +0000 |
commit | bd28e82893c670053d7ae4e7ceab273766982746 (patch) | |
tree | 7960d219a983f9c31d2f76966d2f5b3a1811a296 | |
parent | 0dc48c1fde230b0e33ba72854ff44e1ffac19255 (diff) | |
download | xine-lib-bd28e82893c670053d7ae4e7ceab273766982746.tar.gz xine-lib-bd28e82893c670053d7ae4e7ceab273766982746.tar.bz2 |
xine_encoder includes a dxr3 header, which in turn uses X11 headers,
so we need to add $(X_CFLAGS) here
CVS patchset: 5417
CVS date: 2003/09/26 16:39:56
-rw-r--r-- | src/libffmpeg/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libffmpeg/Makefile.am b/src/libffmpeg/Makefile.am index 530952bf1..f92828aeb 100644 --- a/src/libffmpeg/Makefile.am +++ b/src/libffmpeg/Makefile.am @@ -12,7 +12,7 @@ libdir = $(XINE_PLUGINDIR) lib_LTLIBRARIES = xineplug_decode_ff.la if HAVE_DXR3 -AM_CPPFLAGS = -I$(top_srcdir)/src/dxr3 +AM_CPPFLAGS = -I$(top_srcdir)/src/dxr3 $(X_CFLAGS) xineplug_decode_ff_la_SOURCES = xine_decoder.c xine_encoder.c # The dxr3 uses ffmpegs MPEG encoder by dlopen()ing the ffmpeg plugin and # dlsym()ing the necessary function. Therefore we must allow more exported |