From: Thomas Vander Stichele Date: Tue, 16 Mar 2004 18:00:18 +0000 (+0000) Subject: fix X check explain version check X-Git-Tag: 1.19.3~511^2~14469 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b41dec1ff3c54d3eadca7e289fa8b29f43cee6b;p=platform%2Fupstream%2Fgstreamer.git fix X check explain version check Original commit message from CVS: fix X check explain version check --- diff --git a/ChangeLog b/ChangeLog index 6bdc5d6..654011a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ 2004-03-16 Thomas Vander Stichele + * common/ChangeLog: + * common/gst-autogen.sh: + add some explanation about the version detection + * configure.ac: + fix X check + +2004-03-16 Thomas Vander Stichele + * configure.ac: bump nano to 1 === gst-plugins 0.8.0 === diff --git a/configure.ac b/configure.ac index d63ed49..b11ebe2 100644 --- a/configure.ac +++ b/configure.ac @@ -507,20 +507,20 @@ translit(dnm, m, l) AM_CONDITIONAL(USE_X, true) GST_CHECK_FEATURE(X, [X libraries and plugins], [ximagesink], [ AC_PATH_XTRA -dnl if test "x$X_CFLAGS" == "x" -o "$X_CFLAGS" == "-DX_DISPLAY_MISSING" - if test "x$X_DISPLAY_MISSING" = "x1" + dnl now try to find the HEADER + AC_CHECK_HEADER(X11/Xlib.h, HAVE_X="yes", HAVE_X="no") + + if test "x$HAVE_X" = "xno" then AC_MSG_NOTICE([cannot find X11 development files]) - HAVE_X="no" else dnl this is much more than we want X_LIBS="$X_LIBS $X_PRE_LIBS $X_EXTRA_LIBS" - dnl AC_PATH_XTRA only defines the path needed to find the X libs, not the libs - dnl therefore we add them here + dnl AC_PATH_XTRA only defines the path needed to find the X libs, + dnl it does not add the libs; therefore we add them here X_LIBS="$X_LIBS -lX11" AC_SUBST(X_CFLAGS) AC_SUBST(X_LIBS) - HAVE_X="yes" fi AC_SUBST(HAVE_X) ])