diff options
author | Benjamin Close <Benjamin.Close@clearchain.com> | 2007-12-19 15:17:34 +1030 |
---|---|---|
committer | Benjamin Close <Benjamin.Close@clearchain.com> | 2007-12-19 15:17:34 +1030 |
commit | 427023df02bd38ff9dc2af2a2059466f37f4cfd8 (patch) | |
tree | e8f9e4f34d5d43de3b31d5b085ff0465b0975de9 | |
parent | e09956f244099ddd36b1a2cd5d7800d5fc7120c1 (diff) |
Fix build under autoconf 2.57
configure.ac specifies a max version of 2.57 but AC_CHECK_HEADERS_ONCE
was only introduced to autoconf in 2.59c. Drop the _ONCE to make autoconf happy
Bug: 13631
Found by: tinderbox
Approved by: daniels@
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 78e4049..62c488e 100644 --- a/configure.ac +++ b/configure.ac @@ -35,7 +35,7 @@ XORG_MACROS_VERSION(1.1) AC_PROG_CC AC_PROG_INSTALL -AC_CHECK_HEADERS_ONCE([wchar.h wctype.h]) +AC_CHECK_HEADERS([wchar.h wctype.h]) # Checks for pkg-config packages PKG_CHECK_MODULES(XPROP, x11) |