Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Jun 2000 16:53:35 +0900
From:      haro@tk.kubota.co.jp (Munehiro Matsuda)
To:        markm@FreeBSD.ORG
Cc:        Doug Barton <DougB@gorean.org>, current@FreeBSD.ORG
Subject:   Re: Vendor import of Perl 5.6 
Message-ID:  <20000626165335M.haro@tk.kubota.co.jp>
In-Reply-To: <200006260642.IAA21048@grimreaper.grondar.za> 
References:  <200006260642.IAA21048@grimreaper.grondar.za>

next in thread | previous in thread | raw e-mail | index | archive | help
Date: Mon, 26 Jun 2000 08:42:43 +0200
From: Mark Murray <mark@grondar.za>
::> This indicates to me that configpm is not reading Config.pm from the obj
::> directory, which does contain the correct value that configpm is looking
::> for at line 433. 
::> 
::> 	I'm not sure what the fix is, but hopefully this'll help mark down the
::> road. 
::
::Thanks! You're building threads, right?

Mark,

I'm not sure if this is correct, but I got through the perl build problem
with the following patch:
---------8<------------------8<------------------8<----------
--- contrib/perl5/configpm.ctm	Mon Jun 26 13:10:55 2000
+++ contrib/perl5/configpm	Mon Jun 26 16:33:13 2000
@@ -17,7 +17,7 @@
 
 
 open CONFIG, ">$config_pm" or die "Can't open $config_pm: $!\n";
-$myver = sprintf "v%vd", $^V;
+$myver = $];
 
 print CONFIG <<'ENDOFBEG_NOQ', <<"ENDOFBEG";
 package Config;
@@ -430,11 +430,11 @@
 import Config;
 
 die "$0: $config_pm not valid"
-	unless $Config{'CONFIGDOTSH'} eq 'true';
+	unless $Config{'CONFIG'} eq 'true';
 
 die "$0: error processing $config_pm"
 	if defined($Config{'an impossible name'})
-	or $Config{'CONFIGDOTSH'} ne 'true' # test cache
+	or $Config{'CONFIG'} ne 'true' # test cache
 	;
 
 die "$0: error processing $config_pm"
---------8<------------------8<------------------8<----------

BTW, my buildworld is still going, so should know the results
in a few hours.

Hope this helps,
  Haro

=------------------------------------------------------------------------------
           _ _    Munehiro (haro) Matsuda
 -|- /_\  |_|_|   Business Incubation Dept., Kubota Corp.
 /|\ |_|  |_|_|   1-3 Nihonbashi-Muromachi 3-Chome
                  Chuo-ku Tokyo 103-8310, Japan
                  Tel: +81-3-3245-3318  Fax: +81-3-3245-3315
                  Email: haro@kubota.co.jp










To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000626165335M.haro>