diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-04-07 11:55:27 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-04-07 11:55:27 +0000 |
commit | 2e1d05b1d447ea53084e0d244d5422f09d7b6b29 (patch) | |
tree | 5ed74f20d7334a90adae1ec96c27de1603615885 /svx | |
parent | e698a016b19ab1760d2e7b0e9097ebf5fe07e859 (diff) |
#i87946# disable ENABLE_LAYOUT if not TRUE
Diffstat (limited to 'svx')
-rw-r--r-- | svx/util/makefile.pmk | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/svx/util/makefile.pmk b/svx/util/makefile.pmk index 3758ac84e243..2cb95190e6d0 100644 --- a/svx/util/makefile.pmk +++ b/svx/util/makefile.pmk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.pmk,v $ # -# $Revision: 1.4 $ +# $Revision: 1.5 $ # -# last change: $Author: kz $ $Date: 2007-09-05 17:47:43 $ +# last change: $Author: kz $ $Date: 2008-04-07 12:55:27 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -40,6 +40,12 @@ CDEFS += -DSVX_DLLIMPLEMENTATION CFLAGS+=-DENABLE_GTK .ENDIF +.IF "$(ENABLE_LAYOUT)" == "TRUE" +CFLAGS+=-DENABLE_LAYOUT=1 +.ELSE +CFLAGS+=-DENABLE_LAYOUT=0 +.ENDIF # ENABLE_LAYOUT == TRUE + # set default symbol visibility / scope to hidden .IF "$(COMNAME)" == "gcc3" .IF "$(HAVE_GCC_VISIBILITY_FEATURE)" == "TRUE" |