diff options
author | John Wiegley <johnw@newartisans.com> | 2005-02-09 04:55:27 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:40:54 -0400 |
commit | b5a6384d8d51387b27f0c9905520462cb49378ef (patch) | |
tree | 8061038d0a8e8cbfef896882f9f1fc755921de18 /configure.in | |
parent | 23f8faad13d9b48fc6572fcaeada1cd5cc2ef248 (diff) | |
download | fork-ledger-b5a6384d8d51387b27f0c9905520462cb49378ef.tar.gz fork-ledger-b5a6384d8d51387b27f0c9905520462cb49378ef.tar.bz2 fork-ledger-b5a6384d8d51387b27f0c9905520462cb49378ef.zip |
Check for `realpath' function, used by the new "output" command. If
it's not available, filename matching must be exact.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/configure.in b/configure.in index c887fe06..7b00d506 100644 --- a/configure.in +++ b/configure.in @@ -173,11 +173,7 @@ AC_STRUCT_TM # Checks for library functions. #AC_FUNC_ERROR_AT_LINE AC_HEADER_STDC -#AC_FUNC_MALLOC -#AC_FUNC_MKTIME -#AC_FUNC_STAT -#AC_FUNC_STRFTIME -AC_CHECK_FUNCS([memset strchr strstr access mktime stat strftime strptime]) +AC_CHECK_FUNCS([access mktime realpath stat strftime strptime]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT |