summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2013-10-10 21:00:08 -0700
committerMatt Turner <mattst88@gmail.com>2013-10-14 11:13:09 -0700
commit7a2e9f9778473a812ce372a25cc4b6e791b355cf (patch)
treef56351628fec5e45489f404aaf54858ec9116a50 /configure.ac
parent9ae1f0bad6c23b8ed8bab01dc6752aeebfb558b3 (diff)
configure.ac: Don't check for awk, grep, nm.
Not used since d53901c6.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac12
1 files changed, 0 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac
index 5faae97cd6c..c68e14b44c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1256,19 +1256,7 @@ dnl
dnl XA configuration
dnl
if test "x$enable_xa" = xyes; then
-AC_PROG_AWK
-AC_PROG_GREP
-AC_CHECK_PROG(NM, nm, "nm")
-if test "x$AWK" = x || test "x$GREP" = x || test "x$NM" = x; then
-AC_MSG_WARN([Missing one of nm, grep or awk. Disabling xa.])
-enable_xa=no
-fi
-fi
-if test "x$enable_xa" = xyes; then
GALLIUM_STATE_TRACKERS_DIRS="xa $GALLIUM_STATE_TRACKERS_DIRS"
- AC_SUBST(AWK)
- AC_SUBST(GREP)
- AC_SUBST(NM)
fi
AM_CONDITIONAL(HAVE_ST_XA, test "x$enable_xa" = xyes)