From 4fc2b4ed64934abb318f081b7a8c680c30688fea Mon Sep 17 00:00:00 2001 From: Arkshine Date: Tue, 6 Jan 2015 23:27:51 +0100 Subject: [PATCH] Fix OSX compilation --- dlls/sqlite/AMBuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/sqlite/AMBuilder b/dlls/sqlite/AMBuilder index 078f6428..e6278bee 100644 --- a/dlls/sqlite/AMBuilder +++ b/dlls/sqlite/AMBuilder @@ -12,7 +12,7 @@ binary.compiler.defines += [ 'HAVE_STDINT_H', ] -if builder.target_platform == 'linux': +if builder.target_platform is 'linux' or builder.target_platform is 'mac': binary.compiler.defines += ['stricmp=strcasecmp'] binary.compiler.postlink += ['-lpthread']