summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaud Fontaine <arnau@debian.org>2009-06-03 20:50:32 +0900
committerArnaud Fontaine <arnau@debian.org>2010-11-14 20:04:45 +0900
commite2895a93a0b298a1f8e6022f758132c538e14ab5 (patch)
tree513d64d1db85c844285d54896882c3848bcbac97
parentbd20761dfe7fdab409ba11b6310277a7be8451f7 (diff)
downloadutil-image-e2895a93a0b298a1f8e6022f758132c538e14ab5.tar.gz
Check for ssize_t in configure for xcb-util-common.h
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 3f8522d..d5279d3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,5 @@
-AC_PREREQ(2.57)
+dnl AC_TYPE_SSIZE_T is defined from 2.59c
+AC_PREREQ(2.59c)
AC_INIT([xcb-util],0.3.5,[xcb@lists.freedesktop.org])
AC_CONFIG_SRCDIR([Makefile.am])
AM_INIT_AUTOMAKE([foreign dist-bzip2])
@@ -40,6 +41,9 @@ else
fi
AC_SUBST(CWARNFLAGS)
+dnl Checking whether ssize_t is defined (xcb-util-common.h)
+AC_TYPE_SSIZE_T
+
xcbincludedir='${includedir}/xcb'
AC_SUBST(xcbincludedir)