diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-01 23:47:39 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-01 23:47:39 +0000 |
commit | 065ee5e7cbcdc9aa24de43adde491c8c4b75b18c (patch) | |
tree | 6c4e371516102515aaabac5da47540433b394b12 /Configure | |
parent | 510c8d02ebaa9b180f33ea0895bf85ec8473792d (diff) | |
download | perl-065ee5e7cbcdc9aa24de43adde491c8c4b75b18c.tar.gz |
Try to find stdchar also from <stdio_impl.h>.
p4raw-id: //depot/perl@7950
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Wed Nov 29 18:47:12 EET 2000 [metaconfig 3.0 PL70] +# Generated on Fri Dec 1 22:20:01 EET 2000 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >/tmp/c1$$ <<EOF @@ -14497,8 +14497,14 @@ if $contains 'unsigned.*char.*_ptr;' `./findhdr stdio.h` >/dev/null 2>&1 ; then echo "Your stdio uses unsigned chars." >&4 stdchar="unsigned char" else - echo "Your stdio uses signed chars." >&4 - stdchar="char" + : Solaris 7+ + if $contains 'unsigned.*char.*_ptr;' `./findhdr stdio_impl.h` >/dev/null 2>&1 ; then + echo "Your stdio uses unsigned chars." >&4 + stdchar="unsigned char" + else + echo "Your stdio uses signed chars." >&4 + stdchar="char" + fi fi : see if time exists |