diff options
author | Gisle Aas <gisle@activestate.com> | 2006-03-30 12:13:54 +0000 |
---|---|---|
committer | Gisle Aas <gisle@activestate.com> | 2006-03-30 12:13:54 +0000 |
commit | c95d0e17d41adab48cd67f4e46a8183fa17438e1 (patch) | |
tree | 746eb3bfb41a8f587baeb4e9475a366619927bdd /Porting/Glossary | |
parent | a314697d77d1e36849713cf4fbc8ebb62fedbf78 (diff) | |
download | perl-c95d0e17d41adab48cd67f4e46a8183fa17438e1.tar.gz |
Introduce d_sitearch and d_inc_version_list config.sh variables.
These allow me to set sitearch and sitelib to be the same without
ending up with duplicate entries in @INC.
Basically the same way the old d_archlib variable is used.
p4raw-id: //depot/perl@27632
Diffstat (limited to 'Porting/Glossary')
-rw-r--r-- | Porting/Glossary | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index abf9756631..488f28f541 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -1151,6 +1151,10 @@ d_ilogbl (d_ilogbl.U): indicates to the C program that the ilogbl() routine is available. If scalbnl is also present we can emulate frexpl. +d_inc_version_list (inc_version_list.U): + This variable conditionally defines PERL_INC_VERSION_LIST. + It is set to undef when PERL_INC_VERSION_LIST is empty. + d_index (d_strchr.U): This variable conditionally defines HAS_INDEX if index() and rindex() are available for string searching. @@ -1907,6 +1911,11 @@ d_sigsetjmp (d_sigsetjmp.U): which indicates that the sigsetjmp() routine is available to call setjmp() and optionally save the process's signal mask. +d_sitearch (sitearch.U): + This variable conditionally defines SITEARCH to hold the pathname + of architecture-dependent library files for $package. If + $sitearch is the same as $archlib, then this is set to undef. + d_sockatmark (d_sockatmark.U): This variable conditionally defines the HAS_SOCKATMARK symbol, which indicates to the C program that the sockatmark() routine is available. |