summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2009-08-20 23:02:57 -0400
committerRoger Dingledine <arma@torproject.org>2009-08-20 23:02:57 -0400
commit978571587a85bebb37ec3cb9c2ea1fde1cecd6d7 (patch)
treef9e8f39a9e71e3001f903baa82a2b752e417b3fa
parenteb829cc330629da03989c9c3b466d3c69b772249 (diff)
downloadtor-978571587a85bebb37ec3cb9c2ea1fde1cecd6d7.tar.gz
tor-978571587a85bebb37ec3cb9c2ea1fde1cecd6d7.zip
autoconf 2.59 appears not to support AC_PROG_SED
-rw-r--r--configure.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index ab7d6480cf..c21c130a05 100644
--- a/configure.in
+++ b/configure.in
@@ -127,7 +127,9 @@ AC_PROG_CC
AC_PROG_CPP
AC_PROG_MAKE_SET
AC_PROG_RANLIB
-AC_PROG_SED
+
+dnl autoconf 2.59 appears not to support AC_PROG_SED
+AC_CHECK_PROG([SED],[sed],[sed],[/bin/false])
AC_PATH_PROG([SHA1SUM], [sha1sum], none)
AC_PATH_PROG([OPENSSL], [openssl], none)