Kaydet (Commit) a81f161b authored tarafından Peter Foley's avatar Peter Foley

add desktop libs to libmerged

Change-Id: I0e5477f84de316598015330cea995e42f1249acb
üst 0b2eae62
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
extern "C" extern "C"
{ {
::cppu::ImplementationEntry entries [] = ::cppu::ImplementationEntry oo2_entries [] =
{ {
{ {
migration::BasicMigration_create, migration::BasicMigration_getImplementationName, migration::BasicMigration_create, migration::BasicMigration_getImplementationName,
...@@ -54,7 +54,7 @@ SAL_DLLPUBLIC_EXPORT void * SAL_CALL migrationoo2_component_getFactory( ...@@ -54,7 +54,7 @@ SAL_DLLPUBLIC_EXPORT void * SAL_CALL migrationoo2_component_getFactory(
const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey ) const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey )
{ {
return ::cppu::component_getFactoryHelper( return ::cppu::component_getFactoryHelper(
pImplName, pServiceManager, pRegistryKey, entries ); pImplName, pServiceManager, pRegistryKey, oo2_entries );
} }
} }
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
extern "C" extern "C"
{ {
::cppu::ImplementationEntry entries [] = ::cppu::ImplementationEntry oo3_entries [] =
{ {
{ {
migration::OO3ExtensionMigration_create, migration::OO3ExtensionMigration_getImplementationName, migration::OO3ExtensionMigration_create, migration::OO3ExtensionMigration_getImplementationName,
...@@ -39,7 +39,7 @@ SAL_DLLPUBLIC_EXPORT void * SAL_CALL migrationoo3_component_getFactory( ...@@ -39,7 +39,7 @@ SAL_DLLPUBLIC_EXPORT void * SAL_CALL migrationoo3_component_getFactory(
const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey ) const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey )
{ {
return ::cppu::component_getFactoryHelper( return ::cppu::component_getFactoryHelper(
pImplName, pServiceManager, pRegistryKey, entries ); pImplName, pServiceManager, pRegistryKey, oo3_entries );
} }
} }
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
namespace desktop namespace desktop
{ {
extern "C" void workerfunc (void * acc) extern "C" void offacc_workerfunc (void * acc)
{ {
((Acceptor*)acc)->run(); ((Acceptor*)acc)->run();
} }
...@@ -157,7 +157,7 @@ void SAL_CALL Acceptor::initialize( const Sequence<Any>& aArguments ) ...@@ -157,7 +157,7 @@ void SAL_CALL Acceptor::initialize( const Sequence<Any>& aArguments )
m_aProtocol = m_aAcceptString.copy( nIndex1, nIndex2 - nIndex1 ); m_aProtocol = m_aAcceptString.copy( nIndex1, nIndex2 - nIndex1 );
// start accepting in new thread... // start accepting in new thread...
m_thread = osl_createThread(workerfunc, this); m_thread = osl_createThread(offacc_workerfunc, this);
m_bInit = sal_True; m_bInit = sal_True;
bOk = sal_True; bOk = sal_True;
} }
......
...@@ -219,7 +219,7 @@ static sal_Int32 lcl_BacktraceWhiteSpaces( const OUString &rText, sal_Int32 nSta ...@@ -219,7 +219,7 @@ static sal_Int32 lcl_BacktraceWhiteSpaces( const OUString &rText, sal_Int32 nSta
} }
extern "C" void workerfunc (void * gci) extern "C" void lcl_workerfunc (void * gci)
{ {
((GrammarCheckingIterator*)gci)->DequeueAndCheck(); ((GrammarCheckingIterator*)gci)->DequeueAndCheck();
} }
...@@ -243,7 +243,7 @@ GrammarCheckingIterator::GrammarCheckingIterator( const uno::Reference< lang::XM ...@@ -243,7 +243,7 @@ GrammarCheckingIterator::GrammarCheckingIterator( const uno::Reference< lang::XM
m_aEventListeners( MyMutex::get() ), m_aEventListeners( MyMutex::get() ),
m_aNotifyListeners( MyMutex::get() ) m_aNotifyListeners( MyMutex::get() )
{ {
m_thread = osl_createThread( workerfunc, this ); m_thread = osl_createThread( lcl_workerfunc, this );
} }
......
...@@ -35,6 +35,7 @@ gb_EXTRAMERGEDLIBS := \ ...@@ -35,6 +35,7 @@ gb_EXTRAMERGEDLIBS := \
$(call gb_Helper_optional,DBCONNECTIVITY,dbase) \ $(call gb_Helper_optional,DBCONNECTIVITY,dbase) \
$(call gb_Helper_optional,DBCONNECTIVITY,dbtools) \ $(call gb_Helper_optional,DBCONNECTIVITY,dbtools) \
$(call gb_Helper_optional,DBCONNECTIVITY,dbu) \ $(call gb_Helper_optional,DBCONNECTIVITY,dbu) \
deploymentgui \
$(call gb_Helper_optional,EXPORT,egi) \ $(call gb_Helper_optional,EXPORT,egi) \
$(call gb_Helper_optional,EXPORT,eme) \ $(call gb_Helper_optional,EXPORT,eme) \
$(call gb_Helper_optional,EXPORT,epb) \ $(call gb_Helper_optional,EXPORT,epb) \
...@@ -66,11 +67,14 @@ gb_EXTRAMERGEDLIBS := \ ...@@ -66,11 +67,14 @@ gb_EXTRAMERGEDLIBS := \
itg \ itg \
iti \ iti \
$(if $(filter TRUE,$(SOLAR_JAVA)),jdbc) \ $(if $(filter TRUE,$(SOLAR_JAVA)),jdbc) \
$(call gb_Helper_optional,DESKTOP,migrationoo2) \
$(call gb_Helper_optional,DESKTOP,migrationoo3) \
$(call gb_Helper_optional,DBCONNECTIVITY,mork) \ $(call gb_Helper_optional,DBCONNECTIVITY,mork) \
$(call gb_Helper_optional,DBCONNECTIVITY,mysql) \ $(call gb_Helper_optional,DBCONNECTIVITY,mysql) \
$(if $(filter-out ANDROID IOS,$(OS)),odbc) \ $(if $(filter-out ANDROID IOS,$(OS)),odbc) \
$(if $(filter-out ANDROID IOS,$(OS)),odbcbase) \ $(if $(filter-out ANDROID IOS,$(OS)),odbcbase) \
odfflatxml \ odfflatxml \
offacc \
oox \ oox \
pdffilter \ pdffilter \
placeware \ placeware \
...@@ -78,11 +82,13 @@ gb_EXTRAMERGEDLIBS := \ ...@@ -78,11 +82,13 @@ gb_EXTRAMERGEDLIBS := \
$(call gb_Helper_optional,DBCONNECTIVITY,rpt) \ $(call gb_Helper_optional,DBCONNECTIVITY,rpt) \
sd \ sd \
$(call gb_Helper_optional,DBCONNECTIVITY,sdbc2) \ $(call gb_Helper_optional,DBCONNECTIVITY,sdbc2) \
$(if $(filter-out WNT MACOSX ANDROID IOS,$(OS)),spl_unx) \
svgfilter \ svgfilter \
swd \ swd \
t602filter \ t602filter \
test \ test \
textfd \ textfd \
$(call gb_Helper_optional,DESKTOP,unopkgapp) \
unotest \ unotest \
$(if $(DISABLE_SCRIPTING),,vbahelper) \ $(if $(DISABLE_SCRIPTING),,vbahelper) \
xmlfa \ xmlfa \
......
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