Re: [Libreoffice] ./download doesn't work behind a proxy

2010-11-03 Thread Marc-Oliver Straub
Sorry, found the solution myself. ./autogen.sh --without-git Then ./download uses http. Would be nice to see this on the developers page at http://www.documentfoundation.org/develop/ Thanks, Oli On 11/03/10 08:03, Marc-Oliver Straub wrote: I'm trying to build LibreOffice, but already have

Re: [Libreoffice] [PATCH] sc: fix parenthesis mixup

2010-11-03 Thread surensp...@gmail.com
Hey Sebastian, I did the push in rawbuild directory and not in build directory. This specific file within clone even was not in git repo. Not sure how that is possible though. Thanks, ~Suren On Wed, Nov 3, 2010 at 2:15 PM, Sebastian Spaeth sebast...@sspaeth.de wrote: On Wed, 3 Nov 2010

Re: [Libreoffice] ./download doesn't work behind a proxy

2010-11-03 Thread Thorsten Behrens
Marc-Oliver Straub wrote: Setting http_proxy doesn't help (since git:// is used and not http://). Hi Marc-Oliver, sorry, freedesktop git is only available via native git protocol - if there's no way to forward that port on your proxy, please either use the source tarballs, or clone the repos

Re: [Libreoffice] Mac OS X Build issues.

2010-11-03 Thread Thorsten Behrens
Joseph Powers wrote: Not sure if this is the correct patch Looks good, works for me - pushed. Many thanks! -- Thorsten pgpqYWy9gIFCd.pgp Description: PGP signature ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org

[Libreoffice] Pretty up your name in the wiki stats

2010-11-03 Thread Sebastian Spaeth
http://libreoffice.org/credits.html contains contributions to the TDF wiki. However it is only able to retrieve the wiki usernames. If you want to see you own full name there, you can enter it on this page: http://wiki.documentfoundation.org/Development/Developers All that is being used now is

Re: [Libreoffice] easyhacks - simplify download of Windows dependencies

2010-11-03 Thread Noel Power
Hi Peter, On Tue, 2010-11-02 at 21:19 -0300, Peter Burtt wrote: The cygwin SETUP.EXE accepts a comma-delimited list of packages to install. To install cygwin and the packages listed as prerequisites on

Re: [Libreoffice] Some hints about git please...

2010-11-03 Thread John LeMoyne Castle
I'am very new to git (only have used sometimes 'git clone' before) , and I don't get it very well... I am brand new to git and I felt confused alot until I found this -- http://wiki.documentfoundation.org/Development#Using_Git_for_LibreOffice_development -- this ref explains many things

Re: [Libreoffice] Patch to fix bug in exporting relative hyperlinks to MS Word 97/2000/XP

2010-11-03 Thread Cédric Bosdonnat
Hi Knut, On Fri, 2010-10-29 at 23:30 +0200, Knut Olav Bøhmer wrote: I would be very happy if someone could take a look at the attached patch, and maybe improve it. First I couldn't reproduce the original problem neither with Word 97 nor Word 2007+. It seems that Word perfectly handles the / as

Re: [Libreoffice] [PUSHED] EasyHack RTL_CONSTASCII_USTRINGPARAM in sc

2010-11-03 Thread Noel Power
On Tue, 2010-11-02 at 10:34 -0400, Kohei Yoshida wrote: On Tue, 2010-11-02 at 09:45 +, Caolán McNamara wrote: On Mon, 2010-11-01 at 22:27 -0400, Kohei Yoshida wrote: Hello Joost, Thanks for the patch. Just pushed to the master branch. :-) Nothing to do with the patch, but I

Re: [Libreoffice] [PATCH] [PUSHED] bootstrap/set_soenv: remove unused variables

2010-11-03 Thread Cédric Bosdonnat
On Tue, 2010-11-02 at 09:40 +0100, Sebastian Spaeth wrote: The variables $unsetenv, $setenv, $unset, $set $D, $answer were unused in this script and have been removed. Thanks for the patch, I just pushed it. -- Cedric ___ LibreOffice mailing list

Re: [Libreoffice] [PATCH] [PUSHED] bootstrap/soenv: remove tcsh version of LinuxX86-64Env.Set

2010-11-03 Thread Cédric Bosdonnat
On Tue, 2010-11-02 at 09:38 +0100, Sebastian Spaeth wrote: Previously we would have been writing out LinuxX86-64Env.Set and LinuxX86-64Env.Set.sh which made my autocompletion useless. Simplify the set_soenv.in to actually only produce 1 version which makes us require bash as interactive build

[Libreoffice] Styles and Formatting

2010-11-03 Thread Gert Faller
Hi, Do we want the Hierarchical view to be the default one for all apps? Should we enhance the filters values to make it configurable for the different apps? Well, in fact, there were some changes remaining from my previous attempts. Maybe something simpler is enough ? Regards

Re: [Libreoffice] Bulding problem, Linux 32 bit, Ubuntu 10.10

2010-11-03 Thread surensp...@gmail.com
Hi , I had a similar problem in my ubuntu as well. A little debugging into install log showed me that there were issues with /usr/lib/libdb-4.7.so in ubuntu 10.10. I compared the files in rawbuild/solver/330/unx*/lib/libdb-4.7. They were different. Thats why everything else seemed to work but for

Re: [Libreoffice] ./download doesn't work behind a proxy

2010-11-03 Thread Michael Meeks
Hi Marc, On Wed, 2010-11-03 at 10:06 +0100, Marc-Oliver Straub wrote: ./autogen.sh --without-git Then ./download uses http. Would be nice to see this on the developers page at http://www.documentfoundation.org/develop/ Ah - indeed; but this will build quite an old version, that

Re: [Libreoffice] Some hints about git please...

2010-11-03 Thread Sebastian Spaeth
On Tue, 02 Nov 2010 23:02:56 +0100, Gert Faller gertfal...@aliceadsl.fr wrote: bin/g (and it is in the bin dir of your root checkout) basically iterates over all repositories in clone and performs an operation in each. So rather than updating each repo, you would do bin/g pull do update all

Re: [Libreoffice] regression tests - for word count ...

2010-11-03 Thread Michael Meeks
Hi LeMoyne, On Mon, 2010-11-01 at 23:35 -0700, LeMoyne wrote: [PATCH] Fixes char overcount when selection ends in middle of word Patch in sw changes only one object: sw/source/core/txtedt.cxx .. The paragraph count is held on the same DocStat record as the word and char counts and is

Re: [Libreoffice] Some hints about git please...

2010-11-03 Thread Gert Faller
Selon Sebastian Spaeth sebast...@sspaeth.de: If you work in rawbuild and make from there, you can directly go into the directory, make changes, git add files that you have changed, git commit, and extract the patch with git format-patch HEAD^1. Hope that helps, I am sure there are even more

Re: [Libreoffice] regression tests - for word count ...

2010-11-03 Thread John LeMoyne Castle
-Original Message- From: Michael Meeks [via Document Foundation Mail Archive] [ml-node +1834110-443277665-232...@n3.nabble.com] Sent: 11/3/2010 4:19:16 AM ... Wrt. re-doing the dialog layout - can you hold off on that - Ricardo is working now on some awesome new VCL layout

Re: [Libreoffice] ./download doesn't work behind a proxy

2010-11-03 Thread Florian Effenberger
Hi, Michael Meeks wrote on 2010-11-03 12.15: I guess the real question is: why is there no http git support from freedesktop.org; and can we change that - let me poke someone about it. In extremis, we can easily have a cron job on some other machine, that will just pull the

Re: [Libreoffice] Help concerning code style and documentation

2010-11-03 Thread Kohei Yoshida
Hi Regina, On Wed, 2010-11-03 at 10:35 +0100, Regina Henschel wrote: Hi Kohei, Kohei Yoshida schrieb: Hi Regina, On Sun, 2010-10-24 at 18:13 +0200, Regina Henschel wrote: Hi all, I'm currently working on LINEST and have attached a draft to issue

Re: [Libreoffice] [PATCH] Another Qt/gtk configure patch

2010-11-03 Thread Lubos Lunak
On Tuesday 02 of November 2010, Wols Lists wrote: Is KDE support fundamentally different from gtk support? Bearing in mind that OOo seems to treat them as equivalent, but KDE is a DE while gtk is a toolkit? No, it's the same, one enables support for integration with GNOME stack, the other

Re: [Libreoffice] LibreOffice and Java

2010-11-03 Thread Tor Lillqvist
What about the existing Java extensions? Quite a lot of people are using Java to either writer extensions or use UNO Java bridge from an external application. How hard would it be to do AOT compilation of the Java bytecode of such extensions (and the needed JRE and OOo/LO glue classes), and

[Libreoffice] Some hints about git please...

2010-11-03 Thread Gert Faller
Hi, with http://wiki.documentfoundation.org/Development/How_to_build;, linux part, all is ok. Very complete howto. Thanks. Regards. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org

Re: [Libreoffice] PATCH: Add Tower labels

2010-11-03 Thread Caolán McNamara
On Wed, 2010-11-03 at 13:50 +0200, Dwayne Bailey wrote: We made this patch for Translate.org.za builds of OpenOffice.org. Tower is a label manufacturer in South Africa. The bug: http://www.openoffice.org/issues/show_bug.cgi?id=113803 The patch:

Re: [Libreoffice] LibreOffice and Java

2010-11-03 Thread Caolán McNamara
On Tue, 2010-11-02 at 14:30 +0100, Cedric Bosdonnat wrote: On Tue, 2010-11-02 at 12:47 +, Michael Meeks wrote: Quite; cf. such uncertainty - it probably makes considerable sense to look into a migration strategy from Java to (insert anything else). Some candidates might be python

[Libreoffice] [PUSHED] Re: PATCH: Add Tower labels

2010-11-03 Thread Caolán McNamara
On Wed, 2010-11-03 at 14:04 +, Caolán McNamara wrote: Done, for master, do we want this for 3.3 as well ? remail with PUSHED to make this thread easier to skip by subject :-) C. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org

[Libreoffice] [PUSHED] Re: [PATCH] Pretty print the configure help options with AS_HELP_STRING

2010-11-03 Thread Caolán McNamara
On Wed, 2010-11-03 at 14:59 +0200, Niko Rönkkö wrote: Use AS_HELP_STRING autoconf macro when suitable. Line feeds aren't possibles with AS_HELP_STRING. Alignment of configure --help looks right to me, pushed, thanks :-). Could you edit the wiki and move that easy hack to the completed page ?

Re: [Libreoffice] build failure in dbaccess/qa/complex/dbaccess

2010-11-03 Thread Caolán McNamara
On Mon, 2010-11-01 at 22:53 +0100, Thomas Klausner wrote: /usr/pkg/java/openjdk7/bin/javac -source 1.5 -target 1.5 -classpath

Re: [Libreoffice] New credits page up (and linked from TDF)

2010-11-03 Thread Nadav Vinik
On Tue, Nov 2, 2010 at 3:52 PM, Cedric Bosdonnat cedric.bosdonnat@free.fr wrote: On Tue, 2010-11-02 at 14:26 +0100, Sebastian Spaeth wrote: New iteration of http://libreoffice.org/credits.html in case you want to show your name on that page to your grandmothers. Anything else that you

Re: [Libreoffice] LibreOffice and Java

2010-11-03 Thread Tor Lillqvist
Rather than clumsily trying to convert Java-.net/mono I would rather allow to have people write in those languages in the first place. Sure. I was dreaming (having nightmares?) of converting compiled Java class files to .NET assemblies... The source code for them would thus still continue to

[Libreoffice] Warning free sc module

2010-11-03 Thread René Kjellerup
Hi I looked in to the warnings in 'sc' and changed a few things around to satisfy the compiler ^_^ I haven't said so yet, but I'll let you choose the licensing best fitted for all my contributions. (general guideline: the same as the code I've modified ;)) comments are most welcome. René --

[Libreoffice] [PATCH] Easy Hacks : Use RTL_CONSTASCII_USTRINGPARAM macro 8

2010-11-03 Thread Gert Faller
Hi, this may be the last for module 'writer'. Remains 'sw/source/ui/vba/vbacheckbox.cxx:78'. When I google I find : #define ECMA_FORMCHECKBOX_CHECKED checked in '/xmloff/inc/xmloff/ecmaflds.hxx' but don't find it in clone. So I let that one. Regards. createFromAscii_11.patch Description:

[Libreoffice] [PATCH] Fix a couple of simple compiler warnings

2010-11-03 Thread Nigel Hawkins
Hi, A couple of simple one-line patches to remove a couple of compiler warnings (format not a string literal and no format arguments). Nigel. From 3aada43619b93fcd7897fcdec80bb6c35dde7cef Mon Sep 17 00:00:00 2001 From: Nigel Hawkins n.hawk...@gmx.com Date: Wed, 3 Nov 2010 15:41:00 + Subject:

[Libreoffice] [PUSHED] Warning free sc module

2010-11-03 Thread Kohei Yoshida
On Wed, 2010-11-03 at 17:12 +0100, René Kjellerup wrote: Hi I looked in to the warnings in 'sc' and changed a few things around to satisfy the compiler ^_^ Looks good! Pushed to master. Thanks much. Kohei -- Kohei Yoshida, LibreOffice hacker, Calc kyosh...@novell.com

Re: [Libreoffice] German Translations in Writer module

2010-11-03 Thread Miklos Vajna
On Wed, Nov 03, 2010 at 08:48:02PM +0530, surensp...@gmail.com surensp...@gmail.com wrote: Thanks to spaetz for helping out with the quirky german comments for which google translator did not work for. --- sw/inc/cmdid.h | 1105 +--- 1

Re: [Libreoffice] ./download doesn't work behind a proxy

2010-11-03 Thread Miklos Vajna
On Wed, Nov 03, 2010 at 02:10:14PM +0100, Florian Effenberger flo...@documentfoundation.org wrote: I'm no git expert, but if someone comes up with a script, that should be no problem. We can mid-term also host our own git, but for the moment, I'd stick with FD. Mirroring git repos is easy.

[Libreoffice] Styles and Formatting

2010-11-03 Thread Gert Faller
Hi, I have erased the line : m_aActionTbL.SetHelpId( HID_TEMPLDLG_TOOLBOX_LEFT ); in the patch file 2. A pastecopy error... Regards. templdlg_3.patch Description: Binary data ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org

[Libreoffice] Killing kill.exe?

2010-11-03 Thread Jesús Corrius
Hi all, In sal/systools/win32/kill there's a Win32 version of the Linux kill utility. As far as I know, this version is not shipped with the final product on the Windows platform or used anywhere during the Windows build. Additionally cygwin (which is required to compile the Windows version)

Re: [Libreoffice] LibreOffice and Java

2010-11-03 Thread Jani Monoses
On 11/03/2010 04:06 PM, Caolán McNamara wrote: On Tue, 2010-11-02 at 14:30 +0100, Cedric Bosdonnat wrote: On Tue, 2010-11-02 at 12:47 +, Michael Meeks wrote: Quite; cf. such uncertainty - it probably makes considerable sense to look into a migration strategy from Java to (insert

Re: [Libreoffice] Styles and Formatting

2010-11-03 Thread Cor Nouws
Gert Faller wrote (29-10-10 14:55) I've been working on the Styles and Formatting window does not remember hierarchical view bug. It seems I got it. I've noticed that, the window does not remember the Frame Styles but reverts to Paragraph Styles. Is that an another bug or a feature ? (The same

[Libreoffice] FOO_GTK error when running autogen.sh

2010-11-03 Thread Terrell Prude' Jr.
OK, folks, I've got another issue, this time when running autogen.sh. Here's the command I'm running (OS is CentOS 5). ./autogen.sh --with-git --with-num-cpus=3 --without-junit --disable-kde4 I get the following configure error: checking for autoconf... yes checking for flex... yes checking

Re: [Libreoffice] German Translations in Writer module

2010-11-03 Thread surensp...@gmail.com
Hi Miklos, On Wed, Nov 3, 2010 at 10:16 PM, Miklos Vajna vmik...@frugalware.org wrote: @@ -27,8 +27,8 @@   /  /** -Achtung: Ab sofort sind in

Re: [Libreoffice] LibreOffice and Java

2010-11-03 Thread Michael Meeks
On Wed, 2010-11-03 at 07:50 -0600, Tor Lillqvist wrote: Another even wilder idea would be to translate the Java bytecode to .NET bytecode for the Windows case... I suspect at this point the external pundits start screaming all at once ;-) So - I would prefer using python, or native

Re: [Libreoffice] Building on CentOS 5

2010-11-03 Thread Terrell Prude' Jr.
Caola'n McNamara wrote: On Tue, 2010-11-02 at 11:39 -0400, Terrell Prude' Jr. wrote: An error got thrown about slideshow, so I tried building just that module like the error message suggested. error: 'PFNGLXBINDTEXIMAGEEXTPROC' is not a member of 'unx' Gagh, two solution

Re: [Libreoffice] German Translations in Writer module

2010-11-03 Thread Christian Lohmaier
Hi *, On Wed, Nov 3, 2010 at 5:46 PM, Miklos Vajna vmik...@frugalware.org wrote: On Wed, Nov 03, 2010 at 08:48:02PM +0530, surensp...@gmail.com surensp...@gmail.com wrote:  /** -Achtung: Ab sofort sind in diesem File

Re: [Libreoffice] FOO_GTK error when running autogen.sh

2010-11-03 Thread Wols Lists
On 03/11/10 19:44, Terrell Prude' Jr. wrote: OK, folks, I've got another issue, this time when running autogen.sh. Here's the command I'm running (OS is CentOS 5). ./autogen.sh --with-git --with-num-cpus=3 --without-junit --disable-kde4 I get the following configure error: checking for

[Libreoffice] [PATCH] Remove dead code

2010-11-03 Thread Ricardo Moreno
Hi, First time I send code to any project :) Some dead code I found in the project, of course, LGPLv3+ / MPL will love to hunt some more... Regards Ricardo diff --git a/sd/source/ui/view/outlview.cxx b/sd/source/ui/view/outlview.cxx index 626d65b..9d92f61 100644 ---

Re: [Libreoffice] FOO_GTK error when running autogen.sh

2010-11-03 Thread Terrell Prude' Jr.
Wols Lists wrote: On 03/11/10 19:44, Terrell Prude' Jr. wrote: OK, folks, I've got another issue, this time when running autogen.sh. Here's the command I'm running (OS is CentOS 5). ./autogen.sh --with-git --with-num-cpus=3 --without-junit --disable-kde4 I get the following configure

[Libreoffice] gunzip -d is not available on every gunzip implementation

2010-11-03 Thread Robert Nagy
Hi The Subject says everything, not to mention that gunzip will always decompress, so there is no need for -d. gunzip: unknown option -- d usage: gunzip [-cfhlNnqrtVv] [-o filename] [file ...] -- diff --git a/bin/setup.in b/bin/setup.in index 6133d77..a802598 100755 --- a/bin/setup.in +++

Re: [Libreoffice] German Translations in Writer module

2010-11-03 Thread Michael Meeks
On Thu, 2010-11-04 at 01:22 +0530, surensp...@gmail.com wrote: most part of it was machine translation as I had mentioned :) Heh :-) that's no problem - a lot of it is common sense translation anyway - we swing between comments in German, and comments of staggering obviousness:

[Libreoffice] [PUSHED] Re: [PATCH] Fix a couple of simple compiler warnings

2010-11-03 Thread Caolán McNamara
On Wed, 2010-11-03 at 16:27 +, Nigel Hawkins wrote: Hi, A couple of simple one-line patches to remove a couple of compiler warnings (format not a string literal and no format arguments). All look good to me, much thanks. Pushed. c. ___

Re: [Libreoffice] German Translations in Writer module

2010-11-03 Thread Wols Lists
On 03/11/10 20:03, Christian Lohmaier wrote: Hi *, On Wed, Nov 3, 2010 at 5:46 PM, Miklos Vajna vmik...@frugalware.org wrote: On Wed, Nov 03, 2010 at 08:48:02PM +0530, surensp...@gmail.com surensp...@gmail.com wrote:

[Libreoffice] [PUSHED] Re: [PATCH] Easy Hacks : Use RTL_CONSTASCII_USTRINGPARAM macro 8

2010-11-03 Thread Caolán McNamara
On Wed, 2010-11-03 at 17:16 +0100, Gert Faller wrote: Hi, this may be the last for module 'writer'. Excellent, all pushed, thanks. Remains 'sw/source/ui/vba/vbacheckbox.cxx:78'. When I google I find : #define ECMA_FORMCHECKBOX_CHECKED checked in '/xmloff/inc/xmloff/ecmaflds.hxx' but

[Libreoffice] OpenBSD bootstrap diffs

2010-11-03 Thread Robert Nagy
Hey Attached some diffs to make LibreOffice boostrap on OpenBSD. diff --git a/configure.in b/configure.in index 52d7c8f..94c1ba8 100644 --- a/configure.in +++ b/configure.in @@ -1556,9 +1556,21 @@ case $build_os in test_cups=no test_randr=no test_freetype=yes -

[Libreoffice] Set COPYRECURSE to -R on OpenBSD too instead of -r

2010-11-03 Thread Robert Nagy
diff --git a/solenv/inc/unitools.mk b/solenv/inc/unitools.mk index 6bf0653..c6055d1 100644 --- a/solenv/inc/unitools.mk +++ b/solenv/inc/unitools.mk @@ -107,7 +107,7 @@ PERL*=perl TYPE=cat CDD=cd COPY=cp -f -.IF $(OS)==MACOSX || $(OS)==NETBSD +.IF $(OS)==MACOSX || $(OS)==NETBSD ||

[Libreoffice] Build error in desktop::Migration

2010-11-03 Thread Dave Lacy Kusters
I'm making progress on finally getting a full build, but hit another error. This one seems simple. Entering /home/dlacykusters/libre/libreoffice/build/build/libreoffice-3.2.99.2/desktop/source/migration Compiling: desktop/source/migration/migration.cxx g++ -fmessage-length=0 -c -Os

Re: [Libreoffice] Build error in desktop::Migration

2010-11-03 Thread julien
Hello, Caolan told me via IRC that the hxx has been deleted from repository and he told me about rsync which can't delete that on itself. So just delete the migration.hxx, and the desktop/unxlngi6.pro ___ LibreOffice mailing list

Re: [Libreoffice] [PATCH] Building LibreOffice in Ubuntu Maverick

2010-11-03 Thread surensp...@gmail.com
HI Michael, On Mon, Nov 1, 2010 at 5:29 PM, Michael Meeks michael.me...@novell.com wrote: On Sun, 2010-10-31 at 02:31 +0530, surensp...@gmail.com wrote: But when I try to run make dev-install again in the rawbuild directory, it could not do so because of these errors -

Re: [Libreoffice] FOO_GTK error when running autogen.sh

2010-11-03 Thread René Kjellerup
Okay a crazy question, do you have pkgconfig installed then? K.r. René Kj. On Nov 3, 2010 9:28 PM, Terrell Prudeapos; Jr. micro...@cmosnetworks.com wrote: Wols Lists wrote: On 03/11/10 19:44, Terrell Prude' Jr. wrote: OK, folks, I've got another issue, this time when running autogen.sh.

[Libreoffice] [PATCH] SAL_N_ELEMENTS for clone/sdk directory

2010-11-03 Thread julien
Hello, Here is a patch for clone/sdk (here again i think there's no more in it). (LGPLv3+ / MPL) Julien. diff --git a/odk/examples/OLE/activex/SOComWindowPeer.cpp b/odk/examples/OLE/activex/SOComWindowPeer.cpp index 0b2fabf..1065a1b 100644 --- a/odk/examples/OLE/activex/SOComWindowPeer.cpp

[Libreoffice] OpenBSD patches for ure

2010-11-03 Thread Robert Nagy
Patches for ure, neeed by OpenBSD diff --git a/cppu/source/uno/data.cxx b/cppu/source/uno/data.cxx index 77243fd..5a8de8a 100644 --- a/cppu/source/uno/data.cxx +++ b/cppu/source/uno/data.cxx @@ -360,7 +360,8 @@ sal_Bool SAL_CALL uno_type_isAssignableFromData( #endif #if defined(INTEL) \ -

Re: [Libreoffice] Set COPYRECURSE to -R on OpenBSD too instead of -r

2010-11-03 Thread Rene Engelhard
Hi, On Wed, Nov 03, 2010 at 10:24:37PM +0100, Robert Nagy wrote: diff --git a/solenv/inc/unitools.mk b/solenv/inc/unitools.mk index 6bf0653..c6055d1 100644 --- a/solenv/inc/unitools.mk +++ b/solenv/inc/unitools.mk @@ -107,7 +107,7 @@ PERL*=perl TYPE=cat CDD=cd COPY=cp -f -.IF

Re: [Libreoffice] Set COPYRECURSE to -R on OpenBSD too instead of -r

2010-11-03 Thread Robert Nagy
It probably is yes. On (2010-11-04 00:28), Rene Engelhard wrote: Hi, On Wed, Nov 03, 2010 at 10:24:37PM +0100, Robert Nagy wrote: diff --git a/solenv/inc/unitools.mk b/solenv/inc/unitools.mk index 6bf0653..c6055d1 100644 --- a/solenv/inc/unitools.mk +++ b/solenv/inc/unitools.mk @@

Re: [Libreoffice] OpenBSD bootstrap diffs

2010-11-03 Thread Miklos Vajna
On Thu, Nov 04, 2010 at 12:09:22AM +0100, Robert Nagy rob...@openbsd.org wrote: Ooops the boostrap.diff and unxobsd.mk files were wrong. Here are the correct ones. Could you please use 'git add' for unxobsd.mk, then 'git commit -a', write the commit message, finally 'git format-patch -1' to

Re: [Libreoffice] OpenBSD bootstrap diffs

2010-11-03 Thread Robert Nagy
Yeah I could but now it's easier for the commiter just to copy it. Next time, I will add it first. On (2010-11-04 00:37), Miklos Vajna wrote: Could you please use 'git add' for unxobsd.mk, then 'git commit -a', write the commit message, finally 'git format-patch -1' to produce the patch? That

Re: [Libreoffice] gunzip -d is not available on every gunzip implementation

2010-11-03 Thread Rene Engelhard
On Wed, Nov 03, 2010 at 09:32:08PM +0100, Robert Nagy wrote: The Subject says everything, not to mention that gunzip will always decompress, so there is no need for -d. Pushed, thanks. Grüße/Regards, René ___ LibreOffice mailing list

Re: [Libreoffice] OpenBSD bootstrap diffs

2010-11-03 Thread Rene Engelhard
Hi, On Wed, Nov 03, 2010 at 10:02:12PM +0100, Robert Nagy wrote: Attached some diffs to make LibreOffice boostrap on OpenBSD. Thanks, added/pushed. Grüße/Regards, René ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org

Re: [Libreoffice] remove misplaced ; from test

2010-11-03 Thread Rene Engelhard
On Wed, Nov 03, 2010 at 09:36:08PM +0100, Robert Nagy wrote: -if test z$BUILD_WIN32 = z -a z`uname -s` != zSunOS -a z`uname -s` != zDarwin; -a z`uname -s` != zOpenBSD; then +if test z$BUILD_WIN32 = z -a z`uname -s` != zSunOS -a z`uname -s` != zDarwin -a z`uname -s` != zOpenBSD; then Thanks,

Re: [Libreoffice] OpenBSD bootstrap diffs

2010-11-03 Thread Rene Engelhard
On Thu, Nov 04, 2010 at 12:44:18AM +0100, Robert Nagy wrote: Yeah I could but now it's easier for the commiter just to copy it. Actually, no, git format-patch would be easier here, too. a) it already has the right author (I neeeded to add --author manually) b) it already had all the files

Re: [Libreoffice] OpenBSD bootstrap diffs

2010-11-03 Thread Rene Engelhard
On Thu, Nov 04, 2010 at 12:50:26AM +0100, Rene Engelhard wrote: On Thu, Nov 04, 2010 at 12:44:18AM +0100, Robert Nagy wrote: Yeah I could but now it's easier for the commiter just to copy it. Actually, no, git format-patch would be easier here, too. a) it already has the right author (I

[Libreoffice] [PATCH] Use /usr/bin/env bash

2010-11-03 Thread Robert Nagy
--- bin/g |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/g b/bin/g index f0928de..b1c80fc 100755 --- a/bin/g +++ b/bin/g @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # Wrapper for git to handle more subdirs at the same time # -- 1.7.3.1

[Libreoffice] [PATCH] --exclude is gnutar

2010-11-03 Thread Robert Nagy
--- bin/install-artwork |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/install-artwork b/bin/install-artwork index 7695e4a..5f1721d 100755 --- a/bin/install-artwork +++ b/bin/install-artwork @@ -43,7 +43,7 @@ if test -d $dest/default_images; then cp

[Libreoffice] [PATCH] Fix for OO Basic Million-to-one bug #i76852#

2010-11-03 Thread John LeMoyne Castle
Adds '=' to edge test in sbxscan.cxx ImpCvtNum so exponent prints and 1 million is 1e+6 instead of just 1 for singles. Same one char change does similar fix for OO Basic doubles and 1e+14. When I saw #i76852# -- http://qa.openoffice.org/issues/show_bug.cgi?id=76852 -- describe how and when