aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTaylor R Campbell <campbell@mumble.net>2013-04-18 00:06:19 +0000
committerTaylor R Campbell <campbell@mumble.net>2013-04-18 00:08:42 +0000
commite707c0112e548e002db7f827a0c1686d8d97a868 (patch)
tree1f2e6a90d4eae01398ea06f13d0c8b6a6d3c9613 /configure.ac
parent90dba9ecb868a10fcd763e57e3713cd4d75f9cf6 (diff)
downloadtlsdate-e707c0112e548e002db7f827a0c1686d8d97a868.tar.gz
Check for <sys/socket.h> in configure.
Avoids redefinition of SHUT_* constants in config.h fragment provided by AX_PLATFORM.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index d1649da..7f9a926 100644
--- a/configure.ac
+++ b/configure.ac
@@ -136,6 +136,7 @@ AC_CHECK_HEADERS([stdint.h], ,[AC_MSG_ERROR([Required headers missing; compilati
AC_CHECK_HEADERS([stdio.h], ,[AC_MSG_ERROR([Required headers missing; compilation will not succeed])])
AC_CHECK_HEADERS([stdlib.h], ,[AC_MSG_ERROR([Required headers missing; compilation will not succeed])])
AC_CHECK_HEADERS([sys/mman.h], ,[AC_MSG_ERROR([Required headers missing; compilation will not succeed])])
+AC_CHECK_HEADERS([sys/socket.h], ,[AC_MSG_ERROR([Required headers missing; compilation will not succeed])])
AC_CHECK_HEADERS([sys/time.h], ,[AC_MSG_ERROR([Required headers missing; compilation will not succeed])])
AC_CHECK_HEADERS([sys/types.h], ,[AC_MSG_ERROR([Required headers missing; compilation will not succeed])])
AC_CHECK_HEADERS([sys/wait.h], ,[AC_MSG_ERROR([Required headers missing; compilation will not succeed])])