summaryrefslogtreecommitdiff
path: root/stoc/source/cppumaker.mk
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2002-11-13 10:00:23 +0000
committerDaniel Boelzle <dbo@openoffice.org>2002-11-13 10:00:23 +0000
commit7a852297410c6e1df498bac096d9a0f98550651d (patch)
treebbb38d0c6afd0f4034e5e3d79c01f5d9816cc3cc /stoc/source/cppumaker.mk
parente3eefe577453c1c90d6e229aac8d7260b4645881 (diff)
#104143# throwing lang::DisposedException after dispose()
Diffstat (limited to 'stoc/source/cppumaker.mk')
-rw-r--r--stoc/source/cppumaker.mk13
1 files changed, 11 insertions, 2 deletions
diff --git a/stoc/source/cppumaker.mk b/stoc/source/cppumaker.mk
index 068c609a64ea..0819d7ebdc12 100644
--- a/stoc/source/cppumaker.mk
+++ b/stoc/source/cppumaker.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: cppumaker.mk,v $
#
-# $Revision: 1.5 $
+# $Revision: 1.6 $
#
-# last change: $Author: pluby $ $Date: 2001-02-12 20:19:41 $
+# last change: $Author: dbo $ $Date: 2002-11-13 11:00:21 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -74,3 +74,12 @@ CPPUMAKERFLAGS = -L
UNOUCROUT= $(OUT)$/inc$/light
INCPRE+= $(OUT)$/inc$/light
.ENDIF
+
+.IF "$(debug)" != ""
+
+# MSVC++: no inlining
+.IF "$(COM)" == "MSC"
+CFLAGS += -Ob0
+.ENDIF
+
+.ENDIF