This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Spelling - megapatch
[metaconfig.git] / U / compline / d_isascii.U
index a671673..25b97a4 100644 (file)
@@ -1,11 +1,11 @@
 ?RCS: $Id: d_isascii.U,v 3.0.1.2 1994/10/29 16:13:39 ram Exp $
 ?RCS:
 ?RCS: Copyright (c) 1991-1993, Raphael Manfredi
-?RCS: 
-?RCS: You may redistribute only under the terms of the Artistic Licence,
+?RCS:
+?RCS: You may redistribute only under the terms of the Artistic License,
 ?RCS: as specified in the README file that comes with the distribution.
 ?RCS: You may reuse parts of this distribution only within the terms of
-?RCS: that same Artistic Licence; a copy of which may be found at the root
+?RCS: that same Artistic License; a copy of which may be found at the root
 ?RCS: of the source tree for dist 3.0.
 ?RCS:
 ?RCS: Original Author: Andy Dougherty <doughera@lafcol.lafayette.edu>
 ?RCS: Revision 3.0.1.1  1994/08/29  16:09:32  ram
 ?RCS: patch32: created by ADO
 ?RCS:
-?MAKE:d_isascii: Compile cat rm Setvar
+?MAKE:d_isascii: Compile cat rm Setvar i_stdlib
 ?MAKE: -pick add $@ %<
 ?S:d_isascii:
 ?S:    This variable conditionally defines the HAS_ISASCII constant,
 ?S:    which indicates to the C program that isascii() is available.
 ?S:.
 ?C:HAS_ISASCII:
-?C:    This manifest constant lets the C program know that isascii 
+?C:    This manifest constant lets the C program know that isascii
 ?C:    is available.
 ?C:.
 ?H:#$d_isascii HAS_ISASCII             /**/
 ?X: Can't use Inlibc because isascii() might be a macro.
 : Look for isascii
 echo " "
-$cat >isascii.c <<'EOCP'
+$cat >isascii.c <<EOCP
 #include <stdio.h>
 #include <ctype.h>
+#$i_stdlib I_STDLIB
+#ifdef I_STDLIB
+#include <stdlib.h>
+#endif
 int main() {
        int c = 'A';
        if (isascii(c))