aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2014-08-23 22:09:04 +0200
committerTharre <tharre3@gmail.com>2014-08-23 22:09:04 +0200
commit3466aa6c7ca1ed05dc19e5fc92e230ddc1b17df3 (patch)
tree696ea3be7620afdaa3869d817d5f356f9fffc243
parentce81373f0be403af01d8b1d753eb6f9e691baa4d (diff)
downloadredo-3466aa6c7ca1ed05dc19e5fc92e230ddc1b17df3.tar.gz
redo-3466aa6c7ca1ed05dc19e5fc92e230ddc1b17df3.tar.xz
redo-3466aa6c7ca1ed05dc19e5fc92e230ddc1b17df3.zip
Update configure.ac (still unused though)
-rw-r--r--configure.ac8
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