]> Dogcows Code - chaz/tint2/commitdiff
Add AC_PREREQ for at least autoconf-2.61 (should be a good choice..).
authorChristian Ruppert <Spooky85@gmail.com>
Thu, 22 Oct 2009 18:26:15 +0000 (18:26 +0000)
committerChristian Ruppert <Spooky85@gmail.com>
Thu, 22 Oct 2009 18:26:15 +0000 (18:26 +0000)
Be more verbose when running autogen.sh.
Add realloc and alarm check to configure.ac.

autogen.sh
configure.ac

index b95a06870ff561f74ba2b9a36290611b46a3ea06..3ef543fb7ade8cc7dfbdc09fb9276e5a99f8a2a0 100755 (executable)
@@ -2,4 +2,4 @@
 
 [ ! -d m4 ] && mkdir m4
 
-autoreconf -i -s -f
+autoreconf -i -s -f -v
index 4a2f5d31fff49732e987a647a1c3be5d76ade323..6426970efe77a379e6a2a69635b4b6de067c909e 100644 (file)
@@ -1,5 +1,6 @@
 #                                               -*- Autoconf -*-
 # Process this file with autoconf to produce a configure script.
+AC_PREREQ([2.61])
 AC_INIT([tint2], [0.7.9-svn], [http://code.google.com/p/tint2/issues])
 
 AM_INIT_AUTOMAKE
@@ -97,7 +98,8 @@ AC_TYPE_PID_T
 # Checks for library functions.
 AC_FUNC_FORK
 AC_FUNC_MALLOC
-AC_CHECK_FUNCS([gettimeofday memset select setlocale strcasecmp strchr strdup])
+AC_FUNC_REALLOC
+AC_CHECK_FUNCS([alarm gettimeofday memset select setlocale strcasecmp strchr strdup])
 
 # tint2conf (experimental)
 if test "x$tint2conf" = xtrue;
This page took 0.022281 seconds and 4 git commands to generate.