diff options
author | Frederic Culot <calcurse@culot.org> | 2008-02-10 16:29:50 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-02-10 16:29:50 +0000 |
commit | 52340fa0e132766e9a0d1e5a95d45282725cdf97 (patch) | |
tree | a54b7b3410ba13453c87f0a1efeb7923839c740d /configure.ac | |
parent | 886466310798ee9d63191cff05d57c4e9528b32e (diff) | |
download | calcurse-52340fa0e132766e9a0d1e5a95d45282725cdf97.zip |
memory leak fixed in notify_thread_app()
check for limits.h header added
asprintf() call replaced in wins_launch_external() as it is not
fully portable
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 97f3552..e65edad 100755 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $calcurse: configure.ac,v 1.14 2008/01/26 10:02:01 culot Exp $ +# $calcurse: configure.ac,v 1.15 2008/02/10 16:29:50 culot Exp $ #------------------------------------------------------------------------------- # Init @@ -23,7 +23,7 @@ AC_PROG_CC 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]) + unistd.h errno.h limits.h]) #------------------------------------------------------------------------------- # Checks for system libs #------------------------------------------------------------------------------- |