diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-11-19 16:24:41 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-11-19 16:24:41 +0900 |
commit | 1c6e646235f5442bafcf303e3ed6a083efd3e0e0 (patch) | |
tree | 84d92bfb9caa3eea96b191961a3feeec00befd38 /configure.ac | |
parent | f5f0f68d61301c3ffb2f8da84f627547e8f9a94c (diff) | |
parent | 2648ccc231b38206e2dafe9a6cc1ca0978bcef5e (diff) | |
download | git-1c6e646235f5442bafcf303e3ed6a083efd3e0e0.tar.gz |
Merge branch 'dd/poll-dot-h'
A build update.
* dd/poll-dot-h:
git-compat-util: prefer poll.h to sys/poll.h
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 44e8c036b6..e0d0da3c0c 100644 --- a/configure.ac +++ b/configure.ac @@ -789,6 +789,12 @@ AC_CHECK_HEADER([sys/select.h], [NO_SYS_SELECT_H=UnfortunatelyYes]) GIT_CONF_SUBST([NO_SYS_SELECT_H]) # +# Define NO_POLL_H if you don't have poll.h +AC_CHECK_HEADER([poll.h], +[NO_POLL_H=], +[NO_POLL_H=UnfortunatelyYes]) +GIT_CONF_SUBST([NO_POLL_H]) +# # Define NO_SYS_POLL_H if you don't have sys/poll.h AC_CHECK_HEADER([sys/poll.h], [NO_SYS_POLL_H=], |