Re: [openoffice] branch trunk updated: Huge updates to macOS UNO bridges, based on FreeBSD and Linux.

2020-12-01 Thread Jim Jagielski



> On Dec 1, 2020, at 6:16 PM, Don Lewis  wrote:
> 
> On  1 Dec, j...@apache.org wrote:
>> This is an automated email from the ASF dual-hosted git repository.
>> 
>> jim pushed a commit to branch trunk
>> in repository https://gitbox.apache.org/repos/asf/openoffice.git
>> 
>> 
>> The following commit(s) were added to refs/heads/trunk by this push:
>> new d73dd1d  Huge updates to macOS UNO bridges, based on FreeBSD and 
>> Linux.
>> d73dd1d is described below
>> 
>> commit d73dd1d32e12ca3b96b7bbfff854b742992ff915
>> Author: Jim Jagielski 
>> AuthorDate: Tue Dec 1 16:59:54 2020 -0500
>> 
>>Huge updates to macOS UNO bridges, based on FreeBSD and Linux.
>> 
> 
>> diff --git a/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx 
>> b/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx
>> index 7902bd9..bfe18db 100644
>> --- a/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx
>> +++ b/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx
>> @@ -187,7 +187,7 @@ type_info * RTTI::getRTTI( 
>> typelib_CompoundTypeDescription *pTypeDescr ) SAL_THR
>> type_info * base_rtti = getRTTI(
>> (typelib_CompoundTypeDescription 
>> *)pTypeDescr->pBaseTypeDescription );
>> rtti = new __si_class_type_info(
>> -strdup( rttiName ), static_cast<__class_type_info 
>> *>(base_rtti) );
>> +strdup( rttiName ), (__class_type_info *)base_rtti 
>> );
>> }
>> else
>> {
> 
> What is the reason for this change?  static_cast is the more correct C++
> way as opposed to a C-style cast.
> 

Part of a merge from the code in the FreeBSD and Linux files...
-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: [openoffice] branch trunk updated: Huge updates to macOS UNO bridges, based on FreeBSD and Linux.

2020-12-01 Thread Don Lewis
On  1 Dec, j...@apache.org wrote:
> This is an automated email from the ASF dual-hosted git repository.
> 
> jim pushed a commit to branch trunk
> in repository https://gitbox.apache.org/repos/asf/openoffice.git
> 
> 
> The following commit(s) were added to refs/heads/trunk by this push:
>  new d73dd1d  Huge updates to macOS UNO bridges, based on FreeBSD and 
> Linux.
> d73dd1d is described below
> 
> commit d73dd1d32e12ca3b96b7bbfff854b742992ff915
> Author: Jim Jagielski 
> AuthorDate: Tue Dec 1 16:59:54 2020 -0500
> 
> Huge updates to macOS UNO bridges, based on FreeBSD and Linux.
> 
 
> diff --git a/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx 
> b/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx
> index 7902bd9..bfe18db 100644
> --- a/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx
> +++ b/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx
> @@ -187,7 +187,7 @@ type_info * RTTI::getRTTI( 
> typelib_CompoundTypeDescription *pTypeDescr ) SAL_THR
>  type_info * base_rtti = getRTTI(
>  (typelib_CompoundTypeDescription 
> *)pTypeDescr->pBaseTypeDescription );
>  rtti = new __si_class_type_info(
> -strdup( rttiName ), static_cast<__class_type_info 
> *>(base_rtti) );
> +strdup( rttiName ), (__class_type_info *)base_rtti );
>  }
>  else
>  {

What is the reason for this change?  static_cast is the more correct C++
way as opposed to a C-style cast.


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



Re: Question re Chromebook

2020-12-01 Thread Peter Kovacs
Latest version works. Here is the guide how to do this:
https://youtu.be/MJUUUp3ufN8

Am 1. Dezember 2020 19:52:08 MEZ schrieb Mel Earley <4308w...@gmail.com>:
>What versions of OpenOffice will work on a Chromebook OS
>Mel
>Halifax
>Canada


Question re Chromebook

2020-12-01 Thread Mel Earley
What versions of OpenOffice will work on a Chromebook OS
Mel
Halifax
Canada


Re: [openoffice] branch AOO42X updated: Upgrade to APR(*) 1.6.x and work around Xcode12 over-agressive clang warning/errors

2020-12-01 Thread Jim Jagielski



> On Dec 1, 2020, at 11:05 AM, Matthias Seidel  
> wrote:
> 
> Hi Jim,
> 
> Am 01.12.20 um 16:40 schrieb Jim Jagielski:
>> As can be seen below, I've upgraded 4.2.x and later to use more recent 
>> versions of apr/apr-util. This was mostly done since the latest Xcode messes 
>> up w/ APR's semi-hacked configure and causes issues with finding sizeof 
>> various types as well as libraries. I figured as long as I was fixing that, 
>> might as well upgrade the versions as well.
> 
> Makes sense! Thanks for that.
> 
> I forced a build from the Windows buildbot.

Thanks! I am hoping that the older patch files for Windows still make sense and 
apply to the newer versions.

> Additionally I uploaded the two files to oooextras on SourceForge.
> 
> Matthias
> 
>> 
>>> Begin forwarded message:
>>> 
>>> From: j...@apache.org
>>> Subject: [openoffice] branch AOO42X updated: Upgrade to APR(*) 1.6.x and 
>>> work around Xcode12 over-agressive clang warning/errors
>>> Date: December 1, 2020 at 10:31:44 AM EST
>>> To: "comm...@openoffice.apache.org" 
>>> Reply-To: dev@openoffice.apache.org
>>> 
>>> This is an automated email from the ASF dual-hosted git repository.
>>> 
>>> jim pushed a commit to branch AOO42X
>>> in repository https://gitbox.apache.org/repos/asf/openoffice.git
>>> 
>>> 
>>> The following commit(s) were added to refs/heads/AOO42X by this push:
>>>new 316716d  Upgrade to APR(*) 1.6.x and work around Xcode12 
>>> over-agressive clang warning/errors
>>> 316716d is described below
>>> 
>>> commit 316716d6ea48f0328e1769bc4cf3de607b1c1491
>>> Author: Jim Jagielski 
>>> AuthorDate: Tue Dec 1 10:30:02 2020 -0500
>>> 
>>>   Upgrade to APR(*) 1.6.x and work around Xcode12 over-agressive clang 
>>> warning/errors
>>> 
>>>   (cherry picked from commit b1dc36c01638ed0d08b23f216ee4fa310c82a82b)
>> 
> 


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



Re: Fwd: [openoffice] branch AOO42X updated: Upgrade to APR(*) 1.6.x and work around Xcode12 over-agressive clang warning/errors

2020-12-01 Thread Matthias Seidel
Hi Jim,

Am 01.12.20 um 16:40 schrieb Jim Jagielski:
> As can be seen below, I've upgraded 4.2.x and later to use more recent 
> versions of apr/apr-util. This was mostly done since the latest Xcode messes 
> up w/ APR's semi-hacked configure and causes issues with finding sizeof 
> various types as well as libraries. I figured as long as I was fixing that, 
> might as well upgrade the versions as well.

Makes sense! Thanks for that.

I forced a build from the Windows buildbot.
Additionally I uploaded the two files to oooextras on SourceForge.

Matthias

>
>> Begin forwarded message:
>>
>> From: j...@apache.org
>> Subject: [openoffice] branch AOO42X updated: Upgrade to APR(*) 1.6.x and 
>> work around Xcode12 over-agressive clang warning/errors
>> Date: December 1, 2020 at 10:31:44 AM EST
>> To: "comm...@openoffice.apache.org" 
>> Reply-To: dev@openoffice.apache.org
>>
>> This is an automated email from the ASF dual-hosted git repository.
>>
>> jim pushed a commit to branch AOO42X
>> in repository https://gitbox.apache.org/repos/asf/openoffice.git
>>
>>
>> The following commit(s) were added to refs/heads/AOO42X by this push:
>> new 316716d  Upgrade to APR(*) 1.6.x and work around Xcode12 
>> over-agressive clang warning/errors
>> 316716d is described below
>>
>> commit 316716d6ea48f0328e1769bc4cf3de607b1c1491
>> Author: Jim Jagielski 
>> AuthorDate: Tue Dec 1 10:30:02 2020 -0500
>>
>>Upgrade to APR(*) 1.6.x and work around Xcode12 over-agressive clang 
>> warning/errors
>>
>>(cherry picked from commit b1dc36c01638ed0d08b23f216ee4fa310c82a82b)
>



smime.p7s
Description: S/MIME Cryptographic Signature


Fwd: [openoffice] branch AOO42X updated: Upgrade to APR(*) 1.6.x and work around Xcode12 over-agressive clang warning/errors

2020-12-01 Thread Jim Jagielski
As can be seen below, I've upgraded 4.2.x and later to use more recent versions 
of apr/apr-util. This was mostly done since the latest Xcode messes up w/ APR's 
semi-hacked configure and causes issues with finding sizeof various types as 
well as libraries. I figured as long as I was fixing that, might as well 
upgrade the versions as well.

> Begin forwarded message:
> 
> From: j...@apache.org
> Subject: [openoffice] branch AOO42X updated: Upgrade to APR(*) 1.6.x and work 
> around Xcode12 over-agressive clang warning/errors
> Date: December 1, 2020 at 10:31:44 AM EST
> To: "comm...@openoffice.apache.org" 
> Reply-To: dev@openoffice.apache.org
> 
> This is an automated email from the ASF dual-hosted git repository.
> 
> jim pushed a commit to branch AOO42X
> in repository https://gitbox.apache.org/repos/asf/openoffice.git
> 
> 
> The following commit(s) were added to refs/heads/AOO42X by this push:
> new 316716d  Upgrade to APR(*) 1.6.x and work around Xcode12 
> over-agressive clang warning/errors
> 316716d is described below
> 
> commit 316716d6ea48f0328e1769bc4cf3de607b1c1491
> Author: Jim Jagielski 
> AuthorDate: Tue Dec 1 10:30:02 2020 -0500
> 
>Upgrade to APR(*) 1.6.x and work around Xcode12 over-agressive clang 
> warning/errors
> 
>(cherry picked from commit b1dc36c01638ed0d08b23f216ee4fa310c82a82b)



Re: English flyer

2020-12-01 Thread Matthias Seidel
Hi Peter,

Am 01.12.20 um 14:24 schrieb Peter Kovacs:
> We have a slack channel...

Yes, but that is almost a "secret" and not many are using it...

However, I already invited Emilie.

Regards,

   Matthias

>
> Am 1. Dezember 2020 12:03:20 MEZ schrieb Emilie Drd :
>> Ok thanks, I’ll set up a Slack then and share it with you guys (and the
>> flyer) 
>>
>> Emilie
>> From: Pedro Lino
>> Sent: mardi 1 décembre 2020 11:57
>> To: dev@openoffice.apache.org
>> Subject: Re: English flyer
>>
>> Hi Emilie
>>
>> I don't know Slack but it is certainly better than this mailing list
>> for sharing documents...
>> This list strips attachments so when you say "here it is" we see
>> nothing :)
>>
>> Please upload it somewhere (Slack?) and share the link
>>
>> Regards,
>> Pedro
>>
>>
>>> On 12/01/2020 9:58 AM Emilie Drd  wrote:
>>>
>>>
>>>
>>> Hi everyone!
>>>
>>>
>>> I had less time than I thought to do the modifications and
>> translate the flyer, but here it is!
>>> Feel free to tell me what to modify.
>>>
>>>
>>> Kind regards,
>>>
>>> Emilie Durand
>>>
>>>
>>> P.S. : Wouldn’t it be more practical to use Slack to exchange on
>> the updates? There could be channels for the different projects you
>> guys are working on and it would be less distracting, and easier to
>> find the messages and share documents/code etc.
>>>
>>>
>> -
>>> 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: English flyer

2020-12-01 Thread Peter Kovacs
We have a slack channel...

Am 1. Dezember 2020 12:03:20 MEZ schrieb Emilie Drd :
>Ok thanks, I’ll set up a Slack then and share it with you guys (and the
>flyer) 
>
>Emilie
>From: Pedro Lino
>Sent: mardi 1 décembre 2020 11:57
>To: dev@openoffice.apache.org
>Subject: Re: English flyer
>
>Hi Emilie
>
>I don't know Slack but it is certainly better than this mailing list
>for sharing documents...
>This list strips attachments so when you say "here it is" we see
>nothing :)
>
>Please upload it somewhere (Slack?) and share the link
>
>Regards,
>Pedro
>
>
>> On 12/01/2020 9:58 AM Emilie Drd  wrote:
>>
>>
>>
>> Hi everyone!
>>
>>
>> I had less time than I thought to do the modifications and
>translate the flyer, but here it is!
>>
>> Feel free to tell me what to modify.
>>
>>
>> Kind regards,
>>
>> Emilie Durand
>>
>>
>> P.S. : Wouldn’t it be more practical to use Slack to exchange on
>the updates? There could be channels for the different projects you
>guys are working on and it would be less distracting, and easier to
>find the messages and share documents/code etc.
>>
>>
>>
>-
>> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>> For additional commands, e-mail: dev-h...@openoffice.apache.org
>>


RE: English flyer

2020-12-01 Thread Emilie Drd
Ok thanks, I’ll set up a Slack then and share it with you guys (and the flyer) 

Emilie
From: Pedro Lino
Sent: mardi 1 décembre 2020 11:57
To: dev@openoffice.apache.org
Subject: Re: English flyer

Hi Emilie

I don't know Slack but it is certainly better than this mailing list for 
sharing documents...
This list strips attachments so when you say "here it is" we see nothing :)

Please upload it somewhere (Slack?) and share the link

Regards,
Pedro


> On 12/01/2020 9:58 AM Emilie Drd  wrote:
>
>
>
> Hi everyone!
>
>
> I had less time than I thought to do the modifications and translate the 
> flyer, but here it is!
>
> Feel free to tell me what to modify.
>
>
> Kind regards,
>
> Emilie Durand
>
>
> P.S. : Wouldn’t it be more practical to use Slack to exchange on the 
> updates? There could be channels for the different projects you guys are 
> working on and it would be less distracting, and easier to find the messages 
> and share documents/code etc.
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>



Re: English flyer

2020-12-01 Thread Pedro Lino
Hi Emilie

I don't know Slack but it is certainly better than this mailing list for 
sharing documents...
This list strips attachments so when you say "here it is" we see nothing :)

Please upload it somewhere (Slack?) and share the link

Regards,
Pedro


> On 12/01/2020 9:58 AM Emilie Drd  wrote:
> 
> 
> 
> Hi everyone!
> 
> 
> I had less time than I thought to do the modifications and translate the 
> flyer, but here it is!
> 
> Feel free to tell me what to modify.
> 
> 
> Kind regards,
> 
> Emilie Durand
> 
> 
> P.S. : Wouldn’t it be more practical to use Slack to exchange on the 
> updates? There could be channels for the different projects you guys are 
> working on and it would be less distracting, and easier to find the messages 
> and share documents/code etc.
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
> 


English flyer

2020-12-01 Thread Emilie Drd
Hi everyone!

I had less time than I thought to do the modifications and translate the flyer, 
but here it is!
Feel free to tell me what to modify.

Kind regards,
Emilie Durand

P.S. : Wouldn’t it be more practical to use Slack to exchange on the updates? 
There could be channels for the different projects you guys are working on and 
it would be less distracting, and easier to find the messages and share 
documents/code etc.

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