Kaydet (Commit) 4f2def42 authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

CWS-TOOLING: integrate CWS sb118

UDK_3_0_0 {
global:
GetVersionInfo;
component_getImplementationEnvironment;
component_getFactory;
component_writeInfo;
local:
*;
};
...@@ -44,7 +44,7 @@ LIB1FILES= $(SLB)$/base.lib \ ...@@ -44,7 +44,7 @@ LIB1FILES= $(SLB)$/base.lib \
SHL1TARGET= $(TARGET)$(DLLPOSTFIX) SHL1TARGET= $(TARGET)$(DLLPOSTFIX)
SHL1IMPLIB= i$(TARGET) SHL1IMPLIB= i$(TARGET)
SHL1VERSIONMAP=exports.map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET) DEF1NAME=$(SHL1TARGET)
......
...@@ -102,7 +102,6 @@ PRODUCTSWITCH = false ...@@ -102,7 +102,6 @@ PRODUCTSWITCH = false
DEBUGSWITCH = true DEBUGSWITCH = true
.ENDIF .ENDIF
.IF "$(GUI)"=="UNX" || "$(USE_SHELL)" != "4nt"
$(JAVADIR)$/$(PACKAGE)$/%.java: makefile.mk $(JAVADIR)$/$(PACKAGE)$/%.java: makefile.mk
@@-$(MKDIRHIER) $(JAVADIR)$/$(PACKAGE) @@-$(MKDIRHIER) $(JAVADIR)$/$(PACKAGE)
@-echo package org.openoffice.java.accessibility\; > $@ @-echo package org.openoffice.java.accessibility\; > $@
...@@ -110,16 +109,6 @@ $(JAVADIR)$/$(PACKAGE)$/%.java: makefile.mk ...@@ -110,16 +109,6 @@ $(JAVADIR)$/$(PACKAGE)$/%.java: makefile.mk
@-echo public static final boolean DEBUG = $(DEBUGSWITCH)\; >> $@ @-echo public static final boolean DEBUG = $(DEBUGSWITCH)\; >> $@
@-echo public static final boolean PRODUCT = $(PRODUCTSWITCH)\; >> $@ @-echo public static final boolean PRODUCT = $(PRODUCTSWITCH)\; >> $@
@-echo } >> $@ @-echo } >> $@
.ELSE
$(JAVADIR)$/$(PACKAGE)$/%.java: makefile.mk
@@-$(MKDIRHIER) $(JAVADIR)$/$(PACKAGE)
@-echo package org.openoffice.java.accessibility; > $@
@-echo public class Build { >> $@
@-echo public static final boolean DEBUG = $(DEBUGSWITCH); >> $@
@-echo public static final boolean PRODUCT = $(PRODUCTSWITCH); >> $@
@-echo } >> $@
.ENDIF
$(CLASSDIR)$/$(PACKAGE)$/Build.class : $(JAVADIR)$/$(PACKAGE)$/Build.java $(CLASSDIR)$/$(PACKAGE)$/Build.class : $(JAVADIR)$/$(PACKAGE)$/Build.java
-$(JAVAC) -d $(CLASSDIR) $(JAVADIR)$/$(PACKAGE)$/Build.java -$(JAVAC) -d $(CLASSDIR) $(JAVADIR)$/$(PACKAGE)$/Build.java
......
FORMS_1_0 { UDK_3_0_0 {
global: global:
getStandardAccessibleFactory; getStandardAccessibleFactory;
getSvtAccessibilityComponentFactory; getSvtAccessibilityComponentFactory;
......
...@@ -71,28 +71,13 @@ sub read_block { ...@@ -71,28 +71,13 @@ sub read_block {
print "Leaving read_block at the end\n" if $debug; print "Leaving read_block at the end\n" if $debug;
} }
sub convert_path {
$_ = $_[0];
$GUI = $ENV {"GUI"};
$use_shell = $ENV {"USE_SHELL"};
if ( $GUI eq "WNT" )
{
if ( defined( $use_shell ) && "$use_shell" eq "4nt" )
{
s/\//\\/g;
}
}
$_;
}
# Read a file. # Read a file.
# first parameter ist the filename # first parameter ist the filename
sub read_file { sub read_file {
local ($filename,$file) = @_; local ($filename,$file) = @_;
$file++; # String increment $file++; # String increment
local $TempFileName = &convert_path( $basename."/".$filename ); local $TempFileName = $basename."/".$filename;
print "reading file $TempFileName as $file\n" if $debug; print "reading file $TempFileName as $file\n" if $debug;
open($file, $TempFileName) || die "error: Could not open file $TempFileName. "; open($file, $TempFileName) || die "error: Could not open file $TempFileName. ";
...@@ -103,9 +88,6 @@ sub read_file { ...@@ -103,9 +88,6 @@ sub read_file {
# main starts here # main starts here
print &convert_path ("/\n\n\n") if ( $debug );
$basename = "."; $basename = ".";
$basename = $ARGV[0] if defined($ARGV[0]); $basename = $ARGV[0] if defined($ARGV[0]);
......
...@@ -87,13 +87,8 @@ $(INCCOM)$/res_type.hxx : $(SOLARVERSION)$/$(INPATH)$/inc$(UPDMINOREXT)$/tools$/ ...@@ -87,13 +87,8 @@ $(INCCOM)$/res_type.hxx : $(SOLARVERSION)$/$(INPATH)$/inc$(UPDMINOREXT)$/tools$/
$(MISC)$/xfilter.pl : filter.pl $(MISC)$/xfilter.pl : filter.pl
.IF "$(GUI)" == "UNX" || "$(USE_SHELL)"!="4nt"
tr -d "\015" < filter.pl > $(MISC)$/xfilter.pl tr -d "\015" < filter.pl > $(MISC)$/xfilter.pl
chmod 664 $(MISC)$/xfilter.pl chmod 664 $(MISC)$/xfilter.pl
.ELSE
$(COPY) filter.pl $(MISC)$/xfilter.pl
attrib -r $(MISC)$/xfilter.pl
.ENDIF
......
...@@ -90,11 +90,7 @@ $(INCCOM)$/dllname.hxx: makefile.mk ...@@ -90,11 +90,7 @@ $(INCCOM)$/dllname.hxx: makefile.mk
$(RM) $@ $(RM) $@
echo \#define DLL_NAME \"libbasctl$(DLLPOSTFIX)$(DLLPOST)\" >$@ echo \#define DLL_NAME \"libbasctl$(DLLPOSTFIX)$(DLLPOST)\" >$@
.ELSE .ELSE
.IF "$(USE_SHELL)"!="4nt"
echo \#define DLL_NAME \"basctl$(DLLPOSTFIX)$(DLLPOST)\" >$@ echo \#define DLL_NAME \"basctl$(DLLPOSTFIX)$(DLLPOST)\" >$@
.ELSE # "$(USE_SHELL)"!="4nt"
echo #define DLL_NAME "basctl$(DLLPOSTFIX)$(DLLPOST)" >$@
.ENDIF # "$(USE_SHELL)"!="4nt"
.ENDIF .ENDIF
$(SLO)$/basiclib.obj : $(INCCOM)$/dllname.hxx $(SLO)$/basiclib.obj : $(INCCOM)$/dllname.hxx
......
BASCTL_1.0 { UDK_3_0_0 {
global: global:
basicide_choose_macro; basicide_choose_macro;
basicide_macro_organizer; basicide_macro_organizer;
......
CUI_1_0 { UDK_3_0_0 {
global: global:
CreateDialogFactory; CreateDialogFactory;
GetSpecialCharsForEdit; GetSpecialCharsForEdit;
......
...@@ -34,3 +34,4 @@ ex extensions\source\update\feed nmake - all ex_updchkfeed ex ...@@ -34,3 +34,4 @@ ex extensions\source\update\feed nmake - all ex_updchkfeed ex
ex extensions\source\update\check nmake - all ex_updchk ex_inc NULL ex extensions\source\update\check nmake - all ex_updchk ex_inc NULL
ex extensions\source\update\ui nmake - all ex_updchkui ex_inc NULL ex extensions\source\update\ui nmake - all ex_updchkui ex_inc NULL
ex extensions\util nmake - all ex_util ex_preload ex_abpilot ex_dbpilots ex_logging ex_ldap ex_propctrlr ex_bib ex_plutil ex_oooimprovecore NULL ex extensions\util nmake - all ex_util ex_preload ex_abpilot ex_dbpilots ex_logging ex_ldap ex_propctrlr ex_bib ex_plutil ex_oooimprovecore NULL
ex extensions\qa\unoapi nmake - all ex_qa_unoapi NULL
/*************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
************************************************************************/
package org.openoffice.extensions.qa.unoapi;
import org.openoffice.Runner;
import org.openoffice.test.OfficeConnection;
import static org.junit.Assert.*;
public final class Test {
@org.junit.Before public void setUp() throws Exception {
connection.setUp();
}
@org.junit.After public void tearDown()
throws InterruptedException, com.sun.star.uno.Exception
{
connection.tearDown();
}
@org.junit.Test public void test() {
assertTrue(
Runner.run(
"-sce", "extensions.sce", "-cs", connection.getDescription()));
}
private final OfficeConnection connection = new OfficeConnection();
}
#************************************************************************* #*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
# #
# Copyright 2000, 2010 Oracle and/or its affiliates. # Copyright 2000, 2010 Oracle and/or its affiliates.
# #
# OpenOffice.org - a multi-platform office productivity suite # OpenOffice.org - a multi-platform office productivity suite
...@@ -22,19 +21,28 @@ ...@@ -22,19 +21,28 @@
# version 3 along with OpenOffice.org. If not, see # version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html> # <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License. # for a copy of the LGPLv3 License.
# #***********************************************************************/
#*************************************************************************
PRJ=..$/.. .IF "$(OOO_SUBSEQUENT_TESTS)" == ""
nothing .PHONY:
.ELSE
PRJNAME=extensions PRJ = ../..
TARGET=qa_unoapi PRJNAME = extensions
TARGET = qa_unoapi
.INCLUDE: settings.mk .IF "$(OOO_JUNIT_JAR)" != ""
PACKAGE = org/openoffice/extensions/qa/unoapi
JAVATESTFILES = Test.java
JAVAFILES = $(JAVATESTFILES)
JARFILES = OOoRunner.jar ridl.jar test.jar
EXTRAJARFILES = $(OOO_JUNIT_JAR)
.END
.INCLUDE: settings.mk
.INCLUDE: target.mk .INCLUDE: target.mk
.INCLUDE: installationtest.mk
ALLTAR : UNOAPI_TEST ALLTAR : javatest
UNOAPI_TEST: .END
+$(SOLARENV)$/bin$/checkapi -sce $(PRJNAME).sce -THRCNT 1
EXTABP_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
...@@ -76,7 +76,7 @@ RESLIB1IMAGES=$(PRJ)$/res ...@@ -76,7 +76,7 @@ RESLIB1IMAGES=$(PRJ)$/res
RESLIB1SRSFILES= $(SRS)$/abp.srs RESLIB1SRSFILES= $(SRS)$/abp.srs
SHL1TARGET= $(TARGET)$(DLLPOSTFIX) SHL1TARGET= $(TARGET)$(DLLPOSTFIX)
SHL1VERSIONMAP= $(TARGET).map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1STDLIBS= \ SHL1STDLIBS= \
$(VCLLIB) \ $(VCLLIB) \
......
...@@ -152,8 +152,4 @@ VERSIONOBJ_X64= ...@@ -152,8 +152,4 @@ VERSIONOBJ_X64=
$(MISC)$/envsettings.h : makefile.mk $(MISC)$/envsettings.h : makefile.mk
-$(RM) $@ -$(RM) $@
# it looks wrong; but rc likes it that way... # it looks wrong; but rc likes it that way...
.IF "$(USE_SHELL)"!="4nt"
echo "#define MISC .\..\$(INPATH)\misc" > $@ echo "#define MISC .\..\$(INPATH)\misc" > $@
.ELSE # "$(USE_SHELL)"!="4nt"
echo #define MISC .\..\$(INPATH)\misc > $@
.ENDIF # "$(USE_SHELL)"!="4nt"
UDK_3_0_0 {
global:
GetVersionInfo;
component_getImplementationEnvironment;
component_getFactory;
component_writeInfo;
local:
*;
};
...@@ -82,7 +82,7 @@ SHL1LIBS= $(SLB)$/$(TARGET).lib ...@@ -82,7 +82,7 @@ SHL1LIBS= $(SLB)$/$(TARGET).lib
SHL1IMPLIB= i$(TARGET) SHL1IMPLIB= i$(TARGET)
SHL1DEPN= $(SHL1LIBS) SHL1DEPN= $(SHL1LIBS)
SHL1DEF= $(MISC)$/$(SHL1TARGET).def SHL1DEF= $(MISC)$/$(SHL1TARGET).def
SHL1VERSIONMAP=exports.map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
DEF1NAME= $(SHL1TARGET) DEF1NAME= $(SHL1TARGET)
# --- Targets ------------------------------------------------------ # --- Targets ------------------------------------------------------
......
EXTDBP_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
...@@ -76,7 +76,7 @@ RESLIB1NAME=dbp ...@@ -76,7 +76,7 @@ RESLIB1NAME=dbp
RESLIB1SRSFILES= $(SRS)$/dbp.srs RESLIB1SRSFILES= $(SRS)$/dbp.srs
SHL1TARGET= $(TARGET)$(DLLPOSTFIX) SHL1TARGET= $(TARGET)$(DLLPOSTFIX)
SHL1VERSIONMAP= $(TARGET).map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1STDLIBS= \ SHL1STDLIBS= \
$(SVTOOLLIB) \ $(SVTOOLLIB) \
......
LOG_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
...@@ -68,7 +68,7 @@ SHL1STDLIBS= \ ...@@ -68,7 +68,7 @@ SHL1STDLIBS= \
SHL1LIBS=$(LIB1TARGET) SHL1LIBS=$(LIB1TARGET)
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET) DEF1NAME=$(SHL1TARGET)
SHL1VERSIONMAP=$(TARGET).map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
# --- Targets ---------------------------------- # --- Targets ----------------------------------
......
...@@ -69,7 +69,7 @@ SHL1STDLIBS= \ ...@@ -69,7 +69,7 @@ SHL1STDLIBS= \
SHL1LIBS=$(LIB1TARGET) SHL1LIBS=$(LIB1TARGET)
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET) DEF1NAME=$(SHL1TARGET)
SHL1VERSIONMAP=$(TARGET).map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
# --- Targets ---------------------------------- # --- Targets ----------------------------------
......
OOOIMPROVECORE_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
...@@ -73,7 +73,7 @@ SHL1TARGET= oooimp$(DLLPOSTFIX) ...@@ -73,7 +73,7 @@ SHL1TARGET= oooimp$(DLLPOSTFIX)
SHL1LIBS= $(SLB)$/$(TARGET).lib SHL1LIBS= $(SLB)$/$(TARGET).lib
SHL1DEF= $(MISC)$/$(SHL1TARGET).def SHL1DEF= $(MISC)$/$(SHL1TARGET).def
DEF1NAME= $(SHL1TARGET) DEF1NAME= $(SHL1TARGET)
SHL1VERSIONMAP= oooimprovement.map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
PACKAGEDIR=$(subst,.,$/ $(PACKAGE)) PACKAGEDIR=$(subst,.,$/ $(PACKAGE))
SPOOLDIR=$(MISC)$/registry$/spool SPOOLDIR=$(MISC)$/registry$/spool
......
UDK_3_0_0 {
global:
GetVersionInfo;
component_getImplementationEnvironment;
component_getFactory;
component_writeInfo;
local:
*;
};
UDK_3_0_0 {
global:
GetVersionInfo;
component_getImplementationEnvironment;
component_getFactory;
component_writeInfo;
local:
*;
};
...@@ -67,7 +67,7 @@ SHL1OWNLIBS = \ ...@@ -67,7 +67,7 @@ SHL1OWNLIBS = \
SHL1TARGET= $(TARGET)$(DLLPOSTFIX) SHL1TARGET= $(TARGET)$(DLLPOSTFIX)
SHL1IMPLIB= i$(TARGET) SHL1IMPLIB= i$(TARGET)
SHL1VERSIONMAP=exports.map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET) DEF1NAME=$(SHL1TARGET)
......
...@@ -57,7 +57,7 @@ RESLIB1IMAGES=$(PRJ)$/res ...@@ -57,7 +57,7 @@ RESLIB1IMAGES=$(PRJ)$/res
RESLIB1SRSFILES= $(SRS)$/preload.srs RESLIB1SRSFILES= $(SRS)$/preload.srs
SHL1TARGET= $(TARGET)$(DLLPOSTFIX) SHL1TARGET= $(TARGET)$(DLLPOSTFIX)
SHL1VERSIONMAP= $(TARGET).map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1STDLIBS= \ SHL1STDLIBS= \
$(SFXLIB) \ $(SFXLIB) \
......
EXTDBI_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
...@@ -113,7 +113,7 @@ RESLIB1IMAGES=$(PRJ)$/res ...@@ -113,7 +113,7 @@ RESLIB1IMAGES=$(PRJ)$/res
RESLIB1SRSFILES= $(SRS)$/$(TARGET).srs RESLIB1SRSFILES= $(SRS)$/$(TARGET).srs
SHL1TARGET= $(TARGET)$(DLLPOSTFIX) SHL1TARGET= $(TARGET)$(DLLPOSTFIX)
SHL1VERSIONMAP= $(TARGET).map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1STDLIBS= \ SHL1STDLIBS= \
$(EDITENGLIB) \ $(EDITENGLIB) \
......
EXTPCR_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
UDK_3_0_0 {
global:
GetVersionInfo;
component_getImplementationEnvironment;
component_getFactory;
component_writeInfo;
local:
*;
};
...@@ -63,7 +63,7 @@ SHL1DEF= $(MISC)$/$(SHL1TARGET).def ...@@ -63,7 +63,7 @@ SHL1DEF= $(MISC)$/$(SHL1TARGET).def
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
SHL1IMPLIB=i$(TARGET) SHL1IMPLIB=i$(TARGET)
SHL1LIBS=$(SLB)$/$(TARGET).lib SHL1LIBS=$(SLB)$/$(TARGET).lib
SHL1VERSIONMAP=exports.map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
DEF1NAME= $(SHL1TARGET) DEF1NAME= $(SHL1TARGET)
DEF1EXPORTFILE= exports.dxp DEF1EXPORTFILE= exports.dxp
......
UDK_3_0_0 {
global:
GetVersionInfo;
component_getImplementationEnvironment;
component_getFactory;
component_writeInfo;
local:
*;
};
...@@ -88,7 +88,7 @@ SHL1STDLIBS+=$(SVTOOLLIB) -ldl ...@@ -88,7 +88,7 @@ SHL1STDLIBS+=$(SVTOOLLIB) -ldl
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
SHL1IMPLIB=i$(TARGET) SHL1IMPLIB=i$(TARGET)
SHL1LIBS=$(SLB)$/$(TARGET).lib SHL1LIBS=$(SLB)$/$(TARGET).lib
SHL1VERSIONMAP=exports.map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
DEF1NAME=$(SHL1TARGET) DEF1NAME=$(SHL1TARGET)
DEF1EXPORTFILE=exports.dxp DEF1EXPORTFILE=exports.dxp
......
UDK_3_0_0 {
global:
GetVersionInfo;
component_getImplementationEnvironment;
component_getFactory;
component_writeInfo;
local:
*;
};
...@@ -47,7 +47,7 @@ SLOFILES= $(SLO)$/svgprinter.obj \ ...@@ -47,7 +47,7 @@ SLOFILES= $(SLO)$/svgprinter.obj \
SHL1TARGET=$(TARGET)$(DLLPOSTFIX) SHL1TARGET=$(TARGET)$(DLLPOSTFIX)
SHL1IMPLIB=i$(SHL1TARGET) SHL1IMPLIB=i$(SHL1TARGET)
SHL1VERSIONMAP=exports.map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET) DEF1NAME=$(SHL1TARGET)
......
...@@ -82,7 +82,7 @@ SHL1STDLIBS= \ ...@@ -82,7 +82,7 @@ SHL1STDLIBS= \
$(SHELL32LIB) \ $(SHELL32LIB) \
$(OLE32LIB) $(OLE32LIB)
SHL1VERSIONMAP=..$/exports.map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET) DEF1NAME=$(SHL1TARGET)
......
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
// MARKER(update_precomp.py): autogen include statement, do not remove // MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_extensions.hxx" #include "precompiled_extensions.hxx"
#include <memory>
#include "updatecheck.hxx" #include "updatecheck.hxx"
#include "updatecheckconfig.hxx" #include "updatecheckconfig.hxx"
#include "updatehdl.hxx" #include "updatehdl.hxx"
...@@ -55,16 +57,12 @@ class InitUpdateCheckJobThread : public osl::Thread ...@@ -55,16 +57,12 @@ class InitUpdateCheckJobThread : public osl::Thread
{ {
public: public:
InitUpdateCheckJobThread( const uno::Reference< uno::XComponentContext > &xContext, InitUpdateCheckJobThread( const uno::Reference< uno::XComponentContext > &xContext,
const uno::Sequence< beans::NamedValue > &xParameters ); const uno::Sequence< beans::NamedValue > &xParameters,
bool bShowDialog );
virtual void SAL_CALL run(); virtual void SAL_CALL run();
virtual void SAL_CALL onTerminated();
void showDialog();
void setTerminating() { m_bTerminating = true; }
protected: void setTerminating();
~InitUpdateCheckJobThread();
private: private:
osl::Condition m_aCondition; osl::Condition m_aCondition;
...@@ -115,7 +113,7 @@ public: ...@@ -115,7 +113,7 @@ public:
private: private:
uno::Reference<uno::XComponentContext> m_xContext; uno::Reference<uno::XComponentContext> m_xContext;
uno::Reference< frame::XDesktop > m_xDesktop; uno::Reference< frame::XDesktop > m_xDesktop;
InitUpdateCheckJobThread *m_pInitThread; std::auto_ptr< InitUpdateCheckJobThread > m_pInitThread;
void handleExtensionUpdates( const uno::Sequence< beans::NamedValue > &rListProp ); void handleExtensionUpdates( const uno::Sequence< beans::NamedValue > &rListProp );
}; };
...@@ -125,29 +123,25 @@ private: ...@@ -125,29 +123,25 @@ private:
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
InitUpdateCheckJobThread::InitUpdateCheckJobThread( InitUpdateCheckJobThread::InitUpdateCheckJobThread(
const uno::Reference< uno::XComponentContext > &xContext, const uno::Reference< uno::XComponentContext > &xContext,
const uno::Sequence< beans::NamedValue > &xParameters ) : const uno::Sequence< beans::NamedValue > &xParameters,
bool bShowDialog ) :
m_xContext( xContext ), m_xContext( xContext ),
m_xParameters( xParameters ), m_xParameters( xParameters ),
m_bShowDialog( false ), m_bShowDialog( bShowDialog ),
m_bTerminating( false ) m_bTerminating( false )
{ {
create(); create();
} }
//------------------------------------------------------------------------------
InitUpdateCheckJobThread::~InitUpdateCheckJobThread()
{
}
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
void SAL_CALL InitUpdateCheckJobThread::run() void SAL_CALL InitUpdateCheckJobThread::run()
{ {
TimeValue tv = { 25, 0 }; if (!m_bShowDialog) {
TimeValue tv = { 25, 0 };
m_aCondition.wait( &tv ); m_aCondition.wait( &tv );
if ( m_bTerminating )
if ( m_bTerminating ) return;
return; }
rtl::Reference< UpdateCheck > aController( UpdateCheck::get() ); rtl::Reference< UpdateCheck > aController( UpdateCheck::get() );
aController->initialize( m_xParameters, m_xContext ); aController->initialize( m_xParameters, m_xContext );
...@@ -156,16 +150,8 @@ void SAL_CALL InitUpdateCheckJobThread::run() ...@@ -156,16 +150,8 @@ void SAL_CALL InitUpdateCheckJobThread::run()
aController->showDialog( true ); aController->showDialog( true );
} }
//------------------------------------------------------------------------------ void InitUpdateCheckJobThread::setTerminating() {
void SAL_CALL InitUpdateCheckJobThread::onTerminated() m_bTerminating = true;
{
delete this;
}
//------------------------------------------------------------------------------
void InitUpdateCheckJobThread::showDialog()
{
m_bShowDialog = true;
m_aCondition.set(); m_aCondition.set();
} }
...@@ -174,8 +160,7 @@ void InitUpdateCheckJobThread::showDialog() ...@@ -174,8 +160,7 @@ void InitUpdateCheckJobThread::showDialog()
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
UpdateCheckJob::UpdateCheckJob( const uno::Reference<uno::XComponentContext>& xContext ) : UpdateCheckJob::UpdateCheckJob( const uno::Reference<uno::XComponentContext>& xContext ) :
m_xContext(xContext), m_xContext(xContext)
m_pInitThread( NULL )
{ {
m_xDesktop.set( xContext->getServiceManager()->createInstanceWithContext( UNISTRING("com.sun.star.frame.Desktop"), xContext ), uno::UNO_QUERY ); m_xDesktop.set( xContext->getServiceManager()->createInstanceWithContext( UNISTRING("com.sun.star.frame.Desktop"), xContext ), uno::UNO_QUERY );
if ( m_xDesktop.is() ) if ( m_xDesktop.is() )
...@@ -234,7 +219,6 @@ UpdateCheckJob::execute(const uno::Sequence<beans::NamedValue>& namedValues) ...@@ -234,7 +219,6 @@ UpdateCheckJob::execute(const uno::Sequence<beans::NamedValue>& namedValues)
uno::Sequence<beans::NamedValue> aConfig = uno::Sequence<beans::NamedValue> aConfig =
getValue< uno::Sequence<beans::NamedValue> > (namedValues, "JobConfig"); getValue< uno::Sequence<beans::NamedValue> > (namedValues, "JobConfig");
m_pInitThread = new InitUpdateCheckJobThread( m_xContext, aConfig );
/* Determine the way we got invoked here - /* Determine the way we got invoked here -
* see Developers Guide Chapter "4.7.2 Jobs" to understand the magic * see Developers Guide Chapter "4.7.2 Jobs" to understand the magic
...@@ -245,10 +229,10 @@ UpdateCheckJob::execute(const uno::Sequence<beans::NamedValue>& namedValues) ...@@ -245,10 +229,10 @@ UpdateCheckJob::execute(const uno::Sequence<beans::NamedValue>& namedValues)
rtl::OUString aEventName = getValue< rtl::OUString > (aEnvironment, "EventName"); rtl::OUString aEventName = getValue< rtl::OUString > (aEnvironment, "EventName");
if( ! aEventName.equalsAscii("onFirstVisibleTask") ) m_pInitThread.reset(
{ new InitUpdateCheckJobThread(
m_pInitThread->showDialog(); m_xContext, aConfig,
} !aEventName.equalsAscii("onFirstVisibleTask")));
return uno::Any(); return uno::Any();
} }
...@@ -346,7 +330,7 @@ void SAL_CALL UpdateCheckJob::queryTermination( lang::EventObject const & ) ...@@ -346,7 +330,7 @@ void SAL_CALL UpdateCheckJob::queryTermination( lang::EventObject const & )
void SAL_CALL UpdateCheckJob::notifyTermination( lang::EventObject const & rEvt ) void SAL_CALL UpdateCheckJob::notifyTermination( lang::EventObject const & rEvt )
throw ( uno::RuntimeException ) throw ( uno::RuntimeException )
{ {
if ( m_pInitThread ) if ( m_pInitThread.get() != 0 )
m_pInitThread->setTerminating(); m_pInitThread->setTerminating();
disposing( rEvt ); disposing( rEvt );
......
UDK_3_0_0 {
global:
GetVersionInfo;
component_getImplementationEnvironment;
component_getFactory;
component_writeInfo;
local:
*;
};
...@@ -54,7 +54,7 @@ SHL1STDLIBS= \ ...@@ -54,7 +54,7 @@ SHL1STDLIBS= \
$(CPPULIB) \ $(CPPULIB) \
$(SALLIB) $(SALLIB)
SHL1VERSIONMAP=..$/exports.map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET) DEF1NAME=$(SHL1TARGET)
......
...@@ -64,7 +64,7 @@ SHL1STDLIBS= \ ...@@ -64,7 +64,7 @@ SHL1STDLIBS= \
$(VCLLIB) \ $(VCLLIB) \
$(TOOLSLIB) $(TOOLSLIB)
SHL1VERSIONMAP=..$/exports.map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET) DEF1NAME=$(SHL1TARGET)
......
UDK_3_0_0 {
global:
GetVersionInfo;
component_getImplementationEnvironment;
component_getFactory;
component_writeInfo;
local:
*;
};
...@@ -46,7 +46,7 @@ SLOFILES= $(SLO)$/xmxuno.obj \ ...@@ -46,7 +46,7 @@ SLOFILES= $(SLO)$/xmxuno.obj \
SHL1TARGET=$(TARGET)$(DLLPOSTFIX) SHL1TARGET=$(TARGET)$(DLLPOSTFIX)
SHL1IMPLIB= i$(SHL1TARGET) SHL1IMPLIB= i$(SHL1TARGET)
SHL1VERSIONMAP=exports.map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET) DEF1NAME=$(SHL1TARGET)
......
...@@ -15,3 +15,4 @@ fm forms\source\richtext nmake - all fm_richtext fm_inc N ...@@ -15,3 +15,4 @@ fm forms\source\richtext nmake - all fm_richtext fm_inc N
fm forms\source\runtime nmake - all frm_runtime NULL fm forms\source\runtime nmake - all frm_runtime NULL
fm forms\util nmake - all fm_util fm_component fm_solar_component fm_solar_control fm_helper fm_misc fm_resource fm_richtext frm_runtime fm_xforms NULL fm forms\util nmake - all fm_util fm_component fm_solar_component fm_solar_control fm_helper fm_misc fm_resource fm_richtext frm_runtime fm_xforms NULL
fm forms\qa nmake - all fm_qa NULL fm forms\qa nmake - all fm_qa NULL
fm forms\qa\unoapi nmake - all fm_qa_unoapi NULL
/*************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
************************************************************************/
package org.openoffice.forms.qa.unoapi;
import org.openoffice.Runner;
import org.openoffice.test.OfficeConnection;
import static org.junit.Assert.*;
public final class Test {
@org.junit.Before public void setUp() throws Exception {
connection.setUp();
}
@org.junit.After public void tearDown()
throws InterruptedException, com.sun.star.uno.Exception
{
connection.tearDown();
}
@org.junit.Test public void test() {
assertTrue(
Runner.run(
"-sce", "forms.sce", "-xcl", "knownissues.xcl", "-tdoc",
"testdocuments", "-cs", connection.getDescription()));
}
private final OfficeConnection connection = new OfficeConnection();
}
#************************************************************************* #*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
# #
# Copyright 2000, 2010 Oracle and/or its affiliates. # Copyright 2000, 2010 Oracle and/or its affiliates.
# #
# OpenOffice.org - a multi-platform office productivity suite # OpenOffice.org - a multi-platform office productivity suite
...@@ -22,27 +21,28 @@ ...@@ -22,27 +21,28 @@
# version 3 along with OpenOffice.org. If not, see # version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html> # <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License. # for a copy of the LGPLv3 License.
# #***********************************************************************/
#*************************************************************************
PRJ=..$/.. .IF "$(OOO_SUBSEQUENT_TESTS)" == ""
nothing .PHONY:
.ELSE
PRJNAME=forms PRJ = ../..
TARGET=qa_unoapi PRJNAME = forms
TARGET = qa_unoapi
.INCLUDE: settings.mk .IF "$(OOO_JUNIT_JAR)" != ""
PACKAGE = org/openoffice/forms/qa/unoapi
JAVATESTFILES = Test.java
JAVAFILES = $(JAVATESTFILES)
JARFILES = OOoRunner.jar ridl.jar test.jar
EXTRAJARFILES = $(OOO_JUNIT_JAR)
.END
.INCLUDE: settings.mk
.INCLUDE: target.mk .INCLUDE: target.mk
.INCLUDE: installationtest.mk
ALLTAR : UNOAPI_TEST ALLTAR : javatest
UNOAPI_TEST:
+$(SOLARENV)$/bin$/checkapi -sce forms.sce -xcl knownissues.xcl -DOCPTH $(PWD)$/testdocuments -THRCNT 1 -tdoc $(PWD)$/testdocuments
@echo =======================================================================
@echo Problems with controls might me focus problems during the run of XView
@echo these seems to appear by chance ... just re-run those testcases with
@echo $(SOLARENV)$/bin$/checkapi -o componentName -xcl knownissues.xcl -DOCPTH $(PWD)$/testdocuments -THRCNT 1 -tdoc $(PWD)$/testdocuments
@echo =======================================================================
run_%: .END
+$(SOLARENV)$/bin$/checkapi -o $(PRJNAME).$(@:s/run_//) -xcl knownissues.xcl -DOCPTH $(PWD)$/testdocuments -THRCNT 1 -tdoc $(PWD)$/testdocuments
FORMS_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
...@@ -81,7 +81,7 @@ SHL1DEPN=$(LIB1TARGET) \ ...@@ -81,7 +81,7 @@ SHL1DEPN=$(LIB1TARGET) \
makefile.mk makefile.mk
SHL1VERSIONMAP=$(TARGET).map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET) DEF1NAME=$(SHL1TARGET)
......
LTH_1_0 {
global:
component_getFactory;
component_getImplementationEnvironment;
component_writeInfo;
local:
*;
};
...@@ -81,7 +81,7 @@ SHL1IMPLIB= i$(REALNAME) ...@@ -81,7 +81,7 @@ SHL1IMPLIB= i$(REALNAME)
SHL1DEPN= $(SHL1LIBS) SHL1DEPN= $(SHL1LIBS)
SHL1DEF= $(MISC)$/$(SHL1TARGET).def SHL1DEF= $(MISC)$/$(SHL1TARGET).def
SHL1VERSIONMAP= $(REALNAME).map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
# build DEF file # build DEF file
DEF1NAME =$(SHL1TARGET) DEF1NAME =$(SHL1TARGET)
......
UDK_3_0_0 {
global:
component_getFactory;
component_getImplementationEnvironment;
component_writeInfo;
local:
*;
};
...@@ -68,7 +68,7 @@ SHL1IMPLIB= i$(TARGET) ...@@ -68,7 +68,7 @@ SHL1IMPLIB= i$(TARGET)
SHL1DEPN= $(SHL1LIBS) SHL1DEPN= $(SHL1LIBS)
SHL1DEF= $(MISC)$/$(SHL1TARGET).def SHL1DEF= $(MISC)$/$(SHL1TARGET).def
.IF "$(OS)"!="MACOSX" .IF "$(OS)"!="MACOSX"
SHL1VERSIONMAP= $(TARGET).map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
.ENDIF .ENDIF
# build DEF file # build DEF file
......
LEXPS_1_0 {
global:
component_getFactory;
component_getImplementationEnvironment;
component_writeInfo;
local:
*;
};
...@@ -81,7 +81,7 @@ SHL1IMPLIB= i$(TARGET) ...@@ -81,7 +81,7 @@ SHL1IMPLIB= i$(TARGET)
SHL1DEPN= $(SHL1LIBS) SHL1DEPN= $(SHL1LIBS)
SHL1DEF= $(MISC)$/$(SHL1TARGET).def SHL1DEF= $(MISC)$/$(SHL1TARGET).def
SHL1VERSIONMAP= $(TARGET).map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
# --- Targets ------------------------------------------------------ # --- Targets ------------------------------------------------------
......
...@@ -75,7 +75,7 @@ SHL1IMPLIB= i$(TARGET) ...@@ -75,7 +75,7 @@ SHL1IMPLIB= i$(TARGET)
SHL1DEPN= $(SHL1LIBS) SHL1DEPN= $(SHL1LIBS)
SHL1DEF= $(MISC)$/$(SHL1TARGET).def SHL1DEF= $(MISC)$/$(SHL1TARGET).def
SHL1VERSIONMAP= $(TARGET).map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
# build DEF file # build DEF file
DEF1NAME =$(SHL1TARGET) DEF1NAME =$(SHL1TARGET)
......
LEXPS_1_0 {
global:
component_getFactory;
component_getImplementationEnvironment;
component_writeInfo;
local:
*;
};
LTH_1_0 {
global:
component_getFactory;
component_getImplementationEnvironment;
component_writeInfo;
local:
*;
};
...@@ -95,7 +95,7 @@ SHL1IMPLIB= i$(TARGET) ...@@ -95,7 +95,7 @@ SHL1IMPLIB= i$(TARGET)
SHL1DEPN= $(SHL1LIBS) SHL1DEPN= $(SHL1LIBS)
SHL1DEF= $(MISC)$/$(SHL1TARGET).def SHL1DEF= $(MISC)$/$(SHL1TARGET).def
SHL1VERSIONMAP= $(TARGET).map SHL1VERSIONMAP=$(SOLARENV)/src/component.map
# build DEF file # build DEF file
DEF1NAME =$(SHL1TARGET) DEF1NAME =$(SHL1TARGET)
......
PKG_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
...@@ -190,13 +190,11 @@ sub convert_stringlist_into_array ...@@ -190,13 +190,11 @@ sub convert_stringlist_into_array
{ {
$first = $1; $first = $1;
$last = $2; $last = $2;
if ( defined($ENV{'USE_SHELL'}) && $ENV{'USE_SHELL'} eq "4nt" ) { $first =~ s/\//\\/g; }
# Problem with two directly following listseparators. For example a path with two ";;" directly behind each other # Problem with two directly following listseparators. For example a path with two ";;" directly behind each other
$first =~ s/^$listseparator//; $first =~ s/^$listseparator//;
push(@newarray, "$first\n"); push(@newarray, "$first\n");
} }
if ( defined($ENV{'USE_SHELL'}) && $ENV{'USE_SHELL'} eq "4nt" ) { $last =~ s/\//\\/g; }
push(@newarray, "$last\n"); push(@newarray, "$last\n");
return \@newarray; return \@newarray;
...@@ -382,11 +380,8 @@ sub try_to_create_directory ...@@ -382,11 +380,8 @@ sub try_to_create_directory
{ {
$created_directory = 1; $created_directory = 1;
if ( defined $ENV{'USE_SHELL'} && $ENV{'USE_SHELL'} ne "4nt" ) my $localcall = "chmod 775 $directory \>\/dev\/null 2\>\&1";
{ system($localcall);
my $localcall = "chmod 775 $directory \>\/dev\/null 2\>\&1";
system($localcall);
}
} }
else else
{ {
...@@ -837,20 +832,14 @@ sub create_directory_with_privileges ...@@ -837,20 +832,14 @@ sub create_directory_with_privileges
if ($returnvalue) if ($returnvalue)
{ {
if ( defined $ENV{'USE_SHELL'} && $ENV{'USE_SHELL'} ne "4nt" ) my $localcall = "chmod $privileges $directory \>\/dev\/null 2\>\&1";
{ system($localcall);
my $localcall = "chmod $privileges $directory \>\/dev\/null 2\>\&1";
system($localcall);
}
} }
} }
else else
{ {
if ( defined $ENV{'USE_SHELL'} && $ENV{'USE_SHELL'} ne "4nt" ) my $localcall = "chmod $privileges $directory \>\/dev\/null 2\>\&1";
{ system($localcall);
my $localcall = "chmod $privileges $directory \>\/dev\/null 2\>\&1";
system($localcall);
}
} }
} }
......
...@@ -37,7 +37,7 @@ PACKAGE = com$/sun$/star$/wizards ...@@ -37,7 +37,7 @@ PACKAGE = com$/sun$/star$/wizards
JARFILES= unoil.jar jurt.jar ridl.jar juh.jar jut.jar java_uno.jar java_uno_accessbridge JARFILES= unoil.jar jurt.jar ridl.jar juh.jar jut.jar java_uno.jar java_uno_accessbridge
.IF "$(SYSTEM_SAXON)" == "YES" .IF "$(SYSTEM_SAXON)" == "YES"
XCLASSPATH!:=$(XCLASSPATH)$(PATH_SEPERATOR)$(SAXON_JAR) EXTRAJARFILES = $(SAXON_JAR)
.ELSE .ELSE
JARFILES += saxon9.jar JARFILES += saxon9.jar
.ENDIF .ENDIF
......
...@@ -38,7 +38,7 @@ PACKAGE = com$/sun$/star$/wizards$/web$/data ...@@ -38,7 +38,7 @@ PACKAGE = com$/sun$/star$/wizards$/web$/data
JARFILES= unoil.jar jurt.jar ridl.jar juh.jar jut.jar java_uno.jar java_uno_accessbridge commonwizards.jar JARFILES= unoil.jar jurt.jar ridl.jar juh.jar jut.jar java_uno.jar java_uno_accessbridge commonwizards.jar
.IF "$(SYSTEM_SAXON)" == "YES" .IF "$(SYSTEM_SAXON)" == "YES"
XCLASSPATH!:=$(XCLASSPATH)$(PATH_SEPERATOR)$(SAXON_JAR) EXTRAJARFILES = $(SAXON_JAR)
.ELSE .ELSE
JARFILES += saxon9.jar JARFILES += saxon9.jar
.ENDIF .ENDIF
......
...@@ -38,7 +38,7 @@ PACKAGE = com$/sun$/star$/wizards$/web$/export ...@@ -38,7 +38,7 @@ PACKAGE = com$/sun$/star$/wizards$/web$/export
JARFILES= unoil.jar jurt.jar ridl.jar juh.jar java_uno.jar java_uno_accessbridge commonwizards.jar JARFILES= unoil.jar jurt.jar ridl.jar juh.jar java_uno.jar java_uno_accessbridge commonwizards.jar
.IF "$(SYSTEM_SAXON)" == "YES" .IF "$(SYSTEM_SAXON)" == "YES"
XCLASSPATH!:=$(XCLASSPATH)$(PATH_SEPERATOR)$(SAXON_JAR) EXTRAJARFILES = $(SAXON_JAR)
.ELSE .ELSE
JARFILES += saxon9.jar JARFILES += saxon9.jar
.ENDIF .ENDIF
......
...@@ -37,7 +37,7 @@ PACKAGE = com$/sun$/star$/wizards$/web ...@@ -37,7 +37,7 @@ PACKAGE = com$/sun$/star$/wizards$/web
JARFILES= unoil.jar jurt.jar ridl.jar juh.jar jut.jar java_uno.jar java_uno_accessbridge commonwizards.jar JARFILES= unoil.jar jurt.jar ridl.jar juh.jar jut.jar java_uno.jar java_uno_accessbridge commonwizards.jar
.IF "$(SYSTEM_SAXON)" == "YES" .IF "$(SYSTEM_SAXON)" == "YES"
XCLASSPATH!:=$(XCLASSPATH)$(PATH_SEPERATOR)$(SAXON_JAR) EXTRAJARFILES = $(SAXON_JAR)
.ELSE .ELSE
JARFILES += saxon9.jar JARFILES += saxon9.jar
.ENDIF .ENDIF
......
...@@ -158,7 +158,7 @@ SHL4STDLIBS=\ ...@@ -158,7 +158,7 @@ SHL4STDLIBS=\
$(XMLOFFLIB) \ $(XMLOFFLIB) \
$(SVXCORELIB) $(SVXCORELIB)
SHL4VERSIONMAP = xmlsecurity.map SHL4VERSIONMAP = $(SOLARENV)/src/component.map
SHL4DEPN= SHL4DEPN=
SHL4IMPLIB=i$(TARGET) SHL4IMPLIB=i$(TARGET)
SHL4DEF=$(MISC)$/$(SHL4TARGET).def SHL4DEF=$(MISC)$/$(SHL4TARGET).def
......
UDK_3_0_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment