summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2012-01-09 18:10:21 +0100
committerH.Merijn Brand <h.m.brand@xs4all.nl>2012-01-09 18:10:21 +0100
commit269a7913af37c73e7822a085898f90d15d896882 (patch)
treec7ccba403affe7b92355a82e0b77fdfb8e77a378 /Porting
parent71481574542a78998bec6e39bd4f238a5619f7cd (diff)
downloadperl-269a7913af37c73e7822a085898f90d15d896882.tar.gz
Add probe for isblank() (requested by khw)
Diffstat (limited to 'Porting')
-rw-r--r--Porting/Glossary12
-rw-r--r--Porting/config.sh1
2 files changed, 9 insertions, 4 deletions
diff --git a/Porting/Glossary b/Porting/Glossary
index de81a002a3..903c280f2f 100644
--- a/Porting/Glossary
+++ b/Porting/Glossary
@@ -4,7 +4,7 @@ This file is built by metaconfig.
This file contains a description of all the shell variables whose value is
determined by the Configure script. Variables intended for use in C
-programs (e.g. I_UNISTD) are already described in config_h.SH. ['configpm'
+programs (e.g. I_UNISTD) are already described in config_h.SH. [`configpm'
generates pod documentation for Config.pm from this file--please try to keep
the formatting regular.]
@@ -291,8 +291,8 @@ config_arg0 (Options.U):
config_argc (Options.U):
This variable contains the number of command-line arguments
passed to Configure, as reported by the shell in the $# variable.
- The individual arguments are stored as variables config_argc1,
- config_argc2, etc.
+ The individual arguments are stored as variables config_arg1,
+ config_arg2, etc.
config_args (Options.U):
This variable contains a single string giving the command-line
@@ -1275,6 +1275,10 @@ d_isascii (d_isascii.U):
This variable conditionally defines the HAS_ISASCII constant,
which indicates to the C program that isascii() is available.
+d_isblank (d_isblank.U):
+ This variable conditionally defines the HAS_ISBLANK constant,
+ which indicates to the C program that isblank() is available.
+
d_isfinite (d_isfinite.U):
This variable conditionally defines the HAS_ISFINITE symbol, which
indicates to the C program that the isfinite() routine is available.
@@ -5015,7 +5019,7 @@ useithreads (usethreads.U):
and indicates that Perl should be built to use the interpreter-based
threading implementation.
-usekernprocpathname (usekernprocpathname.U)
+usekernprocpathname (usekernprocpathname.U):
This variable, indicates that we can use sysctl with
KERN_PROC_PATHNAME to get a full path for the executable, and hence
convert $^X to an absolute path.
diff --git a/Porting/config.sh b/Porting/config.sh
index dba3a17c16..ab51d01bd9 100644
--- a/Porting/config.sh
+++ b/Porting/config.sh
@@ -299,6 +299,7 @@ d_inetntop='define'
d_inetpton='define'
d_int64_t='define'
d_isascii='define'
+d_isblank='undef'
d_isfinite='undef'
d_isinf='define'
d_isnan='define'