Re: gtest build error

2023-05-01 Thread Peter Kovacs



Am 30.04.23 um 13:40 schrieb Matthias Seidel:

Hi Peter,

Am 30.04.23 um 12:19 schrieb Peter Kovacs:

Hi All,

As suspekted adding GTEST_ in front fixes my setup.

What does that mean?

Do we need to change something in our code or is it just a configuration
issue?


It depends...

If Googletest is build with the option

  -DGTEST_DONT_DEFINE_FOO=1

our build will fail, because TEST Macro will change name to GTEST_TEST, in 
order to avoid overlap with other testsuites.
If build without the option our build works.

I guess that distributors likely will activate this option. In case we want to 
integrate we might run into issues, depending on distributor.



Regards,

    Matthias


All the best


Am 29.04.23 um 09:26 schrieb Peter Kovacs:

Hi all.

Build fails with:

main/sal/qa/rtl/crc32/rtl_crc32.cxx:72:1:error: expected constructor,
destructor, or type conversion before '(' token

   72 | TEST_F(test, rtl_crc32_002_1)

I have installed gtest using official ubuntu package

the readme says:

### Avoiding Macro Name Clashes

In C++, macros don't obey namespaces. Therefore two libraries that
both define a
macro of the same name will clash if you `#include` both definitions.
In case a
GoogleTest macro clashes with another library, you can force
GoogleTest to
rename its macro to avoid the conflict.

Specifically, if both GoogleTest and some other code define macro
FOO, you can
add

    -DGTEST_DONT_DEFINE_FOO=1

to the compiler flags to tell GoogleTest to change the macro's name
from `FOO`
to `GTEST_FOO`. Currently `FOO` can be `FAIL`, `SUCCEED`, or `TEST`. For
example, with `-DGTEST_DONT_DEFINE_TEST=1`, you'll need to write

    GTEST_TEST(SomeTest, DoesThis) { ... }

instead of

    TEST(SomeTest, DoesThis) { ... }

in order to define a test.

--

can this cause my issue?

should we make a change if so?


-
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: gtest build error

2023-04-30 Thread Matthias Seidel
Hi Peter,

Am 30.04.23 um 12:19 schrieb Peter Kovacs:
> Hi All,
>
> As suspekted adding GTEST_ in front fixes my setup.

What does that mean?

Do we need to change something in our code or is it just a configuration
issue?

Regards,

   Matthias

>
> All the best
>
>
> Am 29.04.23 um 09:26 schrieb Peter Kovacs:
>> Hi all.
>>
>> Build fails with:
>>
>> main/sal/qa/rtl/crc32/rtl_crc32.cxx:72:1:error: expected constructor,
>> destructor, or type conversion before '(' token
>>
>>   72 | TEST_F(test, rtl_crc32_002_1)
>>
>> I have installed gtest using official ubuntu package
>>
>> the readme says:
>>
>> ### Avoiding Macro Name Clashes
>>
>> In C++, macros don't obey namespaces. Therefore two libraries that
>> both define a
>> macro of the same name will clash if you `#include` both definitions.
>> In case a
>> GoogleTest macro clashes with another library, you can force
>> GoogleTest to
>> rename its macro to avoid the conflict.
>>
>> Specifically, if both GoogleTest and some other code define macro
>> FOO, you can
>> add
>>
>>    -DGTEST_DONT_DEFINE_FOO=1
>>
>> to the compiler flags to tell GoogleTest to change the macro's name
>> from `FOO`
>> to `GTEST_FOO`. Currently `FOO` can be `FAIL`, `SUCCEED`, or `TEST`. For
>> example, with `-DGTEST_DONT_DEFINE_TEST=1`, you'll need to write
>>
>>    GTEST_TEST(SomeTest, DoesThis) { ... }
>>
>> instead of
>>
>>    TEST(SomeTest, DoesThis) { ... }
>>
>> in order to define a test.
>>
>> --
>>
>> can this cause my issue?
>>
>> should we make a change if so?
>>
>
> -
> 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: gtest build error

2023-04-30 Thread Peter Kovacs

Hi All,

As suspekted adding GTEST_ in front fixes my setup.

All the best


Am 29.04.23 um 09:26 schrieb Peter Kovacs:

Hi all.

Build fails with:

main/sal/qa/rtl/crc32/rtl_crc32.cxx:72:1:error: expected constructor, 
destructor, or type conversion before '(' token


  72 | TEST_F(test, rtl_crc32_002_1)

I have installed gtest using official ubuntu package

the readme says:

### Avoiding Macro Name Clashes

In C++, macros don't obey namespaces. Therefore two libraries that 
both define a
macro of the same name will clash if you `#include` both definitions. 
In case a
GoogleTest macro clashes with another library, you can force 
GoogleTest to

rename its macro to avoid the conflict.

Specifically, if both GoogleTest and some other code define macro FOO, 
you can

add

   -DGTEST_DONT_DEFINE_FOO=1

to the compiler flags to tell GoogleTest to change the macro's name 
from `FOO`

to `GTEST_FOO`. Currently `FOO` can be `FAIL`, `SUCCEED`, or `TEST`. For
example, with `-DGTEST_DONT_DEFINE_TEST=1`, you'll need to write

   GTEST_TEST(SomeTest, DoesThis) { ... }

instead of

   TEST(SomeTest, DoesThis) { ... }

in order to define a test.

--

can this cause my issue?

should we make a change if so?



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



gtest build error

2023-04-29 Thread Peter Kovacs

Hi all.

Build fails with:

main/sal/qa/rtl/crc32/rtl_crc32.cxx:72:1:error: expected constructor, 
destructor, or type conversion before '(' token


  72 | TEST_F(test, rtl_crc32_002_1)

I have installed gtest using official ubuntu package

the readme says:

### Avoiding Macro Name Clashes

In C++, macros don't obey namespaces. Therefore two libraries that both 
define a
macro of the same name will clash if you `#include` both definitions. In 
case a

GoogleTest macro clashes with another library, you can force GoogleTest to
rename its macro to avoid the conflict.

Specifically, if both GoogleTest and some other code define macro FOO, 
you can

add

   -DGTEST_DONT_DEFINE_FOO=1

to the compiler flags to tell GoogleTest to change the macro's name from 
`FOO`

to `GTEST_FOO`. Currently `FOO` can be `FAIL`, `SUCCEED`, or `TEST`. For
example, with `-DGTEST_DONT_DEFINE_TEST=1`, you'll need to write

   GTEST_TEST(SomeTest, DoesThis) { ... }

instead of

   TEST(SomeTest, DoesThis) { ... }

in order to define a test.

--

can this cause my issue?

should we make a change if so?


Re: Build Error

2021-05-24 Thread Peter Kovacs



On 24.05.21 13:53, Arrigo Marchiori wrote:

Hello Peter,

On Mon, May 24, 2021 at 10:10:23AM +, Peter Kovacs wrote:


Hello all,


I am building OpenOffice trunk in a CentOSX Environment running as a docker
image. Anyone has an Idea where to look. The versions look very old and even
for CentOSx not up to time.

My host system is Arch Linux. I run into a strange QA Issue:

Entering workspace/AOO/github/main/sal/qa/osl/condition

../../../unxlngx6.pro/bin/sal_ut_osl_condition: /lib64/libstdc++.so.6:
version `GLIBCXX_3.4.20' not found (required by
workspace/AOO/github/main/solver/450/unxlngx6.pro/lib/libgtest.so.0)

I don't know Docker, but what you wrote below may give us a
suggestion.

[...]

My Config:

[ ...snip as nothing seems wrong there ... ]

My Docker build environment:

FROM centos:7
RUN yum update -y
RUN echo "assumeyes=1" >> /etc/yum.conf
RUN yum install epel-release -y
RUN yum install -y\
    gcc \
    expat-devel \
    openssl-devel \
    autoconf \
    gcc-c++ \

Here we are.


It is part of the guide. see [1]

Does this needs to change?

(The guide differs a bit with the docker commands, since it did not work 
out of the box.




If I understand correctly, you are installing an older C++ (from
Centos 7) into your up-to-date system.

The error message is about a library mismatch between
/lib64/libstdc++.so.6 and one of the shared libraries you compiled.

Is it possible that, for some reason, the AOO build system is not
always using the same version of GCC, or the same libraries? I.e. it
is mixing them from the CentOS installation and from the host system?

Or maybe the Docker image contains multiple versions of GCC, and the
build system is mixing them?

This could lead to errors similar to the one you reported.

You can get information about individual libstdc+ versions with the
following command:

$ strings /path/libstdc++.so.6 | grep GLIBCXX

And from here:
https://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html you can see
that GLIBC_3.4.20 corresponds to GCC 4.9.0.

I hope this helps.
However I believe that during my tries to make the docker image world I 
tried to build OpenOffice with different gcc version as you have suspected.


Thanks for pointing this out.

[1] 
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step_Linux#CentOS_7_and_Fedora_19_for_AOO_4.2.x_and_later

--
This is the Way! http://www.apache.org/theapacheway/index.html

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



Re: Build Error

2021-05-24 Thread Arrigo Marchiori
Hello Peter,

On Mon, May 24, 2021 at 10:10:23AM +, Peter Kovacs wrote:

> Hello all,
> 
> 
> I am building OpenOffice trunk in a CentOSX Environment running as a docker
> image. Anyone has an Idea where to look. The versions look very old and even
> for CentOSx not up to time.
> 
> My host system is Arch Linux. I run into a strange QA Issue:
> 
> Entering workspace/AOO/github/main/sal/qa/osl/condition
> 
> ../../../unxlngx6.pro/bin/sal_ut_osl_condition: /lib64/libstdc++.so.6:
> version `GLIBCXX_3.4.20' not found (required by
> workspace/AOO/github/main/solver/450/unxlngx6.pro/lib/libgtest.so.0)

I don't know Docker, but what you wrote below may give us a
suggestion.

[...]
> My Config:
[ ...snip as nothing seems wrong there ... ]
> 
> My Docker build environment:
> 
> FROM centos:7
> RUN yum update -y
> RUN echo "assumeyes=1" >> /etc/yum.conf
> RUN yum install epel-release -y
> RUN yum install -y\
>    gcc \
>    expat-devel \
>    openssl-devel \
>    autoconf \
>    gcc-c++ \

Here we are.

If I understand correctly, you are installing an older C++ (from
Centos 7) into your up-to-date system.

The error message is about a library mismatch between
/lib64/libstdc++.so.6 and one of the shared libraries you compiled.

Is it possible that, for some reason, the AOO build system is not
always using the same version of GCC, or the same libraries? I.e. it
is mixing them from the CentOS installation and from the host system?

Or maybe the Docker image contains multiple versions of GCC, and the
build system is mixing them?

This could lead to errors similar to the one you reported.

You can get information about individual libstdc+ versions with the
following command:

$ strings /path/libstdc++.so.6 | grep GLIBCXX

And from here:
https://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html you can see
that GLIBC_3.4.20 corresponds to GCC 4.9.0.

I hope this helps.

Best regards,
-- 
Arrigo

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



Re: Build Error

2021-05-24 Thread Peter Kovacs

Okay, sorry for the fuzz. Was some ISO Layer 8 Issue.

I did a dmake clean and then i seem to pass the Issue. -.-

On 24.05.21 12:10, Peter Kovacs wrote:

Hello all,


I am building OpenOffice trunk in a CentOSX Environment running as a 
docker image. Anyone has an Idea where to look. The versions look very 
old and even for CentOSx not up to time.


My host system is Arch Linux. I run into a strange QA Issue:

Entering workspace/AOO/github/main/sal/qa/osl/condition

../../../unxlngx6.pro/bin/sal_ut_osl_condition: /lib64/libstdc++.so.6: 
version `GLIBCXX_3.4.20' not found (required by 
workspace/AOO/github/main/solver/450/unxlngx6.pro/lib/libgtest.so.0)
../../../unxlngx6.pro/bin/sal_ut_osl_condition: /lib64/libstdc++.so.6: 
version `CXXABI_1.3.9' not found (required by 
workspace/AOO/github/main/solver/450/unxlngx6.pro/lib/libgtest.so.0)
../../../unxlngx6.pro/bin/sal_ut_osl_condition: /lib64/libstdc++.so.6: 
version `GLIBCXX_3.4.26' not found (required by 
workspace/AOO/github/main/solver/450/unxlngx6.pro/lib/libgtest.so.0)
../../../unxlngx6.pro/bin/sal_ut_osl_condition: /lib64/libstdc++.so.6: 
version `GLIBCXX_3.4.21' not found (required by 
workspace/AOO/github/main/solver/450/unxlngx6.pro/lib/libgtest.so.0)

dmake:  Error code 1, while making 'sal_ut_osl_condition_run'


My Config:

./configure \
    --with-dmake-path=/usr/local/bin/dmake \
    --with-epm=/usr/local/bin/epm \
    --with-ant-home=/ant \
    --with-lang="${LANGS}" \
    --with-jdk-home=${jdkhome} \
    --with-package-format="installed" \
    --with-vendor="Petko Testbuild"\
    --with-build-version="aoo4ever-$(date +"%Y-%m-%d %H:%M") - `uname 
-sm`\n ${GitHash}" \

    --with-system-stdlibs \
    --enable-crashdump=yes \
    --enable-category-b \
    --enable-beanshell \
    --enable-wiki-publisher \
    --enable-bundled-dictionaries \
    --enable-opengl  \
    --enable-dbus  \
    --without-junit \
    --without-stlport \
    --disable-odk \
    --without-fonts

My Docker build environment:

FROM centos:7
RUN yum update -y
RUN echo "assumeyes=1" >> /etc/yum.conf
RUN yum install epel-release -y
RUN yum install -y\
   gcc \
   expat-devel \
   openssl-devel \
   autoconf \
   gcc-c++ \
   cups-devel \
   pam-devel \
   java-1.8.0-openjdk-devel \
   rpm-build \
   dpkg \
   fakeroot \
   gperf \
   freetype-devel \
   libX11-devel \
   libXt-devel \
   fontconfig-devel \
   libXrandr-devel \
   bison \
   flex \
   GConf2-devel \
   gnome-vfs2-devel \
   gtk2-devel \
   gstreamer-devel \
   gstreamer-plugins-base-devel \
   gstreamer1-devel \
   gstreamer1-plugins-base-devel \
   mesa-libGLU-devel \
   wget \
   subversion \
   ccache \
   glib2-devel \
   dbus-glib-devel \
   perl \
   ORBit2-devel
RUN ccache -M 2G
RUN wget 
http://mirrors.nxnethosting.com/apache//ant/binaries/apache-ant-1.9.15-bin.tar.bz2

RUN tar xvf apache-ant-1.9.15-bin.tar.bz2
RUN mv apache-ant-1.9.15 ant
RUN yum install \
   cpan \
   perl-libwww-perl \
   perl-Archive-Zip \
   perl-Digest-SHA \
   perl-XML-Parser \
   perl-Crypt-SSLeay \
   perl-Env \
   perl-LWP-Protocol-https \
   perl-Test-Simple \
   perl-File-Path
RUN wget 
https://github.com/jimjag/dmake/archive/v4.13.1/dmake-4.13.1.tar.gz

RUN tar xvf dmake-4.13.1.tar.gz
WORKDIR /dmake-4.13.1
RUN ./configure --prefix=/usr/local; make install
WORKDIR /
RUN wget https://github.com/jimjag/epm/archive/v5.0.0/epm-5.0.0.tar.gz
RUN tar xvf epm-5.0.0.tar.gz
WORKDIR epm-5.0.0
RUN ./configure --prefix=/usr/local ; make -i install
RUN yum install -y git autoconf



--
This is the Way! http://www.apache.org/theapacheway/index.html

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



Build Error

2021-05-24 Thread Peter Kovacs

Hello all,


I am building OpenOffice trunk in a CentOSX Environment running as a 
docker image. Anyone has an Idea where to look. The versions look very 
old and even for CentOSx not up to time.


My host system is Arch Linux. I run into a strange QA Issue:

Entering workspace/AOO/github/main/sal/qa/osl/condition

../../../unxlngx6.pro/bin/sal_ut_osl_condition: /lib64/libstdc++.so.6: 
version `GLIBCXX_3.4.20' not found (required by 
workspace/AOO/github/main/solver/450/unxlngx6.pro/lib/libgtest.so.0)
../../../unxlngx6.pro/bin/sal_ut_osl_condition: /lib64/libstdc++.so.6: 
version `CXXABI_1.3.9' not found (required by 
workspace/AOO/github/main/solver/450/unxlngx6.pro/lib/libgtest.so.0)
../../../unxlngx6.pro/bin/sal_ut_osl_condition: /lib64/libstdc++.so.6: 
version `GLIBCXX_3.4.26' not found (required by 
workspace/AOO/github/main/solver/450/unxlngx6.pro/lib/libgtest.so.0)
../../../unxlngx6.pro/bin/sal_ut_osl_condition: /lib64/libstdc++.so.6: 
version `GLIBCXX_3.4.21' not found (required by 
workspace/AOO/github/main/solver/450/unxlngx6.pro/lib/libgtest.so.0)

dmake:  Error code 1, while making 'sal_ut_osl_condition_run'


My Config:

./configure \
    --with-dmake-path=/usr/local/bin/dmake \
    --with-epm=/usr/local/bin/epm \
    --with-ant-home=/ant \
    --with-lang="${LANGS}" \
    --with-jdk-home=${jdkhome} \
    --with-package-format="installed" \
    --with-vendor="Petko Testbuild"\
    --with-build-version="aoo4ever-$(date +"%Y-%m-%d %H:%M") - `uname 
-sm`\n ${GitHash}" \

    --with-system-stdlibs \
    --enable-crashdump=yes \
    --enable-category-b \
    --enable-beanshell \
    --enable-wiki-publisher \
    --enable-bundled-dictionaries \
    --enable-opengl  \
    --enable-dbus  \
    --without-junit \
    --without-stlport \
    --disable-odk \
    --without-fonts

My Docker build environment:

FROM centos:7
RUN yum update -y
RUN echo "assumeyes=1" >> /etc/yum.conf
RUN yum install epel-release -y
RUN yum install -y\
   gcc \
   expat-devel \
   openssl-devel \
   autoconf \
   gcc-c++ \
   cups-devel \
   pam-devel \
   java-1.8.0-openjdk-devel \
   rpm-build \
   dpkg \
   fakeroot \
   gperf \
   freetype-devel \
   libX11-devel \
   libXt-devel \
   fontconfig-devel \
   libXrandr-devel \
   bison \
   flex \
   GConf2-devel \
   gnome-vfs2-devel \
   gtk2-devel \
   gstreamer-devel \
   gstreamer-plugins-base-devel \
   gstreamer1-devel \
   gstreamer1-plugins-base-devel \
   mesa-libGLU-devel \
   wget \
   subversion \
   ccache \
   glib2-devel \
   dbus-glib-devel \
   perl \
   ORBit2-devel
RUN ccache -M 2G
RUN wget 
http://mirrors.nxnethosting.com/apache//ant/binaries/apache-ant-1.9.15-bin.tar.bz2

RUN tar xvf apache-ant-1.9.15-bin.tar.bz2
RUN mv apache-ant-1.9.15 ant
RUN yum install \
   cpan \
   perl-libwww-perl \
   perl-Archive-Zip \
   perl-Digest-SHA \
   perl-XML-Parser \
   perl-Crypt-SSLeay \
   perl-Env \
   perl-LWP-Protocol-https \
   perl-Test-Simple \
   perl-File-Path
RUN wget https://github.com/jimjag/dmake/archive/v4.13.1/dmake-4.13.1.tar.gz
RUN tar xvf dmake-4.13.1.tar.gz
WORKDIR /dmake-4.13.1
RUN ./configure --prefix=/usr/local; make install
WORKDIR /
RUN wget https://github.com/jimjag/epm/archive/v5.0.0/epm-5.0.0.tar.gz
RUN tar xvf epm-5.0.0.tar.gz
WORKDIR epm-5.0.0
RUN ./configure --prefix=/usr/local ; make -i install
RUN yum install -y git autoconf


--
This is the Way! http://www.apache.org/theapacheway/index.html

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



Re: Build error on 4.1.8 on Linux Ubuntu 16.xx

2020-10-11 Thread Peter Kovacs
Okay, sorry for the fuzz. It is a user layer 8 issue. Forgot to issue a 
dmake clean from my last build.


Am 11.10.20 um 18:51 schrieb Peter Kovacs:

Hello all,


I get a build error on my Ubuntu Machine:

Multi Platform Enabled Edition
dmake:  Error: -- `FormWizard_1.png' not found, and can't be made

1 module(s):
    extras
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making 
/home/legine/workspace/AOO/gitbox/main/extras/source/templates/wizard/bitmap


When you have fixed the errors in that module you can resume the build 
by running:


    build --all:extras


The file exist in trunk but not in 4.1.8.

git status does not give me any hint of a left over from trunk. I also 
copied a 4.18 zip download from Github in my working directory, and 
git shows no diffs.


Has anyone encountered this issue? Jim?

Thanks



-
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



Build error on 4.1.8 on Linux Ubuntu 16.xx

2020-10-11 Thread Peter Kovacs

Hello all,


I get a build error on my Ubuntu Machine:

Multi Platform Enabled Edition
dmake:  Error: -- `FormWizard_1.png' not found, and can't be made

1 module(s):
    extras
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making 
/home/legine/workspace/AOO/gitbox/main/extras/source/templates/wizard/bitmap


When you have fixed the errors in that module you can resume the build 
by running:


    build --all:extras


The file exist in trunk but not in 4.1.8.

git status does not give me any hint of a left over from trunk. I also 
copied a 4.18 zip download from Github in my working directory, and git 
shows no diffs.


Has anyone encountered this issue? Jim?

Thanks



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



Re: Build Error in Module vcl

2019-04-29 Thread Matthias Seidel
Hi Fisher Shen,

Thanks for your finding, it should be corrected now.

Regards,

   Matthias

Am 29.04.19 um 17:39 schrieb Shen, Xinyu:
> Also, in the same folder, for null_mask.h and null_curs.h, the older version 
> is nullmask_width, nullcurs_height, etc.
>
> In the newest version, it is changed to null_mask_width, etc. but it does not 
> seem that other part of code is changed as well. Removing the underline seems 
> to fix the whole problem in building svl.
>
> Fisher Shen
> 
> From: Shen, Xinyu
> Sent: Monday, April 29, 2019 11:20 AM
> To: dev@openoffice.apache.org
> Subject: Build Error in Module vcl
>
> Hi:
>
> I have encountered a problem when building the project.
>
> In main/vcl/inc/unx/x11_cursors/ase_mask.h the last line seems to be lost due 
> to last commit.
>
> Modify it accordingly with the last version fix the problem.
>
> Thanks,
> Fisher Shen
>



smime.p7s
Description: S/MIME Cryptographic Signature


Build Error in Module vcl

2019-04-29 Thread Shen, Xinyu
Hi:

I have encountered a problem when building the project.

In main/vcl/inc/unx/x11_cursors/ase_mask.h the last line seems to be lost due 
to last commit.

Modify it accordingly with the last version fix the problem.

Thanks,
Fisher Shen


Re: Build Error in Module vcl

2019-04-29 Thread Shen, Xinyu
Also, in the same folder, for null_mask.h and null_curs.h, the older version is 
nullmask_width, nullcurs_height, etc.

In the newest version, it is changed to null_mask_width, etc. but it does not 
seem that other part of code is changed as well. Removing the underline seems 
to fix the whole problem in building svl.

Fisher Shen

From: Shen, Xinyu
Sent: Monday, April 29, 2019 11:20 AM
To: dev@openoffice.apache.org
Subject: Build Error in Module vcl

Hi:

I have encountered a problem when building the project.

In main/vcl/inc/unx/x11_cursors/ase_mask.h the last line seems to be lost due 
to last commit.

Modify it accordingly with the last version fix the problem.

Thanks,
Fisher Shen


Re: OpenOffice Build Error

2019-02-03 Thread Peter Kovacs
> dmake is located in search path
means it has found dmake. I would not say it is an error.

> unalias: gunzip not found
this does not sound good. I would install gunzip.


On 26.01.19 00:20, Nikhil Gupta wrote:
> After completing all the above requirements bootstrap gives the following
> output
>
> Script started on Saturday 26 January 2019 04:41:11 AM IST
> ]0;root@nikhil-VirtualBox: /home/nikhil/help/aoo/main
> root@nikhil-VirtualBox:/home/nikhil/help/aoo/main#
> exit ./bootstrap
> unalias: gunzip not found
>
> Include locations: /etc/perl /usr/local/lib/perl/5.18.2
> /usr/local/share/perl/5.18.2 /usr/lib/perl5 /usr/share/perl5
> /usr/lib/perl/5.18 /usr/share/perl/5.18 /usr/local/lib/site_perl .
>
> ucpp-1.3.2.tar.gz exists, MD5 checksum is OK
> gtest-1.7.0.zip exists, MD5 checksum is OK
> mythes-1.2.0.tar.gz exists, MD5 checksum is OK
> mdds_0.3.1.tar.bz2 exists, MD5 checksum is OK
> libtextcat-2.2.tar.gz exists, MD5 checksum is OK
> hsqldb_1_8_0.zip exists, MD5 checksum is OK
> Adobe-Core35_AFMs-314.tar.gz exists, MD5 checksum is OK
> lucene-2.9.4-src.tar.gz exists, MD5 checksum is OK
> ignoring xmlsec1-1.2.14.tar.gz because its prerequisites are not fulfilled
> raptor2-2.0.15.tar.gz exists, MD5 checksum is OK
> redland-1.0.17.tar.gz exists, MD5 checksum is OK
> rasqal-0.9.33.tar.gz exists, MD5 checksum is OK
> zlib-1.2.7.tar.bz2 exists, MD5 checksum is OK
> ignoring commons-httpclient-3.1-src.tar.gz because its prerequisites are
> not fulfilled
> ignoring commons-codec-1.9-src.tar.gz because its prerequisites are not
> fulfilled
> icu4c-4_0_1-src.tgz exists, MD5 checksum is OK
> serf-1.2.1.tar.bz2 exists, SHA1 checksum is OK
> ignoring commons-logging-1.1.3-src.tar.gz because its prerequisites are not
> fulfilled
> jpeg-8d.tar.gz exists, MD5 checksum is OK
> commons-lang3-3.3-src.tar.gz exists, MD5 checksum is OK
> openssl-1.0.2p.tar.gz exists, MD5 checksum is OK
> apr-1.5.2.tar.gz exists, MD5 checksum is OK
> apr-util-1.5.4.tar.gz exists, MD5 checksum is OK
> libxml2-2.9.8.tar.gz exists, MD5 checksum is OK
> libxslt-1.1.32.tar.gz exists, MD5 checksum is OK
> apache-tomcat-5.5.36-src.tar.gz exists, MD5 checksum is OK
> stax-src-1.2.0.zip exists, MD5 checksum is OK
> ignoring xsltml_2.1.2.zip because its prerequisites are not fulfilled
> Python-2.7.15.tgz exists, MD5 checksum is OK
> boost_1_55_0.tar.bz2 exists, MD5 checksum is OK
> vigra1.6.0.tar.gz exists, MD5 checksum is OK
> expat-2.2.3.tar.bz2 exists, MD5 checksum is OK
> curl-7.61.1.tar.gz exists, MD5 checksum is OK
> dejavu-fonts-ttf-2.37.tar.bz2 exists, MD5 checksum is OK
> croscorefonts-1.31.0.tar.bz2 exists, MD5 checksum is OK
> crosextrafonts-20130214.tar.gz exists, MD5 checksum is OK
> SampleICC-1.3.2.tar.gz exists, MD5 checksum is OK
> ignoring apache-rat-0.10-bin.tar.bz2 because its prerequisites are not
> fulfilled
> bsh-2.0b6-src.zip exists, MD5 checksum is OK
> ignoring CoinMP-1.7.6.tgz because its prerequisites are not fulfilled
> ignoring crosextrafonts-carlito-20130920.tar.gz because its prerequisites
> are not fulfilled
> ignoring GentiumBasic_1102.zip because its prerequisites are not fulfilled
> ignoring hyphen-2.7.1.tar.gz because its prerequisites are not fulfilled
> ignoring hunspell-1.3.3.tar.gz because its prerequisites are not fulfilled
> ignoring rhino1_7R3.zip because its prerequisites are not fulfilled
> ignoring nss-3.25-with-nspr-4.12.tar.gz because its prerequisites are not
> fulfilled
> ignoring LICENSE_source-9.0.0.7-bj.html because its prerequisites are not
> fulfilled
> ignoring README_source-9.0.0.7-bj.txt because its prerequisites are not
> fulfilled
> ignoring source-9.0.0.7-bj.zip because its prerequisites are not fulfilled
> ignoring README_silgraphite-2.3.1.txt because its prerequisites are not
> fulfilled
> ignoring silgraphite-2.3.1.tar.gz because its prerequisites are not
> fulfilled
> ignoring cairo-1.8.0.tar.gz because its prerequisites are not fulfilled
> ignoring pixman-0.12.0.tar.gz because its prerequisites are not fulfilled
> all external libraries present
>
> dmake is located in search path
>
> bundling of dictionaries is disabled.
> ]
> What is the meaning of dmake is located in search path
>
> Is this an error?
>
>
> On Sat, Jan 26, 2019 at 3:28 AM Peter Kovacs  wrote:
>
>> You need to do something like:
>>
>> autoconf
>>
>> ./configure
>> --with-epm-url=
>> https://sourceforge.net/projects/oooextras.mirror/files/epm-3.7.tar.gz
>>
>> --with-dmake-url=https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2
>> --with-lang=
>> "en-US
>> de fr it pt ja"
>> --enable-wiki-publisher
>> --enable-verbose
>> --without-stlport
>> --enable-category-b
>> --enable-opengl
>> --enable-dbus
>> --without-junit
>> --with-package-format="installed archive deb"
>> --enable-bundled-dictionaries
>> --with-vendor=ASF buildbot 

Re: OpenOffice Build Error

2019-01-25 Thread Nikhil Gupta
After completing all the above requirements bootstrap gives the following
output

Script started on Saturday 26 January 2019 04:41:11 AM IST
]0;root@nikhil-VirtualBox: /home/nikhil/help/aoo/main
root@nikhil-VirtualBox:/home/nikhil/help/aoo/main#
exit ./bootstrap
unalias: gunzip not found

Include locations: /etc/perl /usr/local/lib/perl/5.18.2
/usr/local/share/perl/5.18.2 /usr/lib/perl5 /usr/share/perl5
/usr/lib/perl/5.18 /usr/share/perl/5.18 /usr/local/lib/site_perl .

ucpp-1.3.2.tar.gz exists, MD5 checksum is OK
gtest-1.7.0.zip exists, MD5 checksum is OK
mythes-1.2.0.tar.gz exists, MD5 checksum is OK
mdds_0.3.1.tar.bz2 exists, MD5 checksum is OK
libtextcat-2.2.tar.gz exists, MD5 checksum is OK
hsqldb_1_8_0.zip exists, MD5 checksum is OK
Adobe-Core35_AFMs-314.tar.gz exists, MD5 checksum is OK
lucene-2.9.4-src.tar.gz exists, MD5 checksum is OK
ignoring xmlsec1-1.2.14.tar.gz because its prerequisites are not fulfilled
raptor2-2.0.15.tar.gz exists, MD5 checksum is OK
redland-1.0.17.tar.gz exists, MD5 checksum is OK
rasqal-0.9.33.tar.gz exists, MD5 checksum is OK
zlib-1.2.7.tar.bz2 exists, MD5 checksum is OK
ignoring commons-httpclient-3.1-src.tar.gz because its prerequisites are
not fulfilled
ignoring commons-codec-1.9-src.tar.gz because its prerequisites are not
fulfilled
icu4c-4_0_1-src.tgz exists, MD5 checksum is OK
serf-1.2.1.tar.bz2 exists, SHA1 checksum is OK
ignoring commons-logging-1.1.3-src.tar.gz because its prerequisites are not
fulfilled
jpeg-8d.tar.gz exists, MD5 checksum is OK
commons-lang3-3.3-src.tar.gz exists, MD5 checksum is OK
openssl-1.0.2p.tar.gz exists, MD5 checksum is OK
apr-1.5.2.tar.gz exists, MD5 checksum is OK
apr-util-1.5.4.tar.gz exists, MD5 checksum is OK
libxml2-2.9.8.tar.gz exists, MD5 checksum is OK
libxslt-1.1.32.tar.gz exists, MD5 checksum is OK
apache-tomcat-5.5.36-src.tar.gz exists, MD5 checksum is OK
stax-src-1.2.0.zip exists, MD5 checksum is OK
ignoring xsltml_2.1.2.zip because its prerequisites are not fulfilled
Python-2.7.15.tgz exists, MD5 checksum is OK
boost_1_55_0.tar.bz2 exists, MD5 checksum is OK
vigra1.6.0.tar.gz exists, MD5 checksum is OK
expat-2.2.3.tar.bz2 exists, MD5 checksum is OK
curl-7.61.1.tar.gz exists, MD5 checksum is OK
dejavu-fonts-ttf-2.37.tar.bz2 exists, MD5 checksum is OK
croscorefonts-1.31.0.tar.bz2 exists, MD5 checksum is OK
crosextrafonts-20130214.tar.gz exists, MD5 checksum is OK
SampleICC-1.3.2.tar.gz exists, MD5 checksum is OK
ignoring apache-rat-0.10-bin.tar.bz2 because its prerequisites are not
fulfilled
bsh-2.0b6-src.zip exists, MD5 checksum is OK
ignoring CoinMP-1.7.6.tgz because its prerequisites are not fulfilled
ignoring crosextrafonts-carlito-20130920.tar.gz because its prerequisites
are not fulfilled
ignoring GentiumBasic_1102.zip because its prerequisites are not fulfilled
ignoring hyphen-2.7.1.tar.gz because its prerequisites are not fulfilled
ignoring hunspell-1.3.3.tar.gz because its prerequisites are not fulfilled
ignoring rhino1_7R3.zip because its prerequisites are not fulfilled
ignoring nss-3.25-with-nspr-4.12.tar.gz because its prerequisites are not
fulfilled
ignoring LICENSE_source-9.0.0.7-bj.html because its prerequisites are not
fulfilled
ignoring README_source-9.0.0.7-bj.txt because its prerequisites are not
fulfilled
ignoring source-9.0.0.7-bj.zip because its prerequisites are not fulfilled
ignoring README_silgraphite-2.3.1.txt because its prerequisites are not
fulfilled
ignoring silgraphite-2.3.1.tar.gz because its prerequisites are not
fulfilled
ignoring cairo-1.8.0.tar.gz because its prerequisites are not fulfilled
ignoring pixman-0.12.0.tar.gz because its prerequisites are not fulfilled
all external libraries present

dmake is located in search path

bundling of dictionaries is disabled.
]
What is the meaning of dmake is located in search path

Is this an error?


On Sat, Jan 26, 2019 at 3:28 AM Peter Kovacs  wrote:

> You need to do something like:
>
> autoconf
>
> ./configure
> --with-epm-url=
> https://sourceforge.net/projects/oooextras.mirror/files/epm-3.7.tar.gz
>
> --with-dmake-url=https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2
> --with-lang=
> "en-US
> de fr it pt ja"
> --enable-wiki-publisher
> --enable-verbose
> --without-stlport
> --enable-category-b
> --enable-opengl
> --enable-dbus
> --without-junit
> --with-package-format="installed archive deb"
> --enable-bundled-dictionaries
> --with-vendor=ASF buildbot - NOT FOR RELEASE
> --with-build-version=%(today)s-Rev.%(got_revision)s
>
> After that has been finished successfull you can bootstrap
>
> On 25.01.19 20:18, Nikhil Gupta wrote:
> > Yes you are right.
> > But Before start building we have to do the configuration and
> > bootstrapping.As in the mentioned resource:
> > https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO
> > After I 

Re: OpenOffice Build Error

2019-01-25 Thread Peter Kovacs
You need to do something like:

autoconf

./configure
--with-epm-url=https://sourceforge.net/projects/oooextras.mirror/files/epm-3.7.tar.gz
--with-dmake-url=https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2
--with-lang="en-US de fr it pt ja"
--enable-wiki-publisher
--enable-verbose
--without-stlport
--enable-category-b
--enable-opengl
--enable-dbus
--without-junit
--with-package-format="installed archive deb"
--enable-bundled-dictionaries
--with-vendor=ASF buildbot - NOT FOR RELEASE
--with-build-version=%(today)s-Rev.%(got_revision)s

After that has been finished successfull you can bootstrap

On 25.01.19 20:18, Nikhil Gupta wrote:
> Yes you are right.
> But Before start building we have to do the configuration and
> bootstrapping.As in the mentioned resource:
> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO
> After I installed epm and Dmake, we have to run the ./bootstrap in main
> directory. but the file is not present.
> and if i directly goes into the Building portion,
> I have to run the source, to add environment variables ,how to
> find my platform id from main/soenv file
> Thanks
>
> On Sat, Jan 26, 2019 at 12:18 AM Marcus  wrote:
>
>> Am 25.01.19 um 19:27 schrieb Nikhil Gupta:
>>>   Yes,I had already installed unowinreg.dll from the above mentioned
>> source.
>>> But the problem still remains.
>>> Are there any log files generated when we build the OpenOffice.
>>> So that we can check out where the problem occured.
>> I wonder that you are asking. When you start the build your screen
>> should be full of it. ;-)
>>
>> It would be helpful when you can give us this output.
>>
>> Marcus
>>
>>
>>
>>> On Fri, Jan 25, 2019 at 11:36 PM Mechtilde  wrote:
>>>
 Hello,

 did you install

 cd main

 wget -O external/unowinreg/unowinreg.dll
 http://tools.openoffice.org/unowinreg_prebuild/680/unowinreg.dll

 which is one line

 Kind regards

 Am 25.01.19 um 18:54 schrieb Nikhil Gupta:
> Hi everyone,
> i am Nikhil from India. I am novice to open source as of now but really
> interested to learn and contribute for this organization.
> I have been trying to set up OpenOffice environment on my Ubuntu(14.04)
> system. I am following the steps given on the official site.
>
>> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step
> I have completed all the build requirements that has been stated in
>> this
> page:
> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO
>
> I build and installed dmake and epm by following source.
> But when I runs ./bootstrap in main directory it says No such File or
> directory
>
> Do i have to manually download it or what to do.
>
> I would be really very grateful, if I could get help in this. I am
> totally stuck. I have tried lot many ways but couldn't resolve the
> errors.
>
> Thank you Team in anticipation!
>
> Regards,
> Nikhil
>>
>> -
>> 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: OpenOffice Build Error

2019-01-25 Thread Nikhil Gupta
The output of main/soenv file

The output of epm configure is

The output of dmake configure is

On Sat, Jan 26, 2019 at 12:48 AM Nikhil Gupta 
wrote:

> Yes you are right.
> But Before start building we have to do the configuration and
> bootstrapping.As in the mentioned resource:
> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO
> After I installed epm and Dmake, we have to run the ./bootstrap in main
> directory. but the file is not present.
> and if i directly goes into the Building portion,
> I have to run the source, to add environment variables ,how
> to find my platform id from main/soenv file
> Thanks
>
> On Sat, Jan 26, 2019 at 12:18 AM Marcus  wrote:
>
>> Am 25.01.19 um 19:27 schrieb Nikhil Gupta:
>> >   Yes,I had already installed unowinreg.dll from the above mentioned
>> source.
>> > But the problem still remains.
>> > Are there any log files generated when we build the OpenOffice.
>> > So that we can check out where the problem occured.
>>
>> I wonder that you are asking. When you start the build your screen
>> should be full of it. ;-)
>>
>> It would be helpful when you can give us this output.
>>
>> Marcus
>>
>>
>>
>> > On Fri, Jan 25, 2019 at 11:36 PM Mechtilde  wrote:
>> >
>> >> Hello,
>> >>
>> >> did you install
>> >>
>> >> cd main
>> >>
>> >> wget -O external/unowinreg/unowinreg.dll
>> >> http://tools.openoffice.org/unowinreg_prebuild/680/unowinreg.dll
>> >>
>> >> which is one line
>> >>
>> >> Kind regards
>> >>
>> >> Am 25.01.19 um 18:54 schrieb Nikhil Gupta:
>> >>> Hi everyone,
>> >>> i am Nikhil from India. I am novice to open source as of now but
>> really
>> >>> interested to learn and contribute for this organization.
>> >>> I have been trying to set up OpenOffice environment on my
>> Ubuntu(14.04)
>> >>> system. I am following the steps given on the official site.
>> >>>
>> >>
>> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step
>> >>>
>> >>> I have completed all the build requirements that has been stated in
>> this
>> >>> page:
>> >>> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO
>> >>>
>> >>> I build and installed dmake and epm by following source.
>> >>> But when I runs ./bootstrap in main directory it says No such File or
>> >>> directory
>> >>>
>> >>> Do i have to manually download it or what to do.
>> >>>
>> >>> I would be really very grateful, if I could get help in this. I am
>> >>> totally stuck. I have tried lot many ways but couldn't resolve the
>> >>> errors.
>> >>>
>> >>> Thank you Team in anticipation!
>> >>>
>> >>> Regards,
>> >>> Nikhil
>>
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>> For additional commands, e-mail: dev-h...@openoffice.apache.org
>>
>>
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by EPM configure 4.4.2, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ./configure --prefix=/usr/local --enable--aoo

## - ##
## Platform. ##
## - ##

hostname = nikhil-VirtualBox
uname -m = x86_64
uname -r = 4.4.0-31-generic
uname -s = Linux
uname -v = #50~14.04.1-Ubuntu SMP Wed Jul 13 01:07:32 UTC 2016

/usr/bin/uname -p = unknown
/bin/uname -X = unknown

/bin/arch  = unknown
/usr/bin/arch -k   = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo  = unknown
/bin/machine   = unknown
/usr/bin/oslevel   = unknown
/bin/universe  = unknown

PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games
PATH: /usr/local/games


## --- ##
## Core tests. ##
## --- ##

configure:2337: checking for clang
configure:2367: result: no
configure:2337: checking for cc
configure:2353: found /usr/bin/cc
configure:2364: result: cc
configure:2395: checking for C compiler version
configure:2404: cc --version >&5
cc (Ubuntu 4.8.4-2ubuntu1~14.04.4) 4.8.4
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:2415: $? = 0
configure:2404: cc -v >&5
Using built-in specs.
COLLECT_GCC=cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.8.4-2ubuntu1~14.04.4' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.8 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object 

Re: OpenOffice Build Error

2019-01-25 Thread Nikhil Gupta
Yes you are right.
But Before start building we have to do the configuration and
bootstrapping.As in the mentioned resource:
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO
After I installed epm and Dmake, we have to run the ./bootstrap in main
directory. but the file is not present.
and if i directly goes into the Building portion,
I have to run the source, to add environment variables ,how to
find my platform id from main/soenv file
Thanks

On Sat, Jan 26, 2019 at 12:18 AM Marcus  wrote:

> Am 25.01.19 um 19:27 schrieb Nikhil Gupta:
> >   Yes,I had already installed unowinreg.dll from the above mentioned
> source.
> > But the problem still remains.
> > Are there any log files generated when we build the OpenOffice.
> > So that we can check out where the problem occured.
>
> I wonder that you are asking. When you start the build your screen
> should be full of it. ;-)
>
> It would be helpful when you can give us this output.
>
> Marcus
>
>
>
> > On Fri, Jan 25, 2019 at 11:36 PM Mechtilde  wrote:
> >
> >> Hello,
> >>
> >> did you install
> >>
> >> cd main
> >>
> >> wget -O external/unowinreg/unowinreg.dll
> >> http://tools.openoffice.org/unowinreg_prebuild/680/unowinreg.dll
> >>
> >> which is one line
> >>
> >> Kind regards
> >>
> >> Am 25.01.19 um 18:54 schrieb Nikhil Gupta:
> >>> Hi everyone,
> >>> i am Nikhil from India. I am novice to open source as of now but really
> >>> interested to learn and contribute for this organization.
> >>> I have been trying to set up OpenOffice environment on my Ubuntu(14.04)
> >>> system. I am following the steps given on the official site.
> >>>
> >>
> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step
> >>>
> >>> I have completed all the build requirements that has been stated in
> this
> >>> page:
> >>> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO
> >>>
> >>> I build and installed dmake and epm by following source.
> >>> But when I runs ./bootstrap in main directory it says No such File or
> >>> directory
> >>>
> >>> Do i have to manually download it or what to do.
> >>>
> >>> I would be really very grateful, if I could get help in this. I am
> >>> totally stuck. I have tried lot many ways but couldn't resolve the
> >>> errors.
> >>>
> >>> Thank you Team in anticipation!
> >>>
> >>> Regards,
> >>> Nikhil
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>


Re: OpenOffice Build Error

2019-01-25 Thread Peter Kovacs
What was the output of configure?

On 25.01.19 19:27, Nikhil Gupta wrote:
> Hi,
>
>  Yes,I had already installed unowinreg.dll from the above mentioned source.
> But the problem still remains.
> Are there any log files generated when we build the OpenOffice.
> So that we can check out where the problem occured.
>
> On Fri, Jan 25, 2019 at 11:36 PM Mechtilde  wrote:
>
>> Hello,
>>
>> did you install
>>
>> cd main
>>
>> wget -O external/unowinreg/unowinreg.dll
>> http://tools.openoffice.org/unowinreg_prebuild/680/unowinreg.dll
>>
>> which is one line
>>
>> Kind regards
>>
>> Am 25.01.19 um 18:54 schrieb Nikhil Gupta:
>>> Hi everyone,
>>> i am Nikhil from India. I am novice to open source as of now but really
>>> interested to learn and contribute for this organization.
>>> I have been trying to set up OpenOffice environment on my Ubuntu(14.04)
>>> system. I am following the steps given on the official site.
>>>
>> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step
>>> I have completed all the build requirements that has been stated in this
>>> page:
>>> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO
>>>
>>> I build and installed dmake and epm by following source.
>>> But when I runs ./bootstrap in main directory it says No such File or
>>> directory
>>>
>>> Do i have to manually download it or what to do.
>>>
>>> I would be really very grateful, if I could get help in this. I am
>>> totally stuck. I have tried lot many ways but couldn't resolve the
>>> errors.
>>>
>>> Thank you Team in anticipation!
>>>
>>> Regards,
>>> Nikhil
>>>
>> --
>> Mechtilde Stehmann
>> ## Apache OpenOffice
>> ## Freie Office Suite für Linux, MacOSX, Windows
>> ## Debian Developer
>> ## PGP encryption welcome
>> ## F0E3 7F3D C87A 4998 2899  39E7 F287 7BBA 141A AD7F
>>
>>

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



Re: OpenOffice Build Error

2019-01-25 Thread Marcus

Am 25.01.19 um 19:27 schrieb Nikhil Gupta:

  Yes,I had already installed unowinreg.dll from the above mentioned source.
But the problem still remains.
Are there any log files generated when we build the OpenOffice.
So that we can check out where the problem occured.


I wonder that you are asking. When you start the build your screen 
should be full of it. ;-)


It would be helpful when you can give us this output.

Marcus




On Fri, Jan 25, 2019 at 11:36 PM Mechtilde  wrote:


Hello,

did you install

cd main

wget -O external/unowinreg/unowinreg.dll
http://tools.openoffice.org/unowinreg_prebuild/680/unowinreg.dll

which is one line

Kind regards

Am 25.01.19 um 18:54 schrieb Nikhil Gupta:

Hi everyone,
i am Nikhil from India. I am novice to open source as of now but really
interested to learn and contribute for this organization.
I have been trying to set up OpenOffice environment on my Ubuntu(14.04)
system. I am following the steps given on the official site.


https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step


I have completed all the build requirements that has been stated in this
page:
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO

I build and installed dmake and epm by following source.
But when I runs ./bootstrap in main directory it says No such File or
directory

Do i have to manually download it or what to do.

I would be really very grateful, if I could get help in this. I am
totally stuck. I have tried lot many ways but couldn't resolve the
errors.

Thank you Team in anticipation!

Regards,
Nikhil



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



Re: OpenOffice Build Error

2019-01-25 Thread Nikhil Gupta
Hi,

 Yes,I had already installed unowinreg.dll from the above mentioned source.
But the problem still remains.
Are there any log files generated when we build the OpenOffice.
So that we can check out where the problem occured.

On Fri, Jan 25, 2019 at 11:36 PM Mechtilde  wrote:

> Hello,
>
> did you install
>
> cd main
>
> wget -O external/unowinreg/unowinreg.dll
> http://tools.openoffice.org/unowinreg_prebuild/680/unowinreg.dll
>
> which is one line
>
> Kind regards
>
> Am 25.01.19 um 18:54 schrieb Nikhil Gupta:
> > Hi everyone,
> > i am Nikhil from India. I am novice to open source as of now but really
> > interested to learn and contribute for this organization.
> > I have been trying to set up OpenOffice environment on my Ubuntu(14.04)
> > system. I am following the steps given on the official site.
> >
> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step
> >
> > I have completed all the build requirements that has been stated in this
> > page:
> > https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO
> >
> > I build and installed dmake and epm by following source.
> > But when I runs ./bootstrap in main directory it says No such File or
> > directory
> >
> > Do i have to manually download it or what to do.
> >
> > I would be really very grateful, if I could get help in this. I am
> > totally stuck. I have tried lot many ways but couldn't resolve the
> > errors.
> >
> > Thank you Team in anticipation!
> >
> > Regards,
> > Nikhil
> >
>
> --
> Mechtilde Stehmann
> ## Apache OpenOffice
> ## Freie Office Suite für Linux, MacOSX, Windows
> ## Debian Developer
> ## PGP encryption welcome
> ## F0E3 7F3D C87A 4998 2899  39E7 F287 7BBA 141A AD7F
>
>


Re: OpenOffice Build Error

2019-01-25 Thread Mechtilde
Hello,

did you install

cd main

wget -O external/unowinreg/unowinreg.dll
http://tools.openoffice.org/unowinreg_prebuild/680/unowinreg.dll

which is one line

Kind regards

Am 25.01.19 um 18:54 schrieb Nikhil Gupta:
> Hi everyone,
> i am Nikhil from India. I am novice to open source as of now but really
> interested to learn and contribute for this organization.
> I have been trying to set up OpenOffice environment on my Ubuntu(14.04)
> system. I am following the steps given on the official site.
> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step
> 
> I have completed all the build requirements that has been stated in this
> page:
> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO
> 
> I build and installed dmake and epm by following source.
> But when I runs ./bootstrap in main directory it says No such File or
> directory
> 
> Do i have to manually download it or what to do.
> 
> I would be really very grateful, if I could get help in this. I am
> totally stuck. I have tried lot many ways but couldn't resolve the
> errors.
> 
> Thank you Team in anticipation!
> 
> Regards,
> Nikhil
> 

-- 
Mechtilde Stehmann
## Apache OpenOffice
## Freie Office Suite für Linux, MacOSX, Windows
## Debian Developer
## PGP encryption welcome
## F0E3 7F3D C87A 4998 2899  39E7 F287 7BBA 141A AD7F



signature.asc
Description: OpenPGP digital signature


OpenOffice Build Error

2019-01-25 Thread Nikhil Gupta
Hi everyone,
i am Nikhil from India. I am novice to open source as of now but really
interested to learn and contribute for this organization.
I have been trying to set up OpenOffice environment on my Ubuntu(14.04)
system. I am following the steps given on the official site.
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step

I have completed all the build requirements that has been stated in this
page:
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO

I build and installed dmake and epm by following source.
But when I runs ./bootstrap in main directory it says No such File or
directory

Do i have to manually download it or what to do.

I would be really very grateful, if I could get help in this. I am
totally stuck. I have tried lot many ways but couldn't resolve the
errors.

Thank you Team in anticipation!

Regards,
Nikhil


Re: New Build error Package Orbit is missing

2017-01-04 Thread Phillip Rhodes
Yep, I ran into that as well.  In my case, just doing a quick "sudo
dnf -y install Orbit2 Orbit2-devel" took care of that.


Phil

This message optimized for indexing by NSA PRISM


On Wed, Jan 4, 2017 at 1:18 PM, Marcus  wrote:
> Am 01/04/2017 01:37 PM, schrieb Peter Kovacs:
>>
>> Hello all,
>>
>>
>> just wanted to update that I worked around the Java Error.
>>
>> I linked the missing files into the Package
>> (/./aoo/main/jurt/com/sun/star/uno) and
>>
>> added to the makefile:
>>
>> DEPEND=java$/com$/sun$/star
>>
>> $(CLASSDIR)$/$(PACKAGE)$/$(DEPEND)
>>
>>
>> I am now stuck with the Orbit Package, but I remeber I read something
>> about this somewhere.
>
>
> I had the same - not error but problem:
>
> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step#Needed_packages
>
> Marcus
>
>
>
> -
> 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: New Build error Package Orbit is missing

2017-01-04 Thread Marcus

Am 01/04/2017 01:37 PM, schrieb Peter Kovacs:

Hello all,


just wanted to update that I worked around the Java Error.

I linked the missing files into the Package
(/./aoo/main/jurt/com/sun/star/uno) and

added to the makefile:

DEPEND=java$/com$/sun$/star

$(CLASSDIR)$/$(PACKAGE)$/$(DEPEND)


I am now stuck with the Orbit Package, but I remeber I read something
about this somewhere.


I had the same - not error but problem:

https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step#Needed_packages

Marcus


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



New Build error Package Orbit is missing

2017-01-04 Thread Peter Kovacs

Hello all,


just wanted to update that I worked around the Java Error.

I linked the missing files into the Package 
(/./aoo/main/jurt/com/sun/star/uno) and


added to the makefile:

DEPEND=java$/com$/sun$/star

$(CLASSDIR)$/$(PACKAGE)$/$(DEPEND)


I am now stuck with the Orbit Package, but I remeber I read something 
about this somewhere.


Error out put:

Package ORBit-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `ORBit-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'ORBit-2.0' found
dmake:  Error code 1, while making 'Shell escape'

I think I am on my way.

All the best

Peter


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



Ambari build error

2016-12-31 Thread Phillip Rhodes
Ambari crew:

I'm trying to build Ambari on Fedora 24, and am running into the following
error.   Hoping someone can help shed some light on what's going on.


[INFO] 
[INFO] BUILD FAILURE
[INFO] 
[INFO] Total time: 12.625 s
[INFO] Finished at: 2016-12-31T11:28:52-05:00
[INFO] Final Memory: 41M/1200M
[INFO] 
[ERROR] Failed to execute goal
org.codehaus.mojo:rpm-maven-plugin:2.0.1:rpm (default-cli) on project
ambari: RPM build execution return
ed: '1' executing '/bin/sh -c cd
/home/prhodes/development/projects/upstream_oss/apache/ambari/ambari-git/target/rpm/ambari/SPECS
&& rp
mbuild -bb --buildroot
/home/prhodes/development/projects/upstream_oss/apache/ambari/ambari-git/target/rpm/ambari/buildroot
--define '_
topdir 
/home/prhodes/development/projects/upstream_oss/apache/ambari/ambari-git/target/rpm/ambari'
--target noarch-redhat-linux ambari.
spec' -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to
execute goal org.codehaus.mojo:rpm-maven-plugin:2.0.1:rpm (default-cl
i) on project ambari: RPM build execution returned: '1' executing
'/bin/sh -c cd /home/prhodes/development/projects/upstream_oss/apache
/ambari/ambari-git/target/rpm/ambari/SPECS && rpmbuild -bb --buildroot
/home/prhodes/development/projects/upstream_oss/apache/ambari/am
bari-git/target/rpm/ambari/buildroot --define '_topdir
/home/prhodes/development/projects/upstream_oss/apache/ambari/ambari-git/target/
rpm/ambari' --target noarch-redhat-linux ambari.spec'
   at 
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
   at 
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
   at 
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
   at 
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
   at 
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
   at 
org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
   at 
org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
   at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
   at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
   at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
   at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
   at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
   at org.apache.maven.cli.MavenCli.main(MavenCli.java:199)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
   at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:498)
   at 
org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
   at 
org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
   at 
org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
   at 
org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.MojoExecutionException: RPM build
execution returned: '1' executing '/bin/sh -c cd /home/prhodes/dev
elopment/projects/upstream_oss/apache/ambari/ambari-git/target/rpm/ambari/SPECS
&& rpmbuild -bb --buildroot /home/prhodes/development/p
rojects/upstream_oss/apache/ambari/ambari-git/target/rpm/ambari/buildroot
--define '_topdir /home/prhodes/development/projects/upstream
_oss/apache/ambari/ambari-git/target/rpm/ambari' --target
noarch-redhat-linux ambari.spec'
   at org.codehaus.mojo.rpm.RPMHelper.buildPackage(RPMHelper.java:150)
   at 
org.codehaus.mojo.rpm.AbstractRPMMojo.execute(AbstractRPMMojo.java:736)
   at 
org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
   at 
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)
   ... 20 more
[ERROR]
[ERROR]
[ERROR] For more information about the errors and possible solutions,
please read the following articles:
[ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException


I've tried running that rpm command manually, and when I do, it seems
to finish with no errors, but I get an empty rpm file.

Any idea what might be going on?


Thanks,


Phil

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



Another AOO build error - packcomponents

2016-12-31 Thread Phillip Rhodes
Hey gang, my build is making it further now, but still fails with this bit
of weirdness.  Any ideas on this?



[prhodes@whiskey instsetoo_native]$ build --all:postprocess
build -- version: 1775979


=
Building module postprocess
=

Entering 
/home/prhodes/development/projects/upstream_oss/apache/openoffice/main/postprocess/packcomponents

dmake:  Error: --
`/home/prhodes/development/projects/upstream_oss/apache/openoffice/main/solver/420/unxlngx6.pro/xml/cached1.component
' not found, and can't be made

1 module(s):
   postprocess
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making
/home/prhodes/development/projects/upstream_oss/apache/openoffice/main/postprocess/packcomponents

When you have fixed the errors in that module you can resume the build
by running:

   build --all:postprocess




Phil

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



Re: Build error on fonts

2016-11-26 Thread Peter Kovacs

nvm. I fixed it. it seems that I needed to rerun bootstrap.


On 26.11.2016 10:07, Peter Kovacs wrote:

Hello all,


I try to advance again on my build. And I run into an error again:

dmake:  Error: -- 
`../../unxlngx6.pro/misc/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.unpack' 
not found, and can't be made



Why could it be that the File is not there?


all the best

Peter




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



Build error on fonts

2016-11-26 Thread Peter Kovacs

Hello all,


I try to advance again on my build. And I run into an error again:

dmake:  Error: -- 
`../../unxlngx6.pro/misc/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.unpack' 
not found, and can't be made



Why could it be that the File is not there?


all the best

Peter


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



Re: build error

2016-11-16 Thread Peter Kovacs


On 16.11.2016 08:41, Ariel Constenla-Haile wrote:

I guess your system python defaults to Python 3.
Take a look at the output of

/usr/bin/env python --version

gtest does not work with Python 3, at least the version
we use, see https://github.com/google/googletest/issues/434


Regards

Thanks!

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



Re: build error

2016-11-15 Thread Ariel Constenla-Haile
On 15/11/16 17:54, Peter Kovacs wrote:
> Hello all,
> 
> 
> I have following build error on trunk:
> 
> "./scripts/fuse_gtest_files.py" "./fused-src" File
> "./scripts/fuse_gtest_files.py", line 93 print 'ERROR: Cannot find %s
> in directory %s.' % (relative_path, ^ SyntaxError: invalid syntax 
> make: *** [Makefile:1340: fused-gtest] Error 1 dmake:  Error code 2,
> while making './unxlngx6.pro/misc/build/so_built_oo_gtest'
> 
> I do not understand this. Anyone has an Idea?
> 
> Google did not know either.

I guess your system python defaults to Python 3.
Take a look at the output of 

/usr/bin/env python --version

gtest does not work with Python 3, at least the version
we use, see https://github.com/google/googletest/issues/434


Regards
-- 
Ariel Constenla-Haile
La Plata, Argentina



signature.asc
Description: OpenPGP digital signature


build error

2016-11-15 Thread Peter Kovacs

Hello all,


I have following build error on trunk:

"./scripts/fuse_gtest_files.py" "./fused-src"
  File "./scripts/fuse_gtest_files.py", line 93
print 'ERROR: Cannot find %s in directory %s.' % (relative_path,
 ^
SyntaxError: invalid syntax
make: *** [Makefile:1340: fused-gtest] Error 1
dmake:  Error code 2, while making './unxlngx6.pro/misc/build/so_built_oo_gtest'

I do not understand this. Anyone has an Idea?

Google did not know either.


All the best

Peter


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



Re: Help needed: Build error in bean and vcl

2016-09-06 Thread Marcus

Am 09/06/2016 04:32 PM, schrieb Keith N. McKenna:

Andrea Pescetti wrote:

Marcus wrote:

I've got a AOO 4.2.0m1 Build 9800 Rev. 1759138.


Congratulations!


Thank very much for your help. Of course, as a good contributor I'll
collect all data and update [1] with a new Fedora 21 section.
[1]
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step



For some reason (or no reason) Fedora is described at
https://wiki.openoffice.org/wiki/Fedora_Build_Instructions

Regards,
   Andrea.

Andrea;
Would it make sense to re-direct that to the same area of the wiki as
the rest of the build guides?


done.

I've moved the content into the "Step_by_step" wikipage to have all in 
one page and left just a link to the new location. Tomorrow I'll add my 
Fedora 21 steps.


Marcus


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



Re: Help needed: Build error in bean and vcl

2016-09-06 Thread Keith N. McKenna
Andrea Pescetti wrote:
> Marcus wrote:
>> I've got a AOO 4.2.0m1 Build 9800 Rev. 1759138.
> 
> Congratulations!
> 
>> Thank very much for your help. Of course, as a good contributor I'll
>> collect all data and update [1] with a new Fedora 21 section.
>> [1]
>> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step
>>
> 
> For some reason (or no reason) Fedora is described at
> https://wiki.openoffice.org/wiki/Fedora_Build_Instructions
> 
> Regards,
>   Andrea.
Andrea;
Would it make sense to re-direct that to the same area of the wiki as
the rest of the build guides?

Regards
Keith



signature.asc
Description: OpenPGP digital signature


Re: Help needed: Build error in bean and vcl

2016-09-06 Thread Andrea Pescetti

Marcus wrote:

I've got a AOO 4.2.0m1 Build 9800 Rev. 1759138.


Congratulations!


Thank very much for your help. Of course, as a good contributor I'll
collect all data and update [1] with a new Fedora 21 section.
[1]
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step


For some reason (or no reason) Fedora is described at
https://wiki.openoffice.org/wiki/Fedora_Build_Instructions

Regards,
  Andrea.

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



Re: Help needed: Build error in bean and vcl

2016-09-05 Thread Marcus

Am 09/06/2016 12:25 AM, schrieb Don Lewis:

On  6 Sep, Marcus wrote:

Am 09/05/2016 11:00 PM, schrieb Don Lewis:

On  5 Sep, Marcus wrote:

Am 09/05/2016 10:39 PM, schrieb Don Lewis:

On  5 Sep, Marcus wrote:

Am 09/05/2016 09:33 PM, schrieb Don Lewis:

On  5 Sep, Marcus wrote:

Am 09/05/2016 05:39 AM, schrieb Don Lewis:

On  4 Sep, Don Lewis wrote:

On  4 Sep, Marcus wrote:

Thanks a lot. "libXt-devel" was indeed not installed.

But now it's breaking in svx:

[...]

=
Building module svx
=

Entering /share/linux2/aoo/trunk/main/svx/prj

cd ..&&  make -s -r -j1&&  make -s -r deliverlog
[ build LNK ] Library/libsvxcore.so
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
In function
`FmXGridControl::createPeer(com::sun::star::uno::Reference
const&, com::sun::star::uno::Reference
const&)':
fmgridif.cxx:(.text+0x68b2): undefined reference to `non-virtual thunk to
WindowListenerMultiplexer::acquire()'
/usr/bin/ld:
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
relocation R_X86_64_PC32 against undefined symbol
`_ZThn48_N25WindowListenerMultiplexer7acquireEv' can not be used when
making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
/share/linux2/aoo/trunk/main/solenv/gbuild/LinkTarget.mk:248: recipe for
target
'/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so'
failed
make: ***
[/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so]
Error 1
dmake:  Error code 2, while making 'all'

1 module(s):
svx
need(s) to be rebuilt


That looks very familiar.  What compiler version are you using?


gcc 4.9.2


Yup, it's gcc 4.9 bug.  This is what I did for the FreeBSD port to work
around this problem:


Unfortunately $(CCNUMVER) isn't available to gbuild so we can't disable
optimization of the affected file only for gcc 4.9.


I'm sorry but the error has not changed. I've compared the patched
"Library_svxcore.mk" file with the original one and only these changes
were made.

In your patch a "dbaccess/source/ui/uno/makefile.mk" file is mentioned
which I don't have. Is this related to the "--disable-odk" configure
flag I've used and therefore is OK?


Hmn, that's strange.  That makefile is still present in recent trunk.
It' doesn't have any relationship to --disable-odk.


Yesterday I've done my very first checkout and a "svn update" a second
ago in the directory doesn't got anything new. SWo, it's indeed strange.


Is there any other way than to downgrade gcc?


For the FreeBSD port, I'm not using that patch due to the lack of
$(CCNUMVER) on the gbuild side of thigs.  If we had that, then I would
have upstreamed the patch.  Instead, I'm still using the workaround in
the third to last paragraph.  The Makefile for the FreeBSD port does
this on-the-fly patch:

.if ${COMPILER_TYPE} == gcc
# g++49 -Os sometimes leaves inline class methods undefined,
# affects fmgridif.cxx and ColumnControl.cxx
# See:
if [ ${CXX} = g++49  ]; then \
${REINPLACE_CMD} -e "s/ := -Os/ := -Os -fno-devirtualize 
-fno-de
virtualize-speculatively/" ${WRKSRC}/solenv/gbuild/platform/freebsd.mk; \
${REINPLACE_CMD} -e "s/=-Os /=-Os -fno-devirtualize 
-fno-devirtu
alize-speculatively /" ${WRKSRC}/solenv/inc/unxfbsdi.mk; \
fi


For Linux you would have to patch main/solenv/gbuild/platform/linux.mk
(and main/solenv/inc/unxlng*.mk for non-x86_64 platforms).


I've add the following to line 152, beside to the COMPILERNOOPTSFLAFS

gb_COMPILEROPTFLAGS := O0

I hope that this correct. If so, then unfortunately it doesn't make a
change. Stil lthe same error.


On x86_64, the Library_svxcore.mk patch should have done the trick
though.  The problem is triggered by using -Os optimization and with
that change to Library_svxcore.mk, fmgridif.cxx should be getting
compiled with -O0.  Can you check the log file to see if that is the
case?  You'll probably have to configure with --enable-verbose to see
it.


OK, turned back the "linux.mk" patch.

I've added --enable-verbose to configure, bootstrap'ed and source'ed
again. The build cancelled at the same location and with the same error
message.

"fmgridif.cxx" was nowhere mentioned, only a "fmgridif.o". It's the last
file mentioned in a long list of .o files from module "svx".


Are you starting from a clean build each time?  If you just restart the
build, it will reuse the bad fmgridif.o.  It is necessary to recompile
fmgridif.cxx with the patched Library_svxcore.mk.


I always do a "build --prepare --from svx" before starting a new build.
I hope thats the right one. I don't find a "clean" or something else for
the "build" 

Re: Help needed: Build error in bean and vcl

2016-09-05 Thread Don Lewis
On  6 Sep, Marcus wrote:
> Am 09/05/2016 11:00 PM, schrieb Don Lewis:
>> On  5 Sep, Marcus wrote:
>>> Am 09/05/2016 10:39 PM, schrieb Don Lewis:
 On  5 Sep, Marcus wrote:
> Am 09/05/2016 09:33 PM, schrieb Don Lewis:
>> On  5 Sep, Marcus wrote:
>>> Am 09/05/2016 05:39 AM, schrieb Don Lewis:
 On  4 Sep, Don Lewis wrote:
> On  4 Sep, Marcus wrote:
>> Thanks a lot. "libXt-devel" was indeed not installed.
>>
>> But now it's breaking in svx:
>>
>> [...]
>>
>> =
>> Building module svx
>> =
>>
>> Entering /share/linux2/aoo/trunk/main/svx/prj
>>
>> cd ..&& make -s -r -j1&& make -s -r deliverlog
>> [ build LNK ] Library/libsvxcore.so
>> /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
>> In function
>> `FmXGridControl::createPeer(com::sun::star::uno::Reference
>> const&, 
>> com::sun::star::uno::Reference
>> const&)':
>> fmgridif.cxx:(.text+0x68b2): undefined reference to `non-virtual 
>> thunk to
>> WindowListenerMultiplexer::acquire()'
>> /usr/bin/ld:
>> /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
>> relocation R_X86_64_PC32 against undefined symbol
>> `_ZThn48_N25WindowListenerMultiplexer7acquireEv' can not be used when
>> making a shared object; recompile with -fPIC
>> /usr/bin/ld: final link failed: Bad value
>> collect2: error: ld returned 1 exit status
>> /share/linux2/aoo/trunk/main/solenv/gbuild/LinkTarget.mk:248: recipe 
>> for
>> target
>> '/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so'
>> failed
>> make: ***
>> [/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so]
>> Error 1
>> dmake:  Error code 2, while making 'all'
>>
>> 1 module(s):
>>  svx
>> need(s) to be rebuilt
>
> That looks very familiar.  What compiler version are you using?
>>>
>>> gcc 4.9.2
>>>
 Yup, it's gcc 4.9 bug.  This is what I did for the FreeBSD port to work
 around this problem:
 

 Unfortunately $(CCNUMVER) isn't available to gbuild so we can't disable
 optimization of the affected file only for gcc 4.9.
>>>
>>> I'm sorry but the error has not changed. I've compared the patched
>>> "Library_svxcore.mk" file with the original one and only these changes
>>> were made.
>>>
>>> In your patch a "dbaccess/source/ui/uno/makefile.mk" file is mentioned
>>> which I don't have. Is this related to the "--disable-odk" configure
>>> flag I've used and therefore is OK?
>>
>> Hmn, that's strange.  That makefile is still present in recent trunk.
>> It' doesn't have any relationship to --disable-odk.
>
> Yesterday I've done my very first checkout and a "svn update" a second
> ago in the directory doesn't got anything new. SWo, it's indeed strange.
>
>>> Is there any other way than to downgrade gcc?
>>
>> For the FreeBSD port, I'm not using that patch due to the lack of
>> $(CCNUMVER) on the gbuild side of thigs.  If we had that, then I would
>> have upstreamed the patch.  Instead, I'm still using the workaround in
>> the third to last paragraph.  The Makefile for the FreeBSD port does
>> this on-the-fly patch:
>>
>> .if ${COMPILER_TYPE} == gcc
>># g++49 -Os sometimes leaves inline class methods undefined,
>># affects fmgridif.cxx and ColumnControl.cxx
>># See:
>>if [ ${CXX} = g++49  ]; then \
>>${REINPLACE_CMD} -e "s/ := -Os/ := -Os 
>> -fno-devirtualize -fno-de
>> virtualize-speculatively/" ${WRKSRC}/solenv/gbuild/platform/freebsd.mk; \
>>${REINPLACE_CMD} -e "s/=-Os /=-Os -fno-devirtualize 
>> -fno-devirtu
>> alize-speculatively /" ${WRKSRC}/solenv/inc/unxfbsdi.mk; \
>>fi
>>
>>
>> For Linux you would have to patch main/solenv/gbuild/platform/linux.mk
>> (and main/solenv/inc/unxlng*.mk for non-x86_64 platforms).
>
> I've add the following to line 152, beside to the COMPILERNOOPTSFLAFS
>
> gb_COMPILEROPTFLAGS := O0
>
> I hope that this correct. If so, then unfortunately it doesn't make a
> change. Stil lthe same error.
>
>> On x86_64, the Library_svxcore.mk patch should have done the trick
>> though.  The problem is triggered by using -Os optimization and with
>> that change to 

Re: Help needed: Build error in bean and vcl

2016-09-05 Thread Marcus

Am 09/05/2016 11:00 PM, schrieb Don Lewis:

On  5 Sep, Marcus wrote:

Am 09/05/2016 10:39 PM, schrieb Don Lewis:

On  5 Sep, Marcus wrote:

Am 09/05/2016 09:33 PM, schrieb Don Lewis:

On  5 Sep, Marcus wrote:

Am 09/05/2016 05:39 AM, schrieb Don Lewis:

On  4 Sep, Don Lewis wrote:

On  4 Sep, Marcus wrote:

Thanks a lot. "libXt-devel" was indeed not installed.

But now it's breaking in svx:

[...]

=
Building module svx
=

Entering /share/linux2/aoo/trunk/main/svx/prj

cd ..&& make -s -r -j1&& make -s -r deliverlog
[ build LNK ] Library/libsvxcore.so
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
In function
`FmXGridControl::createPeer(com::sun::star::uno::Reference
const&, com::sun::star::uno::Reference
const&)':
fmgridif.cxx:(.text+0x68b2): undefined reference to `non-virtual thunk to
WindowListenerMultiplexer::acquire()'
/usr/bin/ld:
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
relocation R_X86_64_PC32 against undefined symbol
`_ZThn48_N25WindowListenerMultiplexer7acquireEv' can not be used when
making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
/share/linux2/aoo/trunk/main/solenv/gbuild/LinkTarget.mk:248: recipe for
target
'/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so'
failed
make: ***
[/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so]
Error 1
dmake:  Error code 2, while making 'all'

1 module(s):
svx
need(s) to be rebuilt


That looks very familiar.  What compiler version are you using?


gcc 4.9.2


Yup, it's gcc 4.9 bug.  This is what I did for the FreeBSD port to work
around this problem:


Unfortunately $(CCNUMVER) isn't available to gbuild so we can't disable
optimization of the affected file only for gcc 4.9.


I'm sorry but the error has not changed. I've compared the patched
"Library_svxcore.mk" file with the original one and only these changes
were made.

In your patch a "dbaccess/source/ui/uno/makefile.mk" file is mentioned
which I don't have. Is this related to the "--disable-odk" configure
flag I've used and therefore is OK?


Hmn, that's strange.  That makefile is still present in recent trunk.
It' doesn't have any relationship to --disable-odk.


Yesterday I've done my very first checkout and a "svn update" a second
ago in the directory doesn't got anything new. SWo, it's indeed strange.


Is there any other way than to downgrade gcc?


For the FreeBSD port, I'm not using that patch due to the lack of
$(CCNUMVER) on the gbuild side of thigs.  If we had that, then I would
have upstreamed the patch.  Instead, I'm still using the workaround in
the third to last paragraph.  The Makefile for the FreeBSD port does
this on-the-fly patch:

.if ${COMPILER_TYPE} == gcc
   # g++49 -Os sometimes leaves inline class methods undefined,
   # affects fmgridif.cxx and ColumnControl.cxx
   # See:
   if [ ${CXX} = g++49  ]; then \
   ${REINPLACE_CMD} -e "s/ := -Os/ := -Os -fno-devirtualize 
-fno-de
virtualize-speculatively/" ${WRKSRC}/solenv/gbuild/platform/freebsd.mk; \
   ${REINPLACE_CMD} -e "s/=-Os /=-Os -fno-devirtualize 
-fno-devirtu
alize-speculatively /" ${WRKSRC}/solenv/inc/unxfbsdi.mk; \
   fi


For Linux you would have to patch main/solenv/gbuild/platform/linux.mk
(and main/solenv/inc/unxlng*.mk for non-x86_64 platforms).


I've add the following to line 152, beside to the COMPILERNOOPTSFLAFS

gb_COMPILEROPTFLAGS := O0

I hope that this correct. If so, then unfortunately it doesn't make a
change. Stil lthe same error.


On x86_64, the Library_svxcore.mk patch should have done the trick
though.  The problem is triggered by using -Os optimization and with
that change to Library_svxcore.mk, fmgridif.cxx should be getting
compiled with -O0.  Can you check the log file to see if that is the
case?  You'll probably have to configure with --enable-verbose to see
it.


OK, turned back the "linux.mk" patch.

I've added --enable-verbose to configure, bootstrap'ed and source'ed
again. The build cancelled at the same location and with the same error
message.

"fmgridif.cxx" was nowhere mentioned, only a "fmgridif.o". It's the last
file mentioned in a long list of .o files from module "svx".


Are you starting from a clean build each time?  If you just restart the
build, it will reuse the bad fmgridif.o.  It is necessary to recompile
fmgridif.cxx with the patched Library_svxcore.mk.


I always do a "build --prepare --from svx" before starting a new build.
I hope thats the right one. I don't find a "clean" or something else for
the "build" comamnd.


Hmn, I wonder if --prepare does the right thing with gbuild ...

Try 

Re: Help needed: Build error in bean and vcl

2016-09-05 Thread Don Lewis
On  5 Sep, Marcus wrote:
> Am 09/05/2016 10:39 PM, schrieb Don Lewis:
>> On  5 Sep, Marcus wrote:
>>> Am 09/05/2016 09:33 PM, schrieb Don Lewis:
 On  5 Sep, Marcus wrote:
> Am 09/05/2016 05:39 AM, schrieb Don Lewis:
>> On  4 Sep, Don Lewis wrote:
>>> On  4 Sep, Marcus wrote:
 Thanks a lot. "libXt-devel" was indeed not installed.

 But now it's breaking in svx:

 [...]

 =
 Building module svx
 =

 Entering /share/linux2/aoo/trunk/main/svx/prj

 cd ..&&make -s -r -j1&&make -s -r deliverlog
 [ build LNK ] Library/libsvxcore.so
 /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
 In function
 `FmXGridControl::createPeer(com::sun::star::uno::Reference
 const&, 
 com::sun::star::uno::Reference
 const&)':
 fmgridif.cxx:(.text+0x68b2): undefined reference to `non-virtual thunk 
 to
 WindowListenerMultiplexer::acquire()'
 /usr/bin/ld:
 /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
 relocation R_X86_64_PC32 against undefined symbol
 `_ZThn48_N25WindowListenerMultiplexer7acquireEv' can not be used when
 making a shared object; recompile with -fPIC
 /usr/bin/ld: final link failed: Bad value
 collect2: error: ld returned 1 exit status
 /share/linux2/aoo/trunk/main/solenv/gbuild/LinkTarget.mk:248: recipe 
 for
 target
 '/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so'
 failed
 make: ***
 [/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so]
 Error 1
 dmake:  Error code 2, while making 'all'

 1 module(s):
svx
 need(s) to be rebuilt
>>>
>>> That looks very familiar.  What compiler version are you using?
>
> gcc 4.9.2
>
>> Yup, it's gcc 4.9 bug.  This is what I did for the FreeBSD port to work
>> around this problem:
>> 
>>
>> Unfortunately $(CCNUMVER) isn't available to gbuild so we can't disable
>> optimization of the affected file only for gcc 4.9.
>
> I'm sorry but the error has not changed. I've compared the patched
> "Library_svxcore.mk" file with the original one and only these changes
> were made.
>
> In your patch a "dbaccess/source/ui/uno/makefile.mk" file is mentioned
> which I don't have. Is this related to the "--disable-odk" configure
> flag I've used and therefore is OK?

 Hmn, that's strange.  That makefile is still present in recent trunk.
 It' doesn't have any relationship to --disable-odk.
>>>
>>> Yesterday I've done my very first checkout and a "svn update" a second
>>> ago in the directory doesn't got anything new. SWo, it's indeed strange.
>>>
> Is there any other way than to downgrade gcc?

 For the FreeBSD port, I'm not using that patch due to the lack of
 $(CCNUMVER) on the gbuild side of thigs.  If we had that, then I would
 have upstreamed the patch.  Instead, I'm still using the workaround in
 the third to last paragraph.  The Makefile for the FreeBSD port does
 this on-the-fly patch:

 .if ${COMPILER_TYPE} == gcc
   # g++49 -Os sometimes leaves inline class methods undefined,
   # affects fmgridif.cxx and ColumnControl.cxx
   # See:
   if [ ${CXX} = g++49  ]; then \
   ${REINPLACE_CMD} -e "s/ := -Os/ := -Os -fno-devirtualize 
 -fno-de
 virtualize-speculatively/" ${WRKSRC}/solenv/gbuild/platform/freebsd.mk; \
   ${REINPLACE_CMD} -e "s/=-Os /=-Os -fno-devirtualize 
 -fno-devirtu
 alize-speculatively /" ${WRKSRC}/solenv/inc/unxfbsdi.mk; \
   fi


 For Linux you would have to patch main/solenv/gbuild/platform/linux.mk
 (and main/solenv/inc/unxlng*.mk for non-x86_64 platforms).
>>>
>>> I've add the following to line 152, beside to the COMPILERNOOPTSFLAFS
>>>
>>> gb_COMPILEROPTFLAGS := O0
>>>
>>> I hope that this correct. If so, then unfortunately it doesn't make a
>>> change. Stil lthe same error.
>>>
 On x86_64, the Library_svxcore.mk patch should have done the trick
 though.  The problem is triggered by using -Os optimization and with
 that change to Library_svxcore.mk, fmgridif.cxx should be getting
 compiled with -O0.  Can you check the log file to see if that is the
 case?  You'll probably have to configure with --enable-verbose to see
 it.
>>>
>>> OK, turned back the "linux.mk" patch.
>>>
>>> I've added --enable-verbose to 

Re: Help needed: Build error in bean and vcl

2016-09-05 Thread Marcus

Am 09/05/2016 10:39 PM, schrieb Don Lewis:

On  5 Sep, Marcus wrote:

Am 09/05/2016 09:33 PM, schrieb Don Lewis:

On  5 Sep, Marcus wrote:

Am 09/05/2016 05:39 AM, schrieb Don Lewis:

On  4 Sep, Don Lewis wrote:

On  4 Sep, Marcus wrote:

Thanks a lot. "libXt-devel" was indeed not installed.

But now it's breaking in svx:

[...]

=
Building module svx
=

Entering /share/linux2/aoo/trunk/main/svx/prj

cd ..&&make -s -r -j1&&make -s -r deliverlog
[ build LNK ] Library/libsvxcore.so
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
In function
`FmXGridControl::createPeer(com::sun::star::uno::Reference
const&, com::sun::star::uno::Reference
const&)':
fmgridif.cxx:(.text+0x68b2): undefined reference to `non-virtual thunk to
WindowListenerMultiplexer::acquire()'
/usr/bin/ld:
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
relocation R_X86_64_PC32 against undefined symbol
`_ZThn48_N25WindowListenerMultiplexer7acquireEv' can not be used when
making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
/share/linux2/aoo/trunk/main/solenv/gbuild/LinkTarget.mk:248: recipe for
target
'/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so'
failed
make: ***
[/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so]
Error 1
dmake:  Error code 2, while making 'all'

1 module(s):
svx
need(s) to be rebuilt


That looks very familiar.  What compiler version are you using?


gcc 4.9.2


Yup, it's gcc 4.9 bug.  This is what I did for the FreeBSD port to work
around this problem:


Unfortunately $(CCNUMVER) isn't available to gbuild so we can't disable
optimization of the affected file only for gcc 4.9.


I'm sorry but the error has not changed. I've compared the patched
"Library_svxcore.mk" file with the original one and only these changes
were made.

In your patch a "dbaccess/source/ui/uno/makefile.mk" file is mentioned
which I don't have. Is this related to the "--disable-odk" configure
flag I've used and therefore is OK?


Hmn, that's strange.  That makefile is still present in recent trunk.
It' doesn't have any relationship to --disable-odk.


Yesterday I've done my very first checkout and a "svn update" a second
ago in the directory doesn't got anything new. SWo, it's indeed strange.


Is there any other way than to downgrade gcc?


For the FreeBSD port, I'm not using that patch due to the lack of
$(CCNUMVER) on the gbuild side of thigs.  If we had that, then I would
have upstreamed the patch.  Instead, I'm still using the workaround in
the third to last paragraph.  The Makefile for the FreeBSD port does
this on-the-fly patch:

.if ${COMPILER_TYPE} == gcc
  # g++49 -Os sometimes leaves inline class methods undefined,
  # affects fmgridif.cxx and ColumnControl.cxx
  # See:
  if [ ${CXX} = g++49  ]; then \
  ${REINPLACE_CMD} -e "s/ := -Os/ := -Os -fno-devirtualize 
-fno-de
virtualize-speculatively/" ${WRKSRC}/solenv/gbuild/platform/freebsd.mk; \
  ${REINPLACE_CMD} -e "s/=-Os /=-Os -fno-devirtualize 
-fno-devirtu
alize-speculatively /" ${WRKSRC}/solenv/inc/unxfbsdi.mk; \
  fi


For Linux you would have to patch main/solenv/gbuild/platform/linux.mk
(and main/solenv/inc/unxlng*.mk for non-x86_64 platforms).


I've add the following to line 152, beside to the COMPILERNOOPTSFLAFS

gb_COMPILEROPTFLAGS := O0

I hope that this correct. If so, then unfortunately it doesn't make a
change. Stil lthe same error.


On x86_64, the Library_svxcore.mk patch should have done the trick
though.  The problem is triggered by using -Os optimization and with
that change to Library_svxcore.mk, fmgridif.cxx should be getting
compiled with -O0.  Can you check the log file to see if that is the
case?  You'll probably have to configure with --enable-verbose to see
it.


OK, turned back the "linux.mk" patch.

I've added --enable-verbose to configure, bootstrap'ed and source'ed
again. The build cancelled at the same location and with the same error
message.

"fmgridif.cxx" was nowhere mentioned, only a "fmgridif.o". It's the last
file mentioned in a long list of .o files from module "svx".


Are you starting from a clean build each time?  If you just restart the
build, it will reuse the bad fmgridif.o.  It is necessary to recompile
fmgridif.cxx with the patched Library_svxcore.mk.


I always do a "build --prepare --from svx" before starting a new build. 
I hope thats the right one. I don't find a "clean" or something else for 
the "build" comamnd.



BTW:
Due to dependencies for ant, junit, hamcreast and others I had to
install JDK 1.8.0. Dont' know if this matters somehoe.


Not for this 

Re: Help needed: Build error in bean and vcl

2016-09-05 Thread Don Lewis
On  5 Sep, Marcus wrote:
> Am 09/05/2016 09:33 PM, schrieb Don Lewis:
>> On  5 Sep, Marcus wrote:
>>> Am 09/05/2016 05:39 AM, schrieb Don Lewis:
 On  4 Sep, Don Lewis wrote:
> On  4 Sep, Marcus wrote:
>> Thanks a lot. "libXt-devel" was indeed not installed.
>>
>> But now it's breaking in svx:
>>
>> [...]
>>
>> =
>> Building module svx
>> =
>>
>> Entering /share/linux2/aoo/trunk/main/svx/prj
>>
>> cd ..&&   make -s -r -j1&&   make -s -r deliverlog
>> [ build LNK ] Library/libsvxcore.so
>> /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
>> In function
>> `FmXGridControl::createPeer(com::sun::star::uno::Reference
>> const&, com::sun::star::uno::Reference
>> const&)':
>> fmgridif.cxx:(.text+0x68b2): undefined reference to `non-virtual thunk to
>> WindowListenerMultiplexer::acquire()'
>> /usr/bin/ld:
>> /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
>> relocation R_X86_64_PC32 against undefined symbol
>> `_ZThn48_N25WindowListenerMultiplexer7acquireEv' can not be used when
>> making a shared object; recompile with -fPIC
>> /usr/bin/ld: final link failed: Bad value
>> collect2: error: ld returned 1 exit status
>> /share/linux2/aoo/trunk/main/solenv/gbuild/LinkTarget.mk:248: recipe for
>> target
>> '/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so'
>> failed
>> make: ***
>> [/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so]
>> Error 1
>> dmake:  Error code 2, while making 'all'
>>
>> 1 module(s):
>>  svx
>> need(s) to be rebuilt
>
> That looks very familiar.  What compiler version are you using?
>>>
>>> gcc 4.9.2
>>>
 Yup, it's gcc 4.9 bug.  This is what I did for the FreeBSD port to work
 around this problem:
 

 Unfortunately $(CCNUMVER) isn't available to gbuild so we can't disable
 optimization of the affected file only for gcc 4.9.
>>>
>>> I'm sorry but the error has not changed. I've compared the patched
>>> "Library_svxcore.mk" file with the original one and only these changes
>>> were made.
>>>
>>> In your patch a "dbaccess/source/ui/uno/makefile.mk" file is mentioned
>>> which I don't have. Is this related to the "--disable-odk" configure
>>> flag I've used and therefore is OK?
>>
>> Hmn, that's strange.  That makefile is still present in recent trunk.
>> It' doesn't have any relationship to --disable-odk.
> 
> Yesterday I've done my very first checkout and a "svn update" a second 
> ago in the directory doesn't got anything new. SWo, it's indeed strange.
> 
>>> Is there any other way than to downgrade gcc?
>>
>> For the FreeBSD port, I'm not using that patch due to the lack of
>> $(CCNUMVER) on the gbuild side of thigs.  If we had that, then I would
>> have upstreamed the patch.  Instead, I'm still using the workaround in
>> the third to last paragraph.  The Makefile for the FreeBSD port does
>> this on-the-fly patch:
>>
>> .if ${COMPILER_TYPE} == gcc
>>  # g++49 -Os sometimes leaves inline class methods undefined,
>>  # affects fmgridif.cxx and ColumnControl.cxx
>>  # See:
>>  if [ ${CXX} = g++49  ]; then \
>>  ${REINPLACE_CMD} -e "s/ := -Os/ := -Os -fno-devirtualize 
>> -fno-de
>> virtualize-speculatively/" ${WRKSRC}/solenv/gbuild/platform/freebsd.mk; \
>>  ${REINPLACE_CMD} -e "s/=-Os /=-Os -fno-devirtualize 
>> -fno-devirtu
>> alize-speculatively /" ${WRKSRC}/solenv/inc/unxfbsdi.mk; \
>>  fi
>>
>>
>> For Linux you would have to patch main/solenv/gbuild/platform/linux.mk
>> (and main/solenv/inc/unxlng*.mk for non-x86_64 platforms).
> 
> I've add the following to line 152, beside to the COMPILERNOOPTSFLAFS
> 
> gb_COMPILEROPTFLAGS := O0
> 
> I hope that this correct. If so, then unfortunately it doesn't make a 
> change. Stil lthe same error.
> 
>> On x86_64, the Library_svxcore.mk patch should have done the trick
>> though.  The problem is triggered by using -Os optimization and with
>> that change to Library_svxcore.mk, fmgridif.cxx should be getting
>> compiled with -O0.  Can you check the log file to see if that is the
>> case?  You'll probably have to configure with --enable-verbose to see
>> it.
> 
> OK, turned back the "linux.mk" patch.
> 
> I've added --enable-verbose to configure, bootstrap'ed and source'ed 
> again. The build cancelled at the same location and with the same error 
> message.
> 
> "fmgridif.cxx" was nowhere mentioned, only a "fmgridif.o". It's the last 
> file mentioned in a long list of .o files from module "svx".

Are you starting from a clean build each time?  If you just restart the

Re: Help needed: Build error in bean and vcl

2016-09-05 Thread Marcus

Am 09/05/2016 09:33 PM, schrieb Don Lewis:

On  5 Sep, Marcus wrote:

Am 09/05/2016 05:39 AM, schrieb Don Lewis:

On  4 Sep, Don Lewis wrote:

On  4 Sep, Marcus wrote:

Thanks a lot. "libXt-devel" was indeed not installed.

But now it's breaking in svx:

[...]

=
Building module svx
=

Entering /share/linux2/aoo/trunk/main/svx/prj

cd ..&&   make -s -r -j1&&   make -s -r deliverlog
[ build LNK ] Library/libsvxcore.so
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
In function
`FmXGridControl::createPeer(com::sun::star::uno::Reference
const&, com::sun::star::uno::Reference
const&)':
fmgridif.cxx:(.text+0x68b2): undefined reference to `non-virtual thunk to
WindowListenerMultiplexer::acquire()'
/usr/bin/ld:
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
relocation R_X86_64_PC32 against undefined symbol
`_ZThn48_N25WindowListenerMultiplexer7acquireEv' can not be used when
making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
/share/linux2/aoo/trunk/main/solenv/gbuild/LinkTarget.mk:248: recipe for
target
'/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so'
failed
make: ***
[/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so]
Error 1
dmake:  Error code 2, while making 'all'

1 module(s):
svx
need(s) to be rebuilt


That looks very familiar.  What compiler version are you using?


gcc 4.9.2


Yup, it's gcc 4.9 bug.  This is what I did for the FreeBSD port to work
around this problem:


Unfortunately $(CCNUMVER) isn't available to gbuild so we can't disable
optimization of the affected file only for gcc 4.9.


I'm sorry but the error has not changed. I've compared the patched
"Library_svxcore.mk" file with the original one and only these changes
were made.

In your patch a "dbaccess/source/ui/uno/makefile.mk" file is mentioned
which I don't have. Is this related to the "--disable-odk" configure
flag I've used and therefore is OK?


Hmn, that's strange.  That makefile is still present in recent trunk.
It' doesn't have any relationship to --disable-odk.


Yesterday I've done my very first checkout and a "svn update" a second 
ago in the directory doesn't got anything new. SWo, it's indeed strange.



Is there any other way than to downgrade gcc?


For the FreeBSD port, I'm not using that patch due to the lack of
$(CCNUMVER) on the gbuild side of thigs.  If we had that, then I would
have upstreamed the patch.  Instead, I'm still using the workaround in
the third to last paragraph.  The Makefile for the FreeBSD port does
this on-the-fly patch:

.if ${COMPILER_TYPE} == gcc
 # g++49 -Os sometimes leaves inline class methods undefined,
 # affects fmgridif.cxx and ColumnControl.cxx
 # See:
 if [ ${CXX} = g++49  ]; then \
 ${REINPLACE_CMD} -e "s/ := -Os/ := -Os -fno-devirtualize 
-fno-de
virtualize-speculatively/" ${WRKSRC}/solenv/gbuild/platform/freebsd.mk; \
 ${REINPLACE_CMD} -e "s/=-Os /=-Os -fno-devirtualize 
-fno-devirtu
alize-speculatively /" ${WRKSRC}/solenv/inc/unxfbsdi.mk; \
 fi


For Linux you would have to patch main/solenv/gbuild/platform/linux.mk
(and main/solenv/inc/unxlng*.mk for non-x86_64 platforms).


I've add the following to line 152, beside to the COMPILERNOOPTSFLAFS

gb_COMPILEROPTFLAGS := O0

I hope that this correct. If so, then unfortunately it doesn't make a 
change. Stil lthe same error.



On x86_64, the Library_svxcore.mk patch should have done the trick
though.  The problem is triggered by using -Os optimization and with
that change to Library_svxcore.mk, fmgridif.cxx should be getting
compiled with -O0.  Can you check the log file to see if that is the
case?  You'll probably have to configure with --enable-verbose to see
it.


OK, turned back the "linux.mk" patch.

I've added --enable-verbose to configure, bootstrap'ed and source'ed 
again. The build cancelled at the same location and with the same error 
message.


"fmgridif.cxx" was nowhere mentioned, only a "fmgridif.o". It's the last 
file mentioned in a long list of .o files from module "svx".


BTW:
Due to dependencies for ant, junit, hamcreast and others I had to 
install JDK 1.8.0. Dont' know if this matters somehoe.


Marcus

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



Re: Help needed: Build error in bean and vcl

2016-09-05 Thread Don Lewis
On  5 Sep, Marcus wrote:
> Am 09/05/2016 05:39 AM, schrieb Don Lewis:
>> On  4 Sep, Don Lewis wrote:
>>> On  4 Sep, Marcus wrote:
 Thanks a lot. "libXt-devel" was indeed not installed.

 But now it's breaking in svx:

 [...]

 =
 Building module svx
 =

 Entering /share/linux2/aoo/trunk/main/svx/prj

 cd ..&&  make -s -r -j1&&  make -s -r deliverlog
 [ build LNK ] Library/libsvxcore.so
 /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
 In function
 `FmXGridControl::createPeer(com::sun::star::uno::Reference
 const&, com::sun::star::uno::Reference
 const&)':
 fmgridif.cxx:(.text+0x68b2): undefined reference to `non-virtual thunk to
 WindowListenerMultiplexer::acquire()'
 /usr/bin/ld:
 /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
 relocation R_X86_64_PC32 against undefined symbol
 `_ZThn48_N25WindowListenerMultiplexer7acquireEv' can not be used when
 making a shared object; recompile with -fPIC
 /usr/bin/ld: final link failed: Bad value
 collect2: error: ld returned 1 exit status
 /share/linux2/aoo/trunk/main/solenv/gbuild/LinkTarget.mk:248: recipe for
 target
 '/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so'
 failed
 make: ***
 [/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so]
 Error 1
 dmake:  Error code 2, while making 'all'

 1 module(s):
svx
 need(s) to be rebuilt
>>>
>>> That looks very familiar.  What compiler version are you using?
> 
> gcc 4.9.2
> 
>> Yup, it's gcc 4.9 bug.  This is what I did for the FreeBSD port to work
>> around this problem:
>> 
>>
>> Unfortunately $(CCNUMVER) isn't available to gbuild so we can't disable
>> optimization of the affected file only for gcc 4.9.
> 
> I'm sorry but the error has not changed. I've compared the patched 
> "Library_svxcore.mk" file with the original one and only these changes 
> were made.
> 
> In your patch a "dbaccess/source/ui/uno/makefile.mk" file is mentioned 
> which I don't have. Is this related to the "--disable-odk" configure 
> flag I've used and therefore is OK?

Hmn, that's strange.  That makefile is still present in recent trunk.
It' doesn't have any relationship to --disable-odk.

> Is there any other way than to downgrade gcc?

For the FreeBSD port, I'm not using that patch due to the lack of
$(CCNUMVER) on the gbuild side of thigs.  If we had that, then I would
have upstreamed the patch.  Instead, I'm still using the workaround in
the third to last paragraph.  The Makefile for the FreeBSD port does
this on-the-fly patch:

.if ${COMPILER_TYPE} == gcc
# g++49 -Os sometimes leaves inline class methods undefined,
# affects fmgridif.cxx and ColumnControl.cxx
# See: 
if [ ${CXX} = g++49  ]; then \
${REINPLACE_CMD} -e "s/ := -Os/ := -Os -fno-devirtualize -fno-de
virtualize-speculatively/" ${WRKSRC}/solenv/gbuild/platform/freebsd.mk; \
${REINPLACE_CMD} -e "s/=-Os /=-Os -fno-devirtualize -fno-devirtu
alize-speculatively /" ${WRKSRC}/solenv/inc/unxfbsdi.mk; \
fi


For Linux you would have to patch main/solenv/gbuild/platform/linux.mk
(and main/solenv/inc/unxlng*.mk for non-x86_64 platforms).


On x86_64, the Library_svxcore.mk patch should have done the trick
though.  The problem is triggered by using -Os optimization and with
that change to Library_svxcore.mk, fmgridif.cxx should be getting
compiled with -O0.  Can you check the log file to see if that is the
case?  You'll probably have to configure with --enable-verbose to see
it.


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



Re: Help needed: Build error in bean and vcl

2016-09-05 Thread Marcus

Am 09/05/2016 05:39 AM, schrieb Don Lewis:

On  4 Sep, Don Lewis wrote:

On  4 Sep, Marcus wrote:

Thanks a lot. "libXt-devel" was indeed not installed.

But now it's breaking in svx:

[...]

=
Building module svx
=

Entering /share/linux2/aoo/trunk/main/svx/prj

cd ..&&  make -s -r -j1&&  make -s -r deliverlog
[ build LNK ] Library/libsvxcore.so
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
In function
`FmXGridControl::createPeer(com::sun::star::uno::Reference
const&, com::sun::star::uno::Reference
const&)':
fmgridif.cxx:(.text+0x68b2): undefined reference to `non-virtual thunk to
WindowListenerMultiplexer::acquire()'
/usr/bin/ld:
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
relocation R_X86_64_PC32 against undefined symbol
`_ZThn48_N25WindowListenerMultiplexer7acquireEv' can not be used when
making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
/share/linux2/aoo/trunk/main/solenv/gbuild/LinkTarget.mk:248: recipe for
target
'/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so'
failed
make: ***
[/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so]
Error 1
dmake:  Error code 2, while making 'all'

1 module(s):
svx
need(s) to be rebuilt


That looks very familiar.  What compiler version are you using?


gcc 4.9.2


Yup, it's gcc 4.9 bug.  This is what I did for the FreeBSD port to work
around this problem:


Unfortunately $(CCNUMVER) isn't available to gbuild so we can't disable
optimization of the affected file only for gcc 4.9.


I'm sorry but the error has not changed. I've compared the patched 
"Library_svxcore.mk" file with the original one and only these changes 
were made.


In your patch a "dbaccess/source/ui/uno/makefile.mk" file is mentioned 
which I don't have. Is this related to the "--disable-odk" configure 
flag I've used and therefore is OK?


Is there any other way than to downgrade gcc?

Thanks

Marcus


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



Re: Help needed: Build error in bean and vcl

2016-09-04 Thread Don Lewis
On  4 Sep, Don Lewis wrote:
> On  4 Sep, Marcus wrote:
>> Thanks a lot. "libXt-devel" was indeed not installed.
>> 
>> But now it's breaking in svx:
>> 
>> [...]
>> 
>> =
>> Building module svx
>> =
>> 
>> Entering /share/linux2/aoo/trunk/main/svx/prj
>> 
>> cd .. && make -s -r -j1   && make -s -r deliverlog
>> [ build LNK ] Library/libsvxcore.so
>> /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
>> In function
>> `FmXGridControl::createPeer(com::sun::star::uno::Reference
>> const&, com::sun::star::uno::Reference
>> const&)':
>> fmgridif.cxx:(.text+0x68b2): undefined reference to `non-virtual thunk to
>> WindowListenerMultiplexer::acquire()'
>> /usr/bin/ld:
>> /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
>> relocation R_X86_64_PC32 against undefined symbol
>> `_ZThn48_N25WindowListenerMultiplexer7acquireEv' can not be used when
>> making a shared object; recompile with -fPIC
>> /usr/bin/ld: final link failed: Bad value
>> collect2: error: ld returned 1 exit status
>> /share/linux2/aoo/trunk/main/solenv/gbuild/LinkTarget.mk:248: recipe for
>> target
>> '/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so'
>> failed
>> make: ***
>> [/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so]
>> Error 1
>> dmake:  Error code 2, while making 'all'
>> 
>> 1 module(s):
>>  svx
>> need(s) to be rebuilt
> 
> That looks very familiar.  What compiler version are you using?

Yup, it's gcc 4.9 bug.  This is what I did for the FreeBSD port to work
around this problem:


Unfortunately $(CCNUMVER) isn't available to gbuild so we can't disable
optimization of the affected file only for gcc 4.9.


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



Re: Help needed: Build error in bean and vcl

2016-09-04 Thread Don Lewis
On  4 Sep, Marcus wrote:
> Thanks a lot. "libXt-devel" was indeed not installed.
> 
> But now it's breaking in svx:
> 
> [...]
> 
> =
> Building module svx
> =
> 
> Entering /share/linux2/aoo/trunk/main/svx/prj
> 
> cd .. && make -s -r -j1   && make -s -r deliverlog
> [ build LNK ] Library/libsvxcore.so
> /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
> In function
> `FmXGridControl::createPeer(com::sun::star::uno::Reference
> const&, com::sun::star::uno::Reference
> const&)':
> fmgridif.cxx:(.text+0x68b2): undefined reference to `non-virtual thunk to
> WindowListenerMultiplexer::acquire()'
> /usr/bin/ld:
> /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
> relocation R_X86_64_PC32 against undefined symbol
> `_ZThn48_N25WindowListenerMultiplexer7acquireEv' can not be used when
> making a shared object; recompile with -fPIC
> /usr/bin/ld: final link failed: Bad value
> collect2: error: ld returned 1 exit status
> /share/linux2/aoo/trunk/main/solenv/gbuild/LinkTarget.mk:248: recipe for
> target
> '/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so'
> failed
> make: ***
> [/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so]
> Error 1
> dmake:  Error code 2, while making 'all'
> 
> 1 module(s):
>   svx
> need(s) to be rebuilt

That looks very familiar.  What compiler version are you using?


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



Re: Help needed: Build error in bean and vcl

2016-09-04 Thread Marcus

Thanks a lot. "libXt-devel" was indeed not installed.

But now it's breaking in svx:

[...]

=
Building module svx
=

Entering /share/linux2/aoo/trunk/main/svx/prj

cd .. && make -s -r -j1   && make -s -r deliverlog
[ build LNK ] Library/libsvxcore.so
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
In function
`FmXGridControl::createPeer(com::sun::star::uno::Reference
const&, com::sun::star::uno::Reference
const&)':
fmgridif.cxx:(.text+0x68b2): undefined reference to `non-virtual thunk to
WindowListenerMultiplexer::acquire()'
/usr/bin/ld:
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/svx/source/fmcomp/fmgridif.o:
relocation R_X86_64_PC32 against undefined symbol
`_ZThn48_N25WindowListenerMultiplexer7acquireEv' can not be used when
making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
/share/linux2/aoo/trunk/main/solenv/gbuild/LinkTarget.mk:248: recipe for
target
'/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so'
failed
make: ***
[/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libsvxcore.so]
Error 1
dmake:  Error code 2, while making 'all'

1 module(s):
svx
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making
/share/linux2/aoo/trunk/main/svx/prj

When you have fixed the errors in that module you can resume the build by
running:

build --from svx


Thanks

Marcus



Am 09/04/2016 07:55 PM, schrieb Damjan Jovanovic:

X11/StringDefs.h is provided by the libxt-dev package on Ubuntu.

Regards
Damjan

On Sun, Sep 4, 2016 at 7:40 PM, Marcus  wrote:


I've managed to start my first build of trunk. After some hours of reading
building guides and installing/configuring prerequisites, it starts now but
quits with an error.

Hardware / software:
- Intel Core i7-4710HQ 2.5 GHz (4 cores)
- 16 GB RAM, 256 GB SSD
- Fedora 21

Configure options:
$ ./configure
--with-dmake-url=http://sourceforge.net/projects/oooextras.
mirror/files/dmake-4.12.tar.bz2
--with-epm-url=https://www.msweet.org/files/project2/epm-3.7-source.tar.gz
--disable-odk
--disable-gconf
--disable-gnome-vfs
--disable-mozilla
--disable-odk
--disable-gtk
--with-package-format="installed"

Build command:
$ build -P4 -- -P4

Log:

There are many hints about:
fatal error: X11/StringDefs.h: No such file or directory
  #include

But I don't know which X11 package is maybe missing as I've installed many
incl. devel packages.

The full build log is here [1]. The following is an excerpt of the last
lines:

[...]

wizards deliver
deliver -- version: 275594
Module 'wizards' delivered successfully. 0 files copied, 1 files unchanged
In file included from /share/linux2/aoo/trunk/main/v
cl/inc/unx/svunx.h:27:0,
  from /share/linux2/aoo/trunk/main/vcl/inc/unx/svsys.h:26,
  from /share/linux2/aoo/trunk/main/vcl/inc/svsys.h:34,
  from /share/linux2/aoo/trunk/main/v
cl/source/window/window.cxx:58:
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/inc/too
ls/prex.h:45:28: fatal error: X11/StringDefs.h: No such file or directory
  #include
 ^
compilation terminated.
In file included from /share/linux2/aoo/trunk/main/v
cl/inc/unx/svunx.h:27:0,
  from /share/linux2/aoo/trunk/main/vcl/inc/unx/svsys.h:26,
  from /share/linux2/aoo/trunk/main/vcl/inc/svsys.h:34,
  from /share/linux2/aoo/trunk/main/v
cl/source/window/wrkwin.cxx:33:
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/inc/too
ls/prex.h:45:28: fatal error: X11/StringDefs.h: No such file or directory
  #include
 ^
compilation terminated.
make: *** No rule to make target '/share/linux2/aoo/trunk/main/solver/420/
unxlngx6.pro/workdir/CxxObject/vcl/source/app/svapp.o', needed by
'/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdi
r/LinkTarget/Library/libvcl.so'.  Stop.
make: *** Waiting for unfinished jobs
dmake:  Error code 2, while making 'all'

2 module(s):
 bean
 vcl
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making /share/linux2/aoo/trunk/main/b
ean/native/unix
ERROR: error 65280 occurred while making /share/linux2/aoo/trunk/main/v
cl/prj

When you have fixed the errors in that module you can resume the build by
running:

 build --from bean vcl



[1] http://people.apache.org/~marcus/build_error_log.txt

Thanks in advance for your help.

Marcus


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



Re: Help needed: Build error in bean and vcl

2016-09-04 Thread Damjan Jovanovic
X11/StringDefs.h is provided by the libxt-dev package on Ubuntu.

Regards
Damjan

On Sun, Sep 4, 2016 at 7:40 PM, Marcus  wrote:

> I've managed to start my first build of trunk. After some hours of reading
> building guides and installing/configuring prerequisites, it starts now but
> quits with an error.
>
> Hardware / software:
> - Intel Core i7-4710HQ 2.5 GHz (4 cores)
> - 16 GB RAM, 256 GB SSD
> - Fedora 21
>
> Configure options:
> $ ./configure
> --with-dmake-url=http://sourceforge.net/projects/oooextras.
> mirror/files/dmake-4.12.tar.bz2
> --with-epm-url=https://www.msweet.org/files/project2/epm-3.7-source.tar.gz
> --disable-odk
> --disable-gconf
> --disable-gnome-vfs
> --disable-mozilla
> --disable-odk
> --disable-gtk
> --with-package-format="installed"
>
> Build command:
> $ build -P4 -- -P4
>
> Log:
>
> There are many hints about:
> fatal error: X11/StringDefs.h: No such file or directory
>  #include 
>
> But I don't know which X11 package is maybe missing as I've installed many
> incl. devel packages.
>
> The full build log is here [1]. The following is an excerpt of the last
> lines:
>
> [...]
>
> wizards deliver
> deliver -- version: 275594
> Module 'wizards' delivered successfully. 0 files copied, 1 files unchanged
> In file included from /share/linux2/aoo/trunk/main/v
> cl/inc/unx/svunx.h:27:0,
>  from /share/linux2/aoo/trunk/main/vcl/inc/unx/svsys.h:26,
>  from /share/linux2/aoo/trunk/main/vcl/inc/svsys.h:34,
>  from /share/linux2/aoo/trunk/main/v
> cl/source/window/window.cxx:58:
> /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/inc/too
> ls/prex.h:45:28: fatal error: X11/StringDefs.h: No such file or directory
>  #include 
> ^
> compilation terminated.
> In file included from /share/linux2/aoo/trunk/main/v
> cl/inc/unx/svunx.h:27:0,
>  from /share/linux2/aoo/trunk/main/vcl/inc/unx/svsys.h:26,
>  from /share/linux2/aoo/trunk/main/vcl/inc/svsys.h:34,
>  from /share/linux2/aoo/trunk/main/v
> cl/source/window/wrkwin.cxx:33:
> /share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/inc/too
> ls/prex.h:45:28: fatal error: X11/StringDefs.h: No such file or directory
>  #include 
> ^
> compilation terminated.
> make: *** No rule to make target '/share/linux2/aoo/trunk/main/solver/420/
> unxlngx6.pro/workdir/CxxObject/vcl/source/app/svapp.o', needed by
> '/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdi
> r/LinkTarget/Library/libvcl.so'.  Stop.
> make: *** Waiting for unfinished jobs
> dmake:  Error code 2, while making 'all'
>
> 2 module(s):
> bean
> vcl
> need(s) to be rebuilt
>
> Reason(s):
>
> ERROR: error 65280 occurred while making /share/linux2/aoo/trunk/main/b
> ean/native/unix
> ERROR: error 65280 occurred while making /share/linux2/aoo/trunk/main/v
> cl/prj
>
> When you have fixed the errors in that module you can resume the build by
> running:
>
> build --from bean vcl
>
>
>
> [1] http://people.apache.org/~marcus/build_error_log.txt
>
> Thanks in advance for your help.
>
> Marcus
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>


Help needed: Build error in bean and vcl

2016-09-04 Thread Marcus
I've managed to start my first build of trunk. After some hours of 
reading building guides and installing/configuring prerequisites, it 
starts now but quits with an error.


Hardware / software:
- Intel Core i7-4710HQ 2.5 GHz (4 cores)
- 16 GB RAM, 256 GB SSD
- Fedora 21

Configure options:
$ ./configure
--with-dmake-url=http://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2
--with-epm-url=https://www.msweet.org/files/project2/epm-3.7-source.tar.gz
--disable-odk
--disable-gconf
--disable-gnome-vfs
--disable-mozilla
--disable-odk
--disable-gtk
--with-package-format="installed"

Build command:
$ build -P4 -- -P4

Log:

There are many hints about:
fatal error: X11/StringDefs.h: No such file or directory
 #include 

But I don't know which X11 package is maybe missing as I've installed 
many incl. devel packages.


The full build log is here [1]. The following is an excerpt of the last 
lines:


[...]

wizards deliver
deliver -- version: 275594
Module 'wizards' delivered successfully. 0 files copied, 1 files unchanged
In file included from /share/linux2/aoo/trunk/main/vcl/inc/unx/svunx.h:27:0,
 from /share/linux2/aoo/trunk/main/vcl/inc/unx/svsys.h:26,
 from /share/linux2/aoo/trunk/main/vcl/inc/svsys.h:34,
 from 
/share/linux2/aoo/trunk/main/vcl/source/window/window.cxx:58:
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/inc/tools/prex.h:45:28: 
fatal error: X11/StringDefs.h: No such file or directory

 #include 
^
compilation terminated.
In file included from /share/linux2/aoo/trunk/main/vcl/inc/unx/svunx.h:27:0,
 from /share/linux2/aoo/trunk/main/vcl/inc/unx/svsys.h:26,
 from /share/linux2/aoo/trunk/main/vcl/inc/svsys.h:34,
 from 
/share/linux2/aoo/trunk/main/vcl/source/window/wrkwin.cxx:33:
/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/inc/tools/prex.h:45:28: 
fatal error: X11/StringDefs.h: No such file or directory

 #include 
^
compilation terminated.
make: *** No rule to make target 
'/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/CxxObject/vcl/source/app/svapp.o', 
needed by 
'/share/linux2/aoo/trunk/main/solver/420/unxlngx6.pro/workdir/LinkTarget/Library/libvcl.so'. 
 Stop.

make: *** Waiting for unfinished jobs
dmake:  Error code 2, while making 'all'

2 module(s):
bean
vcl
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making 
/share/linux2/aoo/trunk/main/bean/native/unix
ERROR: error 65280 occurred while making 
/share/linux2/aoo/trunk/main/vcl/prj


When you have fixed the errors in that module you can resume the build 
by running:


build --from bean vcl



[1] http://people.apache.org/~marcus/build_error_log.txt

Thanks in advance for your help.

Marcus


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



Re: aoo 4.2 - build error while building module connectivity

2016-04-02 Thread Oliver Brinzing



> C:\PROGRA~2\MICROS~1.0\VC\include\memory(721)
> : error C4150: deletion of pointer to incomplete type 'connectivity::OSQLParser_Data'; no 
destructor called
>  C:\build_tmp\aoo_src\main\connectivity\inc\connectivity/sqlparse.hxx(133) : see declaration  of 
'connectivity::OSQLParser_Data'

>  C:\PROGRA~2\MICROS~1.0\VC\include\memory(720) : while compiling class 
template member
>  function 'std::auto_ptr<_Ty>::~auto_ptr(void)'

changed source file  "main\connectivity\inc\connectivity\sqlparse.hxx" line 133

from: struct OSQLParser_Data;

to: struct OSQLParser_Data {
OSQLParser_Data() {};
~OSQLParser_Data() {};
};

and it seems to build ...

Oliver


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



aoo 4.2 - build error while building module connectivity

2016-04-02 Thread Oliver Brinzing

Hi,

build startet, but i got a build error after about 2 hours.
i used same build setting as i did for aoo412 build.

any hints?
Oliver


=
Building module connectivity
=

Entering /cygdrive/c/build_tmp/aoo_src/main/connectivity/inc


Entering /cygdrive/c/build_tmp/aoo_src/main/connectivity/source/resource


Entering /cygdrive/c/build_tmp/aoo_src/main/connectivity/source/parse

Compiling: connectivity/source/parse/sqliterator.cxx
C:/PROGRA~2/MICROS~1.0/VC/bin/cl.exe  -Zm500 -Zc:wchar_t- -GR -GS -c -nologo -Gs  -Ob1 -Zi 
-Fd../../wntmsci12/misc/sqliterator.pdb  -Od -DENABLE_LAYOUT=0 -DENABLE_LAYOUT_EXPERIMENTAL=0 -Gd 
-I. -I../../wntmsci12/misc -I../../wntmsci12/inc/sql -I../inc -I../../inc/pch -I../../inc 
-I../../WIN/inc -I../../wntmsci12/inc -I. -IC:/build_tmp/aoo_src/main/solver/420/wntmsci12/inc/stl 
-IC:/build_tmp/aoo_src/main/solver/420/wntmsci12/inc/external 
-IC:/build_tmp/aoo_src/main/solver/420/wntmsci12/inc 
-IC:/build_tmp/aoo_src/main/solenv/wntmsci12/inc -IC:/build_tmp/aoo_src/main/solenv/inc 
-IC:/build_tmp/aoo_src/main/res -IC:/build_tmp/aoo_src/main/tools/inc 
-IC:/build_tmp/aoo_src/main/comphelper/inc -IC:/PROGRA~2/Java/JDK17~1.0/include/win32 
-IC:/PROGRA~2/Java/JDK17~1.0/include -IC:/PROGRA~1/MICROS~1/Windows/v7.0/include 
-IC:/PROGRA~2/MICROS~1.0/VC/include -IC:/PROGRA~2/MICROS~1/include -IC:/PROGRA~2/MICROS~1/include 
-IC:/build_tmp/aoo_src/main/solver/420/wntmsci12/inc/offuh -I. -I../../res -I. -Z7 -Yd -Wall -wd4061 
-wd4127 -wd4191 -wd4217 -wd4250 -wd4251 -wd4275 -wd4290 -wd4294 -wd4355 -wd4511 -wd4512 -wd4514 
-wd4611 -wd4625 -wd4626 -wd4640 -wd4675 -wd4710 -wd4711 -wd4786 -wd4800 -wd4820 -wd4503 -wd4619 
-wd4365 -wd4668 -wd4738 -wd4826 -wd4350 -wd4505 -wd4692 -wd4189 -wd4005 -wd4180   -DWNT 
-DWNT -DNT351 -DMSC -DM1500 -DINTEL -D_STLP_DEBUG -D_X86_=1 -D_CRT_SECURE_NO_DEPRECATE 
-D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NON_CONFORMING_SWPRINTFS -DFULL_DESK -DBOOST_MEM_FN_ENABLE_CDECL 
-D_MT -DWINVER=0x0500 -D_WIN32_WINNT=0x0500 -D_WIN32_IE=0x0500 -DCPPU_ENV=msci -DSUPD=420 -DDEBUG 
-DDBG_UTIL -DOSL_DEBUG_LEVEL=2 -DCUI -DSOLAR_JAVA   -DOOO_DLLIMPLEMENTATION_DBTOOLS -DSHAREDLIB 
-D_DLL_ -DWIN32 -D_MT -D_DLL -DWIN32 -D_MT -D_DLL  -EHa -DEXCEPTIONS_ON 
-Fo../../wntmsci12/slo/sqliterator.obj 
C:/build_tmp/aoo_src/main/connectivity/source/parse/sqliterator.cxx

cl : Command line warning D9025 : overriding '/Zi' with '/Z7'
cl : Command line warning D9035 : option 'Yd' has been deprecated and will be removed in a future 
release

sqliterator.cxx
C:\PROGRA~2\MICROS~1.0\VC\include\memory(721) : error C4150: deletion of pointer to incomplete type 
'connectivity::OSQLParser_Data'; no destructor called
C:\build_tmp\aoo_src\main\connectivity\inc\connectivity/sqlparse.hxx(133) : see declaration 
of 'connectivity::OSQLParser_Data'
C:\PROGRA~2\MICROS~1.0\VC\include\memory(720) : while compiling class template member 
function 'std::auto_ptr<_Ty>::~auto_ptr(void)'

with
[
_Ty=connectivity::OSQLParser_Data
]
C:\build_tmp\aoo_src\main\connectivity\inc\connectivity/sqlparse.hxx(157) : see reference 
to class template instantiation 'std::auto_ptr<_Ty>' being compiled

with
[
_Ty=connectivity::OSQLParser_Data
]
dmake:  Error code 2, while making '../../wntmsci12/slo/sqliterator.obj'

1 module(s):
connectivity
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making 
/cygdrive/c/build_tmp/aoo_src/main/connectivity/source/parse

When you have fixed the errors in that module you can resume the build by 
running:

build --from connectivity

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



Re: build error

2015-08-29 Thread Andrea Pescetti

On 20/08/2015 Phillip Rhodes wrote:

I ran into this bug:
https://bz.apache.org/ooo/show_bug.cgi?id=126258
I just applied the patch in the bug, trying the build again now.


Thank you for bringing it to the list's attention anyway (and thanks 
Alexander for contributing the patch in the first place!).


I've now suggested that we integrate the patch in the next 4.1.2 release 
for a smoother build experience on recent systems.


Regards,
  Andrea.

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



Re: build error

2015-08-29 Thread Phillip Rhodes
FWIW, that patch did indeed fix the build error I was seeing, so I endorse
the idea of going ahead and merging that.


Phil


This message optimized for indexing by NSA PRISM

On Sat, Aug 29, 2015 at 4:50 PM, Andrea Pescetti pesce...@apache.org
wrote:

 On 20/08/2015 Phillip Rhodes wrote:

 I ran into this bug:
 https://bz.apache.org/ooo/show_bug.cgi?id=126258
 I just applied the patch in the bug, trying the build again now.


 Thank you for bringing it to the list's attention anyway (and thanks
 Alexander for contributing the patch in the first place!).

 I've now suggested that we integrate the patch in the next 4.1.2 release
 for a smoother build experience on recent systems.

 Regards,
   Andrea.

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




build error

2015-08-19 Thread Phillip Rhodes
AOO crew:

I'm trying to build the latest sources on Linux and am seeing this
error.  Any thoughts or suggestions on how to resolve this are
much appreciated.


patch ../../unxlngx6.pro/bin/odkcommon/docs/java/ref/index.html
idl_ref_javadoc.patch
Invalid file name ../../unxlngx6.pro/bin/odkcommon/docs/java/ref/index.html
-- skipping patch
dmake:  Error code 1, while making '../../
unxlngx6.pro/bin/odkcommon/docs/java/ref/index.html'
dmake:  '../../unxlngx6.pro/bin/odkcommon/docs/java/ref/index.html'
removed.

1 module(s):
   odk
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making
/home/prhodes/development/clones_not_mirrors_upstream_oss/openoffice/main/odk/pack/gendocu


When you have fixed the errors in that module you can resume the build by
running:

   build --all:odk



Thanks,


Phillip Rhodes
~~~
This message optimized for indexing by NSA PRISM


Re: build error

2015-08-19 Thread Phillip Rhodes
Aaah, looks like I should have searched harder before posting.  I think I
ran into this bug:

https://bz.apache.org/ooo/show_bug.cgi?id=126258

I just applied the patch in the bug, trying the build again now.


Thanks,


Phil


This message optimized for indexing by NSA PRISM

On Wed, Aug 19, 2015 at 9:51 PM, Phillip Rhodes motley.crue@gmail.com
wrote:

 AOO crew:

 I'm trying to build the latest sources on Linux and am seeing this
 error.  Any thoughts or suggestions on how to resolve this are
 much appreciated.


 patch ../../unxlngx6.pro/bin/odkcommon/docs/java/ref/index.html
 idl_ref_javadoc.patch
 Invalid file name ../../
 unxlngx6.pro/bin/odkcommon/docs/java/ref/index.html -- skipping patch
 dmake:  Error code 1, while making '../../
 unxlngx6.pro/bin/odkcommon/docs/java/ref/index.html'
 dmake:  '../../unxlngx6.pro/bin/odkcommon/docs/java/ref/index.html'
 removed.

 1 module(s):
odk
 need(s) to be rebuilt

 Reason(s):

 ERROR: error 65280 occurred while making
 /home/prhodes/development/clones_not_mirrors_upstream_oss/openoffice/main/odk/pack/gendocu


 When you have fixed the errors in that module you can resume the build by
 running:

build --all:odk



 Thanks,


 Phillip Rhodes
 ~~~
 This message optimized for indexing by NSA PRISM



Re: [BUILD] Error comphelper module

2015-07-24 Thread jan i
On Friday, July 24, 2015, Michal Hriň h...@apache.org wrote:

 Hi all,

 I'm trying to build AOO on Windows (7) and I still have problem with
 comphelper module.

 Error:

 =
 Building module comphelper
 =

 Entering /home/community/aoo-4.1.1/main/comphelper/prj

 cd ..  make -s -r -j1make -s -r deliverlog
 [ info  ALL ] LinkTarget Library/isal.lib not defined: Assuming headers
 to be there!
 [ info  ALL ] LinkTarget Library/icppuhelper.lib not defined: Assuming
 headers to be there!
 [ info  ALL ] LinkTarget Library/icppu.lib not defined: Assuming
 headers to be there!
 [ info  ALL ] LinkTarget Library/iucbhelper.lib not defined: Assuming
 headers to be there!
 [ info  ALL ] LinkTarget Library/ivos.lib not defined: Assuming headers
 to be there!
 [ info  ALL ] LinkTarget Library/msvcprt.lib not defined: Assuming
 headers to be there!
 [ info  ALL ] LinkTarget Library/uwinapi.lib not defined: Assuming
 headers to be there!
 [ info  ALL ] LinkTarget Library/kernel32.lib not defined: Assuming
 headers to be there!
 [ info  ALL ] LinkTarget Library/msvcrt.lib not defined: Assuming
 headers to be there!
 [ info  ALL ] LinkTarget Library/oldnames.lib not defined: Assuming
 headers to be there!
 [ build PKG ] comphelper_inc
 [ build DEP ] LNK:Library/icomphelp.lib
 [ build RES ] comphelper/default
 [ build RES ]
 awk: fatal: can't open source file
 `C:/cygwinc:/cygwin/home/community/aoo
 -4.1.1/main/solenv/gbuild/processdeps.awk' for reading (No such file or
 directory)
 C:/cygwin/home/community/aoo
 -4.1.1/main/solenv/gbuild/WinResTarget.mk:59: recipe for target
 '/home/community/aoo
 -4.1.1/main/solver/411/wntmsci12.pro/workdir/WinResTarget/comphelper/de
 fault.res' failed
 make: *** [/home/community/aoo
 -4.1.1/main/solver/411/wntmsci12.pro/workdir/WinResTarget/comphelper/de
 fault.res] Error 2
 dmake:  Error code 2, while making 'all'



 Here is configure options:

  ./configure --with-dmake-url=
 http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2; -
 -with-ant-home=/cygdrive/c/apache-ant-1.9.6 --with-frame
 -home=/cygdrive/c/Program Files/Microsoft SDKs/Windows/v6.1 --with
 -psdk-home=/cygdrive/c/Program Files/Microsoft SDKs/Windows/v6.1 -
 -with-midl-path=/cygdrive/c/Program Files/Microsoft
 SDKs/Windows/v6.1/Bin --with-cl-home=/cygdrive/c/Program Files
 (x86)/Microsoft Visual Studio 9.0/VC  --with-mspdb
 -path=/cygdrive/c/Program Files (x86)/Microsoft Visual Studio
 9.0/Common7/IDE --with-asm-home=/cygdrive/c/Program Files
 (x86)/Microsoft Visual Studio 9.0/VC/bin --with-csc
 -path=/cygdrive/c/Windows/Microsoft.NET/Framework/v3.5 --with-jdk
 -home=/cygdrive/c/Program Files (x86)/Java/jdk1.7.0_80  --with-nsis
 -path=/cygdrive/c/Program Files (x86)/NSIS --with-directx
 -home=/cygdrive/c/Program Files (x86)/Microsoft DirectX SDK (June
 2010) --disable-atl --with-package-format=installed msi --enable-win
 -x64-shellext --with-lang=sk --without-stlport --without-junit -
 -disable-odk --with-mfc-include-dir=C:/WinDDK/7600.16385.1/inc/mfc42
 --with-mfc-lib-dir=C:/WinDDK/7600.16385.1/lib/Mfc/i386

 I am trying more versions of Windows SDK (6.1, 7.0 or 7.0A), I have C++
 Compiler bundled with SDK, this means MSVC++ 2008.

 I have no more ideas.
 Can sombody help me ?

at least your LIBPATH to gcc is not correct. I guess you cannot link a
simple hello world program. Kernel32 as well as the ms* is system
libraries.

rgds
jan i


 Thanks!

 Regards,
 Michal Hriň





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



-- 
Sent from My iPad, sorry for any misspellings.


[BUILD] Error comphelper module

2015-07-24 Thread Michal Hriň
Hi all,

I'm trying to build AOO on Windows (7) and I still have problem with
comphelper module.

Error:

=
Building module comphelper
=

Entering /home/community/aoo-4.1.1/main/comphelper/prj

cd ..  make -s -r -j1make -s -r deliverlog
[ info  ALL ] LinkTarget Library/isal.lib not defined: Assuming headers
to be there!
[ info  ALL ] LinkTarget Library/icppuhelper.lib not defined: Assuming
headers to be there!
[ info  ALL ] LinkTarget Library/icppu.lib not defined: Assuming
headers to be there!
[ info  ALL ] LinkTarget Library/iucbhelper.lib not defined: Assuming
headers to be there!
[ info  ALL ] LinkTarget Library/ivos.lib not defined: Assuming headers
to be there!
[ info  ALL ] LinkTarget Library/msvcprt.lib not defined: Assuming
headers to be there!
[ info  ALL ] LinkTarget Library/uwinapi.lib not defined: Assuming
headers to be there!
[ info  ALL ] LinkTarget Library/kernel32.lib not defined: Assuming
headers to be there!
[ info  ALL ] LinkTarget Library/msvcrt.lib not defined: Assuming
headers to be there!
[ info  ALL ] LinkTarget Library/oldnames.lib not defined: Assuming
headers to be there!
[ build PKG ] comphelper_inc
[ build DEP ] LNK:Library/icomphelp.lib
[ build RES ] comphelper/default
[ build RES ]
awk: fatal: can't open source file
`C:/cygwinc:/cygwin/home/community/aoo
-4.1.1/main/solenv/gbuild/processdeps.awk' for reading (No such file or
directory)
C:/cygwin/home/community/aoo
-4.1.1/main/solenv/gbuild/WinResTarget.mk:59: recipe for target
'/home/community/aoo
-4.1.1/main/solver/411/wntmsci12.pro/workdir/WinResTarget/comphelper/de
fault.res' failed
make: *** [/home/community/aoo
-4.1.1/main/solver/411/wntmsci12.pro/workdir/WinResTarget/comphelper/de
fault.res] Error 2
dmake:  Error code 2, while making 'all'



Here is configure options:

 ./configure --with-dmake-url=
http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2; -
-with-ant-home=/cygdrive/c/apache-ant-1.9.6 --with-frame
-home=/cygdrive/c/Program Files/Microsoft SDKs/Windows/v6.1 --with
-psdk-home=/cygdrive/c/Program Files/Microsoft SDKs/Windows/v6.1 -
-with-midl-path=/cygdrive/c/Program Files/Microsoft
SDKs/Windows/v6.1/Bin --with-cl-home=/cygdrive/c/Program Files
(x86)/Microsoft Visual Studio 9.0/VC  --with-mspdb
-path=/cygdrive/c/Program Files (x86)/Microsoft Visual Studio
9.0/Common7/IDE --with-asm-home=/cygdrive/c/Program Files
(x86)/Microsoft Visual Studio 9.0/VC/bin --with-csc
-path=/cygdrive/c/Windows/Microsoft.NET/Framework/v3.5 --with-jdk
-home=/cygdrive/c/Program Files (x86)/Java/jdk1.7.0_80  --with-nsis
-path=/cygdrive/c/Program Files (x86)/NSIS --with-directx
-home=/cygdrive/c/Program Files (x86)/Microsoft DirectX SDK (June
2010) --disable-atl --with-package-format=installed msi --enable-win
-x64-shellext --with-lang=sk --without-stlport --without-junit -
-disable-odk --with-mfc-include-dir=C:/WinDDK/7600.16385.1/inc/mfc42 
--with-mfc-lib-dir=C:/WinDDK/7600.16385.1/lib/Mfc/i386

I am trying more versions of Windows SDK (6.1, 7.0 or 7.0A), I have C++
Compiler bundled with SDK, this means MSVC++ 2008.

I have no more ideas.
Can sombody help me ?

Thanks!

Regards,
Michal Hriň





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



Re: Help.. Build error about missing processdeps.awk under Windows7

2014-09-02 Thread Steve Yin
Hi Hung,

The command make clean is for the folder main or module which is
changed to gbuild one. You can refer this wiki for more information.
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO

I think you cygwin version is OK.

Here is my configure parameters for your reference

autoconf
./configure \
--with-ant-home=/cygdrive/d/Apache/BuildTools/apache-ant-1.8.4 \
--with-cl-home=/cygdrive/d/Program\ Files\ \(x86\)/Microsoft\ Visual\
Studio\ 9.0/VC \
--with-mspdb-path=/cygdrive/d/Program\ Files\ \(x86\)/Microsoft\ Visual\
Studio\ 9.0/Common7/IDE \
--with-psdk-home=/cygdrive/d/Apache/BuildTools/MSSDK_v6.1 \
--with-directx-home=/cygdrive/d/Apache/BuildTools/directx \
--with-nsis-path=/cygdrive/d/Program\ Files\ \(x86\)/NSIS \
--with-frame-home=/cygdrive/d/Apache/BuildTools/MSSDK_v6.1 \
--with-midl-path=/cygdrive/d/Apache/BuildTools/MSSDK_v6.1/Bin \
--with-csc-path=/cygdrive/c/Windows/Microsoft.NET/Framework/v3.5 \
--with-asm-home=/cygdrive/d/Program\ Files\ \(x86\)/Microsoft\ Visual\
Studio\ 9.0/VC/Bin \
--with-jdk-home=/cygdrive/d/Program\ Files\ \(x86\)/Java/jdk1.7.0_25 \
--with-dmake-url=
http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2 \
--with-epm-url=
http://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/epm/3.7/epm-3.7-source.tar.gz
\
--without-junit --without-stlport --enable-verbose --enable-category-b
--enable-bundled-dictionaries --with-dict --disable-nss-module
./bootstrap
source ./winenv.set.sh
cd instsetoo_native/
build --all -P4



On Tue, Sep 2, 2014 at 8:42 AM, Hung Mark mark...@gmail.com wrote:

 Hi Steve,

 How to run make clean under solenv?
 Do you mean build --prepare --from solenv ?

 I rebuild by  removing evrything not in original repository, except
 main/external  extra_source.
 But it still doesn't work.

 Is it related to cygwin ?
 I'm using 1.7.32

 or Make  autoconf ?
 Here are my versions:
 $ make -v
 GNU Make 4.0
 Built for i686-pc-cygwin
 Copyright (C) 1988-2013 Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later 
 http://gnu.org/licenses/gpl.html
 
 This is free software: you are free to change and redistribute it.
 There is NO WARRANTY, to the extent permitted by law.

 mh@Aoodev-Win7 ~/aoo/main
 $ autoconf -h
 Usage: /usr/bin/autoconf-2.69 [OPTION]... [TEMPLATE-FILE]

 Sincerely.





 2014-09-01 10:51 GMT+08:00 Steve Yin steve.yin@gmail.com:

  I have never seen this problem before, but you can try to run make
 clean
  under the folder solenv and rebuild it to check if the problem still
  exists.
 
 
  On Sun, Aug 31, 2014 at 12:58 PM, Hung Mark mark...@gmail.com wrote:
 
   I'm bulding latest OpenOffice source code under Windows 7 (64-bit).
  
   It complaint about missing processdeps.awk in gtest module (complete
  error
   message in the attached file):
  
   awk: fatal: can't open source file
   `C:/cygwinc:/cygwin/home/mh/aoo/main/solenv/gbuild/processdeps.awk' for
   reading (No such file or directory)
  
   I found a similar post when searching the mailing list archive,   it
 said
   that the error message disappear after changing from source release to
   subversion repository. I tried, but building code with subversion repos
   does not solve the problem
  
  
   Here is how I configure it:
  
   export SourceMain=`pwd`
   export SDK_PATH=/cygdrive/c/Program Files/Microsoft SDKs/Windows/v7.0
   autoconf  \
   ./configure \
--with-frame-home=$SDK_PATH \
--with-psdk-home=$SDK_PATH \
--with-midl-path=$SDK_PATH/bin \
--disable-directx  \
--enable-dbgutil \
--with-ant-home=/cygdrive/c/apache-ant-1.9.4 \
--with-cl-home=/cygdrive/c/PROGRA~2/MICROS~1.0/VC \
--with-java-home=/cygdrive/c/Program Files (x86)/Java/jdk1.7.0_67/ \
--with-dmake-url=
   http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2;
 \
--with-epm-url=
   http://www.msweet.org/files/project2/epm-3.7-source.tar.gz; \
--enable-pch \
--disable-atl \
--disable-activex \
--disable-binfilter \
--without-junit \
--with-lang=en-US zh-TW
  
  
   When I check winenv.set.sh , there is still lots of environment
 variable
   begin with C:\,
   I'm not sure if it is the cause of the problem. Could any one suggest
 how
   to build it properly? Thanks.
  
  
  
   --
   Mark Hung
  
  
   -
   To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
   For additional commands, e-mail: dev-h...@openoffice.apache.org
  
 
 
 
  --
  Best Regards,
 
  Steve Yin
 



 --
 Mark Hung




-- 
Best Regards,

Steve Yin


Re: Help.. Build error about missing processdeps.awk under Windows7

2014-08-31 Thread Steve Yin
I have never seen this problem before, but you can try to run make clean
under the folder solenv and rebuild it to check if the problem still
exists.


On Sun, Aug 31, 2014 at 12:58 PM, Hung Mark mark...@gmail.com wrote:

 I'm bulding latest OpenOffice source code under Windows 7 (64-bit).

 It complaint about missing processdeps.awk in gtest module (complete error
 message in the attached file):

 awk: fatal: can't open source file
 `C:/cygwinc:/cygwin/home/mh/aoo/main/solenv/gbuild/processdeps.awk' for
 reading (No such file or directory)

 I found a similar post when searching the mailing list archive,   it said
 that the error message disappear after changing from source release to
 subversion repository. I tried, but building code with subversion repos
 does not solve the problem


 Here is how I configure it:

 export SourceMain=`pwd`
 export SDK_PATH=/cygdrive/c/Program Files/Microsoft SDKs/Windows/v7.0
 autoconf  \
 ./configure \
  --with-frame-home=$SDK_PATH \
  --with-psdk-home=$SDK_PATH \
  --with-midl-path=$SDK_PATH/bin \
  --disable-directx  \
  --enable-dbgutil \
  --with-ant-home=/cygdrive/c/apache-ant-1.9.4 \
  --with-cl-home=/cygdrive/c/PROGRA~2/MICROS~1.0/VC \
  --with-java-home=/cygdrive/c/Program Files (x86)/Java/jdk1.7.0_67/ \
  --with-dmake-url=
 http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2; \
  --with-epm-url=
 http://www.msweet.org/files/project2/epm-3.7-source.tar.gz; \
  --enable-pch \
  --disable-atl \
  --disable-activex \
  --disable-binfilter \
  --without-junit \
  --with-lang=en-US zh-TW


 When I check winenv.set.sh , there is still lots of environment variable
 begin with C:\,
 I'm not sure if it is the cause of the problem. Could any one suggest how
 to build it properly? Thanks.



 --
 Mark Hung


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




-- 
Best Regards,

Steve Yin


Help.. Build error about missing processdeps.awk under Windows7

2014-08-30 Thread Hung Mark
I'm bulding latest OpenOffice source code under Windows 7 (64-bit).

It complaint about missing processdeps.awk in gtest module (complete error
message in the attached file):

awk: fatal: can't open source file
`C:/cygwinc:/cygwin/home/mh/aoo/main/solenv/gbuild/processdeps.awk' for
reading (No such file or directory)

I found a similar post when searching the mailing list archive,   it said
that the error message disappear after changing from source release to
subversion repository. I tried, but building code with subversion repos
does not solve the problem


Here is how I configure it:

export SourceMain=`pwd`
export SDK_PATH=/cygdrive/c/Program Files/Microsoft SDKs/Windows/v7.0
autoconf  \
./configure \
 --with-frame-home=$SDK_PATH \
 --with-psdk-home=$SDK_PATH \
 --with-midl-path=$SDK_PATH/bin \
 --disable-directx  \
 --enable-dbgutil \
 --with-ant-home=/cygdrive/c/apache-ant-1.9.4 \
 --with-cl-home=/cygdrive/c/PROGRA~2/MICROS~1.0/VC \
 --with-java-home=/cygdrive/c/Program Files (x86)/Java/jdk1.7.0_67/ \
 --with-dmake-url=
http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2; \
 --with-epm-url=http://www.msweet.org/files/project2/epm-3.7-source.tar.gz;
\
 --enable-pch \
 --disable-atl \
 --disable-activex \
 --disable-binfilter \
 --without-junit \
 --with-lang=en-US zh-TW


When I check winenv.set.sh , there is still lots of environment variable
begin with C:\,
I'm not sure if it is the cause of the problem. Could any one suggest how
to build it properly? Thanks.



-- 
Mark Hung
$ build --from gtest
build -- version: 275224

WARNING(S):
Some modules contain old output trees! Please check: gtest

ATTENTION: If you are performing an incompatible build, please break the build 
with Ctrl+C and prepare the workspace with --prepare switch!


=
Building module gtest
=

Entering /home/mh/aoo/ext_libraries/gtest

mkdir: cannot create directory './wntmsci12/misc/build/gtest-1.7.0/': File 
exists
make: *** Warning: .LOW_RESOLUTION_TIME file 
'/home/mh/aoo/main/solver/420/wntmsci12/inc/gtest/internal/gtest-port.h' has a 
high resolution time stamp
[ build RES ] gtest/default
[ build RES ]
R=c:/cygwin/home/mh/aoo  O=$R/main/solver/420/wntmsci12  
W=$R/main/solver/420/wntmsci12/workdir  S=$R/main   $O/bin/makedepend.exe 
-I. -IC:/cygwin$O/inc/stl -IC:/cygwin$O/inc/external -IC:/cygwin$O/inc 
-IC:/cygwin$S/solenv/wntmsci12/inc -IC:/cygwin$S/solenv/inc -IC:/cygwin$S/res 
-IC:/PROGRA~2/Java/JDK17~1.0_6/include/win32 
-IC:/PROGRA~2/Java/JDK17~1.0_6/include 
-IC:/PROGRA~1/MICROS~2/Windows/v7.0/include -IC:/PROGRA~2/MICROS~1.0/VC/include 
 -DWINVER=0x0400 -DWIN32  -DADDITIONAL_VERINFO1 -DADDITIONAL_VERINFO2 
-DADDITIONAL_VERINFO3  $W/Dep/WinResTarget/gtest/default.d -f - | awk -f 
C:/cygwin$S/solenv/gbuild/processdeps.awk -v 
OBJECTFILE=$W/WinResTarget/gtest/default.res -v OUTDIR=$O/ -v WORKDIR=$W/ -v 
SRCDIR=$S/ -v REPODIR=$R/  $W/Dep/WinResTarget/gtest/default.d
awk: fatal: can't open source file 
`C:/cygwinc:/cygwin/home/mh/aoo/main/solenv/gbuild/processdeps.awk' for reading 
(No such file or directory)
C:/cygwin/home/mh/aoo/main/solenv/gbuild/WinResTarget.mk:59: recipe for target 
'/home/mh/aoo/main/solver/420/wntmsci12/workdir/WinResTarget/gtest/default.res' 
failed
make: *** 
[/home/mh/aoo/main/solver/420/wntmsci12/workdir/WinResTarget/gtest/default.res] 
Error 2
dmake:  Error code 2, while making './wntmsci12/misc/build/so_built_oo_gtest'

1 module(s):
gtest
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making /home/mh/aoo/ext_libraries/gtest

When you have fixed the errors in that module you can resume the build by 
running:

build --from gtest


mh@Aoodev-Win7 ~/aoo/main/instsetoo_native
$

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

Re: Source file not found build error with additional configure options in ubuntu Linux 14.04

2014-08-25 Thread Andrea Pescetti

Amali Praveena Soban Kumar wrote:

Now, I'm able to download dict-en.oxt file.


This indeed seemed a temporary network error.

If you get stuck with anything regarding download of dictionaries, you 
can simply edit the extensions.lst file, disable them and proceed (and 
then add them later); but build-time download always worked for me.


Regards,
  Andrea.

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



Source file not found build error with additional configure options in ubuntu Linux 14.04

2014-08-24 Thread Amali Praveena Soban Kumar
Hi dev,
When i try to do build with additional configure options as below, i get file 
not found error:
./configure  
--with-dmake-url=http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2
 --with-epm-url=http://www.msweet.org/files/project2/epm-3.7-source.tar.gz 
--disable-odk --enable-category-b --enable-bundled-dictionaries --without-junit 
--without-stlport --with-system-stdlibs --with-lang=sk. should i change 
--with-lang=en?


Error: ERROR: Sourcefile not found: 
/media/amali/source/aoo-trunk/ext_sources/dict-en.oxt 
(gid_File_Extension_dict-en.oxt)

**
ERROR: ERROR: Sourcefile not found: 
/media/amali/source/aoo-trunk/ext_sources/dict-en.oxt 
(gid_File_Extension_dict-en.oxt)
in function: calculate_current_content
**
in function: calculate_current_contentstopping log at Sun Aug 24 16:46:07 2014
dmake:  Error code 255, while making 'openoffice_en-US.deb'

1 module(s): 
    instsetoo_native
need(s) to be rebuilt
Thanks,
Amali.

Re: Source file not found build error with additional configure options in ubuntu Linux 14.04

2014-08-24 Thread Amali Praveena Soban Kumar
After changing --with-lang=sk to en, i get the following error while doing 
./bootstrap. Has it got to do with recent changes?:
dmake present in 
/media/amali/source/aoo-trunk/main/solenv/unxlngx6.pro/bin/dmake
downloading/updating 1 extension
downloading to /media/amali/source/aoo-trunk/ext_sources/dict-en.oxt.part
** GET 
http://sourceforge.net/projects/aoo-extensions/files/17102/5/dict-en.oxt/download
 == 500 Can't connect to sourceforge.net:80 (Connection refused) (22s)
failed to download 
http://sourceforge.net/projects/aoo-extensions/files/17102/5/dict-en.oxt/download
 at /media/amali/source/aoo-trunk/main/solenv/bin/modules/ExtensionsLst.pm line 
536.
thanks,
Amali.



On Sunday, 24 August 2014 5:38 PM, Amali Praveena Soban Kumar 
samaliprave...@yahoo.com.au wrote:
 


Hi dev,
When i try to do build with additional configure options as below, i get file 
not found error:
./configure  
--with-dmake-url=http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2
 --with-epm-url=http://www.msweet.org/files/project2/epm-3.7-source.tar.gz 
--disable-odk --enable-category-b --enable-bundled-dictionaries --without-junit 
--without-stlport --with-system-stdlibs --with-lang=sk. should i change 
--with-lang=en?


Error: ERROR: Sourcefile not found: 
/media/amali/source/aoo-trunk/ext_sources/dict-en.oxt 
(gid_File_Extension_dict-en.oxt)

**
ERROR: ERROR: Sourcefile not found: 
/media/amali/source/aoo-trunk/ext_sources/dict-en.oxt 
(gid_File_Extension_dict-en.oxt)
in function: calculate_current_content
**
in function: calculate_current_contentstopping log at Sun Aug 24 16:46:07 2014
dmake:  Error code 255, while making 'openoffice_en-US.deb'

1 module(s): 
    instsetoo_native
need(s) to be rebuilt
Thanks,
Amali.

Re: Source file not found build error with additional configure options in ubuntu Linux 14.04

2014-08-24 Thread Amali Praveena Soban Kumar
Now, I'm able to download dict-en.oxt file.
Thanks,
Amali. 


On Monday, 25 August 2014 10:46 AM, Amali Praveena Soban Kumar 
samaliprave...@yahoo.com.au wrote:
  


After changing --with-lang=sk to en, i get the following error while doing 
./bootstrap. Has it got to do with recent changes?:
dmake present in 
/media/amali/source/aoo-trunk/main/solenv/unxlngx6.pro/bin/dmake
downloading/updating 1 extension
downloading to /media/amali/source/aoo-trunk/ext_sources/dict-en.oxt.part
** GET 
http://sourceforge.net/projects/aoo-extensions/files/17102/5/dict-en.oxt/download==
 500 Can't connect to sourceforge.net:80 (Connection refused) (22s)
failed to download 
http://sourceforge.net/projects/aoo-extensions/files/17102/5/dict-en.oxt/downloadat
 /media/amali/source/aoo-trunk/main/solenv/bin/modules/ExtensionsLst.pm line 
536.
thanks,
Amali.




On Sunday, 24 August 2014 5:38 PM, Amali Praveena Soban Kumar 
samaliprave...@yahoo.com.au wrote:



Hi dev,
When i try to do build with additional configure options as below, i get file 
not found error:
./configure  
--with-dmake-url=http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2--with-epm-url=http://www.msweet.org/files/project2/epm-3.7-source.tar.gz--disable-odk
 --enable-category-b --enable-bundled-dictionaries --without-junit 
--without-stlport --with-system-stdlibs --with-lang=sk. should i change 
--with-lang=en?


Error: ERROR: Sourcefile not found: 
/media/amali/source/aoo-trunk/ext_sources/dict-en.oxt 
(gid_File_Extension_dict-en.oxt)

**
ERROR: ERROR: Sourcefile not found: 
/media/amali/source/aoo-trunk/ext_sources/dict-en.oxt 
(gid_File_Extension_dict-en.oxt)
in function: calculate_current_content
**
in function: calculate_current_contentstopping log at Sun Aug 24 16:46:07 2014
dmake:  Error code 255, while making 'openoffice_en-US.deb'

1 module(s): 
    instsetoo_native
need(s) to be rebuilt
Thanks,
Amali.

Re: build error in Ubuntu Linux 14.04 - bugzilla issue 124712

2014-08-20 Thread Amali Praveena Soban Kumar
Hi dev,
There is an other build error in Ubuntu Linux 14.04.
Build error in component svx in Ubuntu Linux 14.04. I've logged this bug in 
Bugzilla, for details go into this link  
https://issues.apache.org/ooo/show_bug.cgi?id=125475.
I've already spent 3 days looking into it. I haven't found a solution yet.
Thanks,
Amali. 


On Wednesday, 6 August 2014 5:32 PM, Jürgen Schmidt jogischm...@gmail.com 
wrote:
  


On 06/08/14 06:54, Amali Praveena Soban Kumar wrote:
 Hi dev, 
 I've just found a workaround to build svl. Doing a partial build of svl 
 says,'svl module loaded.' I think it works.
 Going to do a full build as well. After this, i'll update the issue with the 
 details.
 Thanks,
 Amali.
  

interesting, I still have no 14.4 system in place for testing but it
sounds like a dependency problem. Or linking in the wrong order
whatever. We had already such strange problems before sometimes and they
are always tricky to find.

Thanks for sharing your observation

Juergen



 
 
 On Tuesday, 5 August 2014 2:59 PM, Amali Praveena Soban Kumar 
 samaliprave...@yahoo.com.au wrote:
  
 
 
 This CXXFLAGS= -fuse-cxa-atexit is not working, either. This is what i'm 
 doing:
 the link error is in svl component.
 After exporting these flags, i'm running ./configure script, ./bootstrap, 
 source LinuxX86-64Env.Set.sh
 cd instsetoo_native
 build --all
 The same build error in svl. i tried to make clean and partial build svl, but 
 still getting the same link error.
 Do i have to do a clean build everytime i change the flagsl? I'm thinking of 
 doing clean build just to check whether these flags are working
 
 
 
 
 
 On Monday, 4 August 2014 7:58 PM, Amali Praveena Soban Kumar 
 samaliprave...@yahoo.com.au wrote:
 
 
 
 Hi dev,
 Actually, I'm trying to fix a build issue in Ubuntu Linux 14.04. For 
 information about the issue, please refer to bugzilla issue no 124712.
 I'm stuck and don't know how to proceed. If you have any information, please 
 let me know.
 Though I can see them set in config.log, why aren't the following flags 
 working?
 export LIBS = -lc_nonshared.a -lc
 export LDFLAGS = -static -lc_nonshared.a -lc
 libc_nonshared.a is trying to find a symbol __cxa_atexit which is defined in 
 libc.a; so I'm trying to link libc.a as well as it looks like the make files 
 aren't linking with libc.a at all.
 
 Thanks,
 Amali.
 


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

Re: build error in Ubuntu Linux 14.04 - bugzilla issue 124712

2014-08-06 Thread Jürgen Schmidt
On 06/08/14 06:54, Amali Praveena Soban Kumar wrote:
 Hi dev, 
 I've just found a workaround to build svl. Doing a partial build of svl 
 says,'svl module loaded.' I think it works.
 Going to do a full build as well. After this, i'll update the issue with the 
 details.
 Thanks,
 Amali.
  

interesting, I still have no 14.4 system in place for testing but it
sounds like a dependency problem. Or linking in the wrong order
whatever. We had already such strange problems before sometimes and they
are always tricky to find.

Thanks for sharing your observation

Juergen


 
 
 On Tuesday, 5 August 2014 2:59 PM, Amali Praveena Soban Kumar 
 samaliprave...@yahoo.com.au wrote:
   
 
 
 This CXXFLAGS= -fuse-cxa-atexit is not working, either. This is what i'm 
 doing:
 the link error is in svl component.
 After exporting these flags, i'm running ./configure script, ./bootstrap, 
 source LinuxX86-64Env.Set.sh
 cd instsetoo_native
 build --all
 The same build error in svl. i tried to make clean and partial build svl, but 
 still getting the same link error.
 Do i have to do a clean build everytime i change the flagsl? I'm thinking of 
 doing clean build just to check whether these flags are working
 
 
 
 
 
 On Monday, 4 August 2014 7:58 PM, Amali Praveena Soban Kumar 
 samaliprave...@yahoo.com.au wrote:
 
 
 
 Hi dev,
 Actually, I'm trying to fix a build issue in Ubuntu Linux 14.04. For 
 information about the issue, please refer to bugzilla issue no 124712.
 I'm stuck and don't know how to proceed. If you have any information, please 
 let me know.
 Though I can see them set in config.log, why aren't the following flags 
 working?
 export LIBS = -lc_nonshared.a -lc
 export LDFLAGS = -static -lc_nonshared.a -lc
 libc_nonshared.a is trying to find a symbol __cxa_atexit which is defined in 
 libc.a; so I'm trying to link libc.a as well as it looks like the make files 
 aren't linking with libc.a at all.
 
 Thanks,
 Amali.
 


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



Re: build error in Ubuntu Linux 14.04 - bugzilla issue 124712

2014-08-05 Thread Amali Praveena Soban Kumar
Hi dev, 
I've just found a workaround to build svl. Doing a partial build of svl 
says,'svl module loaded.' I think it works.
Going to do a full build as well. After this, i'll update the issue with the 
details.
Thanks,
Amali.
 


On Tuesday, 5 August 2014 2:59 PM, Amali Praveena Soban Kumar 
samaliprave...@yahoo.com.au wrote:
  


This CXXFLAGS= -fuse-cxa-atexit is not working, either. This is what i'm doing:
the link error is in svl component.
After exporting these flags, i'm running ./configure script, ./bootstrap, 
source LinuxX86-64Env.Set.sh
cd instsetoo_native
build --all
The same build error in svl. i tried to make clean and partial build svl, but 
still getting the same link error.
Do i have to do a clean build everytime i change the flagsl? I'm thinking of 
doing clean build just to check whether these flags are working





On Monday, 4 August 2014 7:58 PM, Amali Praveena Soban Kumar 
samaliprave...@yahoo.com.au wrote:



Hi dev,
Actually, I'm trying to fix a build issue in Ubuntu Linux 14.04. For 
information about the issue, please refer to bugzilla issue no 124712.
I'm stuck and don't know how to proceed. If you have any information, please 
let me know.
Though I can see them set in config.log, why aren't the following flags working?
export LIBS = -lc_nonshared.a -lc
export LDFLAGS = -static -lc_nonshared.a -lc
libc_nonshared.a is trying to find a symbol __cxa_atexit which is defined in 
libc.a; so I'm trying to link libc.a as well as it looks like the make files 
aren't linking with libc.a at all.

Thanks,
Amali.

build error in Ubuntu Linux 14.04 - bugzilla issue 124712

2014-08-04 Thread Amali Praveena Soban Kumar
Hi dev,
Actually, I'm trying to fix a build issue in Ubuntu Linux 14.04. For 
information about the issue, please refer to bugzilla issue no 124712.
I'm stuck and don't know how to proceed. If you have any information, please 
let me know.
Though I can see them set in config.log, why aren't the following flags working?
export LIBS = -lc_nonshared.a -lc
export LDFLAGS = -static -lc_nonshared.a -lc
libc_nonshared.a is trying to find a symbol __cxa_atexit which is defined in 
libc.a; so I'm trying to link libc.a as well as it looks like the make files 
aren't linking with libc.a at all.

Thanks,
Amali.

Re: build error in Ubuntu Linux 14.04 - bugzilla issue 124712

2014-08-04 Thread Amali Praveena Soban Kumar
This CXXFLAGS= -fuse-cxa-atexit is not working, either. This is what i'm doing:
the link error is in svl component.
After exporting these flags, i'm running ./configure script, ./bootstrap, 
source LinuxX86-64Env.Set.sh
cd instsetoo_native
build --all
The same build error in svl. i tried to make clean and partial build svl, but 
still getting the same link error.
Do i have to do a clean build everytime i change the flagsl? I'm thinking of 
doing clean build just to check whether these flags are working




On Monday, 4 August 2014 7:58 PM, Amali Praveena Soban Kumar 
samaliprave...@yahoo.com.au wrote:
 


Hi dev,
Actually, I'm trying to fix a build issue in Ubuntu Linux 14.04. For 
information about the issue, please refer to bugzilla issue no 124712.
I'm stuck and don't know how to proceed. If you have any information, please 
let me know.
Though I can see them set in config.log, why aren't the following flags working?
export LIBS = -lc_nonshared.a -lc
export LDFLAGS = -static -lc_nonshared.a -lc
libc_nonshared.a is trying to find a symbol __cxa_atexit which is defined in 
libc.a; so I'm trying to link libc.a as well as it looks like the make files 
aren't linking with libc.a at all.

Thanks,
Amali.

Re: build error

2014-07-11 Thread Kay Schenk
On Thu, Jul 10, 2014 at 10:49 PM, Rishitha Dega rishitha.redd...@gmail.com
wrote:

 Hi,

 I am trying to build openoffice on RHEL5 and I am getting an error. I have
 attached the build log. Can somebody help me in building Open Office.

 Thank you
 --
 D.Rishitha
 III year undergraduate
 Computer Science and Engineering
 IIT Madras


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


Unfortunately the build log was stripped from this reply.  Can you submit
an issue to Bugzilla and attach it ?

https://issues.apache.org/ooo/


-- 
-
MzK

To be trusted is a greater compliment than being loved.
   -- George MacDonald


build error

2014-07-10 Thread Rishitha Dega
Hi,

I am trying to build openoffice on RHEL5 and I am getting an error. I have
attached the build log. Can somebody help me in building Open Office.

Thank you
-- 
D.Rishitha
III year undergraduate
Computer Science and Engineering
IIT Madras

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

Re: Build error - helpcontent2

2014-07-09 Thread Michal Hriň



Dňa 08.07.2014 23:02, Kay Schenk  wrote / napísal(a):


On 07/08/2014 11:27 AM, Michal Hriň wrote:

Hi,

I am going through Building guide - Step by step, and I have some
problem with building helpcontent2. I am on Ubuntu 12.04 and I have JDK
6 and 7 installed from distribution repository and I am trying to build
4.1.0 release.

[...]

/home/majkl/aoo-4.1.0/main/helpcontent2/unxlngx6.pro/bin/xhp_sdatabase_en-US.zip/home/majkl/aoo-4.1.0/main/helpcontent2/source/auxiliary/en-US/sdatabase.cfgtime
taken was 2.886 seconds
/usr/bin/java   -cp
.:../../unxlngx6.pro/class:/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/rt.jar:.:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/jaxp.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/juh.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/parser.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/xt.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/unoil.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/ridl.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/jurt.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/xmlsearch.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/LuceneHelpWrapper.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/HelpIndexerTool.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/lucene-core-2.9.4-dev.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/lucene-analyzers-2.9.4-dev.jar
com.sun.star.help.HelpIndexerTool -lang en-US -mod sdatabase -zipdir
../../unxlngx6.pro/misc/ziptmpsdatabase_en-US -o
../../unxlngx6.pro/bin/sdatabase_en-US.zip.unxlngx6.pro
Exception in thread main java.lang.UnsupportedClassVersionError:
com/sun/star/help/HelpIndexerTool : Unsupported major.minor version 51.0
 at java.lang.ClassLoader.defineClass1(Native Method)
 at java.lang.ClassLoader.defineClass(ClassLoader.java:643)
 at
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
 at java.net.URLClassLoader.defineClass(URLClassLoader.java:277)
 at java.net.URLClassLoader.access$000(URLClassLoader.java:73)
 at java.net.URLClassLoader$1.run(URLClassLoader.java:212)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:323)
 at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:268)
Could not find the main class: com.sun.star.help.HelpIndexerTool.
Program will exit.
dmake:  Error code 1, while making
'../../unxlngx6.pro/bin/sdatabase_en-US.zip'

1 module(s):
 helpcontent2
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making
/home/majkl/aoo-4.1.0/main/helpcontent2/util/sdatabase

Ideas?





Thanks!

After forcing Java to v. 7, build was sucessful. I wonder why configure 
script recognized Java 6 when both was installed. Maybe I have ghost in 
the machine.




 From this output, it looks like your java version for this build was
java 6. I think we're using 7 as the default for the builds but I'm not
positive this is causing your problem. However, you might try it and
explicitly declare it as part of your config options.

--with-java
--with-jdk-home=(path to your java 7 version)



Is somewhere in the universe complete list of these build parameters ?
Can you point me there ?


My java version is java version 1.7.0_51 (openJDK) and I did not
experience any problems with the build I did yesterday at this section.

Unfortunately, we don't seem to have source for HelpIndexerTool (just
the class files) so it's difficult to tell what's going on exactly.




Regards,
Michal Hriň

-
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: Build error - helpcontent2

2014-07-09 Thread Andre Fischer

On 09.07.2014 12:12, Michal Hriň wrote:



Dňa 08.07.2014 23:02, Kay Schenk  wrote / napísal(a):


On 07/08/2014 11:27 AM, Michal Hriň wrote:

Hi,

I am going through Building guide - Step by step, and I have some
problem with building helpcontent2. I am on Ubuntu 12.04 and I have JDK
6 and 7 installed from distribution repository and I am trying to build
4.1.0 release.

[...]

/home/majkl/aoo-4.1.0/main/helpcontent2/unxlngx6.pro/bin/xhp_sdatabase_en-US.zip/home/majkl/aoo-4.1.0/main/helpcontent2/source/auxiliary/en-US/sdatabase.cfgtime 


taken was 2.886 seconds
/usr/bin/java   -cp
.:../../unxlngx6.pro/class:/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/rt.jar:.:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/jaxp.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/juh.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/parser.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/xt.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/unoil.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/ridl.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/jurt.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/xmlsearch.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/LuceneHelpWrapper.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/HelpIndexerTool.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/lucene-core-2.9.4-dev.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/lucene-analyzers-2.9.4-dev.jar 


com.sun.star.help.HelpIndexerTool -lang en-US -mod sdatabase -zipdir
../../unxlngx6.pro/misc/ziptmpsdatabase_en-US -o
../../unxlngx6.pro/bin/sdatabase_en-US.zip.unxlngx6.pro
Exception in thread main java.lang.UnsupportedClassVersionError:
com/sun/star/help/HelpIndexerTool : Unsupported major.minor version 
51.0

 at java.lang.ClassLoader.defineClass1(Native Method)
 at java.lang.ClassLoader.defineClass(ClassLoader.java:643)
 at
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
 at java.net.URLClassLoader.defineClass(URLClassLoader.java:277)
 at java.net.URLClassLoader.access$000(URLClassLoader.java:73)
 at java.net.URLClassLoader$1.run(URLClassLoader.java:212)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:323)
 at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:268)
Could not find the main class: com.sun.star.help.HelpIndexerTool.
Program will exit.
dmake:  Error code 1, while making
'../../unxlngx6.pro/bin/sdatabase_en-US.zip'

1 module(s):
 helpcontent2
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making
/home/majkl/aoo-4.1.0/main/helpcontent2/util/sdatabase

Ideas?





Thanks!

After forcing Java to v. 7, build was sucessful. I wonder why 
configure script recognized Java 6 when both was installed. Maybe I 
have ghost in the machine.




 From this output, it looks like your java version for this build was
java 6. I think we're using 7 as the default for the builds but I'm not
positive this is causing your problem. However, you might try it and
explicitly declare it as part of your config options.

--with-java
--with-jdk-home=(path to your java 7 version)



Is somewhere in the universe complete list of these build parameters ?
Can you point me there ?


Configure itself provides the list:

main/configure --help

-Andre




My java version is java version 1.7.0_51 (openJDK) and I did not
experience any problems with the build I did yesterday at this section.

Unfortunately, we don't seem to have source for HelpIndexerTool (just
the class files) so it's difficult to tell what's going on exactly.




Regards,
Michal Hriň

-
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





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



Re: Build error - helpcontent2

2014-07-09 Thread Kay Schenk
On Wed, Jul 9, 2014 at 3:12 AM, Michal Hriň h...@apache.org wrote:



 Dňa 08.07.2014 23:02, Kay Schenk  wrote / napísal(a):


 On 07/08/2014 11:27 AM, Michal Hriň wrote:

 Hi,

 I am going through Building guide - Step by step, and I have some
 problem with building helpcontent2. I am on Ubuntu 12.04 and I have JDK
 6 and 7 installed from distribution repository and I am trying to build
 4.1.0 release.

 [...]

 /home/majkl/aoo-4.1.0/main/helpcontent2/unxlngx6.pro/bin/
 xhp_sdatabase_en-US.zip/home/majkl/aoo-4.1.0/main/
 helpcontent2/source/auxiliary/en-US/sdatabase.cfgtime
 taken was 2.886 seconds
 /usr/bin/java   -cp
 .:../../unxlngx6.pro/class:/usr/lib/jvm/java-6-openjdk-
 amd64/jre/lib/rt.jar:.:/home/majkl/aoo-4.1.0/main/solver/
 410/unxlngx6.pro/bin/jaxp.jar:/home/majkl/aoo-4.1.0/main/
 solver/410/unxlngx6.pro/bin/juh.jar:/home/majkl/aoo-4.1.0/
 main/solver/410/unxlngx6.pro/bin/parser.jar:/home/majkl/
 aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/xt.jar:/home/
 majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/unoil.
 jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/
 bin/ridl.jar:/home/majkl/aoo-4.1.0/main/solver/410/
 unxlngx6.pro/bin/jurt.jar:/home/majkl/aoo-4.1.0/main/
 solver/410/unxlngx6.pro/bin/xmlsearch.jar:/home/majkl/aoo-
 4.1.0/main/solver/410/unxlngx6.pro/bin/LuceneHelpWrapper.jar:/home/
 majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/
 HelpIndexerTool.jar:/home/majkl/aoo-4.1.0/main/solver/
 410/unxlngx6.pro/bin/lucene-core-2.9.4-dev.jar:/home/
 majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/lucene-
 analyzers-2.9.4-dev.jar
 com.sun.star.help.HelpIndexerTool -lang en-US -mod sdatabase -zipdir
 ../../unxlngx6.pro/misc/ziptmpsdatabase_en-US -o
 ../../unxlngx6.pro/bin/sdatabase_en-US.zip.unxlngx6.pro
 Exception in thread main java.lang.UnsupportedClassVersionError:
 com/sun/star/help/HelpIndexerTool : Unsupported major.minor version 51.0
  at java.lang.ClassLoader.defineClass1(Native Method)
  at java.lang.ClassLoader.defineClass(ClassLoader.java:643)
  at
 java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
  at java.net.URLClassLoader.defineClass(URLClassLoader.java:277)
  at java.net.URLClassLoader.access$000(URLClassLoader.java:73)
  at java.net.URLClassLoader$1.run(URLClassLoader.java:212)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
  at java.lang.ClassLoader.loadClass(ClassLoader.java:323)
  at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
  at java.lang.ClassLoader.loadClass(ClassLoader.java:268)
 Could not find the main class: com.sun.star.help.HelpIndexerTool.
 Program will exit.
 dmake:  Error code 1, while making
 '../../unxlngx6.pro/bin/sdatabase_en-US.zip'

 1 module(s):
  helpcontent2
 need(s) to be rebuilt

 Reason(s):

 ERROR: error 65280 occurred while making
 /home/majkl/aoo-4.1.0/main/helpcontent2/util/sdatabase

 Ideas?




 Thanks!

 After forcing Java to v. 7, build was sucessful. I wonder why configure
 script recognized Java 6 when both was installed. Maybe I have ghost in the
 machine.


yay! No, no ghost. Somewhere on your system, you have java6 set as your
default java, and that's why configure picked it up instead of 7. Just some
detective work needed. :)





   From this output, it looks like your java version for this build was
 java 6. I think we're using 7 as the default for the builds but I'm not
 positive this is causing your problem. However, you might try it and
 explicitly declare it as part of your config options.

 --with-java
 --with-jdk-home=(path to your java 7 version)


 Is somewhere in the universe complete list of these build parameters ?
 Can you point me there ?


  My java version is java version 1.7.0_51 (openJDK) and I did not
 experience any problems with the build I did yesterday at this section.

 Unfortunately, we don't seem to have source for HelpIndexerTool (just
 the class files) so it's difficult to tell what's going on exactly.



 Regards,
 Michal Hriň

 -
 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




-- 
-
MzK

To be trusted is a greater compliment than being loved.
   -- George MacDonald


Re: Build error - helpcontent2

2014-07-08 Thread Kay Schenk

On 07/08/2014 11:27 AM, Michal Hriň wrote:
 Hi,
 
 I am going through Building guide - Step by step, and I have some
 problem with building helpcontent2. I am on Ubuntu 12.04 and I have JDK
 6 and 7 installed from distribution repository and I am trying to build
 4.1.0 release.
 
 [...]
 
 /home/majkl/aoo-4.1.0/main/helpcontent2/unxlngx6.pro/bin/xhp_sdatabase_en-US.zip/home/majkl/aoo-4.1.0/main/helpcontent2/source/auxiliary/en-US/sdatabase.cfgtime
 taken was 2.886 seconds
 /usr/bin/java   -cp
 .:../../unxlngx6.pro/class:/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/rt.jar:.:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/jaxp.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/juh.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/parser.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/xt.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/unoil.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/ridl.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/jurt.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/xmlsearch.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/LuceneHelpWrapper.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/HelpIndexerTool.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/lucene-core-2.9.4-dev.jar:/home/majkl/aoo-4.1.0/main/solver/410/unxlngx6.pro/bin/lucene-analyzers-2.9.4-dev.jar
 com.sun.star.help.HelpIndexerTool -lang en-US -mod sdatabase -zipdir
 ../../unxlngx6.pro/misc/ziptmpsdatabase_en-US -o
 ../../unxlngx6.pro/bin/sdatabase_en-US.zip.unxlngx6.pro
 Exception in thread main java.lang.UnsupportedClassVersionError:
 com/sun/star/help/HelpIndexerTool : Unsupported major.minor version 51.0
 at java.lang.ClassLoader.defineClass1(Native Method)
 at java.lang.ClassLoader.defineClass(ClassLoader.java:643)
 at
 java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
 at java.net.URLClassLoader.defineClass(URLClassLoader.java:277)
 at java.net.URLClassLoader.access$000(URLClassLoader.java:73)
 at java.net.URLClassLoader$1.run(URLClassLoader.java:212)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:323)
 at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:268)
 Could not find the main class: com.sun.star.help.HelpIndexerTool.
 Program will exit.
 dmake:  Error code 1, while making
 '../../unxlngx6.pro/bin/sdatabase_en-US.zip'
 
 1 module(s):
 helpcontent2
 need(s) to be rebuilt
 
 Reason(s):
 
 ERROR: error 65280 occurred while making
 /home/majkl/aoo-4.1.0/main/helpcontent2/util/sdatabase
 
 Ideas?


From this output, it looks like your java version for this build was
java 6. I think we're using 7 as the default for the builds but I'm not
positive this is causing your problem. However, you might try it and
explicitly declare it as part of your config options.

--with-java
--with-jdk-home=(path to your java 7 version)

My java version is java version 1.7.0_51 (openJDK) and I did not
experience any problems with the build I did yesterday at this section.

Unfortunately, we don't seem to have source for HelpIndexerTool (just
the class files) so it's difficult to tell what's going on exactly.


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

-- 
-
MzK

To be trusted is a greater compliment than being loved.
   -- George MacDonald

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



Build error on Mac OS X 10.7 with AOO main in testtools

2014-03-03 Thread Raphael Bircher
Hi at all.

I have a build error on my Mac OS X 10.7 in testtools 

/Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
constructors.component
:  
DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
 xsltproc --nonet --stringparam uri './cppobj.uno.dylib' -o 
../../unxmaccx.pro/misc/cppobj.component \
/Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
cppobj.component
:  
DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
 xsltproc --nonet --stringparam uri \
'vnd.sun.star.expand:${MY_CLASSDIR_URL}testComponent.jar' -o 
../../unxmaccx.pro/misc/testComponent.component \
/Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
testComponent.component
:  
DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
 xsltproc --nonet --stringparam prefix 
/Users/nacnaub/Documents/AOO_main/main/testtools/source/bridgetest/../../unxmaccx.pro/misc/
 -o ../../unxmaccx.pro/lib/uno_services.rdb \
/Users/nacnaub/Documents/AOO_main/main/solenv/bin/packcomponents.xslt 
../../unxmaccx.pro/misc/uno_services.input
cd ../../unxmaccx.pro/lib  :  
DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
 /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/uno \
-ro uno_services.rdb -ro uno_types.rdb \
-s com.sun.star.test.bridge.BridgeTest -- \
com.sun.star.test.bridge.CppTestObject
/bin/bash: line 1: 51041 Segmentation fault: 11  
DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
 /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/uno -ro 
uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest -- 
com.sun.star.test.bridge.CppTestObject
dmake:  Error code 139, while making 'runtest'

1 module(s): 
testtools
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making 
/Users/nacnaub/Documents/AOO_main/main/testtools/source/bridgetest

When you have fixed the errors in that module you can resume the build by 
running:

build --from testtools




Any touch what's wrong?

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



Re: Build error on Mac OS X 10.7 with AOO main in testtools

2014-03-03 Thread Andre Fischer

On 03.03.2014 10:03, Raphael Bircher wrote:

Hi at all.

I have a build error on my Mac OS X 10.7 in testtools

 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
constructors.component
:  
DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
 xsltproc --nonet --stringparam uri './cppobj.uno.dylib' -o 
../../unxmaccx.pro/misc/cppobj.component \
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
cppobj.component
:  
DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
 xsltproc --nonet --stringparam uri \
 'vnd.sun.star.expand:${MY_CLASSDIR_URL}testComponent.jar' -o 
../../unxmaccx.pro/misc/testComponent.component \
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
testComponent.component
:  
DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
 xsltproc --nonet --stringparam prefix 
/Users/nacnaub/Documents/AOO_main/main/testtools/source/bridgetest/../../unxmaccx.pro/misc/
 -o ../../unxmaccx.pro/lib/uno_services.rdb \
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/packcomponents.xslt 
../../unxmaccx.pro/misc/uno_services.input
cd ../../unxmaccx.pro/lib  :  
DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
 /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/uno \
-ro uno_services.rdb -ro uno_types.rdb \
-s com.sun.star.test.bridge.BridgeTest -- \
com.sun.star.test.bridge.CppTestObject
/bin/bash: line 1: 51041 Segmentation fault: 11  
DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
 /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/uno -ro 
uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest -- 
com.sun.star.test.bridge.CppTestObject
dmake:  Error code 139, while making 'runtest'


Is this a reproducable problem?  It it is then rebuild cpputools (this 
is where the 'uno' executable is built), deliver and try again to build 
testtools.


-Andre




1 module(s):
testtools
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making 
/Users/nacnaub/Documents/AOO_main/main/testtools/source/bridgetest

When you have fixed the errors in that module you can resume the build by 
running:

build --from testtools




Any touch what's wrong?

Greetings Raphael
-
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: Build error on Mac OS X 10.7 with AOO main in testtools

2014-03-03 Thread Raphael Bircher
Hi Andre

Am 03.03.2014 um 10:17 schrieb Andre Fischer:

 On 03.03.2014 10:03, Raphael Bircher wrote:
 Hi at all.
 
 I have a build error on my Mac OS X 10.7 in testtools
 
 
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
 constructors.component
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  xsltproc --nonet --stringparam uri './cppobj.uno.dylib' -o 
 ../../unxmaccx.pro/misc/cppobj.component \
 
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
 cppobj.component
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  xsltproc --nonet --stringparam uri \
 'vnd.sun.star.expand:${MY_CLASSDIR_URL}testComponent.jar' -o 
 ../../unxmaccx.pro/misc/testComponent.component \
 
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
 testComponent.component
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  xsltproc --nonet --stringparam prefix 
 /Users/nacnaub/Documents/AOO_main/main/testtools/source/bridgetest/../../unxmaccx.pro/misc/
  -o ../../unxmaccx.pro/lib/uno_services.rdb \
 
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/packcomponents.xslt 
 ../../unxmaccx.pro/misc/uno_services.input
 cd ../../unxmaccx.pro/lib  :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/uno \
  -ro uno_services.rdb -ro uno_types.rdb \
  -s com.sun.star.test.bridge.BridgeTest -- \
  com.sun.star.test.bridge.CppTestObject
 /bin/bash: line 1: 51041 Segmentation fault: 11  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/uno -ro 
 uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest -- 
 com.sun.star.test.bridge.CppTestObject
 dmake:  Error code 139, while making 'runtest'
 
 Is this a reproducable problem?  It it is then rebuild cpputools (this is 
 where the 'uno' executable is built), deliver and try again to build 
 testtools.

cpputools was already build. but if I deleted it and rebuild it, I have had 
outputs like this:

clang: error: no input files
clang: error: no input files
Making:all_regsingleton.dpobj
:  
DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
 /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/cppumaker 
@/var/folders/hs/4f4b588j4gsg1pl0b65n795mgn/T//mkfbracU  touch 
../../unxmaccx.pro/inc/regsingleton_headergen.done

Greetings Raphael



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



Re: Build error on Mac OS X 10.7 with AOO main in testtools

2014-03-03 Thread Jürgen Schmidt
On 3/3/14 12:06 PM, Raphael Bircher wrote:
 Hi Andre
 
 Am 03.03.2014 um 10:17 schrieb Andre Fischer:
 
 On 03.03.2014 10:03, Raphael Bircher wrote:
 Hi at all.

 I have a build error on my Mac OS X 10.7 in testtools

 
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
 constructors.component
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  xsltproc --nonet --stringparam uri './cppobj.uno.dylib' -o 
 ../../unxmaccx.pro/misc/cppobj.component \
 
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
 cppobj.component
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  xsltproc --nonet --stringparam uri \
 'vnd.sun.star.expand:${MY_CLASSDIR_URL}testComponent.jar' -o 
 ../../unxmaccx.pro/misc/testComponent.component \
 
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
 testComponent.component
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  xsltproc --nonet --stringparam prefix 
 /Users/nacnaub/Documents/AOO_main/main/testtools/source/bridgetest/../../unxmaccx.pro/misc/
  -o ../../unxmaccx.pro/lib/uno_services.rdb \
 
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/packcomponents.xslt 
 ../../unxmaccx.pro/misc/uno_services.input
 cd ../../unxmaccx.pro/lib  :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/uno \
 -ro uno_services.rdb -ro uno_types.rdb \
 -s com.sun.star.test.bridge.BridgeTest -- \
 com.sun.star.test.bridge.CppTestObject
 /bin/bash: line 1: 51041 Segmentation fault: 11  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/uno -ro 
 uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
 -- com.sun.star.test.bridge.CppTestObject
 dmake:  Error code 139, while making 'runtest'

 Is this a reproducable problem?  It it is then rebuild cpputools (this is 
 where the 'uno' executable is built), deliver and try again to build 
 testtools.
 
 cpputools was already build. but if I deleted it and rebuild it, I have had 
 outputs like this:
 
 clang: error: no input files
 clang: error: no input files
 Making:all_regsingleton.dpobj
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/cppumaker 
 @/var/folders/hs/4f4b588j4gsg1pl0b65n795mgn/T//mkfbracU  touch 
 ../../unxmaccx.pro/inc/regsingleton_headergen.done
 

whatever you did, you did something wrong. On my 10.7.5 system testools
built quite well and the brigde test succeeded.

I suggest that you clean up your env and rebuild completely form scratch.

Juergen


 Greetings Raphael
 
 
 
 -
 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: Build error on Mac OS X 10.7 with AOO main in testtools

2014-03-03 Thread Raphael Bircher
Hi Jürgen, *

Am 03.03.2014 um 12:20 schrieb Jürgen Schmidt:

 On 3/3/14 12:06 PM, Raphael Bircher wrote:
 Hi Andre
 
 Am 03.03.2014 um 10:17 schrieb Andre Fischer:
 
 On 03.03.2014 10:03, Raphael Bircher wrote:
 Hi at all.
 
 I have a build error on my Mac OS X 10.7 in testtools
 

 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
 constructors.component
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  xsltproc --nonet --stringparam uri './cppobj.uno.dylib' -o 
 ../../unxmaccx.pro/misc/cppobj.component \

 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
 cppobj.component
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  xsltproc --nonet --stringparam uri \
'vnd.sun.star.expand:${MY_CLASSDIR_URL}testComponent.jar' -o 
 ../../unxmaccx.pro/misc/testComponent.component \

 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
 testComponent.component
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  xsltproc --nonet --stringparam prefix 
 /Users/nacnaub/Documents/AOO_main/main/testtools/source/bridgetest/../../unxmaccx.pro/misc/
  -o ../../unxmaccx.pro/lib/uno_services.rdb \

 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/packcomponents.xslt 
 ../../unxmaccx.pro/misc/uno_services.input
 cd ../../unxmaccx.pro/lib  :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/uno \
-ro uno_services.rdb -ro uno_types.rdb \
-s com.sun.star.test.bridge.BridgeTest -- \
com.sun.star.test.bridge.CppTestObject
 /bin/bash: line 1: 51041 Segmentation fault: 11  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/uno 
 -ro uno_services.rdb -ro uno_types.rdb -s 
 com.sun.star.test.bridge.BridgeTest -- 
 com.sun.star.test.bridge.CppTestObject
 dmake:  Error code 139, while making 'runtest'
 
 Is this a reproducable problem?  It it is then rebuild cpputools (this is 
 where the 'uno' executable is built), deliver and try again to build 
 testtools.
 
 cpputools was already build. but if I deleted it and rebuild it, I have had 
 outputs like this:
 
 clang: error: no input files
 clang: error: no input files
 Making:all_regsingleton.dpobj
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  
 /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/cppumaker 
 @/var/folders/hs/4f4b588j4gsg1pl0b65n795mgn/T//mkfbracU  touch 
 ../../unxmaccx.pro/inc/regsingleton_headergen.done
 
 
 whatever you did, you did something wrong. On my 10.7.5 system testools
 built quite well and the brigde test succeeded.
 
 I suggest that you clean up your env and rebuild completely form scratch.

The build is from the scratch. If there is something wrong with Java or Python, 
it would allready break in the configure step, right

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



Re: Build error on Mac OS X 10.7 with AOO main in testtools

2014-03-03 Thread Raphael Bircher
Hi all

Am 03.03.2014 um 13:00 schrieb Jürgen Schmidt:

 On 3/3/14 12:56 PM, Raphael Bircher wrote:
 Hi Jürgen, *
 
 Am 03.03.2014 um 12:20 schrieb Jürgen Schmidt:
 
 On 3/3/14 12:06 PM, Raphael Bircher wrote:
 Hi Andre
 
 Am 03.03.2014 um 10:17 schrieb Andre Fischer:
 
 On 03.03.2014 10:03, Raphael Bircher wrote:
 Hi at all.
 
 I have a build error on my Mac OS X 10.7 in testtools
 
   
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
 constructors.component
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  xsltproc --nonet --stringparam uri './cppobj.uno.dylib' -o 
 ../../unxmaccx.pro/misc/cppobj.component \
   
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
 cppobj.component
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  xsltproc --nonet --stringparam uri \
   'vnd.sun.star.expand:${MY_CLASSDIR_URL}testComponent.jar' -o 
 ../../unxmaccx.pro/misc/testComponent.component \
   
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/createcomponent.xslt 
 testComponent.component
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  xsltproc --nonet --stringparam prefix 
 /Users/nacnaub/Documents/AOO_main/main/testtools/source/bridgetest/../../unxmaccx.pro/misc/
  -o ../../unxmaccx.pro/lib/uno_services.rdb \
   
 /Users/nacnaub/Documents/AOO_main/main/solenv/bin/packcomponents.xslt 
 ../../unxmaccx.pro/misc/uno_services.input
 cd ../../unxmaccx.pro/lib  :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/uno \
  -ro uno_services.rdb -ro uno_types.rdb \
  -s com.sun.star.test.bridge.BridgeTest -- \
  com.sun.star.test.bridge.CppTestObject
 /bin/bash: line 1: 51041 Segmentation fault: 11  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/uno 
 -ro uno_services.rdb -ro uno_types.rdb -s 
 com.sun.star.test.bridge.BridgeTest -- 
 com.sun.star.test.bridge.CppTestObject
 dmake:  Error code 139, while making 'runtest'
 
 Is this a reproducable problem?  It it is then rebuild cpputools (this is 
 where the 'uno' executable is built), deliver and try again to build 
 testtools.
 
 cpputools was already build. but if I deleted it and rebuild it, I have 
 had outputs like this:
 
 clang: error: no input files
 clang: error: no input files
 Making:all_regsingleton.dpobj
 :  
 DYLD_LIBRARY_PATH=/Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/lib${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
  
 /Users/nacnaub/Documents/AOO_main/main/solver/410/unxmaccx.pro/bin/cppumaker
  @/var/folders/hs/4f4b588j4gsg1pl0b65n795mgn/T//mkfbracU  touch 
 ../../unxmaccx.pro/inc/regsingleton_headergen.done
 
 
 whatever you did, you did something wrong. On my 10.7.5 system testools
 built quite well and the brigde test succeeded.
 
 I suggest that you clean up your env and rebuild completely form scratch.
 
 The build is from the scratch. If there is something wrong with Java or 
 Python, it would allready break in the configure step, right
 
 configure should complain about it, yes but this error has nothing to do
 with it. The uno binary failed with a segmentation fault and there seems
 to be a general problem with your build and/or env.

Ok, I'm builded now compleetle from the scratch, and with a new shell. So no 
env. should be left. But I run in the same error. So there is definitifly 
something wrong with my environment. but what I have no Ideo. I give up for the 
moment with this computer. Luckely I have other who works :-)

Greetings Raphael


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



Build error

2013-12-09 Thread Efi

Hello,
I am having problem with the build, I have been getting this error 
during the building process:


ERROR: ERROR: More than one new package in directory 
/home/efi/AOO/aoo-trunk/main/instsetoo_native/unxlngi6.pro/Apache_OpenOffice/deb/install/en-US_inprogress/DEBS 
( 
/home/efi/AOO/aoo-trunk/main/instsetoo_native/unxlngi6.pro/Apache_OpenOffice/deb/install/en-US_inprogress/DEBS/openoffice-ure-4.1.0-1-linux-3.8-intel.deb 
/home/efi/AOO/aoo-trunk/main/instsetoo_native/unxlngi6.pro/Apache_OpenOffice/deb/install/en-US_inprogress/DEBS/openoffice-ure-4.1.0-1-linux-3.8-intel)

in function: determine_new_packagename (packagepool)
**
in function: determine_new_packagename (packagepool)stopping log at Mon 
Dec  9 21:37:52 2013

dmake:  Error code 255, while making 'openoffice_en-US.deb'

1 module(s):
instsetoo_native
need(s) to be rebuilt

I searched the mailing lists and I found the same one,the solution 
suggested configuring with the 
--with-epm-url=http://www.msweet.org/files/project2/epm-3.7-source.tar.gz which 
was what i used in the first place. I tried moving to different 
revisions before and after the 1546570 which is the revision I first got 
the error.


I use ubuntu 12.04 and my building steps are:
sudo apt-get install subversion
svn co https://svn.apache.org/repos/asf/openoffice/trunk aoo-trunk
cd aoo-trunk/main

sudo apt-get install g++ gcc bison flex libarchive-zip-perl libcups2-dev 
libpam0g-dev gperf libfreetype6-dev libxaw7-dev libfontconfig1-dev 
libxrandr-dev patch libgconf2-dev libgnomevfs2-dev ant libgtk2.0-dev 
junit junit4 libidl-dev liborbit2-dev openjdk-6-jdk libwww-perl 
libxml-parser-perl autoconf libssl-dev


./configure 
--with-dmake-url=http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2 
--with-epm-url=http://www.msweet.org/files/project2/epm-3.7-source.tar.gz --enable-category-b 
 --enable-bundled-dictionaries


./bootstrap
source LinuxX86Env.Set.sh
cd instsetoo_native
build --all

Does anyone know how to solve this?
Regards Efi


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



Re: [MAC][Build] Error at soltools mkdepend

2013-10-04 Thread Herbert Duerr
Hi Tal,

Tal Daniel wrote:
 Thank you Herbert, that helped me to solve the issue.
 
 ccache gcc was looking for Mac OSX 10.4u SDK, so ... instead of installing
 10.4u SDK (xcode already installed), I created a symbolic link to 10.5.
 Guess what, it works!

A nice idea! And a lucky one because the 10.4 and 10.5 SDKs are not that
much different from the perspective of the AOO code base.

By the way, I'm working on upgrading the baseline of our Mac build to
64bit/SDK 10.6 and up. For more details please see [1] and [2].

[1] http://markmail.org/thread/tedxuouu327ottxq
[2] http://markmail.org/thread/g5ol64sv4oghjqor

Herbert

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



Re: [MAC][Build] Error at soltools mkdepend

2013-10-03 Thread Tal Daniel
Thank you Herbert, that helped me to solve the issue.

ccache gcc was looking for Mac OSX 10.4u SDK, so ... instead of installing
10.4u SDK (xcode already installed), I created a symbolic link to 10.5.
Guess what, it works!

Soon, I'll publish my configuration, before I add a few notes to the Mac
Building Guide.


On Mon, Sep 30, 2013 at 11:31 AM, Herbert Duerr h...@apache.org wrote:

 On 28.09.2013 12:40, Tal Daniel wrote:

 Hi, I get an error while building (below).
 Can anyone guide me how to check its source, and how can I get a more
 detailed error report? or... how to try to compile only this part in Xcode
 3.2.6?
 [...]

  1 module(s):
 soltools
 need(s) to be rebuilt


 Changing into the directory in question i.e.
 cd ../soltools
 then running
 build verbose=1
 there and checking its output should provide all details known about the
 build problem.

 Herbert


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




-- 
טל


Re: [MAC][Build] Error at soltools mkdepend

2013-09-30 Thread Herbert Duerr

On 28.09.2013 12:40, Tal Daniel wrote:

Hi, I get an error while building (below).
Can anyone guide me how to check its source, and how can I get a more
detailed error report? or... how to try to compile only this part in Xcode
3.2.6?
[...]

1 module(s):
soltools
need(s) to be rebuilt


Changing into the directory in question i.e.
cd ../soltools
then running
build verbose=1
there and checking its output should provide all details known about the 
build problem.


Herbert


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



[MAC][Build] Error at soltools mkdepend

2013-09-28 Thread Tal Daniel
Hi, I get an error while building (below).
Can anyone guide me how to check its source, and how can I get a more
detailed error report? or... how to try to compile only this part in Xcode
3.2.6?

Entering
 /Users/tal/Documents/Development/OpenOffice/tags/AOO401/main/apache-commons/java/httpclient

 deliver -- version: 275594
 LOG: writing
 /Users/tal/Documents/Development/OpenOffice/tags/AOO401/main/solver/401/
 unxmacxi.pro/inc/saxon/deliver.log
 Module 'saxon' delivered successfully. 0 files copied, 2 files unchanged
 apache-commons deliver
 deliver -- version: 275594
 LOG: writing
 /Users/tal/Documents/Development/OpenOffice/tags/AOO401/main/solver/401/
 unxmacxi.pro/inc/apache-commons/deliver.log
 Module 'apache-commons' delivered successfully. 0 files copied, 5 files
 unchanged

 1 module(s):
 soltools
 need(s) to be rebuilt

 Reason(s):
 ERROR: error 65280 occurred while making
 /Users/tal/Documents/Development/OpenOffice/tags/AOO401/main/soltools/mkdepend

 When you have fixed the errors in that module you can resume the build by
 running:

 build --from soltools


To build, I use build --all debug=t -P2 --html --html_path
/Users/tal/Sites/, and in order to build again, I write build depend=t
and then build --from soltools --prepare (I hope these commands clear
all, but I'm not sure).

my build.sh configuration is

./configure --with-build-version=$(date +%Y-%m-%d %H:%M:%S) - Rev.
$(echo $(svn info) | sed -e 's/^.*Last Changed Rev: //g' -e 's/ .*//g') \
--disable-mozilla \
--disable-build-mozilla \
--disable-systray --enable-verbose --enable-category-b --enable-minimizer
--enable-presenter-console --enable-wiki-publisher \
--with-dmake-url=http://dmake.apache-extras.org.codespot.com/files/dmake-
4.12.tar.bz2 \
--with-epm-url=http://epm.sourcearchive.com/downloads/3.7-1/epm_3.7.orig.tar.gz
\
--without-stlport

(added without-stlport after Jürgen Schmidt's comment in the archive).

After build.sh completes, I get a single warning, regarding gcc
-fvisibility=hidden which isn't supported in my version.

Thanks,

Tal


Re: w7snap build error

2013-03-26 Thread Ariel Constenla-Haile
On Wed, Mar 20, 2013 at 12:08:38PM +0100, Oliver-Rainer Wittmann wrote:
 Error: Missplaced close tag: /oor:component-data in file
 
  E:\slave14\aoo-w7snap\build\main\officecfg\registry\data\org\openoffice\Office\UI\Sidebar.xcu
 in line 640: /oor:component-data dmake:  Error code 13,
 while making
 
  '../../../../../../wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
 dmake:
 
  '../../../../../../wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
 removed.
 
 It's not a missing tag, it's a stupid code that requires the
 beginning tag to be in the same line, at least after
 
 oor:component-data [something in the same line] [...]
 
 It's simply putting the next line in the same line:
 
 oor:component-data oor:name=Sidebar
 
 Don't ask me why, I didn't look at that code (but obviously sounds
 like a bug).
 
 
 
 I have committed the suggested patch from Ariel.  Herbert was so kind
 to trigger the buildbot.

It seems this doesn't fix anything:
http://ci.apache.org/projects/openoffice/buildlogs/winsnap/main/officecfg/wntmsci12.pro/misc/logs/registry.data.org.openoffice.Office.UI.txt

Really strange, this *did* fix that build breaker at that time, when
I tried to build on CentOS for Mechtilde (I couldn't finish because sw
was broken, too).


Regards
-- 
Ariel Constenla-Haile
La Plata, Argentina


pgpfi1DQODkYn.pgp
Description: PGP signature


Re: w7snap build error

2013-03-26 Thread Herbert Dürr

On 2013/03/26 8:23 AM, Ariel Constenla-Haile wrote:

On Wed, Mar 20, 2013 at 12:08:38PM +0100, Oliver-Rainer Wittmann wrote:

I have committed the suggested patch from Ariel.  Herbert was so kind
to trigger the buildbot.


It seems this doesn't fix anything:
http://ci.apache.org/projects/openoffice/buildlogs/winsnap/main/officecfg/wntmsci12.pro/misc/logs/registry.data.org.openoffice.Office.UI.txt


Please note that this is an old log as build #41 on aoo-w7snap didn't 
even make it to the upload step, so the old logs were never 
overwritten. Now why the buildbot stopped and timed out after 23h is a 
mystery to me too. Someone with direct access into that machine should 
have a look at the machines log files.


Herbert

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



Re: w7snap build error

2013-03-20 Thread Oliver-Rainer Wittmann

Hi,

On 19.03.2013 21:14, Ariel Constenla-Haile wrote:

On Tue, Mar 19, 2013 at 12:57:11PM -0700, Andrew Rist wrote:

should I kick off a build?


I don't have a subversion branch to check out that change, and I've no
idea how git-svn works with subversion branches.

If you can commit the change yourself, I'm fine.


On 3/19/2013 12:30 PM, Ariel Constenla-Haile wrote:

On Tue, Mar 19, 2013 at 10:53:22AM -0700, Andrew Rist wrote:

The snapshot of the sidebar branch is failing on officecfg/Office/UI
seems there's a tag missing in xcu file...

Error: Missplaced close tag: /oor:component-data in file 
E:\slave14\aoo-w7snap\build\main\officecfg\registry\data\org\openoffice\Office\UI\Sidebar.xcu in line 
640: /oor:component-data
dmake:  Error code 13, while making 
'../../../../../../wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
dmake:  
'../../../../../../wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
 removed.


It's not a missing tag, it's a stupid code that requires the beginning
tag to be in the same line, at least after

oor:component-data [something in the same line] [...]


It's simply putting the next line in the same line:

oor:component-data oor:name=Sidebar

Don't ask me why, I didn't look at that code (but obviously sounds like
a bug).



Ariel, thanks for findings.

Strange is also that on my system (Windows 7, cygwin environment) the 
build of branch sidebar does not break.



Best regards, Oliver.

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



w7snap build error

2013-03-19 Thread Andrew Rist

The snapshot of the sidebar branch is failing on officecfg/Office/UI
seems there's a tag missing in xcu file...

   Error: Missplaced close tag: /oor:component-data in file 
E:\slave14\aoo-w7snap\build\main\officecfg\registry\data\org\openoffice\Office\UI\Sidebar.xcu in line 
640: /oor:component-data
   dmake:  Error code 13, while making 
'../../../../../../wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
   dmake:  
'../../../../../../wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
 removed.



Re: w7snap build error

2013-03-19 Thread janI
@arist:

there is also a problem with aoo-w7l10n, it has a problem linking 1 out 5
classes, that all inherit from the same base class. Linker claims
startSave, save is not implemented, that seems to me as if one of the
sources have not been recompiled.

can you please clean the build (or have a look and give your opinion).

thanks in advance
Jan I.

On 19 March 2013 18:53, Andrew Rist andrew.r...@oracle.com wrote:

 The snapshot of the sidebar branch is failing on officecfg/Office/UI
 seems there's a tag missing in xcu file...

Error: Missplaced close tag: /oor:component-data in file
 E:\slave14\aoo-w7snap\build\**main\officecfg\registry\data\**
 org\openoffice\Office\UI\**Sidebar.xcu in line 640:
 /oor:component-data
dmake:  Error code 13, while making '../../../../../../wntmsci12.**
 pro/misc/merge/org/openoffice/**Office/UI/Sidebar.xcuhttp://wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu
 '
dmake:  '../../../../../../wntmsci12.**pro/misc/merge/org/openoffice/**
 Office/UI/Sidebar.xcuhttp://wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
 removed.




Re: w7snap build error

2013-03-19 Thread Ariel Constenla-Haile
On Tue, Mar 19, 2013 at 10:53:22AM -0700, Andrew Rist wrote:
 The snapshot of the sidebar branch is failing on officecfg/Office/UI
 seems there's a tag missing in xcu file...
 
Error: Missplaced close tag: /oor:component-data in file 
 E:\slave14\aoo-w7snap\build\main\officecfg\registry\data\org\openoffice\Office\UI\Sidebar.xcu
  in line 640: /oor:component-data
dmake:  Error code 13, while making 
 '../../../../../../wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
dmake:  
 '../../../../../../wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
  removed.
 

It's not a missing tag, it's a stupid code that requires the beginning
tag to be in the same line, at least after 

oor:component-data [something in the same line] [...]


Regards
-- 
Ariel Constenla-Haile
La Plata, Argentina


pgpHHpDZv8VX5.pgp
Description: PGP signature


Re: w7snap build error

2013-03-19 Thread Ariel Constenla-Haile
On Tue, Mar 19, 2013 at 12:57:11PM -0700, Andrew Rist wrote:
 should I kick off a build?

I don't have a subversion branch to check out that change, and I've no
idea how git-svn works with subversion branches.

If you can commit the change yourself, I'm fine.

 On 3/19/2013 12:30 PM, Ariel Constenla-Haile wrote:
 On Tue, Mar 19, 2013 at 10:53:22AM -0700, Andrew Rist wrote:
 The snapshot of the sidebar branch is failing on officecfg/Office/UI
 seems there's a tag missing in xcu file...
 
 Error: Missplaced close tag: /oor:component-data in file 
  E:\slave14\aoo-w7snap\build\main\officecfg\registry\data\org\openoffice\Office\UI\Sidebar.xcu
   in line 640: /oor:component-data
 dmake:  Error code 13, while making 
  '../../../../../../wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
 dmake:  
  '../../../../../../wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
   removed.
 
 It's not a missing tag, it's a stupid code that requires the beginning
 tag to be in the same line, at least after
 
 oor:component-data [something in the same line] [...]

It's simply putting the next line in the same line:

oor:component-data oor:name=Sidebar

Don't ask me why, I didn't look at that code (but obviously sounds like
a bug).


Regards
-- 
Ariel Constenla-Haile
La Plata, Argentina


pgpi7nQRaNqHi.pgp
Description: PGP signature


Re: w7snap build error

2013-03-19 Thread janI
On 19 March 2013 20:30, Ariel Constenla-Haile arie...@apache.org wrote:

 On Tue, Mar 19, 2013 at 10:53:22AM -0700, Andrew Rist wrote:
  The snapshot of the sidebar branch is failing on officecfg/Office/UI
  seems there's a tag missing in xcu file...
 
 Error: Missplaced close tag: /oor:component-data in file
 E:\slave14\aoo-w7snap\build\main\officecfg\registry\data\org\openoffice\Office\UI\Sidebar.xcu
 in line 640: /oor:component-data
 dmake:  Error code 13, while making '../../../../../../
 wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
 dmake:  '../../../../../../
 wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu' removed.
 

 It's not a missing tag, it's a stupid code that requires the beginning
 tag to be in the same line, at least after

 oor:component-data [something in the same line] [...]

It is the old l10n code (localize.sl) that has that problem, I have been
fighting it as well.



 Regards
 --
 Ariel Constenla-Haile
 La Plata, Argentina



Re: w7snap build error

2013-03-19 Thread Ariel Constenla-Haile
On Tue, Mar 19, 2013 at 09:53:39PM +0100, janI wrote:
 On 19 March 2013 20:30, Ariel Constenla-Haile arie...@apache.org wrote:
 
  On Tue, Mar 19, 2013 at 10:53:22AM -0700, Andrew Rist wrote:
   The snapshot of the sidebar branch is failing on officecfg/Office/UI
   seems there's a tag missing in xcu file...
  
  Error: Missplaced close tag: /oor:component-data in file
  E:\slave14\aoo-w7snap\build\main\officecfg\registry\data\org\openoffice\Office\UI\Sidebar.xcu
  in line 640: /oor:component-data
  dmake:  Error code 13, while making '../../../../../../
  wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu'
  dmake:  '../../../../../../
  wntmsci12.pro/misc/merge/org/openoffice/Office/UI/Sidebar.xcu' removed.
  
 
  It's not a missing tag, it's a stupid code that requires the beginning
  tag to be in the same line, at least after
 
  oor:component-data [something in the same line] [...]
 
 It is the old l10n code (localize.sl) that has that problem, I have been
 fighting it as well.

It looks like it happens before the xcu is actually merged:
http://opengrok.adfinis-sygroup.org/source/xref/aoo-trunk/main/l10ntools/source/cfgmerge.cxx#501


Regards
-- 
Ariel Constenla-Haile
La Plata, Argentina


pgpbTCWoGQJXS.pgp
Description: PGP signature


build error in solenv module

2013-03-04 Thread 2
Hi,
I don't know where I change, when I build all, this error comes, maybe 
somebody can help me


- /cygdrive/d/aoo/main
-$ cd instsetoo_native
-/cygdrive/d/aoo/main/instsetoo_native
-$ build --all P2
build -- version: 275224
=
Building module solenv
=
Entering /cygdrive/d/aoo/main/solenv
dmake:  /cygdrive/d/aoo/main/solenv/inc/settings.mk:  line 60:  Error: -- 
Expecting macro or rule defn, found neither
1 module(s):
solenv
need(s) to be rebuilt
Reason(s):
ERROR: error 65280 occurred while making /cygdrive/d/aoo/main/solenv
When you have fixed the errors in that module you can resume the build by 
running:
build --all:solenv


[DEV] Compiler/build error

2013-02-12 Thread Fernando Martinez
Hello Team,

 

I followed the steps at
http://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_ste
p  to build AOO but I get an error after about 2 hours of building. The
error reads as follow;

 

BUILD FAILED

C:\source\aoo-trunk\main\hsqldb\wntmsci12.pro\misc\build\hsqldb\build\build.
xml:302: Compile failed; see the compiler error output for details.

 

Total time: 5 seconds

dmake:  Error code 1, while making
'./wntmsci12.pro/misc/build/so_built_so_hsqldb'

 

1 module(s):

hsqldb

need(s) to be rebuilt

 

Reason(s):

 

ERROR: error 65280 occurred while making
/cygdrive/c/source/aoo-trunk/main/hsqldb

 

When you have fixed the errors in that module you can resume the build by
running:

 

build --all:hsqldb

 

 

 

I have not changed any code. I just downloaded from the website and build it
to get an idea on how AOO works.

 

If anybody could please help with this error and also tell me how to check
the compiler error output.

My environment is: Windows 8 Pro x64, AMD Ahton II X4 650, and 8GB memory.

I any more information is needed, please let me know.

 

Thank you

 

 

Fernando Martinez

Email: fernando.marti...@msn.com

 

 

 



Re: [DEV] Compiler/build error

2013-02-12 Thread Ariel Constenla-Haile
On Tue, Feb 12, 2013 at 05:13:00PM -0500, Fernando Martinez wrote:
 BUILD FAILED
 
 C:\source\aoo-trunk\main\hsqldb\wntmsci12.pro\misc\build\hsqldb\build\build.
 xml:302: Compile failed; see the compiler error output for details.
 If anybody could please help with this error and also tell me how to
 check the compiler error output.

If you build with 

build --html

then you have a folder in every module with the build output:

module/buildout/misc/logs

If you don't build with --html, simply cd to the module, and run build
to rebuild the single module, you'll see the output in the terminal:

cd main/hsqldb
build


I guess you have JDK 7 installed; if so, install a JDK 6 and configure
with --with-jdk-home=absolute path to JDK home


Regards
-- 
Ariel Constenla-Haile
La Plata, Argentina


pgpFbOdfhXKum.pgp
Description: PGP signature


Build Error Mac OS, VCL Module, ai2 branch

2013-02-08 Thread Raphael Bircher

Hi at all

I have a build error on the VCL Module with the ai2 branch. This build 
mashine (Mac OS X 10.5 Intel) has no problem to build AOO from the 
master. I forgott the command to create de debug output, can sameone 
piont me to the right manual? Thanks a load!


Greetings Raphael


  1   2   >