From 8852e312c3c616ab731ccbe7da54fb04eb8c3d30 Mon Sep 17 00:00:00 2001 From: "H.Merijn Brand" Date: Sun, 12 Feb 2012 14:38:30 +0100 Subject: Add strptime probe --- Configure | 8 +++++++- Cross/config.sh-arm-linux | 1 + NetWare/config.wc | 1 + Porting/Glossary | 4 ++++ Porting/config.sh | 1 + config_h.SH | 6 ++++++ configure.com | 1 + epoc/config.sh | 1 + metaconfig.h | 1 + plan9/config_sh.sample | 1 + symbian/config.sh | 1 + uconfig.h | 10 ++++++++-- uconfig.sh | 1 + uconfig64.sh | 1 + win32/config.ce | 1 + win32/config.gc | 1 + win32/config.gc64 | 1 + win32/config.gc64nox | 1 + win32/config.vc | 1 + win32/config.vc64 | 1 + 20 files changed, 41 insertions(+), 3 deletions(-) diff --git a/Configure b/Configure index 43f56bfdc4..09aa091b4f 100755 --- a/Configure +++ b/Configure @@ -28,7 +28,7 @@ # See Porting/pumpkin.pod for more information on metaconfig. # -# Generated on Fri Jan 27 15:48:54 CET 2012 [metaconfig 3.5 PL0] +# Generated on Sun Feb 12 14:10:23 CET 2012 [metaconfig 3.5 PL0] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un */ #$d_strlcpy HAS_STRLCPY /**/ +/* HAS_STRPTIME: + * This symbol, if defined, indicates that the strptime routine is + * available to set process title. + */ +#$d_strptime HAS_STRPTIME /**/ + /* HAS_STRTOLD: * This symbol, if defined, indicates that the strtold routine is * available to convert strings to long doubles. diff --git a/configure.com b/configure.com index 709a49b9e0..9d5956017e 100644 --- a/configure.com +++ b/configure.com @@ -6272,6 +6272,7 @@ $ WC "d_strerror='define'" $ WC "d_strftime='define'" $ WC "d_strlcat='undef'" $ WC "d_strlcpy='undef'" +$ WC "d_strptime='undef'" $ WC "d_strtod='define'" $ WC "d_strtol='define'" $ WC "d_strtold='" + d_strtold + "'" diff --git a/epoc/config.sh b/epoc/config.sh index b68b6c7416..3bc18b10da 100644 --- a/epoc/config.sh +++ b/epoc/config.sh @@ -480,6 +480,7 @@ d_strerror_r='undef' d_strftime='define' d_strlcat='undef' d_strlcpy='undef' +d_strptime='undef' d_strtod='define' d_strtol='define' d_strtold='undef' diff --git a/metaconfig.h b/metaconfig.h index 7a74db0871..0af296d59f 100644 --- a/metaconfig.h +++ b/metaconfig.h @@ -20,6 +20,7 @@ * HAS_MKTIME64 * HAS_PRCTL * HAS_PSEUDOFORK + * HAS_STRPTIME * HAS_TIMEGM * I16SIZE * I64SIZE diff --git a/plan9/config_sh.sample b/plan9/config_sh.sample index f9784ef3d3..3f231a57c3 100644 --- a/plan9/config_sh.sample +++ b/plan9/config_sh.sample @@ -482,6 +482,7 @@ d_strerror_r='undef' d_strftime='define' d_strlcat='undef' d_strlcpy='undef' +d_strptime='undef' d_strtod='define' d_strtol='define' d_strtold='undef' diff --git a/symbian/config.sh b/symbian/config.sh index be7b2a4a30..6fa3be2d4a 100644 --- a/symbian/config.sh +++ b/symbian/config.sh @@ -430,6 +430,7 @@ d_strerror_r='undef' d_strftime='undef' d_strlcat='undef' d_strlcpy='undef' +d_strptime='undef' d_strtod='define' d_strtol='define' d_strtold='undef' diff --git a/uconfig.h b/uconfig.h index d9a833a235..d2b054e5b3 100644 --- a/uconfig.h +++ b/uconfig.h @@ -4021,6 +4021,12 @@ */ /*#define HAS_STRLCPY / **/ +/* HAS_STRPTIME: + * This symbol, if defined, indicates that the strptime routine is + * available to set process title. + */ +/*#define HAS_STRPTIME / **/ + /* HAS_STRTOLD: * This symbol, if defined, indicates that the strtold routine is * available to convert strings to long doubles. @@ -4724,6 +4730,6 @@ #endif /* Generated from: - * d935e2c4b70899e11fb4984070daba3308bc3361c09b5335d752a51e4a5e4c25 config_h.SH - * 5a1e4ec048ee5f2000216dd55cc93e344ba30be7f7ef43664fddc13014b3fe3c uconfig.sh + * 3c734555e994137b62feda07d157a2d6be370dccbfc71dc6a3f51113ad76a3cf config_h.SH + * d93833192973e6eae8a7b5e328ab7e5b9fd20f650e232812e5ea9fbdcd534beb uconfig.sh * ex: set ro: */ diff --git a/uconfig.sh b/uconfig.sh index f52ff0d96c..c9991561cb 100644 --- a/uconfig.sh +++ b/uconfig.sh @@ -421,6 +421,7 @@ d_strerror_r='undef' d_strftime='undef' d_strlcat='undef' d_strlcpy='undef' +d_strptime='undef' d_strtod='undef' d_strtol='undef' d_strtold='undef' diff --git a/uconfig64.sh b/uconfig64.sh index 3922709813..1670c21f6e 100644 --- a/uconfig64.sh +++ b/uconfig64.sh @@ -422,6 +422,7 @@ d_strerror_r='undef' d_strftime='undef' d_strlcat='undef' d_strlcpy='undef' +d_strptime='undef' d_strtod='undef' d_strtol='undef' d_strtold='undef' diff --git a/win32/config.ce b/win32/config.ce index a872577459..dc49bda5d2 100644 --- a/win32/config.ce +++ b/win32/config.ce @@ -470,6 +470,7 @@ d_strerror_r='undef' d_strftime='undef' d_strlcat='undef' d_strlcpy='undef' +d_strptime='undef' d_strtod='define' d_strtol='define' d_strtold='undef' diff --git a/win32/config.gc b/win32/config.gc index 20fbcff3cf..c74dabcf19 100644 --- a/win32/config.gc +++ b/win32/config.gc @@ -470,6 +470,7 @@ d_strerror_r='undef' d_strftime='define' d_strlcat='undef' d_strlcpy='undef' +d_strptime='undef' d_strtod='define' d_strtol='define' d_strtold='undef' diff --git a/win32/config.gc64 b/win32/config.gc64 index 2834d8e47d..3a7ed84ecc 100644 --- a/win32/config.gc64 +++ b/win32/config.gc64 @@ -470,6 +470,7 @@ d_strerror_r='undef' d_strftime='define' d_strlcat='undef' d_strlcpy='undef' +d_strptime='undef' d_strtod='define' d_strtol='define' d_strtold='undef' diff --git a/win32/config.gc64nox b/win32/config.gc64nox index ba69f86d7e..b44e072db3 100644 --- a/win32/config.gc64nox +++ b/win32/config.gc64nox @@ -470,6 +470,7 @@ d_strerror_r='undef' d_strftime='define' d_strlcat='undef' d_strlcpy='undef' +d_strptime='undef' d_strtod='define' d_strtol='define' d_strtold='undef' diff --git a/win32/config.vc b/win32/config.vc index bc4c31ffae..2c348d6456 100644 --- a/win32/config.vc +++ b/win32/config.vc @@ -470,6 +470,7 @@ d_strerror_r='undef' d_strftime='define' d_strlcat='undef' d_strlcpy='undef' +d_strptime='undef' d_strtod='define' d_strtol='define' d_strtold='undef' diff --git a/win32/config.vc64 b/win32/config.vc64 index f68bbde51b..7bdfb7fc44 100644 --- a/win32/config.vc64 +++ b/win32/config.vc64 @@ -470,6 +470,7 @@ d_strerror_r='undef' d_strftime='define' d_strlcat='undef' d_strlcpy='undef' +d_strptime='undef' d_strtod='define' d_strtol='define' d_strtold='undef' -- cgit v1.2.1