diff options
author | Benjamin Close <Benjamin.Close@clearchain.com> | 2008-01-31 14:42:41 +1030 |
---|---|---|
committer | Benjamin Close <Benjamin.Close@clearchain.com> | 2008-01-31 14:51:35 +1030 |
commit | 6ef45c37160079a9aa551adcd841abdb55eabae3 (patch) | |
tree | 5d63695befbc0be248429df58ee4870dddaeae6d | |
parent | 3f7624048aa6064c69e2320a70fb7fc89e0bb7ef (diff) |
Use libtools SED check rather than autoconf's SED check.
AC_PROG_SED required autoconf 2.60, libtool's should work
regardless. This keeps us supporting 2.57 of autoconf
Found by: Tinderbox (1.4.1 compile)
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index dc569e7..336c5e1 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ AM_CONFIG_HEADER([config.h]) # Checks for programs. AC_PROG_LIBTOOL AC_PROG_CC -AC_PROG_SED +LT_AC_PROG_SED # Checks for pkg-config packages PKG_CHECK_MODULES(XPM, xproto x11) |