diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-09-06 13:27:57 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-09-06 13:27:57 +0000 |
commit | 8bfceff326a70fa7ea27eb1179f68923e3c6c651 (patch) | |
tree | f9c6e91b0b4b25a83310153743ec076c4aead057 | |
parent | 3ecb5d446f15366fb979cc5b755785169856f97a (diff) | |
download | xine-lib-8bfceff326a70fa7ea27eb1179f68923e3c6c651.tar.gz xine-lib-8bfceff326a70fa7ea27eb1179f68923e3c6c651.tar.bz2 |
issue a warning when the X11 output plugins are not being built
CVS patchset: 5347
CVS date: 2003/09/06 13:27:57
-rw-r--r-- | configure.ac | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1be97cde5..97aa98640 100644 --- a/configure.ac +++ b/configure.ac @@ -1769,3 +1769,24 @@ if ! echo $PATH | egrep "(:|^)$final_bindir(/?:|/?$)" >/dev/null ; then echo "****************************************************************" echo fi + +dnl +dnl warn if no X11 plugins will be built +dnl + +if test x"$no_x" = "xyes" ; then + echo + echo "****************************************************************" + echo "WARNING! No X11 output plugins will be built." + echo + echo "For some reason, the requirements for building the X11 video" + echo "output plugins are not met. That means, that you will NOT be" + echo "able to use the resulting xine-lib to watch videos in a window" + echo "on any X11-based display (e.g. your desktop)." + echo + echo "If this is not what you want, provide the necessary X11 build" + echo "dependencies (usually done by installing a package called" + echo "XFree86-devel or similar) and run configure again." + echo "****************************************************************" + echo +fi |