diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-19 14:12:47 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-19 14:12:47 +0000 |
commit | 3d09e961afd3a5662318282b87b5abef41bd250e (patch) | |
tree | 267ceb50fb04b1443b491a20f66b56b9a6084466 /wizards | |
parent | 29542fa272175eda1a3efdc3710a5c1e1ba74ae0 (diff) |
INTEGRATION: CWS systemjava (1.8.44); FILE MERGED
2006/03/22 14:36:02 cmc 1.8.44.1: #i52974# support using the system xerces/xalan
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/web/makefile.mk | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/wizards/com/sun/star/wizards/web/makefile.mk b/wizards/com/sun/star/wizards/web/makefile.mk index 03fe33a497df..fadc2317d180 100644 --- a/wizards/com/sun/star/wizards/web/makefile.mk +++ b/wizards/com/sun/star/wizards/web/makefile.mk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.8 $ +# $Revision: 1.9 $ # -# last change: $Author: rt $ $Date: 2005-09-09 09:59:40 $ +# last change: $Author: hr $ $Date: 2006-04-19 15:12:47 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -42,7 +42,26 @@ PACKAGE = com$/sun$/star$/wizards$/web .INCLUDE : settings.mk #.INCLUDE : $(PRJ)$/util$/makefile.pmk -JARFILES= unoil.jar jurt.jar ridl.jar juh.jar jut.jar java_uno.jar java_uno_accessbridge commonwizards.jar xalan.jar xercesImp.jar xml-apis.jar +JARFILES= unoil.jar jurt.jar ridl.jar juh.jar jut.jar java_uno.jar java_uno_accessbridge commonwizards.jar + +.IF "$(SYSTEM_XALAN)" == "YES" +XCLASSPATH!:=$(XCLASSPATH)$(PATH_SEPERATOR)$(XALAN_JAR) +.ELSE +JARFILES += xalan.jar +.ENDIF + +.IF "$(SYSTEM_XERCES)" == "YES" +XCLASSPATH!:=$(XCLASSPATH)$(PATH_SEPERATOR)$(XERCES_JAR) +.ELSE +JARFILES += xercesImpl.jar +.ENDIF + +.IF "$(SYSTEM_XML_APIS)" == "YES" +XCLASSPATH!:=$(XCLASSPATH)$(PATH_SEPERATOR)$(XML_APIS_JAR) +.ELSE +JARFILES += xml-apis.jar +.ENDIF + CUSTOMMANIFESTFILE= MANIFEST.MF JARCLASSDIRS = com$/sun$/star$/wizards$/web |