diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-02-06 15:23:24 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-02-06 15:23:24 +0000 |
commit | 1604a5406b7adf0a94a6c9490c526da20d71e4c3 (patch) | |
tree | d2b7cc81127d1b614d6cbe3276539a58433300bb | |
parent | 4ea261a707f4e168dd781badd6330f75cbcc1012 (diff) | |
download | perl-1604a5406b7adf0a94a6c9490c526da20d71e4c3.tar.gz |
One way to avoid OS390 winge about #line directives.
p4raw-id: //depot/perlio@14575
-rw-r--r-- | ext/Encode/EUC_JP/Makefile.PL | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/Encode/EUC_JP/Makefile.PL b/ext/Encode/EUC_JP/Makefile.PL index ffa6902f5c..1ed8c80d22 100644 --- a/ext/Encode/EUC_JP/Makefile.PL +++ b/ext/Encode/EUC_JP/Makefile.PL @@ -21,6 +21,8 @@ WriteMakefile( DIST_DEFAULT => 'all tardist', }, MAN3PODS => {}, + # OS 390 winges about line numbers > 64K ??? + XSOPT => '-nolinenumbers', ); package MY; |