diff options
-rw-r--r-- | slideshow/util/makefile.pmk | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/slideshow/util/makefile.pmk b/slideshow/util/makefile.pmk index ef2076a8aa2d..ac0b7f6f58e7 100644 --- a/slideshow/util/makefile.pmk +++ b/slideshow/util/makefile.pmk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.pmk,v $ # -# $Revision: 1.4 $ +# $Revision: 1.5 $ # -# last change: $Author: rt $ $Date: 2005-09-07 21:26:42 $ +# last change: $Author: obo $ $Date: 2005-10-11 08:56:37 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -38,7 +38,14 @@ CDEFS+= -DVERBOSE .ENDIF .IF "$(debug)"!="" || "$(DEBUG)"!="" + CDEFS+= -DBOOST_SP_ENABLE_DEBUG_HOOKS + +.IF "$(COM)"=="MSC" +# disable inlining for MSVC +CFLAGS += -Ob0 +.ENDIF + .ENDIF # # Turn off optimization module wide for SunCC |