LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-01-2005, 07:43 PM   #1
echo_max
Member
 
Registered: Jun 2005
Location: Thornton, Colorado
Distribution: Debian 4, Ubuntu 9.04
Posts: 38

Rep: Reputation: 15
compiling Open Office


Hello all.

I'm trying to configure open office and i'm not making much progress. I don't know how many of you have done this before, or even attempt to do it, hopefully there are some with experience. I've gotten past the java errors and gpc, that was easy. Now i'm getting this error that doesn't tell me anything helpful, so i'm stuck.

here is the output, the last 30 lines or so:

* Setting up the build environment variables. *
* *
********************************************************************
configure: creating ./config.status
config.status: creating set_soenv
Setting up the environment for building OpenOffice.org
Use of uninitialized value in concatenation (.) or string at ./set_soenv line 476.
Setting platform independent values... done
Use of uninitialized value in concatenation (.) or string at ./set_soenv line 753.
Use of uninitialized value in concatenation (.) or string at ./set_soenv line 899.
Use of uninitialized value in concatenation (.) or string at ./set_soenv line 899.
Use of uninitialized value in concatenation (.) or string at ./set_soenv line 899.
Use of uninitialized value in concatenation (.) or string at ./set_soenv line 899.
Use of uninitialized value in concatenation (.) or string at ./set_soenv line 949.
Use of uninitialized value in concatenation (.) or string at ./set_soenv line 1186.
Use of uninitialized value in concatenation (.) or string at ./set_soenv line 1186.
Use of uninitialized value in concatenation (.) or string at ./set_soenv line 1186.
Setting the environment variables... done
Setting the aliases... done
Use of uninitialized value in concatenation (.) or string at ./set_soenv line 1336.
Use of uninitialized value in concatenation (.) or string at ./set_soenv line 1336.
Cannot open : No such file or directory

This is exactly where i get suck ^^^. has anyone ran into this before? I can't figure out what its wanting to open or what its even looking for.

by the way the system is running on slamd64.

Thanks!
 
Old 11-01-2005, 07:57 PM   #2
foo_bar_foo
Senior Member
 
Registered: Jun 2004
Posts: 2,553

Rep: Reputation: 53
open office version ?
compiler version ?

http://www.linuxfromscratch.org/blfs...penoffice.html
 
Old 11-01-2005, 08:05 PM   #3
echo_max
Member
 
Registered: Jun 2005
Location: Thornton, Colorado
Distribution: Debian 4, Ubuntu 9.04
Posts: 38

Original Poster
Rep: Reputation: 15
yeah sorry about that.

Open Office 1.1.5
gcc 3.4.4
 
Old 11-01-2005, 09:33 PM   #4
echo_max
Member
 
Registered: Jun 2005
Location: Thornton, Colorado
Distribution: Debian 4, Ubuntu 9.04
Posts: 38

Original Poster
Rep: Reputation: 15
cool. thanks for the link. this webpage is definelty going into my bookmarks.
 
Old 11-01-2005, 09:37 PM   #5
madluther
Member
 
Registered: Aug 2004
Distribution: LFS
Posts: 350

Rep: Reputation: 31
I managed to get OOo2.0 to build on an (B)LFS 6.0 system using the the build-instructions found here http://www.linuxfromscratch.org/~dj/OOo_2.0/ with the following modifications

gcc version used was 3.3.4
java version 1.4.2

I only used the nptl and pkgconfig patches.

add a symllink for stlport as decribed in the 1.1.5 BLFS docs
ie
Code:
 
ln -sf /opt/gcc-3.3.4/include/c++/3.3.4 /usr/g++-v3
configured it with the following (you probably won't need --disable-gnome-vfs if you use gnome)
Code:
./configure --prefix=/opt/openoffice-2.0 \
    --enable-libart --enable-libsn \
    --disable-fontooo --without-fonts \
    --with-system-stdlibs --with-system-freetype \
    --with-system-zlib --with-system-jpeg \
    --with-system-expat --with-system-libxml \
    --with-system-curl --enable-build-mozilla \
    --with-build-version=BLFS-20051020 \
    --with-package-format=native --disable-binfilter \
    --with-lang=ENUS --with-dict=ENUS --disable-gnome-vfs
set the environment
Code:
umask 0022 &&
unset LANG LC_ALL
build it with
Code:
./bootstrap &&
source LinuxIntelEnv.Set.sh &&
dmake
the installation sets end up in
instsetoo_native/unxlngi4.pro/OpenOffice/install/en-US/linux-2.6-intel/buildroot/


These instructions are only meant as a guide, you will have to adjust them to suit your distro.


Good luck

Mad.
 
Old 11-01-2005, 10:18 PM   #6
echo_max
Member
 
Registered: Jun 2005
Location: Thornton, Colorado
Distribution: Debian 4, Ubuntu 9.04
Posts: 38

Original Poster
Rep: Reputation: 15
Thanks for all the info foo_bar_foo, madluther. I have moved onto OOo2.0 seeing that it is now available, and was making some progess with that. Now i've got a new problem. Here are the bits of output related:

checking for perl... /usr/bin/perl
checking the Perl version... checked (perl 5)
checking for required Perl modules... Can't locate Archive/Zip.pm in @INC (@INC contains: /usr/lib/perl5/5.8.7/x86_64-linux /usr/lib/perl5/5.8.7 /usr/lib/perl5/site_perl/5.8.7/x86_64-linux /usr/lib/perl5/site_perl/5.8.7 /usr/lib/perl5/site_perl .) at -e line 1.
BEGIN failed--compilation aborted at -e line 1.
configure: error: Failed to find some modules

I am stumped on this one too. I've got pearl installed and from the look of it its lookinng for modules that i don't have installed. I've checked the internet and it seems i've got the latest perl installed. Any suggestions?
 
Old 11-02-2005, 06:21 AM   #7
madluther
Member
 
Registered: Aug 2004
Distribution: LFS
Posts: 350

Rep: Reputation: 31
You're missing some perl modules, these are generally fairly easy to install, the LFS site has instructions on this as well http://www.linuxfromscratch.org/blfs...l-modules.html

Towards the bottom of this page are the generic build instructions. I generally use the auto method
Code:
perl -MCPAN -e shell
as this can download and build any dependcies your desired module may have.

You will need to install the Archive::Zip and XML::Parser modules.

Mad.
 
Old 03-15-2006, 09:22 PM   #8
echo_max
Member
 
Registered: Jun 2005
Location: Thornton, Colorado
Distribution: Debian 4, Ubuntu 9.04
Posts: 38

Original Poster
Rep: Reputation: 15
madluther. its been a very long time since i've worked on this. got distracted from a lot of other things. but i will return shortly, just didn't want to leave everyone hanging that was reading this post.
 
Old 03-15-2006, 10:43 PM   #9
spooon
Senior Member
 
Registered: Aug 2005
Posts: 1,755

Rep: Reputation: 51
Quote:
Originally Posted by echo_max
by the way the system is running on slamd64.
AFAIK OOo doesn't compile in 64-bit. You have to compile it for 32-bit and run it in a system with 32-bit libraries.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Star Office vs. Open Office installation Q viniosity Linux - Software 3 05-21-2006 06:44 AM
Evolution - open word docs with open office (not KWord) bcarl314 Mandriva 1 06-11-2005 09:18 AM
How to Get Open Office 2.0beta to Mimic MS Office 2003 Look? mac57 Linux - Software 2 03-08-2005 07:02 AM
Open Office docs for Microsoft Office btexpress Linux - Software 2 05-17-2004 12:26 PM
Star office / Open Office on Sony Picturebook kkempter Linux - Laptop and Netbook 4 12-11-2003 01:34 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 09:33 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration