summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-02-16 21:55:12 -0700
committerKarl Williamson <khw@cpan.org>2019-03-04 13:01:37 -0700
commit0806cdda2789ca6394976d1ff3e65dd59bcb8d1b (patch)
treea41a3c9825eaeb8592bbd56bfe46c1036cf1c7f1 /Configure
parent92271d410d92433b97015908e12c9f262c5953e7 (diff)
downloadperl-0806cdda2789ca6394976d1ff3e65dd59bcb8d1b.tar.gz
Add towupper() and towlower() to Configure-ish files
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure20
1 files changed, 16 insertions, 4 deletions
diff --git a/Configure b/Configure
index 209e1021c6..309a3340b3 100755
--- a/Configure
+++ b/Configure
@@ -904,6 +904,8 @@ clocktype=''
d_times=''
d_tmpnam_r=''
tmpnam_r_proto=''
+d_towlower=''
+d_towupper=''
d_trunc=''
d_truncate=''
d_truncl=''
@@ -17793,6 +17795,14 @@ eval $inlibc
set locale.h i_locale
eval $inhdr
+: see if this system has wctype.h
+set wctype.h i_wctype
+eval $inhdr
+
+: see if towupper exists
+set towupper d_towupper
+eval $inlibc
+
: see if setlocale_r exists
set setlocale_r d_setlocale_r
eval $inlibc
@@ -19348,6 +19358,10 @@ case "$d_tmpnam_r" in
;;
esac
+: see if towlower exists
+set towlower d_towlower
+eval $inlibc
+
: see if trunc exists
set trunc d_trunc
eval $inlibc
@@ -23226,10 +23240,6 @@ esac
set wchar.h i_wchar
eval $inhdr
-: see if this system has wctype.h
-set wctype.h i_wctype
-eval $inhdr
-
: Check extensions
echo " "
echo "Looking for extensions..." >&4
@@ -24339,6 +24349,8 @@ d_times='$d_times'
d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
d_tm_tm_zone='$d_tm_tm_zone'
d_tmpnam_r='$d_tmpnam_r'
+d_towlower='$d_towlower'
+d_towupper='$d_towupper'
d_trunc='$d_trunc'
d_truncate='$d_truncate'
d_truncl='$d_truncl'