delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin-apps/2001/04/19/03:54:09

Mailing-List: contact cygwin-apps-help AT sourceware DOT cygnus DOT com; run by ezmlm
Sender: cygwin-apps-owner AT sourceware DOT cygnus DOT com
List-Subscribe: <mailto:cygwin-apps-subscribe AT sources DOT redhat DOT com>
List-Archive: <http://sources.redhat.com/ml/cygwin-apps/>
List-Post: <mailto:cygwin-apps AT sources DOT redhat DOT com>
List-Help: <mailto:cygwin-apps-help AT sources DOT redhat DOT com>, <http://sources.redhat.com/lists.html#faqs>
Delivered-To: mailing list cygwin-apps AT sources DOT redhat DOT com
Message-ID: <005001c0c8a5$f0335970$0200a8c0@lifelesswks>
From: "Robert Collins" <robert DOT collins AT itdomain DOT com DOT au>
To: "Billinghurst, David \(CRTS\)" <David DOT Billinghurst AT riotinto DOT com>,
<java AT gcc DOT gnu DOT org>, <cygwin-apps AT sources DOT redhat DOT com>
References: <8D00C32549556B4E977F81DBC24E985DC839 AT crtsmail1 DOT technol_exch DOT corp DOT riotinto DOT org>
Subject: Re: gcj && libjava for cygwin
Date: Thu, 19 Apr 2001 17:54:16 +1000
MIME-Version: 1.0
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400
X-OriginalArrivalTime: 19 Apr 2001 07:46:48.0039 (UTC) FILETIME=[E3525770:01C0C8A4]

I missed this before:


----- Original Message -----
From: "Billinghurst, David (CRTS)" <David DOT Billinghurst AT riotinto DOT com>
To: "'Robert Collins'" <robert DOT collins AT itdomain DOT com DOT au>;
<java AT gcc DOT gnu DOT org>; <cygwin-apps AT sources DOT redhat DOT com>
Sent: Thursday, April 19, 2001 12:43 AM
Subject: RE: gcj && libjava for cygwin


> OK.  I have duplicated this, with a couple of variations on the way.
>  *  a couple more patches below
>  * -lpthreads are defined by configure.in.  Will submit patch for this
>  * I think Ican work around IP6 issues
>  * WinMain AT 16 problem comes from linking -lcygwin to early
>
> What I don't understand where _Jv_Sjlj_Throw and JNI_OnLoad are
defined.
>
>
> Needed one strncasecmp in gcc/java/parse.c (or more correctly parse.y)
>
> --- parse.c.orig        Tue Apr 17 23:55:39 2001
> +++ parse.c     Wed Apr 18 19:47:12 2001
> @@ -6026,7 +6026,8 @@
>         ;
>        if (f[0] == '/' || f[0] == DIR_SEPARATOR)
>         f++;
> -      if (strncmp (IDENTIFIER_POINTER (raw_name),
> +      /* DB CYGWIN */
> +      if (strncasecmp (IDENTIFIER_POINTER (raw_name),
>                    f , IDENTIFIER_LENGTH (raw_name)) ||
>           f [IDENTIFIER_LENGTH (raw_name)] != '.')
>         parse_error_context

this should be

#ifdef __CYGWIN__
if (strncasecmp (IDENTIFIER_POINTER (raw_name),
#else
if (strncmp (IDENTIFIER_POINTER (raw_name),
#endif /* CYGWIN */

(or you could use DOS_BASED_FILE_SYSTEM) To prevent us breaking unix
platforms.

Rob


- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019