gmake (perl-5.8.6) fails on z/OS

2005-07-26 Thread rajarshi das
Hi, I made the following modifications to utf8.c : #ifdef EBCDIC uv = NATIVE_TO_UTF(uv); #endif I get the following output from gmake : -- `sh cflags optimize='-g' utf8.o` utf8.c CCCMD = c89 -DPERL_CORE -c -DMAXSIG=38 -DOEMVS

Re: gmake (perl-5.8.6) fails on z/OS

2005-07-26 Thread Nicholas Clark
On Tue, Jul 26, 2005 at 07:22:55AM -0700, rajarshi das wrote: Hi, I made the following modifications to utf8.c : #ifdef EBCDIC uv = NATIVE_TO_UTF(uv); #endif Where in utf8.c? Your description of what you changed is inadequate for anyone else to understand the context of your change.

Re: gmake (perl-5.8.6) fails on z/OS

2005-07-26 Thread Nicholas Clark
On Tue, Jul 26, 2005 at 07:55:21AM -0700, rajarshi das wrote: The change is in the fn Perl_utf8n_to_uvuni : --- . #define UTF8_WARN_LONG 8 #define UTF8_WARN_ 9 /* Also FFFE. */ if (curlen == 0

Re: gmake (perl-5.8.6) fails on z/OS

2005-07-26 Thread rajarshi das
--- Nicholas Clark [EMAIL PROTECTED] wrote: On Tue, Jul 26, 2005 at 07:55:21AM -0700, rajarshi das wrote: The change is in the fn Perl_utf8n_to_uvuni : --- . #define UTF8_WARN_LONG 8 #define UTF8_WARN_

Re: bareword test on ebcdic.

2005-07-26 Thread rajarshi das
--- Nicholas Clark [EMAIL PROTECTED] wrote: On Tue, Jul 26, 2005 at 08:12:16AM -0700, rajarshi das wrote: I basically want to know if there are alternate ways of representing barewords (as I mentioned in question 2) above) ? No. By definition there can not be. You're failing to

Re: gmake (perl-5.8.6) fails on z/OS

2005-07-26 Thread rajarshi das
--- Dave Mitchell [EMAIL PROTECTED] wrote: On Tue, Jul 26, 2005 at 03:29:43PM +0100, Nicholas Clark wrote: On Tue, Jul 26, 2005 at 07:22:55AM -0700, rajarshi das wrote: Hi, I made the following modifications to utf8.c : #ifdef EBCDIC uv = NATIVE_TO_UTF(uv); #endif

Re: gmake (perl-5.8.6) fails on z/OS

2005-07-26 Thread Dave Mitchell
On Tue, Jul 26, 2005 at 03:29:43PM +0100, Nicholas Clark wrote: On Tue, Jul 26, 2005 at 07:22:55AM -0700, rajarshi das wrote: Hi, I made the following modifications to utf8.c : #ifdef EBCDIC uv = NATIVE_TO_UTF(uv); #endif Where in utf8.c? Your description of what you changed is