From owner-freebsd-current Mon Jun 26 0:54:49 2000 Delivered-To: freebsd-current@freebsd.org Received: from kbtfw.kubota.co.jp (kbtfw.kubota.co.jp [133.253.102.202]) by hub.freebsd.org (Postfix) with ESMTP id EDD2037BAC1; Mon, 26 Jun 2000 00:54:43 -0700 (PDT) (envelope-from haro@tk.kubota.co.jp) Received: by kbtfw.kubota.co.jp; id QAA27535; Mon, 26 Jun 2000 16:54:39 +0900 (JST) Received: from unknown(133.253.122.4) by kbtfw.kubota.co.jp via smap (V4.2) id xma027420; Mon, 26 Jun 00 16:54:28 +0900 Received: from jkpc15.tk.kubota.co.jp (IDENT:root@kbtgk.eto.kubota.co.jp [133.253.122.3]) by kbtmk.eto.kubota.co.jp (8.9.3+3.2W/3.7W) with ESMTP id QAA00141; Mon, 26 Jun 2000 16:54:26 +0900 (JST) Received: from localhost (localhost.ttr.kubota.co.jp [127.0.0.1]) by jkpc15.tk.kubota.co.jp (8.9.3/3.7W-02/21/99) with ESMTP id QAA02965; Mon, 26 Jun 2000 16:53:36 +0900 (JST) To: markm@FreeBSD.ORG Cc: Doug Barton , current@FreeBSD.ORG Subject: Re: Vendor import of Perl 5.6 In-Reply-To: <200006260642.IAA21048@grimreaper.grondar.za> References: <200006260642.IAA21048@grimreaper.grondar.za> X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000626165335M.haro@tk.kubota.co.jp> Date: Mon, 26 Jun 2000 16:53:35 +0900 From: haro@tk.kubota.co.jp (Munehiro Matsuda) X-Dispatcher: imput version 990905(IM130) Lines: 64 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Date: Mon, 26 Jun 2000 08:42:43 +0200 From: Mark Murray ::> 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