From owner-freebsd-current Fri Sep 13 23:24: 3 2002 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 395C537B4A8 for ; Fri, 13 Sep 2002 23:23:54 -0700 (PDT) Received: from dilbert.robbins.dropbear.id.au (039.a.002.mel.iprimus.net.au [203.134.133.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2521843E65 for ; Fri, 13 Sep 2002 23:23:47 -0700 (PDT) (envelope-from tim@robbins.dropbear.id.au) Received: from dilbert.robbins.dropbear.id.au (hncfp0wdmuwouwpl@localhost [127.0.0.1]) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6) with ESMTP id g8E6NNUD087766; Sat, 14 Sep 2002 16:23:32 +1000 (EST) (envelope-from tim@dilbert.robbins.dropbear.id.au) Received: (from tim@localhost) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6/Submit) id g8E6NEXC087764; Sat, 14 Sep 2002 16:23:14 +1000 (EST) Date: Sat, 14 Sep 2002 16:23:11 +1000 From: Tim Robbins To: Christian Weisgerber Cc: freebsd-current@FreeBSD.ORG Subject: Re: missing 'wcscoll'. Message-ID: <20020914162311.A85397@dilbert.robbins.dropbear.id.au> References: <20020913092209.GA9911@genius.tao.org.uk> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="k1lZvvs/B4yU6o8G" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from naddy@mips.inka.de on Fri, Sep 13, 2002 at 03:08:48PM +0000 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --k1lZvvs/B4yU6o8G Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Sep 13, 2002 at 03:08:48PM +0000, Christian Weisgerber wrote: > Josef Karthauser wrote: > > > I've not looked too deeply as to the cause, but I'm hoping someone here > > can shed some light on it for me. I'm having trouble building openjade > > from the ports on -current. > > I reported this in PR #42637. I also vaguely remember seeing at > least one fix for a similar problem go in for a different port. I've attached a patch for openjade. Put it in ports/openjade/files/patch-ae. It prevents it from using any of the ISO C90 Amd.1 extended multibyte/wide character functions ( and ) by disabling the test for them in the 'configure' script. The patch makes openjade build properly on -current, but I haven't checked whether it runs correctly or not. Tim --k1lZvvs/B4yU6o8G Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-ae --- configure.orig Sat Sep 14 13:56:38 2002 +++ configure Sat Sep 14 13:59:07 2002 @@ -4864,6 +4864,8 @@ fi +if false; then # begin -disabling hack + echo "$as_me:$LINENO: checking for towupper" >&5 echo $ECHO_N "checking for towupper... $ECHO_C" >&6 if test "${ac_cv_func_towupper+set}" = set; then @@ -4934,6 +4936,8 @@ _ACEOF fi + +fi # end -disabling hack echo "$as_me:$LINENO: checking for gettext" >&5 echo $ECHO_N "checking for gettext... $ECHO_C" >&6 --k1lZvvs/B4yU6o8G-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message