aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-05-10 09:42:03 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-05-10 09:42:03 +0000
commitac0c9b4402496a7a211552a2656fe4d628c905bf (patch)
tree168d08b783a358dd1fc20463bc56ed498009b91f
parentf5acf94f2bef6af2950fb0404b9774dacd69049f (diff)
use "__WIN32__" instead of "NT" or "MSW"
svn path=/trunk/externals/iem/iemmatrix/; revision=2933
-rw-r--r--src/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure.in b/src/configure.in
index 9afbf9e..f1da16b 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -85,7 +85,7 @@ if test `uname | sed -e 's/^MINGW.*/NT/'` = NT;
then
LD=gcc
INCLUDES="-I@prefix@/src"
- DFLAGS="-DMSW -DNT"
+ DFLAGS="-D__WIN32__"
LFLAGS="-shared @prefix@/bin/pd.dll"
EXT=dll
else