This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
bye bye charsize
authorH.Merijn Brand <h.m.brand@xs4all.nl>
Tue, 21 Aug 2007 14:31:45 +0000 (14:31 +0000)
committerH.Merijn Brand <h.m.brand@xs4all.nl>
Tue, 21 Aug 2007 14:31:45 +0000 (14:31 +0000)
it is^Wwas always 1

p4raw-id: //depot/perl@31745

14 files changed:
Configure
Cross/config.sh-arm-linux
Cross/config.sh-arm-linux-n770
NetWare/config.wc
Porting/Glossary
Porting/config.sh
plan9/config_sh.sample
symbian/config.sh
uconfig.sh
win32/config.bc
win32/config.ce
win32/config.gc
win32/config.vc
win32/config.vc64

index 638ec5b..ef0d847 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -26,7 +26,7 @@
 
 # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
 #
-# Generated on Thu Jul 19 15:56:52 CEST 2007 [metaconfig 3.0 PL70]
+# Generated on Tue Aug 21 15:53:52 CEST 2007 [metaconfig 3.0 PL70]
 # (with additional metaconfig patches by perlbug@perl.org)
 
 cat >c1$$ <<EOF
@@ -347,7 +347,6 @@ optimize=''
 cf_email=''
 cf_by=''
 cf_time=''
-charsize=''
 contains=''
 cpp_stuff=''
 cpplast=''
@@ -15090,40 +15089,6 @@ eval $inhdr
 set nl_langinfo d_nl_langinfo
 eval $inlibc
 
-: check for length of character
-echo " "
-case "$charsize" in
-'')
-       echo "Checking to see how big your characters are (hey, you never know)..." >&4
-       $cat >try.c <<EOCP
-#include <stdio.h>
-#$i_stdlib I_STDLIB
-#ifdef I_STDLIB
-#include <stdlib.h>
-#endif
-int main()
-{
-    printf("%d\n", (int)sizeof(char));
-    exit(0);
-}
-EOCP
-       set try
-       if eval $compile_ok; then
-               dflt=`$run ./try`
-       else
-               dflt='1'
-               echo "(I can't seem to compile the test program.  Guessing...)"
-       fi
-       ;;
-*)
-       dflt="$charsize"
-       ;;
-esac
-rp="What is the size of a character (in bytes)?"
-. ./myread
-charsize="$ans"
-$rm_try
-
 : check for volatile keyword
 echo " "
 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
@@ -15212,38 +15177,10 @@ int main() {
 }
 EOCP
 
-case "$i8type" in
-'')    case "$charsize" in
-       1)      i8type=char
-               u8type="unsigned char"
-               i8size=$charsize
-               u8size=$charsize
-               ;;
-       esac
-       ;;
-esac
-case "$i8type" in
-'')    set try -DINT8
-       if eval $compile; then
-               case "`$run ./try`" in
-               int8_t) i8type=int8_t
-                       u8type=uint8_t
-                       i8size=1
-                       u8size=1
-                       ;;
-               esac
-       fi
-       ;;
-esac
-case "$i8type" in
-'')    if $test $charsize -ge 1; then
-               i8type=char
-               u8type="unsigned char"
-               i8size=$charsize
-               u8size=$charsize
-       fi
-       ;;
-esac
+i8type=char
+u8type="unsigned char"
+i8size=1
+u8size=1
 
 case "$i16type" in
 '')    case "$shortsize" in
@@ -21596,7 +21533,6 @@ ccversion='$ccversion'
 cf_by='$cf_by'
 cf_email='$cf_email'
 cf_time='$cf_time'
-charsize='$charsize'
 chgrp='$chgrp'
 chmod='$chmod'
 chown='$chown'
index d29584d..11e9ea1 100644 (file)
@@ -64,7 +64,6 @@ ccversion=''
 cf_by='red'
 cf_email='red@criticalintegration.com'
 cf_time='Wed Sep  3 22:24:58 EDT 2003'
-charsize='1'
 chgrp=''
 chmod='chmod'
 chown=''
index f4aa6ec..1f9ce2e 100644 (file)
@@ -64,7 +64,6 @@ ccversion=''
 cf_by='red'
 cf_email='red@criticalintegration.com'
 cf_time='Wed Sep  3 22:24:58 EDT 2003'
-charsize='1'
 chgrp=''
 chmod='chmod'
 chown=''
index 46192e3..c2cd1f3 100644 (file)
@@ -51,7 +51,6 @@ ccsymbols=''
 cf_by='nobody'
 cf_email='nobody@no.where.net'
 cf_time=''
-charsize='1'
 chgrp=''
 chmod=''
 chown=''
index 204712e..f267d40 100644 (file)
@@ -244,10 +244,6 @@ cf_time (cf_who.U):
        Holds the output of the "date" command when the configuration file was
        produced. This is used to tag both config.sh and config_h.SH.
 
-charsize (charsize.U):
-       This variable contains the value of the CHARSIZE symbol, which
-       indicates to the C program how many bytes there are in a character.
-
 chgrp (Loc.U):
        This variable is defined but not used by Configure.
        The value is a plain '' and is not useful.
@@ -4106,6 +4102,10 @@ rm (Loc.U):
        full pathname (if any) of the rm program.  After Configure runs,
        the value is reset to a plain "rm" and is not useful.
 
+rm_try (Unix.U):
+       This is a cleanup variable for try test programs.
+       Internal Configure use only.
+
 rmail (Loc.U):
        This variable is defined but not used by Configure.
        The value is a plain '' and is not useful.
index 968ec41..f7912b3 100644 (file)
@@ -8,9 +8,9 @@
 
 # Package name      : perl5
 # Source directory  : .
-# Configuration time: Wed Nov 15 22:18:47 CET 2006
+# Configuration time: Tue Aug 21 16:27:46 CEST 2007
 # Configured by     : merijn
-# Target system     : linux lt09 2.6.16.21-0.25-default #1 tue sep 19 07:26:15 utc 2006 i686 i686 i386 gnulinux 
+# Target system     : linux nb09 2.6.18.8-0.5-default #1 smp fri jun 22 12:17:53 utc 2007 i686 i686 i386 gnulinux 
 
 Author=''
 Date='$Date'
@@ -36,12 +36,12 @@ api_subversion='5'
 api_version='9'
 api_versionstring='5.9.5'
 ar='ar'
-archlib='/pro/lib/perl5/5.9.5/i686-linux-64int'
-archlibexp='/pro/lib/perl5/5.9.5/i686-linux-64int'
+archlib='/pro/lib/perl5/5.9.5/i686-linux-thread-multi-64int-ld'
+archlibexp='/pro/lib/perl5/5.9.5/i686-linux-thread-multi-64int-ld'
 archname64='64int'
-archname='i686-linux-64int'
+archname='i686-linux-thread-multi-64int-ld'
 archobjs=''
-asctime_r_proto='0'
+asctime_r_proto='REENTRANT_PROTO_B_SB'
 awk='awk'
 baserev='5.0'
 bash=''
@@ -54,17 +54,16 @@ c=''
 castflags='0'
 cat='cat'
 cc='cc'
-cccdlflags='-fpic'
+cccdlflags='-fPIC'
 ccdlflags='-Wl,-E'
-ccflags='-fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBUGGING -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
 ccflags_uselargefiles='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
 ccname='gcc'
 ccsymbols=''
 ccversion=''
 cf_by='merijn'
 cf_email='hmbrand@cpan.org'
-cf_time='Wed Nov 15 22:18:47 CET 2006'
-charsize='1'
+cf_time='Tue Aug 21 16:27:46 CEST 2007'
 chgrp=''
 chmod='chmod'
 chown=''
@@ -77,18 +76,18 @@ cpio=''
 cpp='cpp'
 cpp_stuff='42'
 cppccsymbols=''
-cppflags='-fno-strict-aliasing -pipe'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBUGGING -fno-strict-aliasing -pipe'
 cpplast='-'
 cppminus='-'
 cpprun='cc -E'
 cppstdin='cc -E'
-cppsymbols='__CHAR_BIT__=8 __DBL_DENORM_MIN__=4.9406564584124654e-324 __DBL_DIG__=15 __DBL_EPSILON__=2.2204460492503131e-16 __DBL_HAS_INFINITY__=1 __DBL_HAS_QUIET_NAN__=1 __DBL_MANT_DIG__=53 __DBL_MAX_10_EXP__=308 __DBL_MAX__=1.7976931348623157e+308 __DBL_MAX_EXP__=1024 __DBL_MIN_10_EXP__=(-307) __DBL_MIN__=2.2250738585072014e-308 __DBL_MIN_EXP__=(-1021) __DECIMAL_DIG__=21 __ELF__=1 _FILE_OFFSET_BITS=64 __FINITE_MATH_ONLY__=0 __FLT_DENORM_MIN__=1.40129846e-45F __FLT_DIG__=6 __FLT_EPSILON__=1.19209290e-7F __FLT_EVAL_METHOD__=2 __FLT_HAS_INFINITY__=1 __FLT_HAS_QUIET_NAN__=1 __FLT_MANT_DIG__=24 __FLT_MAX_10_EXP__=38 __FLT_MAX__=3.40282347e+38F __FLT_MAX_EXP__=128 __FLT_MIN_10_EXP__=(-37) __FLT_MIN__=1.17549435e-38F __FLT_MIN_EXP__=(-125) __FLT_RADIX__=2 __GLIBC__=2 __GLIBC_MINOR__=4 __GNUC__=4 __GNUC_MINOR__=1 __GNUC_PATCHLEVEL__=0 __GNU_LIBRARY__=6 __gnu_linux__=1 __GXX_ABI_VERSION=1002 __i386=1 __i386__=1 i386=1 __INT_MAX__=2147483647 __INTMAX_MAX__=9223372036854775807LL __INTMAX_TYPE__=long\ long\ int _LARGEFILE_SOURCE=1 __LDBL_DENORM_MIN__=3.64519953188247460253e-4951L __LDBL_DIG__=18 __LDBL_EPSILON__=1.08420217248550443401e-19L __LDBL_HAS_INFINITY__=1 __LDBL_HAS_QUIET_NAN__=1 __LDBL_MANT_DIG__=64 __LDBL_MAX_10_EXP__=4932 __LDBL_MAX__=1.18973149535723176502e+4932L __LDBL_MAX_EXP__=16384 __LDBL_MIN_10_EXP__=(-4931) __LDBL_MIN__=3.36210314311209350626e-4932L __LDBL_MIN_EXP__=(-16381) __linux=1 __linux__=1 linux=1 __LONG_LONG_MAX__=9223372036854775807LL __LONG_MAX__=2147483647L _POSIX_C_SOURCE=200112L _POSIX_SOURCE=1 __PTRDIFF_TYPE__=int __REGISTER_PREFIX__= __SCHAR_MAX__=127 __SHRT_MAX__=32767 __SIZE_TYPE__=unsigned\ int __STDC__=1 __STDC_HOSTED__=1 __UINTMAX_TYPE__=long\ long\ unsigned\ int __unix=1 __unix__=1 unix=1 __USE_BSD=1 __USE_FILE_OFFSET64=1 __USE_LARGEFILE=1 __USE_MISC=1 __USE_POSIX=1 __USE_POSIX199309=1 __USE_POSIX199506=1 __USE_POSIX2=1 __USER_LABEL_PREFIX__= __USE_SVID=1 __VERSION__="4.1.0\ (SUSE\ Linux)" __WCHAR_MAX__=2147483647 __WCHAR_TYPE__=long\ int __WINT_TYPE__=unsigned\ int'
-crypt_r_proto='0'
+cppsymbols='__CHAR_BIT__=8 __DBL_DENORM_MIN__=4.9406564584124654e-324 __DBL_DIG__=15 __DBL_EPSILON__=2.2204460492503131e-16 __DBL_HAS_INFINITY__=1 __DBL_HAS_QUIET_NAN__=1 __DBL_MANT_DIG__=53 __DBL_MAX_10_EXP__=308 __DBL_MAX__=1.7976931348623157e+308 __DBL_MAX_EXP__=1024 __DBL_MIN_10_EXP__=(-307) __DBL_MIN__=2.2250738585072014e-308 __DBL_MIN_EXP__=(-1021) __DECIMAL_DIG__=21 __ELF__=1 _FILE_OFFSET_BITS=64 __FINITE_MATH_ONLY__=0 __FLT_DENORM_MIN__=1.40129846e-45F __FLT_DIG__=6 __FLT_EPSILON__=1.19209290e-7F __FLT_EVAL_METHOD__=2 __FLT_HAS_INFINITY__=1 __FLT_HAS_QUIET_NAN__=1 __FLT_MANT_DIG__=24 __FLT_MAX_10_EXP__=38 __FLT_MAX__=3.40282347e+38F __FLT_MAX_EXP__=128 __FLT_MIN_10_EXP__=(-37) __FLT_MIN__=1.17549435e-38F __FLT_MIN_EXP__=(-125) __FLT_RADIX__=2 __GLIBC__=2 __GLIBC_MINOR__=5 __GNUC__=4 __GNUC_MINOR__=1 __GNUC_PATCHLEVEL__=2 __GNU_LIBRARY__=6 __gnu_linux__=1 _GNU_SOURCE=1 __GXX_ABI_VERSION=1002 __i386=1 __i386__=1 i386=1 __INT_MAX__=2147483647 __INTMAX_MAX__=9223372036854775807LL __INTMAX_TYPE__=long\ long\ int _LARGEFILE64_SOURCE=1 _LARGEFILE_SOURCE=1 __LDBL_DENORM_MIN__=3.64519953188247460253e-4951L __LDBL_DIG__=18 __LDBL_EPSILON__=1.08420217248550443401e-19L __LDBL_HAS_INFINITY__=1 __LDBL_HAS_QUIET_NAN__=1 __LDBL_MANT_DIG__=64 __LDBL_MAX_10_EXP__=4932 __LDBL_MAX__=1.18973149535723176502e+4932L __LDBL_MAX_EXP__=16384 __LDBL_MIN_10_EXP__=(-4931) __LDBL_MIN__=3.36210314311209350626e-4932L __LDBL_MIN_EXP__=(-16381) __linux=1 __linux__=1 linux=1 __LONG_LONG_MAX__=9223372036854775807LL __LONG_MAX__=2147483647L _POSIX_C_SOURCE=200112L _POSIX_SOURCE=1 __PTRDIFF_TYPE__=int _REENTRANT=1 __REGISTER_PREFIX__= __SCHAR_MAX__=127 __SHRT_MAX__=32767 __SIZE_TYPE__=unsigned\ int __STDC__=1 __STDC_HOSTED__=1 __UINTMAX_TYPE__=long\ long\ unsigned\ int __unix=1 __unix__=1 unix=1 __USE_BSD=1 __USE_FILE_OFFSET64=1 __USE_GNU=1 __USE_LARGEFILE=1 __USE_LARGEFILE64=1 __USE_MISC=1 __USE_POSIX=1 __USE_POSIX199309=1 __USE_POSIX199506=1 __USE_POSIX2=1 __USE_REENTRANT=1 __USER_LABEL_PREFIX__= __USE_SVID=1 __USE_UNIX98=1 __USE_XOPEN=1 __USE_XOPEN_EXTENDED=1 __VERSION__="4.1.2\ 20061115\ (prerelease)\ (SUSE\ Linux)" __WCHAR_MAX__=2147483647 __WCHAR_TYPE__=long\ int __WINT_TYPE__=unsigned\ int _XOPEN_SOURCE=600 _XOPEN_SOURCE_EXTENDED=1'
+crypt_r_proto='REENTRANT_PROTO_B_CCS'
 cryptlib=''
 csh='tcsh'
 ctermid_r_proto='0'
-ctime_r_proto='0'
-d_Gconvert='gcvt((x),(n),(b))'
+ctime_r_proto='REENTRANT_PROTO_B_SB'
+d_Gconvert='qgcvt((x),(n),(b))'
 d_PRIEUldbl='define'
 d_PRIFUldbl='define'
 d_PRIGUldbl='define'
@@ -108,7 +107,7 @@ d_accessx='undef'
 d_aintl='undef'
 d_alarm='define'
 d_archlib='define'
-d_asctime_r='undef'
+d_asctime_r='define'
 d_atolf='undef'
 d_atoll='define'
 d_attribute_format='define'
@@ -129,7 +128,7 @@ d_bzero='define'
 d_c99_variadic_macros='define'
 d_casti32='undef'
 d_castneg='define'
-d_charvspr='define'
+d_charvspr='undef'
 d_chown='define'
 d_chroot='define'
 d_chsize='undef'
@@ -141,11 +140,11 @@ d_const='define'
 d_copysignl='define'
 d_cplusplus='undef'
 d_crypt='define'
-d_crypt_r='undef'
+d_crypt_r='define'
 d_csh='define'
 d_ctermid='define'
 d_ctermid_r='undef'
-d_ctime_r='undef'
+d_ctime_r='define'
 d_cuserid='define'
 d_dbl_dig='define'
 d_dbminitproto='undef'
@@ -157,7 +156,7 @@ d_dlerror='define'
 d_dlopen='define'
 d_dlsymun='undef'
 d_dosuid='undef'
-d_drand48_r='undef'
+d_drand48_r='define'
 d_drand48proto='define'
 d_dup2='define'
 d_eaccess='define'
@@ -183,7 +182,7 @@ d_fcntl='define'
 d_fcntl_can_lock='define'
 d_fd_macros='define'
 d_fd_set='define'
-d_fds_bits='undef'
+d_fds_bits='define'
 d_fgetpos='define'
 d_finite='define'
 d_finitel='define'
@@ -211,29 +210,29 @@ d_getcwd='define'
 d_getespwnam='undef'
 d_getfsstat='undef'
 d_getgrent='define'
-d_getgrent_r='undef'
-d_getgrgid_r='undef'
-d_getgrnam_r='undef'
+d_getgrent_r='define'
+d_getgrgid_r='define'
+d_getgrnam_r='define'
 d_getgrps='define'
 d_gethbyaddr='define'
 d_gethbyname='define'
 d_gethent='define'
 d_gethname='define'
-d_gethostbyaddr_r='undef'
-d_gethostbyname_r='undef'
-d_gethostent_r='undef'
+d_gethostbyaddr_r='define'
+d_gethostbyname_r='define'
+d_gethostent_r='define'
 d_gethostprotos='define'
 d_getitimer='define'
 d_getlogin='define'
-d_getlogin_r='undef'
+d_getlogin_r='define'
 d_getmnt='undef'
 d_getmntent='define'
 d_getnbyaddr='define'
 d_getnbyname='define'
 d_getnent='define'
-d_getnetbyaddr_r='undef'
-d_getnetbyname_r='undef'
-d_getnetent_r='undef'
+d_getnetbyaddr_r='define'
+d_getnetbyname_r='define'
+d_getnetent_r='define'
 d_getnetprotos='define'
 d_getpagsz='define'
 d_getpbyname='define'
@@ -244,26 +243,26 @@ d_getpgrp2='undef'
 d_getpgrp='define'
 d_getppid='define'
 d_getprior='define'
-d_getprotobyname_r='undef'
-d_getprotobynumber_r='undef'
-d_getprotoent_r='undef'
+d_getprotobyname_r='define'
+d_getprotobynumber_r='define'
+d_getprotoent_r='define'
 d_getprotoprotos='define'
 d_getprpwnam='undef'
 d_getpwent='define'
-d_getpwent_r='undef'
-d_getpwnam_r='undef'
-d_getpwuid_r='undef'
+d_getpwent_r='define'
+d_getpwnam_r='define'
+d_getpwuid_r='define'
 d_getsbyname='define'
 d_getsbyport='define'
 d_getsent='define'
-d_getservbyname_r='undef'
-d_getservbyport_r='undef'
-d_getservent_r='undef'
+d_getservbyname_r='define'
+d_getservbyport_r='define'
+d_getservent_r='define'
 d_getservprotos='define'
 d_getspnam='define'
-d_getspnam_r='undef'
+d_getspnam_r='define'
 d_gettimeod='define'
-d_gmtime_r='undef'
+d_gmtime_r='define'
 d_gnulibc='define'
 d_grpasswd='define'
 d_hasmntopt='define'
@@ -283,8 +282,8 @@ d_lchown='define'
 d_ldbl_dig='define'
 d_libm_lib_version='define'
 d_link='define'
-d_localtime_r='undef'
-d_localtime_r_needs_tzset='undef'
+d_localtime_r='define'
+d_localtime_r_needs_tzset='define'
 d_locconv='define'
 d_lockf='define'
 d_longdbl='define'
@@ -329,9 +328,9 @@ d_munmap='define'
 d_mymalloc='undef'
 d_nice='define'
 d_nl_langinfo='define'
-d_nv_preserves_uv='undef'
-d_nv_zero_is_allbits_zero='define'
-d_off64_t='undef'
+d_nv_preserves_uv='define'
+d_nv_zero_is_allbits_zero='undef'
+d_off64_t='define'
 d_old_pthread_create_joinable='undef'
 d_oldpthreads='undef'
 d_oldsock='undef'
@@ -346,7 +345,7 @@ d_portable='define'
 d_printf_format_null='define'
 d_procselfexe='define'
 d_pseudofork='undef'
-d_pthread_atfork='undef'
+d_pthread_atfork='define'
 d_pthread_attr_setscope='define'
 d_pthread_yield='define'
 d_pwage='undef'
@@ -359,10 +358,10 @@ d_pwpasswd='define'
 d_pwquota='undef'
 d_qgcvt='define'
 d_quad='define'
-d_random_r='undef'
-d_readdir64_r='undef'
+d_random_r='define'
+d_readdir64_r='define'
 d_readdir='define'
-d_readdir_r='undef'
+d_readdir_r='define'
 d_readlink='define'
 d_readv='define'
 d_recvmsg='define'
@@ -425,6 +424,7 @@ d_shmctl='define'
 d_shmdt='define'
 d_shmget='define'
 d_sigaction='define'
+d_signbit='define'
 d_sigprocmask='define'
 d_sigsetjmp='define'
 d_sitearch='define'
@@ -437,10 +437,10 @@ d_sockpair='define'
 d_socks5_init='undef'
 d_sprintf_returns_strlen='define'
 d_sqrtl='define'
-d_srand48_r='undef'
-d_srandom_r='undef'
-d_sresgproto='undef'
-d_sresuproto='undef'
+d_srand48_r='define'
+d_srandom_r='define'
+d_sresgproto='define'
+d_sresuproto='define'
 d_statblks='define'
 d_statfs_f_flags='undef'
 d_statfs_s='define'
@@ -457,7 +457,7 @@ d_strcoll='define'
 d_strctcpy='define'
 d_strerrm='strerror(e)'
 d_strerror='define'
-d_strerror_r='undef'
+d_strerror_r='define'
 d_strftime='define'
 d_strlcat='undef'
 d_strlcpy='undef'
@@ -486,9 +486,9 @@ d_time='define'
 d_times='define'
 d_tm_tm_gmtoff='define'
 d_tm_tm_zone='define'
-d_tmpnam_r='undef'
+d_tmpnam_r='define'
 d_truncate='define'
-d_ttyname_r='undef'
+d_ttyname_r='define'
 d_tzname='define'
 d_u32align='define'
 d_ualarm='define'
@@ -521,16 +521,16 @@ date='date'
 db_hashtype='u_int32_t'
 db_prefixtype='size_t'
 db_version_major='4'
-db_version_minor='3'
-db_version_patch='29'
+db_version_minor='4'
+db_version_patch='20'
 defvoidused='15'
 direntrytype='struct dirent'
 dlext='so'
 dlsrc='dl_dlopen.xs'
 doublesize='8'
 drand01='drand48()'
-drand48_r_proto='0'
-dynamic_ext='attrs B Compress/Raw/Zlib Cwd Data/Dumper DB_File Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl File/Glob Filter/Util/Call GDBM_File Hash/Util I18N/Langinfo IO IPC/SysV List/Util Math/BigInt/FastCalc MIME/Base64 Opcode PerlIO/encoding PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex threads Time/HiRes Unicode/Normalize XS/APItest XS/Typemap threads/shared'
+drand48_r_proto='REENTRANT_PROTO_I_ST'
+dynamic_ext='attrs B Compress/Raw/Zlib Cwd Data/Dumper DB_File Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl File/Glob Filter/Util/Call GDBM_File Hash/Util I18N/Langinfo IO IPC/SysV List/Util Math/BigInt/FastCalc MIME/Base64 Opcode PerlIO/encoding PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex threads Time/HiRes Time/Piece Unicode/Normalize XS/APItest XS/Typemap threads/shared'
 eagain='EAGAIN'
 ebcdic='undef'
 echo='echo'
@@ -545,7 +545,7 @@ endservent_r_proto='0'
 eunicefix=':'
 exe_ext=''
 expr='expr'
-extensions='attrs B Compress/Raw/Zlib Cwd Data/Dumper DB_File Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl File/Glob Filter/Util/Call GDBM_File Hash/Util I18N/Langinfo IO IPC/SysV List/Util Math/BigInt/FastCalc MIME/Base64 Opcode PerlIO/encoding PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex threads Time/HiRes Unicode/Normalize XS/APItest XS/Typemap threads/shared Compress/IO/Base Compress/IO/Zlib Compress/Zlib Errno'
+extensions='attrs B Compress/Raw/Zlib Cwd Data/Dumper DB_File Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl File/Glob Filter/Util/Call GDBM_File Hash/Util I18N/Langinfo IO IPC/SysV List/Util Math/BigInt/FastCalc MIME/Base64 Opcode PerlIO/encoding PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex threads Time/HiRes Time/Piece Unicode/Normalize XS/APItest XS/Typemap threads/shared Compress/Zlib Errno IO_Compress_Base IO_Compress_Zlib'
 extras=''
 fflushNULL='define'
 fflushall='undef'
@@ -561,35 +561,35 @@ full_csh='/usr/bin/tcsh'
 full_sed='/usr/bin/sed'
 gccansipedantic=''
 gccosandvers=''
-gccversion='4.1.0 (SUSE Linux)'
-getgrent_r_proto='0'
-getgrgid_r_proto='0'
-getgrnam_r_proto='0'
-gethostbyaddr_r_proto='0'
-gethostbyname_r_proto='0'
-gethostent_r_proto='0'
-getlogin_r_proto='0'
-getnetbyaddr_r_proto='0'
-getnetbyname_r_proto='0'
-getnetent_r_proto='0'
-getprotobyname_r_proto='0'
-getprotobynumber_r_proto='0'
-getprotoent_r_proto='0'
-getpwent_r_proto='0'
-getpwnam_r_proto='0'
-getpwuid_r_proto='0'
-getservbyname_r_proto='0'
-getservbyport_r_proto='0'
-getservent_r_proto='0'
-getspnam_r_proto='0'
+gccversion='4.1.2 20061115 (prerelease) (SUSE Linux)'
+getgrent_r_proto='REENTRANT_PROTO_I_SBWR'
+getgrgid_r_proto='REENTRANT_PROTO_I_TSBWR'
+getgrnam_r_proto='REENTRANT_PROTO_I_CSBWR'
+gethostbyaddr_r_proto='REENTRANT_PROTO_I_TsISBWRE'
+gethostbyname_r_proto='REENTRANT_PROTO_I_CSBWRE'
+gethostent_r_proto='REENTRANT_PROTO_I_SBWRE'
+getlogin_r_proto='REENTRANT_PROTO_I_BW'
+getnetbyaddr_r_proto='REENTRANT_PROTO_I_uISBWRE'
+getnetbyname_r_proto='REENTRANT_PROTO_I_CSBWRE'
+getnetent_r_proto='REENTRANT_PROTO_I_SBWRE'
+getprotobyname_r_proto='REENTRANT_PROTO_I_CSBWR'
+getprotobynumber_r_proto='REENTRANT_PROTO_I_ISBWR'
+getprotoent_r_proto='REENTRANT_PROTO_I_SBWR'
+getpwent_r_proto='REENTRANT_PROTO_I_SBWR'
+getpwnam_r_proto='REENTRANT_PROTO_I_CSBWR'
+getpwuid_r_proto='REENTRANT_PROTO_I_TSBWR'
+getservbyname_r_proto='REENTRANT_PROTO_I_CCSBWR'
+getservbyport_r_proto='REENTRANT_PROTO_I_ICSBWR'
+getservent_r_proto='REENTRANT_PROTO_I_SBWR'
+getspnam_r_proto='REENTRANT_PROTO_I_CSBWR'
 gidformat='"lu"'
 gidsign='1'
 gidsize='4'
 gidtype='gid_t'
 glibpth='/usr/shlib  /lib /usr/lib /usr/lib/386 /lib/386 /usr/ccs/lib /usr/ucblib /usr/local/lib '
 gmake='gmake'
-gmtime_r_proto='0'
-gnulibc_version='2.4'
+gmtime_r_proto='REENTRANT_PROTO_S_TS'
+gnulibc_version='2.5'
 grep='grep'
 groupcat='cat /etc/group'
 groupstype='gid_t'
@@ -698,7 +698,7 @@ inc_version_list_init='0'
 incpath=''
 inews=''
 initialinstalllocation='/pro/bin'
-installarchlib='/pro/lib/perl5/5.9.5/i686-linux-64int'
+installarchlib='/pro/lib/perl5/5.9.5/i686-linux-thread-multi-64int-ld'
 installbin='/pro/bin'
 installhtml1dir=''
 installhtml3dir=''
@@ -708,7 +708,7 @@ installprefix='/pro'
 installprefixexp='/pro'
 installprivlib='/pro/lib/perl5/5.9.5'
 installscript='/pro/bin'
-installsitearch='/pro/lib/perl5/site_perl/5.9.5/i686-linux-64int'
+installsitearch='/pro/lib/perl5/site_perl/5.9.5/i686-linux-thread-multi-64int-ld'
 installsitebin='/pro/bin'
 installsitehtml1dir=''
 installsitehtml3dir=''
@@ -727,35 +727,35 @@ installvendorman1dir=''
 installvendorman3dir=''
 installvendorscript=''
 intsize='4'
-issymlink='/usr/bin/test -h'
+issymlink='test -h'
 ivdformat='"Ld"'
 ivsize='8'
 ivtype='long long'
-known_extensions='attrs B Compress/Raw/Zlib Cwd Data/Dumper DB_File Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl File/Glob Filter/Util/Call GDBM_File Hash/Util I18N/Langinfo IO IPC/SysV List/Util Math/BigInt/FastCalc MIME/Base64 NDBM_File ODBM_File Opcode PerlIO/encoding PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex threads Time/HiRes Unicode/Normalize XS/APItest XS/Typemap threads/shared'
+known_extensions='attrs B Compress/Raw/Zlib Cwd Data/Dumper DB_File Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl File/Glob Filter/Util/Call GDBM_File Hash/Util I18N/Langinfo IO IPC/SysV List/Util Math/BigInt/FastCalc MIME/Base64 NDBM_File ODBM_File Opcode PerlIO/encoding PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex threads Time/HiRes Time/Piece Unicode/Normalize Win32 Win32API/File Win32CORE XS/APItest XS/Typemap threads/shared'
 ksh=''
 ld='cc'
-lddlflags='-shared -L/pro/local/lib'
+lddlflags='-shared -O2 -g -L/pro/local/lib'
 ldflags='-L/pro/local/lib'
 ldflags_uselargefiles=''
 ldlibpthname='LD_LIBRARY_PATH'
 less='less'
 lib_ext='.a'
-libc='/lib/libc-2.4.so'
+libc='/lib/libc-2.5.so'
 libperl='libperl.a'
 libpth='/pro/local/lib /lib /usr/lib /usr/local/lib'
-libs='-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc'
+libs='-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lpthread -lc'
 libsdirs=' /usr/lib'
-libsfiles=' libnsl.so libgdbm.so libdb.so libdl.so libm.so libcrypt.so libutil.so libc.so'
-libsfound=' /usr/lib/libnsl.so /usr/lib/libgdbm.so /usr/lib/libdb.so /usr/lib/libdl.so /usr/lib/libm.so /usr/lib/libcrypt.so /usr/lib/libutil.so /usr/lib/libc.so'
+libsfiles=' libnsl.so libgdbm.so libdb.so libdl.so libm.so libcrypt.so libutil.so libpthread.so libc.so'
+libsfound=' /usr/lib/libnsl.so /usr/lib/libgdbm.so /usr/lib/libdb.so /usr/lib/libdl.so /usr/lib/libm.so /usr/lib/libcrypt.so /usr/lib/libutil.so /usr/lib/libpthread.so /usr/lib/libc.so'
 libspath=' /pro/local/lib /lib /usr/lib /usr/local/lib'
-libswanted='sfio socket inet nsl nm gdbm dbm db malloc dl dld ld sun m crypt sec util c cposix posix ucb BSD'
+libswanted='sfio socket inet nsl nm gdbm dbm db malloc dl dld ld sun m crypt sec util pthread c cposix posix ucb BSD'
 libswanted_uselargefiles=''
 line=''
 lint=''
 lkflags=''
 ln='ln'
 lns='/bin/ln -s'
-localtime_r_proto='0'
+localtime_r_proto='REENTRANT_PROTO_S_TS'
 locincpth='/pro/local/include'
 loclibpth='/pro/local/lib'
 longdblsize='12'
@@ -792,9 +792,9 @@ more='more'
 multiarch='undef'
 mv=''
 myarchname='i686-linux'
-mydomain='.xs4all.nl'
-myhostname='lt09'
-myuname='linux lt09 2.6.16.21-0.25-default #1 tue sep 19 07:26:15 utc 2006 i686 i686 i386 gnulinux '
+mydomain='.procura.nl'
+myhostname='nb09'
+myuname='linux nb09 2.6.18.8-0.5-default #1 smp fri jun 22 12:17:53 utc 2007 i686 i686 i386 gnulinux '
 n='-n'
 need_va_copy='undef'
 netdb_hlen_type='size_t'
@@ -804,24 +804,24 @@ netdb_net_type='in_addr_t'
 nm='nm'
 nm_opt=''
 nm_so_opt='--dynamic'
-nonxs_ext='Compress/IO/Base Compress/IO/Zlib Compress/Zlib Errno'
+nonxs_ext='Compress/Zlib Errno IO_Compress_Base IO_Compress_Zlib'
 nroff='nroff'
-nvEUformat='"E"'
-nvFUformat='"F"'
-nvGUformat='"G"'
-nv_preserves_uv_bits='53'
-nveformat='"e"'
-nvfformat='"f"'
-nvgformat='"g"'
-nvsize='8'
-nvtype='double'
+nvEUformat='"LE"'
+nvFUformat='"LF"'
+nvGUformat='"LG"'
+nv_preserves_uv_bits='64'
+nveformat='"Le"'
+nvfformat='"Lf"'
+nvgformat='"Lg"'
+nvsize='12'
+nvtype='long double'
 o_nonblock='O_NONBLOCK'
 obj_ext='.o'
 old_pthread_create_joinable=''
-optimize='-O2'
+optimize='-O2 -g'
 orderlib='false'
 osname='linux'
-osvers='2.6.16.21-0.25-default'
+osvers='2.6.18.8-0.5-default'
 otherlibdirs=' '
 package='perl5'
 pager='/pro/local/bin/less'
@@ -830,9 +830,9 @@ patchlevel='9'
 path_sep=':'
 perl5='/pro/bin/perl'
 perl=''
-perl_patchlevel='29285'
+perl_patchlevel='31735'
 perladmin='hmbrand@cpan.org'
-perllibs='-lnsl -ldl -lm -lcrypt -lutil -lc'
+perllibs='-lnsl -ldl -lm -lcrypt -lutil -lpthread -lc'
 perlpath='/pro/bin/perl5.9.5'
 pg='pg'
 phostname='hostname'
@@ -851,14 +851,15 @@ quadkind='3'
 quadtype='long long'
 randbits='48'
 randfunc='drand48'
-random_r_proto='0'
+random_r_proto='REENTRANT_PROTO_I_St'
 randseedtype='long'
 ranlib=':'
 rd_nodata='-1'
-readdir64_r_proto='0'
-readdir_r_proto='0'
+readdir64_r_proto='REENTRANT_PROTO_I_TSR'
+readdir_r_proto='REENTRANT_PROTO_I_TSR'
 revision='5'
 rm='rm'
+rm_try='/bin/rm -f try try a.out .out try.[cho] try..o core core.try* try.core*'
 rmail=''
 run=''
 runnm='false'
@@ -904,8 +905,8 @@ sig_num='0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 sig_num_init='0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 6, 17, 29, 31, 0'
 sig_size='69'
 signal_t='void'
-sitearch='/pro/lib/perl5/site_perl/5.9.5/i686-linux-64int'
-sitearchexp='/pro/lib/perl5/site_perl/5.9.5/i686-linux-64int'
+sitearch='/pro/lib/perl5/site_perl/5.9.5/i686-linux-thread-multi-64int-ld'
+sitearchexp='/pro/lib/perl5/site_perl/5.9.5/i686-linux-thread-multi-64int-ld'
 sitebin='/pro/bin'
 sitebinexp='/pro/bin'
 sitehtml1dir=''
@@ -934,8 +935,8 @@ socksizetype='socklen_t'
 sort='sort'
 spackage='Perl5'
 spitshell='cat'
-srand48_r_proto='0'
-srandom_r_proto='0'
+srand48_r_proto='REENTRANT_PROTO_I_LS'
+srandom_r_proto='REENTRANT_PROTO_I_TS'
 src='.'
 ssizetype='ssize_t'
 startperl='#!/pro/bin/perl5.9.5'
@@ -948,7 +949,7 @@ stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
 stdio_filbuf=''
 stdio_ptr='((fp)->_IO_read_ptr)'
 stdio_stream_array=''
-strerror_r_proto='0'
+strerror_r_proto='REENTRANT_PROTO_B_IBW'
 strings='/usr/include/string.h'
 submit=''
 subversion='5'
@@ -961,13 +962,13 @@ tee=''
 test='test'
 timeincl='/usr/include/sys/time.h /usr/include/time.h '
 timetype='time_t'
-tmpnam_r_proto='0'
+tmpnam_r_proto='REENTRANT_PROTO_B_B'
 to=':'
 touch='touch'
 tr='tr'
 trnl='\n'
 troff=''
-ttyname_r_proto='0'
+ttyname_r_proto='REENTRANT_PROTO_I_IBW'
 u16size='2'
 u16type='unsigned short'
 u32size='4'
@@ -989,12 +990,12 @@ use64bitint='define'
 usecrosscompile='undef'
 usedl='define'
 usefaststdio='undef'
-useithreads='undef'
+useithreads='define'
 uselargefiles='define'
-uselongdouble='undef'
+uselongdouble='define'
 usemallocwrap='define'
-usemorebits='undef'
-usemultiplicity='undef'
+usemorebits='define'
+usemultiplicity='define'
 usemymalloc='n'
 usenm='false'
 useopcode='true'
@@ -1006,7 +1007,7 @@ usesfio='false'
 useshrplib='false'
 usesitecustomize='undef'
 usesocks='undef'
-usethreads='undef'
+usethreads='define'
 usevendorprefix='undef'
 usevfork='false'
 usrinc='/usr/include'
@@ -1037,7 +1038,7 @@ vendorprefixexp=''
 vendorscript=''
 vendorscriptexp=''
 version='5.9.5'
-version_patchlevel_string='version 9 subversion 5 patch 29285'
+version_patchlevel_string='version 9 subversion 5 patch 31735'
 versiononly='define'
 vi=''
 voidflags='15'
@@ -1048,16 +1049,18 @@ zcat=''
 zip='zip'
 # Configure command line arguments.
 config_arg0='./Configure'
-config_args='-Dusedevel -Duse64bitint -des'
-config_argc=3
+config_args='-Dusedevel -Duseithreads -Dusemorebits -DDEBUGGING -des'
+config_argc=5
 config_arg1='-Dusedevel'
-config_arg2='-Duse64bitint'
-config_arg3='-des'
+config_arg2='-Duseithreads'
+config_arg3='-Dusemorebits'
+config_arg4='-DDEBUGGING'
+config_arg5='-des'
 PERL_REVISION=5
 PERL_VERSION=9
 PERL_SUBVERSION=5
 PERL_API_REVISION=5
 PERL_API_VERSION=9
 PERL_API_SUBVERSION=5
-PERL_PATCHLEVEL=29285
+PERL_PATCHLEVEL=31735
 PERL_CONFIG_SH=true
index 2e8ca7a..e31ed49 100644 (file)
@@ -64,7 +64,6 @@ ccversion=''
 cf_by='9trouble'
 cf_email='9trouble@plan9.bell-labs.com'
 cf_time='Sun Nov 24 20:57:48 EST 2002'
-charsize='1'
 chgrp=''
 chmod='chmod'
 chown=''
index 30d4848..247427e 100644 (file)
@@ -22,7 +22,6 @@ cccdlflags=''
 ccdlflags=''
 cf_by='root@localhost'
 cf_time='Thu Jan  1 00:00:00 GMT 1970'
-charsize='1'
 clocktype='clock_t'
 cpp_stuff='42'
 cpplast=''
index 22e8f03..151d247 100755 (executable)
@@ -15,7 +15,6 @@ byteorder='1234'
 castflags='0'
 cf_by='root@localhost'
 cf_time='Thu Jan  1 00:00:00 GMT 1970'
-charsize='1'
 clocktype='clock_t'
 cpplast='-'
 cppminus='-'
index f00136d..2c1ffd7 100644 (file)
@@ -52,7 +52,6 @@ ccversion=''
 cf_by='nobody'
 cf_email='nobody@no.where.net'
 cf_time=''
-charsize='1'
 chgrp=''
 chmod=''
 chown=''
index 01855fc..6edabb7 100644 (file)
@@ -51,7 +51,6 @@ ccsymbols=''
 cf_by='nobody'
 cf_email='nobody@no.where.net'
 cf_time=''
-charsize='1'
 chgrp=''
 chmod=''
 chown=''
index 33c5213..121c6ba 100644 (file)
@@ -52,7 +52,6 @@ ccversion=''
 cf_by='nobody'
 cf_email='nobody@no.where.net'
 cf_time=''
-charsize='1'
 chgrp=''
 chmod=''
 chown=''
index f89ffbf..d6635ed 100644 (file)
@@ -52,7 +52,6 @@ ccversion=''
 cf_by='nobody'
 cf_email='nobody@no.where.net'
 cf_time=''
-charsize='1'
 chgrp=''
 chmod=''
 chown=''
index b94303c..f74dff6 100644 (file)
@@ -52,7 +52,6 @@ ccversion=''
 cf_by='nobody'
 cf_email='nobody@no.where.net'
 cf_time=''
-charsize='1'
 chgrp=''
 chmod=''
 chown=''