Re: FOSDEM 2018: Open Document Editors DevRoom

2017-11-26 Thread Andrea Pescetti
Reminder: submission deadline for proposal is in 7 days (next Monday). 
Anyone attending FOSDEM is welcome to prepare a short presentation.


The call is now published at
https://blogs.apache.org/OOo/entry/open-document-editors-devroom-at

Regards,
  Andrea.

On 19/11/2017 Andrea Pescetti wrote:

Andrea Pescetti wrote:

Important dates:
- Submission deadline: 4 Dec 2017
- FOSDEM: [3-]4 Feb 2018, Brussels, Belgium.


Just to avoid confusion about dates: FOSDEM is 3-4 February 2018 and
runs for the full day both days. The Open Document Editors (including
OpenOffice) devroom is on Saturday 3 February, full day. So if you can
stay only one day, make sure it is Saturday 3 February.

There will be an ASF booth running both days, and there will be many
other devrooms covering dozens of projects, so if you manage to be there
for both days, even better!

Regards,
   Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org




-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: svn commit: r1815700 - /openoffice/trunk/main/framework/Library_fwk.mk

2017-11-26 Thread Don Lewis
On 26 Nov, Don Lewis wrote:
> On 26 Nov, Don Lewis wrote:
>> On 18 Nov, j...@apache.org wrote:
>>> Author: jim
>>> Date: Sat Nov 18 22:24:42 2017
>>> New Revision: 1815700
>>> 
>>> URL: http://svn.apache.org/viewvc?rev=1815700=rev
>>> Log:
>>> Force compilation with -O1 flag instead of -O2
>>> 
>>> Modified:
>>> openoffice/trunk/main/framework/Library_fwk.mk
>>> 
>>> Modified: openoffice/trunk/main/framework/Library_fwk.mk
>>> URL: 
>>> http://svn.apache.org/viewvc/openoffice/trunk/main/framework/Library_fwk.mk?rev=1815700=1815699=1815700=diff
>>> ==
>>> --- openoffice/trunk/main/framework/Library_fwk.mk (original)
>>> +++ openoffice/trunk/main/framework/Library_fwk.mk Sat Nov 18 22:24:42 2017
>>> @@ -61,6 +61,10 @@ $(eval $(call gb_Library_add_linked_libs
>>> $(gb_STDLIBS) \
>>>  ))
>>>  
>>> +ifeq ($(OS),MACOSX)
>>> +gb_COMPILEROPTFLAGS := -O1
>>> +endif
>>> +
>>>  $(eval $(call gb_Library_add_exception_objects,fwk,\
>>> framework/source/accelerators/acceleratorcache \
>>> framework/source/accelerators/acceleratorconfiguration \
>>> 
>>> 
>> 
>> I'd like to propose the patch below as an alternative:
>>  * FreeBSD 10 / amd64 also has this problem.  It just depends on the
>>machine architecture and clang version.
>> 
>>  * The patch below only changes the optimization for one file, not
>>everything in this library.
>> 
>>  * Hardwiring -O1 does the wrong thing for debug builds, which want to
>>totally disable optimization so that the values of variables are not
>>optimized out.
>> 
>> Admittedly this patch is a bit ugly because gbuild doesn't currently
>> have a way to set target-specific optimization flags.  The problem is
>> that it passes $(gb_COMPILEROPTFLAGS) as a function call argument, which
>> is evaluated globally and not in a target-specific context.  This should
>> be fixable.
>> 
>> What does 'cc --version' report on the Mac for the different releases
>> that work / don't work properly?  I'd like to bring $(CCNUMVER) to
>> gbuild so that these sorts of tweaks are only enabled for the compiler
>> versions that need it.
>> 
>> --- framework/Library_fwk.mk.orig2017-10-11 11:40:20 UTC
>> +++ framework/Library_fwk.mk
>> @@ -186,4 +186,11 @@ $(eval $(call gb_Library_add_exception_objects,fwk,\
>>  framework/source/xml/imagesdocumenthandler \
>>  ))
>>  
>> +# i126622 - Base 4.1.2 does not open Tables and Queries in Mac OSX
>> +# Also affects FreeBSD 10.3 with clang 3.4.1.
>> +# Appears to be a clang optimization bug in versions less than 3.8.0
>> +ifeq ($(COM)$(CPUNAME),CLANGX86_64)
>> +$(call gb_CxxObject_get_target,framework/source/loadenv/loadenv):   
>> CXXFLAGS := $(gb_LinkTarget_CXXFLAGS) $(gb_LinkTarget_EXCEPTIONFLAGS) 
>> $(gb_COMPILERNOOPTFLAGS)
>> +endif
>> +
>>  # vim: set noet sw=4 ts=4:
> 
> This patch is for 4.1.4.  It doesn't work on trunk, but the fix there
> looks easier.  I'll post it once I have it tested.

Here's the patch for trunk.  I turned out not to be any easier, just
different.

--- framework/Library_fwk.mk.orig   2016-08-29 00:45:25 UTC
+++ framework/Library_fwk.mk
@@ -190,4 +190,11 @@ $(eval $(call gb_Library_add_exception_objects,fwk,\
framework/source/xml/imagesdocumenthandler \
 ))
 
+# i126622 - Base 4.1.2 does not open Tables and Queries in Mac OSX
+# Also affects FreeBSD 10.3 with clang 3.4.1.
+# Appears to be a clang optimization bug in versions less than 3.8.0
+ifeq ($(COM)$(CPUNAME),CLANGX86_64)
+$(call gb_CxxObject_get_target,framework/source/loadenv/loadenv):   
T_CXXFLAGS := $(gb_LinkTarget_CXXFLAGS) $(gb_LinkTarget_EXCEPTIONFLAGS) 
$(gb_COMPILERNOOPTFLAGS)
+endif
+
 # vim: set noet sw=4 ts=4:


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: another bug in base

2017-11-26 Thread Patricia Shanahan



On 11/26/2017 4:47 PM, Don Lewis wrote:

On 27 Nov, Damjan Jovanovic wrote:

I can't reproduce it here, on trunk with:
FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512
Target: x86_64-unknown-freebsd10.3
with either our built-in HSQLDB driver or SQlite over ODBC.

What version of AOO are you using? What database driver? What build
settings?


4.1.4 with the patch that I just posted.  I'm using the the built-in
HSQLDB driver.  I installed using a FreeBSD package built with the default.
I think I've also seen it on with unpatched 11.1, though it seems to be
harder to reproduce there.



Could you try it in 4.1.5-dev?

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: svn commit: r1815700 - /openoffice/trunk/main/framework/Library_fwk.mk

2017-11-26 Thread Don Lewis
On 26 Nov, Don Lewis wrote:
> On 18 Nov, j...@apache.org wrote:
>> Author: jim
>> Date: Sat Nov 18 22:24:42 2017
>> New Revision: 1815700
>> 
>> URL: http://svn.apache.org/viewvc?rev=1815700=rev
>> Log:
>> Force compilation with -O1 flag instead of -O2
>> 
>> Modified:
>> openoffice/trunk/main/framework/Library_fwk.mk
>> 
>> Modified: openoffice/trunk/main/framework/Library_fwk.mk
>> URL: 
>> http://svn.apache.org/viewvc/openoffice/trunk/main/framework/Library_fwk.mk?rev=1815700=1815699=1815700=diff
>> ==
>> --- openoffice/trunk/main/framework/Library_fwk.mk (original)
>> +++ openoffice/trunk/main/framework/Library_fwk.mk Sat Nov 18 22:24:42 2017
>> @@ -61,6 +61,10 @@ $(eval $(call gb_Library_add_linked_libs
>>  $(gb_STDLIBS) \
>>  ))
>>  
>> +ifeq ($(OS),MACOSX)
>> +gb_COMPILEROPTFLAGS := -O1
>> +endif
>> +
>>  $(eval $(call gb_Library_add_exception_objects,fwk,\
>>  framework/source/accelerators/acceleratorcache \
>>  framework/source/accelerators/acceleratorconfiguration \
>> 
>> 
> 
> I'd like to propose the patch below as an alternative:
>  * FreeBSD 10 / amd64 also has this problem.  It just depends on the
>machine architecture and clang version.
> 
>  * The patch below only changes the optimization for one file, not
>everything in this library.
> 
>  * Hardwiring -O1 does the wrong thing for debug builds, which want to
>totally disable optimization so that the values of variables are not
>optimized out.
> 
> Admittedly this patch is a bit ugly because gbuild doesn't currently
> have a way to set target-specific optimization flags.  The problem is
> that it passes $(gb_COMPILEROPTFLAGS) as a function call argument, which
> is evaluated globally and not in a target-specific context.  This should
> be fixable.
> 
> What does 'cc --version' report on the Mac for the different releases
> that work / don't work properly?  I'd like to bring $(CCNUMVER) to
> gbuild so that these sorts of tweaks are only enabled for the compiler
> versions that need it.
> 
> --- framework/Library_fwk.mk.orig 2017-10-11 11:40:20 UTC
> +++ framework/Library_fwk.mk
> @@ -186,4 +186,11 @@ $(eval $(call gb_Library_add_exception_objects,fwk,\
>   framework/source/xml/imagesdocumenthandler \
>  ))
>  
> +# i126622 - Base 4.1.2 does not open Tables and Queries in Mac OSX
> +# Also affects FreeBSD 10.3 with clang 3.4.1.
> +# Appears to be a clang optimization bug in versions less than 3.8.0
> +ifeq ($(COM)$(CPUNAME),CLANGX86_64)
> +$(call gb_CxxObject_get_target,framework/source/loadenv/loadenv):
> CXXFLAGS := $(gb_LinkTarget_CXXFLAGS) $(gb_LinkTarget_EXCEPTIONFLAGS) 
> $(gb_COMPILERNOOPTFLAGS)
> +endif
> +
>  # vim: set noet sw=4 ts=4:

This patch is for 4.1.4.  It doesn't work on trunk, but the fix there
looks easier.  I'll post it once I have it tested.


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: another bug in base

2017-11-26 Thread Don Lewis
On 27 Nov, Damjan Jovanovic wrote:
> I can't reproduce it here, on trunk with:
> FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512
> Target: x86_64-unknown-freebsd10.3
> with either our built-in HSQLDB driver or SQlite over ODBC.
> 
> What version of AOO are you using? What database driver? What build
> settings?

4.1.4 with the patch that I just posted.  I'm using the the built-in
HSQLDB driver.  I installed using a FreeBSD package built with the default.
I think I've also seen it on with unpatched 11.1, though it seems to be
harder to reproduce there.



-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: another bug in base

2017-11-26 Thread Damjan Jovanovic
I can't reproduce it here, on trunk with:
FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512
Target: x86_64-unknown-freebsd10.3
with either our built-in HSQLDB driver or SQlite over ODBC.

What version of AOO are you using? What database driver? What build
settings?

Damjan

On Mon, Nov 27, 2017 at 1:47 AM, Don Lewis  wrote:

> I'm seeing another bug in base on all versions of FreeBSD.  To
> reproduce:
>   1. Open an existing database
>   2. Select Table in the far left pane
>   3. Select a table in the lower left pane
>   4. Select Document in the lower right pane
> At that point, my mouse cursor shows that something is busy.  I am able
> to File->Exit, but nothing happens.  If I ^c the process, it drops core
> with this backtrace:
>
> #0  0x0008051f5c9f in GraphicReader::GetPreviewSize ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
> #1  0x0008051f47bf in GraphicReader::GetPreviewSize ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
> #2  0x0008051f42c0 in GraphicReader::GetPreviewSize ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
> #3  0x0008051e7e43 in ImageList::~ImageList ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
> #4  0x0008051e8b92 in ImageList::GetImage ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
> #5  0x000803aaf6e3 in SvFileInformationManager::GetFolderImage ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libsvt.so
> #6  0x000803aadd1d in SvFileInformationManager::GetFileImage ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libsvt.so
> #7  0x000805fb38e2 in SvxXShadowPreview::Paint ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libsvx.so
> #8  0x000809f23000 in component_getFactory ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libfwk.so
> #9  0x000805faf122 in SvxXShadowPreview::Paint ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libsvx.so
> #10 0x000805faedfc in SvxXShadowPreview::Paint ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libsvx.so
> #11 0x0008060c2c2a in SvxVertTextTbxCtrl::SvxVertTextTbxCtrl ()
> ---Type  to continue, or q  to quit---
>from /usr/local/openoffice-4.1.4/openoffice4/program/libsvx.so
> #12 0x0008060c2a15 in SvxVertTextTbxCtrl::SvxVertTextTbxCtrl ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libsvx.so
> #13 0x0008060c3148 in SvxVertTextTbxCtrl::SvxVertTextTbxCtrl ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libsvx.so
> #14 0x000800c2eb6a in ?? ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libsofficeapp.so
> #15 0x000800c2ef09 in ?? ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libsofficeapp.so
> #16 0x000805139ebe in VclResId ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
> #17 0x000800852da9 in osl_setErrorReporting ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libuno_sal.so.3
> #18 0x0008243bfc64 in os::Bsd::chained_handler ()
>from /usr/local/openjdk8/jre/lib/amd64/server/libjvm.so
> #19 0x0008243c2a4f in JVM_handle_bsd_signal ()
>from /usr/local/openjdk8/jre/lib/amd64/server/libjvm.so
> #20 0x0008243bfadd in signalHandler ()
>from /usr/local/openjdk8/jre/lib/amd64/server/libjvm.so
> #21 0x0008017afb37 in pthread_sigmask () from /lib/libthr.so.3
> #22 0x0008017af22c in pthread_getspecific () from /lib/libthr.so.3
> #23 
> #24 0x00080085fd11 in rtl_locale_equals ()
> ---Type  to continue, or q  to quit---
>from /usr/local/openoffice-4.1.4/openoffice4/program/libuno_sal.so.3
> #25 0x00080085fbc3 in rtl_locale_equals ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libuno_sal.so.3
> #26 0x000800864437 in rtl_uString_release ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libuno_sal.so.3
> #27 0x00081bc98c85 in ?? ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/../program/
> libpackage2.so
> #28 0x00081bcc9afb in ?? ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/../program/
> libpackage2.so
> #29 0x00081bcc70ed in ?? ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/../program/
> libpackage2.so
> #30 0x00081bcc704f in ?? ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/../program/
> libpackage2.so
> #31 0x000802140e7a in cppu::OWeakObject::release ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libuno_cppuh
> elpergcc3.so.3
> #32 0x0008051f5f24 in GraphicReader::GetPreviewSize ()
>from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
> #33 0x0008051f404e in GraphicReader::GetPreviewSize ()
> ---Type  to continue, or q  to quit---
>from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
> #34 0x00080513403a in AllSettings::LocaleSettingsChanged ()
>from 

another bug in base

2017-11-26 Thread Don Lewis
I'm seeing another bug in base on all versions of FreeBSD.  To
reproduce:
  1. Open an existing database
  2. Select Table in the far left pane
  3. Select a table in the lower left pane
  4. Select Document in the lower right pane
At that point, my mouse cursor shows that something is busy.  I am able
to File->Exit, but nothing happens.  If I ^c the process, it drops core
with this backtrace:

#0  0x0008051f5c9f in GraphicReader::GetPreviewSize ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
#1  0x0008051f47bf in GraphicReader::GetPreviewSize ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
#2  0x0008051f42c0 in GraphicReader::GetPreviewSize ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
#3  0x0008051e7e43 in ImageList::~ImageList ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
#4  0x0008051e8b92 in ImageList::GetImage ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
#5  0x000803aaf6e3 in SvFileInformationManager::GetFolderImage ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libsvt.so
#6  0x000803aadd1d in SvFileInformationManager::GetFileImage ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libsvt.so
#7  0x000805fb38e2 in SvxXShadowPreview::Paint ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libsvx.so
#8  0x000809f23000 in component_getFactory ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libfwk.so
#9  0x000805faf122 in SvxXShadowPreview::Paint ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libsvx.so
#10 0x000805faedfc in SvxXShadowPreview::Paint ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libsvx.so
#11 0x0008060c2c2a in SvxVertTextTbxCtrl::SvxVertTextTbxCtrl ()
---Type  to continue, or q  to quit---
   from /usr/local/openoffice-4.1.4/openoffice4/program/libsvx.so
#12 0x0008060c2a15 in SvxVertTextTbxCtrl::SvxVertTextTbxCtrl ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libsvx.so
#13 0x0008060c3148 in SvxVertTextTbxCtrl::SvxVertTextTbxCtrl ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libsvx.so
#14 0x000800c2eb6a in ?? ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libsofficeapp.so
#15 0x000800c2ef09 in ?? ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libsofficeapp.so
#16 0x000805139ebe in VclResId ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
#17 0x000800852da9 in osl_setErrorReporting ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libuno_sal.so.3
#18 0x0008243bfc64 in os::Bsd::chained_handler ()
   from /usr/local/openjdk8/jre/lib/amd64/server/libjvm.so
#19 0x0008243c2a4f in JVM_handle_bsd_signal ()
   from /usr/local/openjdk8/jre/lib/amd64/server/libjvm.so
#20 0x0008243bfadd in signalHandler ()
   from /usr/local/openjdk8/jre/lib/amd64/server/libjvm.so
#21 0x0008017afb37 in pthread_sigmask () from /lib/libthr.so.3
#22 0x0008017af22c in pthread_getspecific () from /lib/libthr.so.3
#23 
#24 0x00080085fd11 in rtl_locale_equals ()
---Type  to continue, or q  to quit---
   from /usr/local/openoffice-4.1.4/openoffice4/program/libuno_sal.so.3
#25 0x00080085fbc3 in rtl_locale_equals ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libuno_sal.so.3
#26 0x000800864437 in rtl_uString_release ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libuno_sal.so.3
#27 0x00081bc98c85 in ?? ()
   from 
/usr/local/openoffice-4.1.4/openoffice4/program/../program/libpackage2.so
#28 0x00081bcc9afb in ?? ()
   from 
/usr/local/openoffice-4.1.4/openoffice4/program/../program/libpackage2.so
#29 0x00081bcc70ed in ?? ()
   from 
/usr/local/openoffice-4.1.4/openoffice4/program/../program/libpackage2.so
#30 0x00081bcc704f in ?? ()
   from 
/usr/local/openoffice-4.1.4/openoffice4/program/../program/libpackage2.so
#31 0x000802140e7a in cppu::OWeakObject::release ()
   from 
/usr/local/openoffice-4.1.4/openoffice4/program/libuno_cppuhelpergcc3.so.3
#32 0x0008051f5f24 in GraphicReader::GetPreviewSize ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
#33 0x0008051f404e in GraphicReader::GetPreviewSize ()
---Type  to continue, or q  to quit---
   from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
#34 0x00080513403a in AllSettings::LocaleSettingsChanged ()
   from /usr/local/openoffice-4.1.4/openoffice4/program/libvcl.so
#35 0x000801ae5206 in __cxa_finalize () from /lib/libc.so.7
#36 0x000801a8629c in exit () from /lib/libc.so.7
#37 0x0008241a4404 in vm_direct_exit ()
   from /usr/local/openjdk8/jre/lib/amd64/server/libjvm.so
#38 0x0008245302b1 in VM_Operation::evaluate ()
   from /usr/local/openjdk8/jre/lib/amd64/server/libjvm.so
#39 0x00082452fbb7 in VMThread::evaluate_operation ()
   from /usr/local/openjdk8/jre/lib/amd64/server/libjvm.so
#40 0x00082452f614 in 

Re: svn commit: r1815700 - /openoffice/trunk/main/framework/Library_fwk.mk

2017-11-26 Thread Don Lewis
On 18 Nov, j...@apache.org wrote:
> Author: jim
> Date: Sat Nov 18 22:24:42 2017
> New Revision: 1815700
> 
> URL: http://svn.apache.org/viewvc?rev=1815700=rev
> Log:
> Force compilation with -O1 flag instead of -O2
> 
> Modified:
> openoffice/trunk/main/framework/Library_fwk.mk
> 
> Modified: openoffice/trunk/main/framework/Library_fwk.mk
> URL: 
> http://svn.apache.org/viewvc/openoffice/trunk/main/framework/Library_fwk.mk?rev=1815700=1815699=1815700=diff
> ==
> --- openoffice/trunk/main/framework/Library_fwk.mk (original)
> +++ openoffice/trunk/main/framework/Library_fwk.mk Sat Nov 18 22:24:42 2017
> @@ -61,6 +61,10 @@ $(eval $(call gb_Library_add_linked_libs
>   $(gb_STDLIBS) \
>  ))
>  
> +ifeq ($(OS),MACOSX)
> +gb_COMPILEROPTFLAGS := -O1
> +endif
> +
>  $(eval $(call gb_Library_add_exception_objects,fwk,\
>   framework/source/accelerators/acceleratorcache \
>   framework/source/accelerators/acceleratorconfiguration \
> 
> 

I'd like to propose the patch below as an alternative:
 * FreeBSD 10 / amd64 also has this problem.  It just depends on the
   machine architecture and clang version.

 * The patch below only changes the optimization for one file, not
   everything in this library.

 * Hardwiring -O1 does the wrong thing for debug builds, which want to
   totally disable optimization so that the values of variables are not
   optimized out.

Admittedly this patch is a bit ugly because gbuild doesn't currently
have a way to set target-specific optimization flags.  The problem is
that it passes $(gb_COMPILEROPTFLAGS) as a function call argument, which
is evaluated globally and not in a target-specific context.  This should
be fixable.

What does 'cc --version' report on the Mac for the different releases
that work / don't work properly?  I'd like to bring $(CCNUMVER) to
gbuild so that these sorts of tweaks are only enabled for the compiler
versions that need it.

--- framework/Library_fwk.mk.orig   2017-10-11 11:40:20 UTC
+++ framework/Library_fwk.mk
@@ -186,4 +186,11 @@ $(eval $(call gb_Library_add_exception_objects,fwk,\
framework/source/xml/imagesdocumenthandler \
 ))
 
+# i126622 - Base 4.1.2 does not open Tables and Queries in Mac OSX
+# Also affects FreeBSD 10.3 with clang 3.4.1.
+# Appears to be a clang optimization bug in versions less than 3.8.0
+ifeq ($(COM)$(CPUNAME),CLANGX86_64)
+$(call gb_CxxObject_get_target,framework/source/loadenv/loadenv):  
CXXFLAGS := $(gb_LinkTarget_CXXFLAGS) $(gb_LinkTarget_EXCEPTIONFLAGS) 
$(gb_COMPILERNOOPTFLAGS)
+endif
+
 # vim: set noet sw=4 ts=4:


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Accessibility link not working

2017-11-26 Thread Matthias Seidel
Am 26.11.2017 um 23:42 schrieb Andrea Pescetti:
> Matthias Seidel wrote:
>> Am 26.11.2017 um 18:42 schrieb Dick Groskamp:
>>> http://www.openoffice.org/ui/accessibility/index.html
>>> with the suggestions Karla made:
>>> 1. remove the link to bobby ( I checked: bobby isn't available
>>> anymore, at least not from that link)
>>>  or replace it by the one Karla suggests to http://wave.webaim.org/
>>> 2. add a link to:  http://wiht.co/guidetoaccessibility  with tips on
>>> how to make an accessible site.
>
> And who knows if these suggestions are in the interest of users or in
> the interest of Karla or her employer? We've seen many requests to
> "improve" links in the past by people who probably had something to
> gain from it. And so... (continues below)
>
>> However, I can make the suggested changes and publish them.
>
> ...so, when adding links, we should always add "rel='nofollow'" as a
> mild indication of non-endorsement. Support varies, but in general
> this will limit the possibility that the link is used just to improve
> visibility of the other site.

Good hint, I will add that for such links in the future.

>
> I've done it at http://www.openoffice.org/ui/accessibility/index.html

Thanks!

Regards, Matthias

>
> Regards,
>   Andrea.
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>




smime.p7s
Description: S/MIME Cryptographic Signature


Re: AOO 4.1.5-dev builds

2017-11-26 Thread Andrea Pescetti

On 24/11/2017 Patricia Shanahan wrote:

To answer Damjan's question "when are these 4.1.x releases going to
stop?", we need to continue with 4.1.x builds, and releases as needed,
at least until 4.2.0 development is complete.


This is correct but it misses a (probably taken for granted) detail: the 
focus is only on 4.2.0.


Future 4.1.x releases may happen only if we need to fix regressions or 
need to push a security fix. But no feature or "normal" bugfix work 
should happen on 4.1.x any longer.


If we agree on this, then we are probably all on the same page as for 
the roles of 4.1.x and 4.2.0.


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: AOO 4.2.0-dev builds

2017-11-26 Thread Andrea Pescetti

On 24/11/2017 Jim Jagielski wrote:

Question: Is CentOS 5 still our preferred version, or should we deprecate
CentOS5 for CentOS 6?


We should move to CentOS 6. I've explained it in detail at 
https://bz.apache.org/ooo/show_bug.cgi?id=127513 more than 3 months ago 
and I'll happily discuss this in a thread bearing an appropriate title.



There are some things that 4.2.0 requires requires some updated 3rd party
libs, like zip 3.0.0 or later, etc.
If I had to vote, I'd say w/ assume (and stay w/) CentOS 5 since the upgrade to
CentOS 6 will likely cause a lot of potential for regressions.


For any further 4.1.x release (if need be) I would definitely stick with 
CentOS 5; changing would not make sense. But for trunk there is no 
reason to delay the upgrade, see again my issue above.


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Accessibility link not working

2017-11-26 Thread Andrea Pescetti

Matthias Seidel wrote:

Am 26.11.2017 um 18:42 schrieb Dick Groskamp:

http://www.openoffice.org/ui/accessibility/index.html
with the suggestions Karla made:
1. remove the link to bobby ( I checked: bobby isn't available
anymore, at least not from that link)
 or replace it by the one Karla suggests to http://wave.webaim.org/
2. add a link to:  http://wiht.co/guidetoaccessibility  with tips on
how to make an accessible site.


And who knows if these suggestions are in the interest of users or in 
the interest of Karla or her employer? We've seen many requests to 
"improve" links in the past by people who probably had something to gain 
from it. And so... (continues below)



However, I can make the suggested changes and publish them.


...so, when adding links, we should always add "rel='nofollow'" as a 
mild indication of non-endorsement. Support varies, but in general this 
will limit the possibility that the link is used just to improve 
visibility of the other site.


I've done it at http://www.openoffice.org/ui/accessibility/index.html

Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Fwd: [Issue 127600] AOO 4.1.4 : Creating labels on more than One page freezes application

2017-11-26 Thread Andrea Pescetti

Patricia Shanahan wrote:

This is a slightly complicated issue, and I am not sure how to handle
the related Bugzilla issues.


Kay is right. Issues like 
https://bz.apache.org/ooo/show_bug.cgi?id=127600 are RESOLVED (i.e., we 
have committed code that fixes the issue) but not CLOSED (since we don't 
have an official release containing the fix). I've just edited the issue 
accordingly.


I think the confusion comes from the fact that people confuse AOO415 (a 
branch) with Apache OpenOffice 4.1.5 (a possible future release).



The corresponding change was checked into the 4.1.5 branch so that we
could test the hypothesis that the same bug was the root cause of
several bug reports. The problem now is what do we do with those
reports. They are fixed by a trunk-committed change. I don't think we
should mark them as duplicates because the symptoms vary so widely.


Different reports sharing the same root cause (regardless of the 
difference in symptoms) should be marked DUPLICATE, maybe with a comment 
like "Marking DUPLICATE since this has the same root cause as issue X 
and is fixed by the fix for issue X".


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: AOO 4.2.0-dev builds

2017-11-26 Thread Damjan Jovanovic
When you get that error, before clicking "OK", please attach gdb and run
"thread apply all bt", and post the output.

Damjan

On Sun, Nov 26, 2017 at 8:30 PM, Matthias Seidel  wrote:

> Thanks, I could download and install the build now.
>
> However, the bug [1] is still present for me on Ubuntu 16.04.3 (64bit).
>
> So it is not only an issue when building on Ubuntu 14.04 (like our
> buildbots do).
>
> Regards, Matthias
>
> [1] https://bz.apache.org/ooo/show_bug.cgi?id=127315
>
>
> Am 26.11.2017 um 15:03 schrieb Jim Jagielski:
> > should be fixed now.
> >
> >> On Nov 26, 2017, at 5:54 AM, Matthias Seidel <
> matthias.sei...@hamburg.de> wrote:
> >>
> >> Am 26.11.2017 um 00:09 schrieb Jim Jagielski:
> >>> I am uploading to:
> >>>
> >>>http://home.apache.org/~jim/AOO-builds/ <
> http://home.apache.org/~jim/AOO-builds/>
> >>>
> >>> 4.2.0-dev builds for Linux64 and Windows... After that will
> >>> come Linux32 and macOS (assuming it builds... I've had
> >>> issues before).
> >>>
> >>> These are based on HEAD of trunk, ~r1816311. The Linux builds
> >>> are built on CentOS 6.9.
> >> "You don't have permission to access
> >> /~jim/AOO-builds/AOO-4.2.0-dev-r1816311/de/Apache_
> OpenOffice_4.2.0_Linux_x86-64_install-deb_de.tar.gzon
> >> this server."
> >>
> >> ;-)
> >>
> >>
> >>
> >>
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> > For additional commands, e-mail: dev-h...@openoffice.apache.org
> >
> >
>
>
>


Re: AOO 4.2.0-dev builds

2017-11-26 Thread Matthias Seidel
Thanks, I could download and install the build now.

However, the bug [1] is still present for me on Ubuntu 16.04.3 (64bit).

So it is not only an issue when building on Ubuntu 14.04 (like our
buildbots do).

Regards, Matthias

[1] https://bz.apache.org/ooo/show_bug.cgi?id=127315


Am 26.11.2017 um 15:03 schrieb Jim Jagielski:
> should be fixed now.
>
>> On Nov 26, 2017, at 5:54 AM, Matthias Seidel  
>> wrote:
>>
>> Am 26.11.2017 um 00:09 schrieb Jim Jagielski:
>>> I am uploading to:
>>>
>>>http://home.apache.org/~jim/AOO-builds/ 
>>> 
>>>
>>> 4.2.0-dev builds for Linux64 and Windows... After that will
>>> come Linux32 and macOS (assuming it builds... I've had
>>> issues before).
>>>
>>> These are based on HEAD of trunk, ~r1816311. The Linux builds
>>> are built on CentOS 6.9.
>> "You don't have permission to access
>> /~jim/AOO-builds/AOO-4.2.0-dev-r1816311/de/Apache_OpenOffice_4.2.0_Linux_x86-64_install-deb_de.tar.gzon
>> this server."
>>
>> ;-)
>>
>>
>>
>>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>




smime.p7s
Description: S/MIME Cryptographic Signature


Re: Accessibility link not working

2017-11-26 Thread Matthias Seidel
Am 26.11.2017 um 19:09 schrieb Matthias Seidel:
> Hi Dick,
>
> Thank you for looking closer!
>
> CMS is a bit picky recently.
> You often have to "Force New openoffice Working Copy" to get things done...

Sorry, it is "Force New ooo-site Working Copy" for that page... ;-)

Regards, Matthias

>
> However, I can make the suggested changes and publish them.
>
> Regards, Matthias
>
>




smime.p7s
Description: S/MIME Cryptographic Signature


Re: Accessibility link not working

2017-11-26 Thread Matthias Seidel
Am 26.11.2017 um 18:42 schrieb Dick Groskamp:
> Marcus,
>
> I looked a bit deeper in this and it seems the page on spamassassin is
> a mirror of:
>
> http://www.openoffice.org/ui/accessibility/index.html
>
> So, instead of looking at
> https://eu3.spamassassin.org/ui/accessibility/index.html
>
> we should probably have to update
> http://www.openoffice.org/ui/accessibility/index.html
>
> with the suggestions Karla made:
>
> 1. remove the link to bobby ( I checked: bobby isn't available
> anymore, at least not from that link)
>
>     or replace it by the one Karla suggests to http://wave.webaim.org/
>
> 2. add a link to:  http://wiht.co/guidetoaccessibility  with tips on
> how to make an accessible site.
>
> It seems I don't have acces to the page
> http://www.openoffice.org/ui/accessibility/index.html
>
> from CMS ( or I don't know how to get there, which also may be a
> possibility :-)  )

Hi Dick,

Thank you for looking closer!

CMS is a bit picky recently.
You often have to "Force New openoffice Working Copy" to get things done...

However, I can make the suggested changes and publish them.

Regards, Matthias




smime.p7s
Description: S/MIME Cryptographic Signature


Re: Fwd: [Issue 127600] AOO 4.1.4 : Creating labels on more than One page freezes application

2017-11-26 Thread Kay Schenk
I made some notations in :
https://bz.apache.org/ooo/show_bug.cgi?id=127600

In the past, the "process" is to mark something as "fixed" on a
non-released version (typically "trunk" before a release version is
assigned) and as "confirmed/fixed" once a release is out. "4.1.5" is
acting  a stable development version and not a released version, so maybe
just some additional clarification is reporting "fixes" with this version
is needed.

On Sat, Nov 25, 2017 at 7:11 PM, Patricia Shanahan  wrote:

> This is a slightly complicated issue, and I am not sure how to handle the
> related Bugzilla issues.
>
> I have already checked into trunk, as revision 1814994, the fix for
> https://bz.apache.org/ooo/show_bug.cgi?id=127581, "Writer crashes after
> copying all content".
>
> The corresponding change was checked into the 4.1.5 branch so that we
> could test the hypothesis that the same bug was the root cause of several
> bug reports. The problem now is what do we do with those reports. They are
> fixed by a trunk-committed change. I don't think we should mark them as
> duplicates because the symptoms vary so widely.
>
>
> On 11/25/2017 6:32 PM, Kay Schenk wrote:
>
>> In the past, "fixes" to bugs like this were commented as part of a commit
>> to trunk. Looking at this bug, I don't see a commit as part of the
>> solution
>> so saying it's fixed in this context is a bit irregular. What fixed it,
>> etc. Referencing 4.1.5 is about the same as referencing a "dev" build, but
>> additional info on how/why it got fixed would be helpful. Was it. Fixed on
>> trunk and then ported to 4.1.5 or ???
>>
>> 
>> MzK
>>
>>
>> On Nov 25, 2017 05:51, "Patricia Shanahan"  wrote:
>>
>> Should bugs be being marked "FIXED" based on the 4.1.5-dev build? We have
>> not yet committed to releasing it.
>>
>>
>>  Forwarded Message 
>> Subject: [Issue 127600] AOO 4.1.4 : Creating labels on more than One page
>> freezes application
>> Date: Sat, 25 Nov 2017 13:48:42 +
>> From: bugzi...@apache.org
>> Reply-To: iss...@openoffice.apache.org
>> To: iss...@openoffice.apache.org
>>
>> https://bz.apache.org/ooo/show_bug.cgi?id=127600
>>
>> oooforum (fr)  changed:
>>
>> What|Removed |Added
>> 
>> 
>>   Resolution|--- |FIXED
>>   Status|UNCONFIRMED |RESOLVED
>>   CC||ooofo...@free.fr
>>
>> --- Comment #4 from oooforum (fr)  ---
>> According with this thread in french forum:
>> https://forum.openoffice.org/fr/forum/viewtopic.php?f=3=56272
>> Fixed with new 4.1.5 build
>>
>>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>


-- 
--
MzK

"Don't you know that it's worth
 every treasure on earth
 To be young at heart."
  -- song, "Young at Heart"


Re: Accessibility link not working

2017-11-26 Thread Dick Groskamp

Marcus,

I looked a bit deeper in this and it seems the page on spamassassin is a 
mirror of:


http://www.openoffice.org/ui/accessibility/index.html

So, instead of looking at 
https://eu3.spamassassin.org/ui/accessibility/index.html


we should probably have to update 
http://www.openoffice.org/ui/accessibility/index.html


with the suggestions Karla made:

1. remove the link to bobby ( I checked: bobby isn't available anymore, 
at least not from that link)


    or replace it by the one Karla suggests to http://wave.webaim.org/

2. add a link to:  http://wiht.co/guidetoaccessibility  with tips on how 
to make an accessible site.


It seems I don't have acces to the page 
http://www.openoffice.org/ui/accessibility/index.html


from CMS ( or I don't know how to get there, which also may be a 
possibility :-)  )


--
DiGro
___
Apache OpenOffice 4.1.4 (Dutch) and scanned with Ziggo extended security 
(F-Secure)


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: AOO 4.2.0-dev builds

2017-11-26 Thread Jim Jagielski
should be fixed now.

> On Nov 26, 2017, at 5:54 AM, Matthias Seidel  
> wrote:
> 
> Am 26.11.2017 um 00:09 schrieb Jim Jagielski:
>> I am uploading to:
>> 
>>http://home.apache.org/~jim/AOO-builds/ 
>> 
>> 
>> 4.2.0-dev builds for Linux64 and Windows... After that will
>> come Linux32 and macOS (assuming it builds... I've had
>> issues before).
>> 
>> These are based on HEAD of trunk, ~r1816311. The Linux builds
>> are built on CentOS 6.9.
> 
> "You don't have permission to access
> /~jim/AOO-builds/AOO-4.2.0-dev-r1816311/de/Apache_OpenOffice_4.2.0_Linux_x86-64_install-deb_de.tar.gzon
> this server."
> 
> ;-)
> 
> 
> 
> 


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: AOO 4.2.0-dev builds

2017-11-26 Thread Matthias Seidel
Am 26.11.2017 um 00:09 schrieb Jim Jagielski:
> I am uploading to:
>
> http://home.apache.org/~jim/AOO-builds/ 
> 
>
> 4.2.0-dev builds for Linux64 and Windows... After that will
> come Linux32 and macOS (assuming it builds... I've had
> issues before).
>
> These are based on HEAD of trunk, ~r1816311. The Linux builds
> are built on CentOS 6.9.

"You don't have permission to access
/~jim/AOO-builds/AOO-4.2.0-dev-r1816311/de/Apache_OpenOffice_4.2.0_Linux_x86-64_install-deb_de.tar.gzon
this server."

;-)






smime.p7s
Description: S/MIME Cryptographic Signature


Genereller Stand bei XLST-Filtern in OO?

2017-11-26 Thread Jörg Schmidt
Hallo,

da seit einiger Zeit hier auch richtige Entwickler auf der de-dev aktiv sind, 
will ich Folgendes hier fragen ehe ich die internationale dev-Liste bemühe, 
denn ich brauche eher nur eine allgemeine Einschätzung.

Im Forumsthread:
http://de.openoffice.info/viewtopic.php?f=2=68719

geht es seit einigen Tagen um XML-Import und dabei u.a, auch um XLST-Filter. 
Ich habe mich deswegen selbst damit befasst und meine Erkenntnis ist derzeitig 
das sich in OO beginnend ab Version 3.3.0 bis Version 4.1.5(dev) keine eigenen 
Filter-Einstellungen unter Extras-XML-Filtereinstellungen festlegen lassen, hat 
man eine, eigentlich richtige Einstellung, eingetragen und versucht danach das 
Öffnen einer XML-Datei mit dieser Einstellung kommt die Fehlermeldung 
E/A-Fehler.

Ein Beispiel (XLST und passende XML-Datei) zum Testen ist hier:
http://de.openoffice.info/viewtopic.php?f=2=68719=15#p272465

oder hier:
https://forum.openoffice.org/en/forum/viewtopic.php?f=9=23540#p107321


aber ich habe inzwischen viele weitere Einzelbeispiele durchgeführt die alle in 
LO (getestet mit verschiedenen 5.x Version) funktionieren und in OOo/AOO nicht. 
(laut Internet scheint es so zu sein das die Dinge in OOo 3.2.0 noch 
funktionierten).
Ich denke nicht das es hier nur um ein Detail geht, sondern mir scheint das 
Problem generellener Natur.


Kann jemand einschätzen wie diesbezüglich der Stand ist?



Gruß
Jörg

btw:
ich hatte mich wegen obiger Probleme auch mit der Möglichkeit beschäftigt das 
über Makro-Programmierung zu lösen. Dafür gibt es im Dokument von Pitonyak 
(siehe z.B. unter https://www.uni-due.de/~abi070/ooo.html) relativ viel 
Material (siehe Kapitel 15.12), aber ich kam für die spezielle XML-Datei des 
obigen Threads trotzdem zu keiner Lösung. Keine Ahnung ob ich nur zu dumm bin 
oder ob es Probleme bzgl. der API gibt.
Diverse XML-Werkzeuge von Drittanbietern reagieren ziemlich unterschiedlich 
tolerant auf nicht ganz 'standardkonforme' XML-Dateien, vielleicht zickt OO 
diesbezüglich auch etwas.







-
To unsubscribe, e-mail: dev-de-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-de-h...@openoffice.apache.org