diff options
author | Kristian Høgsberg <krh@bitplanet.net> | 2010-08-05 10:10:45 -0400 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-08-10 21:02:30 +0200 |
commit | 1e706ed64f143599c2c538aa3a14d8d8ae8af805 (patch) | |
tree | 9818c8bae5a72844e818fd1ef774bfcded1e02ff /configure.ac | |
parent | 8868e77fa0d4aee7ca6370c1594e8b4f83af6392 (diff) | |
download | gtk+-1e706ed64f143599c2c538aa3a14d8d8ae8af805.tar.gz |
gdk: Drop Xrender configure.ac check
GTK+ no longer depends on the render extension!
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index c755b7fffd..bde7a7a4c3 100644 --- a/configure.ac +++ b/configure.ac @@ -942,11 +942,11 @@ if test "x$gdktarget" = "xx11"; then # # Check for basic X packages; we use pkg-config if available # - if $PKG_CONFIG --exists x11 xext xrender; then + if $PKG_CONFIG --exists x11 xext; then have_base_x_pc=true - X_PACKAGES="$X_PACKAGES x11 xext xrender" - x_libs="`$PKG_CONFIG --libs x11 xext xrender`" - X_CFLAGS="`$PKG_CONFIG --cflags x11 xext xrender`" + X_PACKAGES="$X_PACKAGES x11 xext" + x_libs="`$PKG_CONFIG --libs x11 xext`" + X_CFLAGS="`$PKG_CONFIG --cflags x11 xext`" # Strip out any .la files that pkg-config might give us (this happens # with -uninstalled.pc files) @@ -967,9 +967,9 @@ if test "x$gdktarget" = "xx11"; then fi x_cflags="$X_CFLAGS" - x_libs_for_checks="$X_LIBS -lXext -lXrender -lX11 $X_EXTRA_LIBS" + x_libs_for_checks="$X_LIBS -lXext -lX11 $X_EXTRA_LIBS" - GTK_DEP_LIBS_FOR_X="$X_LIBS -lXrender -lX11 $X_EXTRA_LIBS" + GTK_DEP_LIBS_FOR_X="$X_LIBS -lX11 $X_EXTRA_LIBS" fi # Extra libraries found during checks (-lXinerama, etc), not from pkg-config. @@ -988,8 +988,6 @@ if test "x$gdktarget" = "xx11"; then AC_MSG_ERROR([*** libX11 not found. Check 'config.log' for more details.])) AC_CHECK_FUNC(XextFindDisplay, :, AC_MSG_ERROR([*** libXext not found. Check 'config.log' for more details.])) - AC_CHECK_FUNC(XRenderQueryExtension, :, - AC_MSG_ERROR([*** libXrender not found. Check 'config.log' for more details.])) # Check for xReply |