summaryrefslogtreecommitdiff
path: root/test/cairo-test.c
diff options
context:
space:
mode:
authorMaarten Bosmans <mkbosmans@gmail.com>2012-04-09 21:33:51 +0200
committerChris Wilson <chris@chris-wilson.co.uk>2012-04-10 12:08:24 +0100
commit0bb3e0769a49f639ae86a9577394fc51709441f5 (patch)
tree6d2f4b39c60f1531e7ee00608f653eeb8d753859 /test/cairo-test.c
parent9fcbe25c2dcf831783bb0fd20af9754c0b5c409b (diff)
downloadcairo-0bb3e0769a49f639ae86a9577394fc51709441f5.tar.gz
test: Only use alarm() when SIGALRM is also defined
On some platforms (mingw) the alarm() configure check succeeds, but the alarm function doesn't actually work.
Diffstat (limited to 'test/cairo-test.c')
-rw-r--r--test/cairo-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cairo-test.c b/test/cairo-test.c
index c5ef84394..3f37147eb 100644
--- a/test/cairo-test.c
+++ b/test/cairo-test.c
@@ -90,7 +90,7 @@
#define ARRAY_SIZE(A) (sizeof(A) / sizeof (A[0]))
#endif
-#if ! HAVE_ALARM
+#if ! HAVE_ALARM || ! defined(SIGALRM)
#define alarm(X);
#endif