diff options
author | Jonas 'Sortie' Termansen <sortie@maxsi.org> | 2014-08-29 18:42:35 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-08-29 19:45:32 +0200 |
commit | a6fd4fb55d255ae14dc3ced5eae6247b4a9d86ea (patch) | |
tree | 19921e7b266ed8d36936d12aacc4fe179b5faa29 /configure.ac | |
parent | autoconf: check for struct itimerval (diff) | |
download | git-a6fd4fb55d255ae14dc3ced5eae6247b4a9d86ea.tar.xz git-a6fd4fb55d255ae14dc3ced5eae6247b4a9d86ea.zip |
autoconf: check for setitimer()
The Makefile has provisions for this case, so let's detect it in the
configure script as well.
Signed-off-by: Jonas 'Sortie' Termansen <sortie@maxsi.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 652bfdddb2..6af964797f 100644 --- a/configure.ac +++ b/configure.ac @@ -911,6 +911,12 @@ AC_CHECK_LIB([iconv], [locale_charset], [CHARSET_LIB=-lcharset])]) GIT_CONF_SUBST([CHARSET_LIB]) # +# Define NO_SETITIMER if you don't have setitimer. +GIT_CHECK_FUNC(setitimer, +[NO_SETITIMER=], +[NO_SETITIMER=YesPlease]) +GIT_CONF_SUBST([NO_SETITIMER]) +# # Define NO_STRCASESTR if you don't have strcasestr. GIT_CHECK_FUNC(strcasestr, [NO_STRCASESTR=], |