diff options
author | Frederic Culot <calcurse@culot.org> | 2009-07-12 16:21:57 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2009-07-12 16:21:57 +0000 |
commit | 56949550025f447691b0f32632b35af4749da358 (patch) | |
tree | b51bf757d54bfca2ed7a0bd8124f18e506c83d98 /configure.ac | |
parent | d4d29be0fa41c079ab0a9e11585f65ff5e2828cf (diff) | |
download | calcurse-56949550025f447691b0f32632b35af4749da358.zip |
stdbool header removed, unsigned type used instead
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index f9288a2..925eee2 100755 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $calcurse: configure.ac,v 1.32 2009/07/05 17:16:15 culot Exp $ +# $calcurse: configure.ac,v 1.33 2009/07/12 16:21:58 culot Exp $ #------------------------------------------------------------------------------- # Init @@ -21,9 +21,9 @@ AC_PROG_CC # Checks for header files #------------------------------------------------------------------------------- AC_HEADER_STDC -AC_CHECK_HEADERS([ctype.h getopt.h locale.h math.h signal.h stdbool.h stdio.h \ - stdlib.h string.h sys/stat.h sys/types.h sys/wait.h time.h \ - unistd.h errno.h limits.h regex.h]) +AC_CHECK_HEADERS([ctype.h getopt.h locale.h math.h signal.h stdio.h stdlib.h \ + string.h sys/stat.h sys/types.h sys/wait.h time.h unistd.h \ + errno.h limits.h regex.h]) #------------------------------------------------------------------------------- # Checks for system libs #------------------------------------------------------------------------------- |