From 93b0fcffc7a098333aa219ce0d59b7f9d1ac35e6 Mon Sep 17 00:00:00 2001 From: Andrea Canciani Date: Thu, 16 Feb 2012 19:53:56 +0100 Subject: [PATCH] test: Create output directory even on Win32 This avoids cluttering the test directory with thousands of PNG files and makes the behavior more consistent with other OSes. --- test/cairo-test.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/cairo-test.c b/test/cairo-test.c index 9e0341b35..c5ef84394 100644 --- a/test/cairo-test.c +++ b/test/cairo-test.c @@ -73,7 +73,10 @@ #ifdef _MSC_VER #include +#include #define F_OK 0 +#define HAVE_MKDIR 1 +#define mkdir _mkdir #endif #ifndef FALSE