From 6225d2d3f904bd8725fc86c6c2b6c78a479f89e8 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Sun, 5 Apr 2009 16:20:41 +0000 Subject: Tweaked a preprocessor conditional statement to support MinGW (tested with gcc version 3.4.5 (mingw-vista special r3), SCons 1.2.0, and Python 2.5.2). --- source/blender/freestyle/intern/app_blender/AppView.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/freestyle/intern') diff --git a/source/blender/freestyle/intern/app_blender/AppView.h b/source/blender/freestyle/intern/app_blender/AppView.h index 4b7207da1fd..b6a5dfcf1cc 100644 --- a/source/blender/freestyle/intern/app_blender/AppView.h +++ b/source/blender/freestyle/intern/app_blender/AppView.h @@ -1,7 +1,7 @@ #ifndef APPVIEW_H # define APPVIEW_H -# ifndef WIN32 +# if !defined(WIN32) || defined(__GNUC__) # include using namespace std; # define __min(x,y) (min(x,y)) -- cgit v1.2.3