Re: Building with --disable-database-connectivity

2012-02-21 Thread Riccardo Magliocchetti
with my --headless work, no need for db stuff here. So I'd try to find some time to play with this even if it is experimental. thanks -- Riccardo Magliocchetti ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org

Re: Building with --disable-database-connectivity

2012-02-21 Thread Riccardo Magliocchetti
Cool, seen the commit in master, anyway that's what i've done this morning, feel free to reuse it if you want. thanks -- Riccardo Magliocchetti From a18dfb581eac66cc9638d9a810985d1a0991de5e Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti riccardo.magliocche...@gmail.com Date: Tue, 21

Re: [PUSHED] Building with --disable-database-connectivity

2012-02-21 Thread Riccardo Magliocchetti
of introducing conditionals in Library_sc.mk to bypass just one source file, I bypass its contents with #ifndef DISABLE_DBCONNECTIVITY. Cool! thanks a lot! Will rebase my stuff on top of master and see if i can proceed further. -- Riccardo Magliocchetti

[PATCH] headless: more work in vcl

2012-02-21 Thread Riccardo Magliocchetti
Hello, provide HeadlessSalSystem::ShowNativeDialog() instead of having it if-zeroed. Then remove LIBO_HEADLESS ifdefery from unx/generic/plugadapt/salplug.cxx which we are not building anymore. Please review -- Riccardo Magliocchetti From dbf94f72ab9bcf472e59daf4229ade6eb9f5d584 Mon Sep 17

Re: [PUSHED] x11 / cairo-less build try #3

2012-02-21 Thread Riccardo Magliocchetti
that'll show you which shared library or random other component registration that you're missing [ though you really don't want the setIniFilename piece there ]. done in git master thanks a lot -- Riccardo Magliocchetti ___ LibreOffice mailing list

[PATCH] Some more work for --disable-database-connectivity

2012-02-21 Thread Riccardo Magliocchetti
/frm.component. Stop. Please review -- Riccardo Magliocchetti From aa409124e4f054b25df97f61521890bfef8ad27a Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti riccardo.magliocche...@gmail.com Date: Tue, 21 Feb 2012 22:44:21 +0100 Subject: [PATCH] Some more work for --disable-database-connectivity

[PATCH] desktop: remove duplicated gb_Library_set_include call

2012-02-20 Thread Riccardo Magliocchetti
Hello, gb_Library_set_include is already called few lines above so no need to do it again, i think :) thanks -- Riccardo Magliocchetti From 70f6e5533b982da0f8dff2fd1399e4aaa1292afd Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti riccardo.magliocche...@gmail.com Date: Mon, 20 Feb 2012

[PATCH] headless: cleanup HEADLESS preprocessor definition

2012-02-20 Thread Riccardo Magliocchetti
Hello, define HEADLESS globally as it is meant to be instead of sneaking into module specific files. thanks, -- Riccardo Magliocchetti From ab6904340fea291e3850f9f8fdedbd4c92a2a3b2 Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti riccardo.magliocche...@gmail.com Date: Mon, 20 Feb 2012

Re: gnome-vfs not found while ./autogen.sh

2012-02-19 Thread Riccardo Magliocchetti
-- Riccardo Magliocchetti ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

Re: [REVIEW] Null pointer passed as an argument to a 'nonnull' parameter in vcl/unx/generic/app/i18n_wrp.cxx

2012-02-17 Thread Riccardo Magliocchetti
but maybe other interested people do? thanks -- Riccardo Magliocchetti ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

[PATCH] vcl: consolidate common objects in Library_vcl.mk

2012-02-17 Thread Riccardo Magliocchetti
done a full build only on top of some local changes because i don't have all the needed dependencies on my build machine but it looks it works fine :) thanks -- Riccardo Magliocchetti From 1b2a2e3774d2262508c4d368d1951eefbd896fe8 Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti

Re: [PATCH] [core/vcl/source/window/splitwin.cxx:2047] - [core/vcl/source/window/splitwin.cxx:2045]: (style) Found duplicate branches for if and else.

2012-02-16 Thread Riccardo Magliocchetti
|| meAlign == WINDOWALIGN_LEFT) ? sal_False : sal_True; cheers -- Riccardo Magliocchetti ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

Re: qa-build errros on clean code

2012-02-15 Thread Riccardo Magliocchetti
plus another connectivity related, building with this patch applied to at least finish the build: http://paste.ubuntu.com/843064/ hth -- Riccardo Magliocchetti ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org

[RFC] x11 / cairo-less build try #3

2012-02-15 Thread Riccardo Magliocchetti
0x7f666e745495 in SVMain() () from /home/rm/src/libo/solver/unxlngx6.pro/installation/opt/program/libvcllo.so No symbol table info available. #16 0x7f6672845325 in soffice_main () from /home/rm/src/libo/solver/unxlngx6.pro/installation/opt/program/libsofficeapp.so thanks -- Riccardo Magliocchetti

Re: qa-build errros on clean code

2012-02-15 Thread Riccardo Magliocchetti
-- Riccardo Magliocchetti ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

Re: [PATCH] avoid Possible null pointer dereference in linguistic/source/spelldsp.hxx

2012-02-11 Thread Riccardo Magliocchetti
not return NULL if pCache is something else, no? What about this? if (pCache) return *pCache; return ((SpellCheckerDispatcher *) this)-pCache = new linguistic::SpellCache(); cheers, -- Riccardo Magliocchetti ___ LibreOffice mailing list LibreOffice

Re: [PATCH] avoid Possible null pointer dereference in linguistic/source/spelldsp.hxx

2012-02-11 Thread Riccardo Magliocchetti
. cheers -- Riccardo Magliocchetti ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

Re: [PATCH] Module READMEs for libs-extern-sys, extensions, extras, postprocess, sdk and testing

2012-02-09 Thread Riccardo Magliocchetti
Hi Josh, Il 09/02/2012 09:07, Josh Heidenreich ha scritto: Hi, These patches are the last of the module READMEs in the copying over from the wiki. Thanks a lot from a newcomer to the libreoffice codebase :) -- Riccardo Magliocchetti

Re: [RFC] x11 / cairo-less build try #2

2012-02-09 Thread Riccardo Magliocchetti
Hi Michael, Il 08/02/2012 16:37, Michael Meeks ha scritto: Hi Riccardo, On Tue, 2012-02-07 at 18:19 +0100, Riccardo Magliocchetti wrote: I've progressed a bit with X11 / cairo less build. Now everything builds but somethings chokes in make dev-install: As Matus says, you'll need

Re: [RFC] x11 / cairo-less build try #2

2012-02-08 Thread Riccardo Magliocchetti
Hi Matúš, Il 07/02/2012 23:57, Matúš Kukan ha scritto: Hello there, On 7 February 2012 18:19, Riccardo Magliocchetti riccardo.magliocche...@gmail.com wrote: I've progressed a bit with X11 / cairo less build. Now everything builds but somethings chokes in make dev-install: http

[RFC] x11 / cairo-less build try #2

2012-02-07 Thread Riccardo Magliocchetti
windowing system found, exiting.\n error from vcl/unx/generic/plugadapt/salplug.cxx::CreateSalInstance(). And i suppose the same error will bite me when i'll try yo run what i have compiled. thanks in advance -- Riccardo Magliocchetti diff --git a/Module_tail_build.mk b/Module_tail_build.mk

[Libreoffice] License for my contributions

2012-02-02 Thread Riccardo Magliocchetti
Hi there, all my future contributions will be contributed under MPL/LGPLv3+. Thanks -- Riccardo Magliocchetti ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice] [RFC] cairo-less build, misc build patches

2012-02-02 Thread Riccardo Magliocchetti
too. Please note that I'm diffing against an old master because of anongit.fd.o problems. Statement about license of my contributions here [1] Please review :) [1] http://lists.freedesktop.org/archives/libreoffice/2012-February/025156.html -- Riccardo Magliocchetti diff --git

Re: [Libreoffice] [RFC] cairo-less build, misc build patches

2012-02-02 Thread Riccardo Magliocchetti
Hello, Il 02/02/2012 15:53, Riccardo Magliocchetti ha scritto: Hello, Also while analyzing some build failures :) it looks to me that tools/inc/tools/prex.h should close the extern C block. Patch attached. This is wrong, please ignore it. thanks -- Riccardo Magliocchetti

Re: [Libreoffice] Fatal error building Windows release - ( Cygwin )

2012-01-30 Thread Riccardo Magliocchetti
Hi Walter, Il 30/01/2012 11:04, walter ha scritto: It's the first time I try to build LibreOffice. Can anyone help me ? You may want to report what version are you trying to compile and the exact error as a starting point :) cheers, -- Riccardo Magliocchetti

Re: [Libreoffice] PDF converter cross compilation general questions

2012-01-26 Thread Riccardo Magliocchetti
-system-hunspell --without-system-mythes --without-system-altlinuxhyph --without-system-lpsolve --without-system-libexttextcat --without-system-poppler --enable-headless --disable-postgresql-sdbc hth -- Riccardo Magliocchetti commit 2f8c941f2ddb817ca20b5710a1e1b2bbbc5bd7c3 Author: Riccardo

Re: [Libreoffice] [PUSHED] File not found: cairocanvas.uno.so in smoketestoo_native

2012-01-25 Thread Riccardo Magliocchetti
Il 25/01/2012 12:04, Thorsten Behrens ha scritto: Riccardo Magliocchetti wrote: The attached patch is enough to give me a succesfull make dev-install. And the build even run :) Thanks, good catch - while at it, killed the silly UNX/MAC/but-not-X11 crazy there, if cairocanvas is built

Re: [Libreoffice] File not found: cairocanvas.uno.so in smoketestoo_native

2012-01-24 Thread Riccardo Magliocchetti
Hi Michael, Il 24/01/2012 12:49, Michael Meeks ha scritto: Hi Riccardo, On Tue, 2012-01-24 at 12:26 +0100, Riccardo Magliocchetti wrote: with this configuration (note --disable-cairo-canvas is set) /autogen.sh --without-junit --without-java --disable-epm --disable-gtk ... --disable-cairo

[Libreoffice] Build error in helpcontent2

2012-01-23 Thread Riccardo Magliocchetti
Hello, i'm trying to build libreoffice from git but it gives me an error in helpcontent2: Entering /home/rm/src/libo/helpcontent2/source/auxiliary echo aux_langdirs:=en-US ../../unxlngi6.pro/inc/aux_langs.mk echo help_exist:=en-US ../../unxlngi6.pro/inc/help_exist.mk rm -f

Re: [Libreoffice] Build error in helpcontent2

2012-01-23 Thread Riccardo Magliocchetti
Il 23/01/2012 10:05, David Tardon ha scritto: On Mon, Jan 23, 2012 at 10:02:43AM +0100, Riccardo Magliocchetti wrote: Hello, i'm trying to build libreoffice from git but it gives me an error in helpcontent2: Entering /home/rm/src/libo/helpcontent2/source/auxiliary echo aux_langdirs:=en-US

<    1   2   3