summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2003-11-12 00:13:46 +0000
committerBenjamin Otte <otte@gnome.org>2003-11-12 00:13:46 +0000
commitd5d1f01a9e89f53c45a8ed09fcaf6f27d67d2ece (patch)
tree2e4e47af2fe641f80ccf1fd566431e2b24bc1c01
parentc0909a864eb1b8174bf1d8c7658b5c5f3ae190d6 (diff)
downloadgstreamer-plugins-base-d5d1f01a9e89f53c45a8ed09fcaf6f27d67d2ece.tar.gz
add -lX11 to X_LIBS so ximagesink builds
Original commit message from CVS: add -lX11 to X_LIBS so ximagesink builds
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 2685b26ce..74aed820a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -259,6 +259,9 @@ AC_PATH_XTRA
if test "-DX_DISPLAY_MISSING" = "$X_CFLAGS"; then
AC_MSG_NOTICE([cannot find X11, the build system needs fixage])
fi
+dnl AC_PATH_XTRA only defines the path needed to find the X libs, not the libs
+dnl therefore we add them here
+X_LIBS="$X_LIBS -lX11"
AC_SUBST(X_CFLAGS)
AC_SUBST(X_PRE_LIBS)
AC_SUBST(X_EXTRA_LIBS)