summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2007-09-06 13:13:49 +0000
committerKurt Zenker <kz@openoffice.org>2007-09-06 13:13:49 +0000
commit7ca1e8a23058a6fb86324ced55389ea60774aa22 (patch)
tree2b69228920ecc4a3841a3e018405195eca1fb62c /tools
parentINTEGRATION: CWS mingwport06 (1.5.76); FILE MERGED (diff)
downloadcore-7ca1e8a23058a6fb86324ced55389ea60774aa22.tar.gz
core-7ca1e8a23058a6fb86324ced55389ea60774aa22.zip
INTEGRATION: CWS mingwport06 (1.15.6); FILE MERGED
2007/08/24 13:27:29 vg 1.15.6.1: #i75499# pragma is for MSVC
Diffstat (limited to 'tools')
-rw-r--r--tools/bootstrp/command.cxx12
1 files changed, 8 insertions, 4 deletions
diff --git a/tools/bootstrp/command.cxx b/tools/bootstrp/command.cxx
index f0e8f80e29eb..95b03c2c5912 100644
--- a/tools/bootstrp/command.cxx
+++ b/tools/bootstrp/command.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: command.cxx,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: hr $ $Date: 2007-08-03 12:30:11 $
+ * last change: $Author: kz $ $Date: 2007-09-06 14:13:49 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -50,7 +50,7 @@
#include <tools/debug.hxx>
#include "bootstrp/appdef.hxx"
-#if defined WNT
+#ifdef _MSC_VER
#pragma warning (push,1)
#endif
@@ -61,17 +61,21 @@
#include <ctype.h>
#include <errno.h>
-#if defined WNT
+#ifdef _MSC_VER
#pragma warning (pop)
#endif
//#define MH_TEST2 1 // fuers direkte Testen
#if defined WNT
+#ifdef _MSC_VER
#pragma warning (push,1)
+#endif
#include <process.h> // for _SPAWN
+#ifdef _MSC_VER
#pragma warning (pop)
#endif
+#endif
#ifdef UNX
#include <sys/types.h>
#include <unistd.h>