summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-01-19 22:46:42 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-01-19 22:46:42 +0000
commit3a096bf351e068ac899b4c940544630c7ab75de2 (patch)
treef13998bdb78735d0d9b2319f52283a2b25ff685f /Porting
parentcce08f5b9b7595afc792a45212fcf309dbd735ca (diff)
downloadperl-3a096bf351e068ac899b4c940544630c7ab75de2.tar.gz
More robust inc_version_list from Andy.
p4raw-id: //depot/cfgperl@4820
Diffstat (limited to 'Porting')
-rw-r--r--Porting/Glossary8
-rw-r--r--Porting/config.sh5
-rw-r--r--Porting/config_H4
3 files changed, 12 insertions, 5 deletions
diff --git a/Porting/Glossary b/Porting/Glossary
index e4028b3e67..995f7f9a95 100644
--- a/Porting/Glossary
+++ b/Porting/Glossary
@@ -2125,12 +2125,18 @@ ignore_versioned_solibs (libs.U):
inc_version_list (inc_version_list.U):
This variable specifies the list of subdirectories in over
which perl.c:incpush() and lib/lib.pm will automatically
- search when adding directories to @INC. This is only useful
+ search when adding directories to @INC. The elements in
+ the list are separated by spaces. This is only useful
if you have a perl library directory tree structured like the
default one. See INSTALL for how this works. The versioned
site_perl directory was introduced in 5.005, so that is the
lowest possible value.
+inc_version_list_init (inc_version_list.U):
+ This variable holds the same list as inc_version_list, but
+ each item is enclosed in double quotes and separated by commas,
+ suitable for use in the PERL_INC_VERSION_LIST initialization.
+
incpath (usrinc.U):
This variable must preceed the normal include path to get hte
right one, as in "$incpath/usr/include" or "$incpath/usr/lib".
diff --git a/Porting/config.sh b/Porting/config.sh
index b9b8bd065b..13f2cb994e 100644
--- a/Porting/config.sh
+++ b/Porting/config.sh
@@ -8,7 +8,7 @@
# Package name : perl5
# Source directory : .
-# Configuration time: Wed Jan 19 19:31:56 EET 2000
+# Configuration time: Thu Jan 20 00:43:41 EET 2000
# Configured by : jhi
# Target system : osf1 alpha.hut.fi v4.0 878 alpha
@@ -59,7 +59,7 @@ ccflags='-pthread -std -DLANGUAGE_C'
ccsymbols='__LANGUAGE_C__=1 _LONGLONG=1 LANGUAGE_C=1 SYSTYPE_BSD=1'
cf_by='jhi'
cf_email='yourname@yourhost.yourplace.com'
-cf_time='Wed Jan 19 19:31:56 EET 2000'
+cf_time='Thu Jan 20 00:43:41 EET 2000'
charsize='1'
chgrp=''
chmod=''
@@ -484,6 +484,7 @@ i_varhdr='stdarg.h'
i_vfork='undef'
ignore_versioned_solibs=''
inc_version_list=' '
+inc_version_list_init='""'
incpath=''
inews=''
installarchlib='/opt/perl/lib/5.5.640/alpha-dec_osf-thread-multi'
diff --git a/Porting/config_H b/Porting/config_H
index 92d77723f2..694e81e6ed 100644
--- a/Porting/config_H
+++ b/Porting/config_H
@@ -17,7 +17,7 @@
/*
* Package name : perl5
* Source directory : .
- * Configuration time: Wed Jan 19 19:31:56 EET 2000
+ * Configuration time: Thu Jan 20 00:43:41 EET 2000
* Configured by : jhi
* Target system : osf1 alpha.hut.fi v4.0 878 alpha
*/
@@ -2312,7 +2312,7 @@
* for a C initialization string. See the inc_version_list entry
* in Porting/Glossary for more details.
*/
-#define PERL_INC_VERSION_LIST /**/
+#define PERL_INC_VERSION_LIST "" /**/
/* HAS_OFF64_T:
* This symbol will be defined if the C compiler supports off64_t.