[Orca-users] Linux complation problem

Nicolas Aizier1 AIZIER at fr.ibm.com
Thu Aug 4 01:14:17 PDT 2005


Thx Dragon for advice,

i found the problems, i'll explain here if any other users want to do it 
and meet it also :

- Before doing any configure do "echo LC_ALL="C", this is needed for 
disgest MD5 to compil on RHEL 3
- The last snapshot need autoconf 2.58 or higher, last version on RHEL 3 
is 2.57-10, just download feroda version and it work fine.


Cordialement,

Nicolas Aizier
Solaris / Linux administrator
Phone: +33 (0) 4 92 11 45 89
Email:   aizier at fr.ibm.com





David Michaels <dragon at raytheon.com> 
03/08/2005 19:20

To
Nicolas Aizier1/France/Contr/IBM at IBMFR
cc
orca-users at orcaware.com
Subject
Re: [Orca-users] Linux complation problem






Unless you have "prefix" defined in your login shell (unlikely), your 
references to $prefix (as in $prefix/html) is probaby interpreted as an 
empty string.  So, effectively, your configure line looks like this:

./configure --prefix=/opt/orca --with-html-dir=/html --with-var-dir=/var 
--with-rrd-dir=/rrd

I don't konw if that's necessarily causing your "make" problems, but you 
probably want to fix it anyway.  I'd recommend being explicit, since 
you're not sure where/when the $prefix will get evaluated:

./configure --prefix=/opt/orca --with-html-dir=/opt/orca/html 
--with-var-dir=/opt/orca/var --with-rrd-dir=/opt/orca/rrd

I think the default html, var, and rrd dirs are subdirectories of 
--prefix, so you may not even need to specify anything.  But, better to be 
explicit than ambiguous. :)

Good luck!
--Dragon

Nicolas Aizier1 wrote: 

Hi all, 

I'm a motivated but new orca user. Since i run it on Linux RHES 3 i'll use 
procallator. 

Actually i'm still building it and i get some problem. The ./configure is 
working fine, here is the line i use : 

./configure --prefix=/opt/orca --with-html-dir=$prefix/html 
--with-var-dir=$prefix/var --with-rrd-dir=$prefix/rrd 

Next come the make, and that is where my problem begin (and i hope soon 
end with your help :D ). 

making all in packages 
make[1]: Entering directory `/root/orca/orca-snapshot-r476/packages' 
cd TimeDate-1.16 && /usr/bin/perl Makefile.PL 
PREFIX=/root/orca/orca-snapshot-r476/packages/../packages/fake_install_root 
INSTALLPRIVLIB=/opt/orca/lib/perl INSTALLARCHLIB=/opt/orca/lib/perl 
INSTALLSITELIB=/opt/orca/lib/perl INSTALLSITEARCH=/opt/orca/lib/perl 
DESTDIR= 
Checking if your kit is complete... 
Looks good 
'DESTDIR' is not a known MakeMaker parameter name. 
Writing Makefile for TimeDate 
cd TimeDate-1.16 && make CC='gcc' OPTIMIZE='-g -O2' 
make[2]: Entering directory 
`/root/orca/orca-snapshot-r476/packages/TimeDate-1.16' 
cp lib/Date/Language/Oromo.pm blib/lib/Date/Language/Oromo.pm 
cp lib/Date/Language/Swedish.pm blib/lib/Date/Language/Swedish.pm 
cp lib/Date/Parse.pm blib/lib/Date/Parse.pm 
cp lib/Date/Language/Czech.pm blib/lib/Date/Language/Czech.pm 
cp lib/Date/Language.pm blib/lib/Date/Language.pm 
cp lib/Date/Language/Amharic.pm blib/lib/Date/Language/Amharic.pm 
cp lib/Date/Language/Italian.pm blib/lib/Date/Language/Italian.pm 
cp lib/Date/Language/TigrinyaEritrean.pm 
blib/lib/Date/Language/TigrinyaEritrean.pm 
cp lib/Date/Language/Chinese_GB.pm blib/lib/Date/Language/Chinese_GB.pm 
cp lib/Date/Language/Austrian.pm blib/lib/Date/Language/Austrian.pm 
cp lib/Date/Language/Dutch.pm blib/lib/Date/Language/Dutch.pm 
cp lib/Date/Language/Somali.pm blib/lib/Date/Language/Somali.pm 
cp lib/Date/Language/Norwegian.pm blib/lib/Date/Language/Norwegian.pm 
cp lib/Date/Language/English.pm blib/lib/Date/Language/English.pm 
cp lib/Date/Format.pm blib/lib/Date/Format.pm 
cp lib/Time/Zone.pm blib/lib/Time/Zone.pm 
cp lib/Date/Language/Gedeo.pm blib/lib/Date/Language/Gedeo.pm 
cp lib/Date/Language/Afar.pm blib/lib/Date/Language/Afar.pm 
cp lib/Date/Language/Greek.pm blib/lib/Date/Language/Greek.pm 
cp lib/Date/Language/TigrinyaEthiopian.pm 
blib/lib/Date/Language/TigrinyaEthiopian.pm 
cp lib/Date/Language/Tigrinya.pm blib/lib/Date/Language/Tigrinya.pm 
cp lib/Date/Language/Brazilian.pm blib/lib/Date/Language/Brazilian.pm 
cp lib/Date/Language/Danish.pm blib/lib/Date/Language/Danish.pm 
cp lib/Date/Language/Finnish.pm blib/lib/Date/Language/Finnish.pm 
cp lib/Date/Language/Sidama.pm blib/lib/Date/Language/Sidama.pm 
cp lib/Date/Language/German.pm blib/lib/Date/Language/German.pm 
cp lib/Date/Language/French.pm blib/lib/Date/Language/French.pm 
Manifying blib/man3/Date::Format.3pm 
Manifying blib/man3/Time::Zone.3pm 
Manifying blib/man3/Date::Parse.3pm 
make[2]: Leaving directory 
`/root/orca/orca-snapshot-r476/packages/TimeDate-1.16' 
cd Digest-MD5-2.33 && /usr/bin/perl Makefile.PL 
PREFIX=/root/orca/orca-snapshot-r476/packages/../packages/fake_install_root 
INSTALLPRIVLIB=/opt/orca/lib/perl INSTALLARCHLIB=/opt/orca/lib/perl 
INSTALLSITELIB=/opt/orca/lib/perl INSTALLSITEARCH=/opt/orca/lib/perl 
DESTDIR= 
Perl's config says that U32 access must be aligned. 
Checking if your kit is complete... 
Looks good 
Warning: prerequisite Digest::base 1.00 not found. 
'DESTDIR' is not a known MakeMaker parameter name. 
Writing Makefile for Digest::MD5 
cd Digest-MD5-2.33 && make CC='gcc' OPTIMIZE='-g -O2' 
make[2]: Entering directory 
`/root/orca/orca-snapshot-r476/packages/Digest-MD5-2.33' 
Makefile:78: *** missing separator.  Stop. 
make[2]: Leaving directory 
`/root/orca/orca-snapshot-r476/packages/Digest-MD5-2.33' 
make[1]: *** [make_digest_md5] Error 2 
make[1]: Leaving directory `/root/orca/orca-snapshot-r476/packages' 
make: *** [all] Error 1 

I've seen a similar problem from a Solaris Admin from last December and 
advice from blair was to upgrade Perl. But i allready got the latest 
version (perl-5.8.0-89.10). 

Regards,

Nicolas Aizier
Solaris / Linux administrator
Phone: +33 (0) 4 92 11 45 89
Email:   aizier at fr.ibm.com



_______________________________________________
Orca-users mailing list
Orca-users at orcaware.com
http://www.orcaware.com/mailman/listinfo/orca-users
 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/orca-users/attachments/20050804/5d0c7e41/attachment.html>


More information about the Orca-users mailing list