diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-10-06 09:40:01 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-10-06 09:40:01 +0000 |
commit | e3e5b23b703c59ea85d15d9362ad8ac889db7b74 (patch) | |
tree | 4f8b22f89c369a5da74bdd57012106e8adc394c5 /sfx2/util | |
parent | e00d7a51faa4099379a4b22af5b91b5b1d2d660a (diff) |
INTEGRATION: CWS gtkquickstart (1.43.46); FILE MERGED
2006/08/07 13:45:00 mmeeks 1.43.46.2: Issue number: i#57872#
Submitted by: mmeeks
Fix a number of Win32 build / re-factoring issues in the initial work.
2006/08/01 10:57:04 mmeeks 1.43.46.1: #i57872#
gtk systray quickstarter
Diffstat (limited to 'sfx2/util')
-rw-r--r-- | sfx2/util/makefile.mk | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/sfx2/util/makefile.mk b/sfx2/util/makefile.mk index 501e0b87c273..b6b44cd1c826 100644 --- a/sfx2/util/makefile.mk +++ b/sfx2/util/makefile.mk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.43 $ +# $Revision: 1.44 $ # -# last change: $Author: ihi $ $Date: 2006-06-29 11:35:37 $ +# last change: $Author: kz $ $Date: 2006-10-06 10:40:01 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -140,6 +140,27 @@ RESLIB1NAME=$(TARGET) RESLIB1IMAGES=$(PRJ)$/res RESLIB1SRSFILES=$(SFXSRSLIST) +# gtk quick-starter +.IF "$(GUI)"=="UNX" +.IF "$(ENABLE_GTK)" != "" +PKGCONFIG_MODULES=gtk+-2.0 +.INCLUDE: pkg_config.mk +CFLAGS+=$(PKGCONFIG_CFLAGS) + +SHL3TARGET=qstart_gtk$(UPD)$(DLLPOSTFIX) +SHL3LIBS=$(SLB)$/quickstart.lib +SHL3DEPN=$(SHL1IMPLIBN) $(SHL1TARGETN) +# libs for gtk plugin +SHL3STDLIBS=$(SHL1STDLIBS) $(SFX2LIB) $(EGGTRAYLIB) +SHL3STDLIBS+=$(PKGCONFIG_LIBS:s/ -lpangoxft-1.0//) +# hack for faked SO environment +.IF "$(PKGCONFIG_ROOT)"!="" +SHL3SONAME+=-z nodefs +SHL3NOCHECK=TRUE +.ENDIF # "$(PKGCONFIG_ROOT)"!="" +.ENDIF # "$(ENABLE_GTK)" != "" +.ENDIF # "$(GUI)"=="UNX" + # --- Targets ------------------------------------------------------ |