diff options
author | Tharre <tharre3@gmail.com> | 2014-08-23 22:09:04 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2014-08-23 22:09:04 +0200 |
commit | 3466aa6c7ca1ed05dc19e5fc92e230ddc1b17df3 (patch) | |
tree | 696ea3be7620afdaa3869d817d5f356f9fffc243 /configure.ac | |
parent | ce81373f0be403af01d8b1d753eb6f9e691baa4d (diff) | |
download | redo-3466aa6c7ca1ed05dc19e5fc92e230ddc1b17df3.tar.gz redo-3466aa6c7ca1ed05dc19e5fc92e230ddc1b17df3.tar.xz redo-3466aa6c7ca1ed05dc19e5fc92e230ddc1b17df3.zip |
Update configure.ac (still unused though)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 68658e5..c4b4d19 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.68]) -AC_INIT([redo], [pre-0.01], [BUG-REPORT-ADDRESS]) +AC_INIT([redo], [VERSION], [BUG-REPORT-ADDRESS]) AC_CONFIG_SRCDIR([src/redo-ifchange.c]) AC_CONFIG_HEADERS([config.h]) @@ -13,18 +13,20 @@ AC_PROG_CC # Checks for libraries. # Checks for header files. -AC_CHECK_HEADERS([stddef.h stdint.h stdlib.h string.h unistd.h]) +AC_CHECK_HEADERS([fcntl.h limits.h stddef.h stdint.h stdlib.h string.h unistd.h]) # Checks for typedefs, structures, and compiler characteristics. AC_HEADER_STDBOOL +AC_C_INLINE AC_TYPE_OFF_T AC_TYPE_PID_T AC_TYPE_SIZE_T +AC_TYPE_SSIZE_T # Checks for library functions. AC_FUNC_FORK AC_FUNC_MALLOC AC_FUNC_REALLOC -AC_CHECK_FUNCS([strdup strerror strrchr]) +AC_CHECK_FUNCS([getcwd mkdir realpath setenv strerror strrchr]) AC_OUTPUT |