Eskil Kvalnes <[EMAIL PROTECTED]> said:
> On Feb 26, 2008, at 4:02 PM, Alexander Hansen wrote:
>> Eskil Kvalnes wrote:
>>> gzip -dc /sw/src/Tk-TableMatrix-1.2.tar.gz | /sw/bin/tar -xf -  -- 
>>> no- same-owner --no-same-permissions
>>> perl5.8.6 Makefile.PL PERL=/sw/bin/perl5.8.6 PREFIX=/sw   
>>> INSTALLPRIVLIB=/sw/lib/perl5/5.8.6 INSTALLARCHLIB=/sw/lib/ 
>>> perl5/5.8.6/ darwin-thread-multi-2level INSTALLSITELIB=/sw/lib/ 
>>> perl5/5.8.6  INSTALLSITEARCH=/sw/lib/perl5/5.8.6/darwin-thread- 
>>> multi-2level  INSTALLMAN1DIR=/sw/share/man/man1 INSTALLMAN3DIR=/sw/ 
>>> share/man/man3  INSTALLSITEMAN1DIR=/sw/share/man/man1  
>>> INSTALLSITEMAN3DIR=/sw/share/man/ man3 INSTALLBIN=/sw/bin  
>>> INSTALLSITEBIN=/sw/bin INSTALLSCRIPT=/sw/bin
>>> ### Note: 'Building Outside of Tk itself' Messages are Expected  
>>> Here  ####
>>> perl5.8.6 is installed in /sw/lib/perl5-core/5.8.6/darwin-thread-  
>>> multi-2level okay
>>> PPM for perl5.008006
>>> Test Compiling config/signedchar.c
>>> Test Compile/Run config/unsigned.c
>>> Test Compiling config/Ksprintf.c
>>> Test Compiling -DSPRINTF_RETURN_CHAR config/Ksprintf.c
>>> Test Compiling config/tod.c
>>> Test Compiling -DTIMEOFDAY_TZ config/tod.c
>>> Test Compiling -DTIMEOFDAY_NO_TZ config/tod.c
>>> Test Compiling -DTIMEOFDAY_DOTS config/tod.c
>>> Problem gettimeofday()
>>
>> I get the same error (10.5.2/PowerPC), other than not reaching the  
>> lines about X11.  The gist appears to be an issue with gettimeofday()
>
> looks like I only replied to Alexander, so here I go again. I am in  
> fact on 10.5.2 Intel platform. Hope someone can help me (us) make this  
> work!

What version of tk-pm586 is installed? Does rebuilding that package 1)
work and 2) solve the tk-tablematrix-pm586 build problem (tablematrix
appears to piggyback on a test actually supplied by tk itself)? What
XCode is installed? Assuming tk-pm586 got installed (whether
pre-existing, or it built okay now), akh, you might try hacking the
Tk/MMtry.pm file installed as part of it (not quite sure the full
path) around line 27, which presently says:

 my $msgs  = `$Config{'cc'} -o $out $Config{'ccflags'} @$inc $file @$lib 
$stderr_too`;
 my $ok = ($? == 0);
# warn $msgs if $msgs;

and change to:

 my $cmd  = "$Config{'cc'} -o $out $Config{'ccflags'} @$inc $file @$lib 
$stderr_too";
 warn $cmd;
 my $msgs = `$cmd`;
 my $ok = ($? == 0);
 warn $msgs if $msgs;

That is, display the actual test command before running it and then
display its actual output. Now we might see what tablematrix is trying
and why it's croaking.

dan

-- 
Daniel Macks
[EMAIL PROTECTED]
http://www.netspace.org/~dmacks



-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Fink-beginners mailing list
Fink-beginners@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.beginners

Reply via email to