diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2005-11-26 13:25:18 +0200 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2006-01-01 10:32:39 +0000 |
commit | 359842a5ea25b12844b1a94485cc2aa186d8bdbe (patch) | |
tree | d07cb59f1ae025b159d4a6e7b8f5dedde6a351ec /Configure | |
parent | 301ccc64ea5df790971635545bbd07c19c67a8b8 (diff) | |
download | perl-359842a5ea25b12844b1a94485cc2aa186d8bdbe.tar.gz |
Configure: stdio char (un)signedness
Message-ID: <438829FE.8070202@gmail.com>
p4raw-id: //depot/perl@26557
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -26,7 +26,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Wed Nov 9 11:15:45 CET 2005 [metaconfig 3.0 PL70] +# Generated on Sun Jan 1 11:31:40 CET 2006 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -19816,7 +19816,8 @@ $rm -f try try.* : see what type of char stdio uses. echo " " -echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh +echo '#include <stdio.h>' > stdio.c +$cppstdin $cppminus < stdio.c > stdioh if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then echo "Your stdio uses unsigned chars." >&4 stdchar="unsigned char" @@ -19824,9 +19825,7 @@ else echo "Your stdio uses signed chars." >&4 stdchar="char" fi -$rm -f stdioh - - +$rm -f stdio.* stdioh : see what type uids are declared as in the kernel echo " " |