diff -ur toxine-0.6.3/configure.ac toxine-0.6.3-nox/configure.ac --- toxine-0.6.3/configure.ac 2004-04-16 18:32:30.000000000 +0200 +++ toxine-0.6.3-nox/configure.ac 2005-08-19 21:22:55.000000000 +0200 @@ -141,6 +141,7 @@ if test x"$no_x" != x"yes"; then AC_DEFINE(HAVE_X11,,[Define this if you have X11R6 installed]) fi +AM_CONDITIONAL(HAVE_X11, test x"$no_x" != x"yes") dnl dnl XTest Extension Only in toxine-0.6.3-nox: configure.ac~ diff -ur toxine-0.6.3/src/plugins/Makefile.am toxine-0.6.3-nox/src/plugins/Makefile.am --- toxine-0.6.3/src/plugins/Makefile.am 2004-04-12 00:29:01.000000000 +0200 +++ toxine-0.6.3-nox/src/plugins/Makefile.am 2005-08-19 21:23:36.000000000 +0200 @@ -6,6 +6,10 @@ LIBTOOL = $(SHELL) $(top_builddir)/libtoolplugin-nofpic +if HAVE_X11 +x11_plugin = toxine_vo_plugin_x11.la +endif + if HAVE_AA aa_plugin = toxine_vo_plugin_aa.la endif @@ -14,7 +18,7 @@ caca_plugin = toxine_vo_plugin_caca.la endif -lib_LTLIBRARIES = $(aa_plugin) $(caca_plugin) toxine_vo_plugin_x11.la \ +lib_LTLIBRARIES = $(aa_plugin) $(caca_plugin) $(x11_plugin) \ toxine_vo_plugin_dxr3.la toxine_vo_plugin_none.la toxine_vo_plugin_x11_la_SOURCES = vo_x11.c Only in toxine-0.6.3-nox/src/plugins: Makefile.am~