Module: Mesa Branch: master Commit: 5c4bdbd825934fe01330890d360b61caa06fdc8d URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5c4bdbd825934fe01330890d360b61caa06fdc8d
Author: Jakob Bornecrantz <[email protected]> Date: Thu Oct 15 01:24:53 2009 +0100 autoconf: Fix case for not having package --- configure.ac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 085f419..f8b9b53 100644 --- a/configure.ac +++ b/configure.ac @@ -1152,9 +1152,9 @@ yes) fi if test "$tracker" = xorg; then PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1], - HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71" + HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71", HAVE_XEXTPROTO_71="no") - fi + fi done GALLIUM_STATE_TRACKERS_DIRS="$state_trackers" ;; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
