##############################################
### configure sdk (1 time per box)
perl /work/loc1/libreoffice-4.0/lib/libreoffice/sdk/configure.pl $(hostname -s) /work/loc1/libreoffice-4.0/lib/libreoffice/sdk libreoffice-4.0

##############################################
## set up env (1 time per login)
source setenv 

##############################################
# build : (make.log attached gives output on my box)
make install

##############################################
## open scalc CalcAddinSock.ods
## Macro: 
Sub Main
	mgr = getProcessServiceManager()
	o = mgr.createInstance("org.openoffice.sheet.addin.CalcAddinSock")
	o.startThr()
End Sub

##############################################
## runing F5 crashes with following on screen output
warn:configmgr:31804:1:/data1/libreoffice-core-git/configmgr/source/propertynode.cxx:68: non-nillable property without value
warn:vcl.layout:31804:1:/data1/libreoffice-core-git/vcl/source/window/builder.cxx:244: Requested top level widget "BasicMacroDialog" not found in modules/BasicIDE/ui/basicmacrodialog.ui
warn:vcl.layout:31804:1:/data1/libreoffice-core-git/vcl/source/window/builder.cxx:244: Requested top level widget "BasicMacroDialog" not found in modules/BasicIDE/ui/basicmacrodialog.ui

warn:basic.sbx:31804:1:/data1/libreoffice-core-git/basic/source/sbx/sbxvalue.cxx:541: nicht bei Parent-Prop - sonst CyclicRef
warn:basic.sbx:31804:1:/data1/libreoffice-core-git/basic/source/sbx/sbxvalue.cxx:541: nicht bei Parent-Prop - sonst CyclicRef
warn:basic.sbx:31804:1:/data1/libreoffice-core-git/basic/source/sbx/sbxvalue.cxx:190: nicht bei Parent-Prop - sonst CyclicRef
warn:basic.sbx:31804:1:/data1/libreoffice-core-git/basic/source/sbx/sbxvalue.cxx:541: nicht bei Parent-Prop - sonst CyclicRef
warn:basic.sbx:31804:1:/data1/libreoffice-core-git/basic/source/sbx/sbxvalue.cxx:541: nicht bei Parent-Prop - sonst CyclicRef
warn:basic.sbx:31804:1:/data1/libreoffice-core-git/basic/source/sbx/sbxvalue.cxx:190: nicht bei Parent-Prop - sonst CyclicRef
Exited with code '139'



##############################################
## about the source
CalcAddinSpread.cxx	## interface to Calc
CalcAddinSpread.hpp
calcCommon.h		## common header shared by CalcAddinSpread and CalcAddinThr_impl
CalcAddinThr_impl.cxx	## service implementation (reads data over socket)
CalcAddinThr.idl	## service definition
CalcAddinThr.components	## registry for above
calcuno.cxx		## standalone remote client (writes data over socket)
calcuno.rdb		## registry for standalone remote client
META-INF/manifest.xml	## unopkg definition
setenv			## set env vars
symbols.txt

