Date: Sat, 14 Sep 2002 16:23:11 +1000 From: Tim Robbins <tjr@FreeBSD.ORG> To: Christian Weisgerber <naddy@mips.inka.de> Cc: freebsd-current@FreeBSD.ORG Subject: Re: missing 'wcscoll'. Message-ID: <20020914162311.A85397@dilbert.robbins.dropbear.id.au> In-Reply-To: <alsv20$me$1@kemoauc.mips.inka.de>; from naddy@mips.inka.de on Fri, Sep 13, 2002 at 03:08:48PM %2B0000 References: <20020913092209.GA9911@genius.tao.org.uk> <alsv20$me$1@kemoauc.mips.inka.de>
next in thread | previous in thread | raw e-mail | index | archive | help
--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 <joe@FreeBSD.org> 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 (<wchar.h> and <wctype.h>) 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 <wchar.h>-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 <wchar.h>-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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020914162311.A85397>
