diff options
| -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  | 
