Re: [dev] How to add-in in OpenOffice.org Calc!

2005-07-15 Thread xutuan Zhang
Hi, Jürgen, Thanks for the reply. Sorry if I was not very clear in my email. My add-in actually works under Windows. If I use OOo 1.1.4 and SDK 1.1.0 (i.e., both stable version), then my add-in (written in c++) works fine. If I use the latest snapshot build (under Windows), Calc crashes the FIRST

Re: [dev] How to add-in in OpenOffice.org Calc!

2005-07-15 Thread Stephan Bergmann
xutuan Zhang wrote: Hi, Jürgen, Thanks for the reply. Sorry if I was not very clear in my email. My add-in actually works under Windows. If I use OOo 1.1.4 and SDK 1.1.0 (i.e., both stable version), then my add-in (written in c++) works fine. If I use the latest snapshot build (under Windows),

Re: [dev] How to add-in in OpenOffice.org Calc!

2005-07-15 Thread xutuan Zhang
--- Stephan Bergmann [EMAIL PROTECTED] wrote: xutuan Zhang wrote: Hi, Jürgen, Thanks for the reply. Sorry if I was not very clear in my email. My add-in actually works under Windows. If I use OOo 1.1.4 and SDK 1.1.0 (i.e., both stable version), then my add-in (written in c++) works

Re: [dev] How to add-in in OpenOffice.org Calc!

2005-07-15 Thread Stephan Bergmann
xutuan Zhang wrote: --- Stephan Bergmann [EMAIL PROTECTED] wrote: xutuan Zhang wrote: Hi, Jürgen, Thanks for the reply. Sorry if I was not very clear in my email. My add-in actually works under Windows. If I use OOo 1.1.4 and SDK 1.1.0 (i.e., both stable version), then my add-in

Re: [dev] How to add-in in OpenOffice.org Calc!

2005-07-15 Thread xutuan Zhang
Dear Stephan, Thanks for your email.. --- Stephan Bergmann [EMAIL PROTECTED] wrote: . . . Are you trying this with OOo/SDK 1.1.4 or with OOo/SDK 1.9.113? IIRC, libraries built with the 1.1.x SDK failed to record their NEEDS for the UNO base libraries (sal etc.) and the libstdc++.so. That

Re: [dev] How to add-in in OpenOffice.org Calc!

2005-07-15 Thread Stephan Bergmann
xutuan Zhang wrote: Dear Stephan, Thanks for your email.. --- Stephan Bergmann [EMAIL PROTECTED] wrote: . . . Are you trying this with OOo/SDK 1.1.4 or with OOo/SDK 1.9.113? IIRC, libraries built with the 1.1.x SDK failed to record their NEEDS for the UNO base libraries (sal etc.) and the

Re: [dev] How to add-in in OpenOffice.org Calc!

2005-07-15 Thread xutuan Zhang
--- Stephan Bergmann [EMAIL PROTECTED] wrote: . . . file:///home/chatter/OpenOffice.org1.1.4/user/uno_packages/cache/services.rdb: failed! (cannot register implementation: cannot get uno environments!)! This error message suggests that your componet_getImplementationEnvironment function

Re: [dev] How to add-in in OpenOffice.org Calc!

2005-07-15 Thread Jürgen Schmidt
Hi, xutuan Zhang wrote: --- Stephan Bergmann [EMAIL PROTECTED] wrote: . . . file:///home/chatter/OpenOffice.org1.1.4/user/uno_packages/cache/services.rdb: failed! (cannot register implementation: cannot get uno environments!)! This error message suggests that your

Re: [dev] How to add-in in OpenOffice.org Calc!

2005-07-15 Thread xutuan Zhang
Dear Jürgen, THANK YOU VERY MUCH. My add-in now works on Linux :)) The problem was my gcc preprocessor -DCPPU_ENV=gcc3 was not defined properly, I have the following in my makefile, but I didn't release that GCC_VERSION is not defined in my environment, * ifeq $(shell echo

Re: [dev] How to add-in in OpenOffice.org Calc!

2005-07-15 Thread xutuan Zhang
Dear Jürgen, THANK YOU VERY MUCH. My add-in now works on Linux :)) The problem was my gcc preprocessor -DCPPU_ENV=gcc3 was not defined properly, I have the following in my makefile, but I didn't release that GCC_VERSION is not defined in my environment, * ifeq $(shell echo

[dev] How to add-in in OpenOffice.org Calc!

2005-07-11 Thread xutuan Zhang
Hello All, I already posted my question on OOo Forum (c.f. http://www.oooforum.org/forum/viewtopic.phtml?t=21742). I now re-post it to this email list to say if anyone can give some advice. * * * I managed to compile analysis of the cvs version of scaddins under SuSE Linux, My changes