summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorQball Cow <qball@gmpclient.org>2015-11-12 14:59:13 +0100
committerQball Cow <qball@gmpclient.org>2015-11-12 14:59:13 +0100
commitfa567e29ba3108a4b608c46604c59456710d32d9 (patch)
tree918575eeeaa97294c71be178a3eaed0430617e47 /configure.ac
parent311cedf87f02c8f89c0e93a4930b88b8b55cdba5 (diff)
Check for getdelim in configure.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index a8680ff9..36dafb94 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,6 +32,12 @@ AS_IF([ test "x$enable_windowmode" != "xno"], [AC_DEFINE([WINDOW_MODE],[1],[Enab
AC_ARG_ENABLE(i3support, [AS_HELP_STRING([--disable-i3support], [Disable check for i3 support])])
AS_IF([test "x$enable_i3support" != xno && test "x$enable_windowmode" != "xno"],[AC_CHECK_HEADERS([i3/ipc.h], [i3_header=yes; break;])])
+
+##
+# Check for C functions.
+##
+
+AC_CHECK_FUNC([getdelim],, AC_MSG_ERROR("Could not find getdelim in c library"))
##
# Check dependencies
##