diff options
author | Arnaud Fontaine <arnau@debian.org> | 2009-06-03 20:50:32 +0900 |
---|---|---|
committer | Arnaud Fontaine <arnau@debian.org> | 2010-11-14 20:04:45 +0900 |
commit | e2895a93a0b298a1f8e6022f758132c538e14ab5 (patch) | |
tree | 513d64d1db85c844285d54896882c3848bcbac97 | |
parent | bd20761dfe7fdab409ba11b6310277a7be8451f7 (diff) |
Check for ssize_t in configure for xcb-util-common.h
-rw-r--r-- | configure.ac | 6 |
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) |