diff options
author | marha <marha@users.sourceforge.net> | 2010-08-18 10:36:39 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-08-18 10:36:39 +0000 |
commit | 07d3578ce63d87c9a87d54d85f5c8057d30fdc58 (patch) | |
tree | d8acfcb63e11aa7f91c1d9685b5c2f55cd7133c7 /pixman/configure.ac | |
parent | 4d025671124c9f6d91c1c165fc892b1609fdce12 (diff) | |
parent | 2aa7bcf37f00b7884ae166d62db81493ea37934a (diff) | |
download | vcxsrv-07d3578ce63d87c9a87d54d85f5c8057d30fdc58.tar.gz vcxsrv-07d3578ce63d87c9a87d54d85f5c8057d30fdc58.tar.bz2 vcxsrv-07d3578ce63d87c9a87d54d85f5c8057d30fdc58.zip |
svn merge ^/branches/released .
Diffstat (limited to 'pixman/configure.ac')
-rw-r--r-- | pixman/configure.ac | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/pixman/configure.ac b/pixman/configure.ac index ae7b4ee15..be1690b3b 100644 --- a/pixman/configure.ac +++ b/pixman/configure.ac @@ -600,13 +600,23 @@ AC_SUBST(DEP_CFLAGS) AC_SUBST(DEP_LIBS)
dnl =====================================
-dnl posix_memalign
+dnl posix_memalign, sigaction, alarm
AC_CHECK_FUNC(posix_memalign, have_posix_memalign=yes, have_posix_memalign=no)
if test x$have_posix_memalign = xyes; then
AC_DEFINE(HAVE_POSIX_MEMALIGN, 1, [Whether we have posix_memalign()])
fi
+AC_CHECK_FUNC(sigaction, have_sigaction=yes, have_sigaction=no)
+if test x$have_sigaction = xyes; then
+ AC_DEFINE(HAVE_SIGACTION, 1, [Whether we have sigaction()])
+fi
+
+AC_CHECK_FUNC(alarm, have_alarm=yes, have_alarm=no)
+if test x$have_alarm = xyes; then
+ AC_DEFINE(HAVE_ALARM, 1, [Whether we have alarm()])
+fi
+
dnl =====================================
dnl Thread local storage
|