summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-02-17 01:43:42 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-02-17 01:43:42 +0000
commita8ef55665a00078b5e7902dac1bf66fe969b43bd (patch)
tree9f2971370eef268674117433d8d4738c9d996d30 /Porting
parent1feea2c750cf5f74093deff93d1536d7d44a8925 (diff)
downloadperl-a8ef55665a00078b5e7902dac1bf66fe969b43bd.tar.gz
Regen Glossary.
p4raw-id: //depot/perl@14725
Diffstat (limited to 'Porting')
-rw-r--r--Porting/Glossary4
-rw-r--r--Porting/config.sh10
-rw-r--r--Porting/config_H10
3 files changed, 14 insertions, 10 deletions
diff --git a/Porting/Glossary b/Porting/Glossary
index eb2fe3df0c..2b592108a9 100644
--- a/Porting/Glossary
+++ b/Porting/Glossary
@@ -691,6 +691,10 @@ d_Gconvert (d_gconvert.U):
d_Gconvert='gconvert((x),(n),(t),(b))'
d_Gconvert='gcvt((x),(n),(b))'
d_Gconvert='sprintf((b),"%.*g",(n),(x))'
+ If you are not content with these choices, use gconvert_preference
+ and gconvert_ld_preference, which if present are space-separated
+ lists of functions to try with calling convention of gcvt,
+ respectively for doubles and long doubles.
d_getcwd (d_getcwd.U):
This variable conditionally defines the HAS_GETCWD symbol, which
diff --git a/Porting/config.sh b/Porting/config.sh
index 5248db2da9..e2aca12482 100644
--- a/Porting/config.sh
+++ b/Porting/config.sh
@@ -8,7 +8,7 @@
# Package name : perl5
# Source directory : .
-# Configuration time: Tue Jan 22 18:37:28 EET 2002
+# Configuration time: Sun Feb 17 04:40:47 EET 2002
# Configured by : jhi
# Target system : osf1 alpha.hut.fi v4.0 878 alpha
@@ -63,7 +63,7 @@ ccsymbols='__alpha=1 __LANGUAGE_C__=1 __osf__=1 __unix__=1 _LONGLONG=1 _SYSTYPE_
ccversion='V5.6-082'
cf_by='jhi'
cf_email='yourname@yourhost.yourplace.com'
-cf_time='Tue Jan 22 18:37:28 EET 2002'
+cf_time='Sun Feb 17 04:40:47 EET 2002'
charsize='1'
chgrp=''
chmod='chmod'
@@ -687,7 +687,7 @@ patchlevel='7'
path_sep=':'
perl5='perl'
perl=''
-perl_patchlevel='14368'
+perl_patchlevel='14709'
perladmin='yourname@yourhost.yourplace.com'
perllibs='-lm -lutil'
perlpath='/opt/perl/bin/perl5.7.2'
@@ -856,7 +856,7 @@ vendorlibexp=''
vendorprefix=''
vendorprefixexp=''
version='5.7.2'
-version_patchlevel_string='version 7 subversion 2 patch 14368'
+version_patchlevel_string='version 7 subversion 2 patch 14709'
versiononly='define'
vi=''
voidflags='15'
@@ -886,7 +886,7 @@ PERL_SUBVERSION=2
PERL_API_REVISION=5
PERL_API_VERSION=5
PERL_API_SUBVERSION=0
-PERL_PATCHLEVEL=14368
+PERL_PATCHLEVEL=14709
PERL_CONFIG_SH=true
# Variables propagated from previous config.sh file.
pp_sys_cflags='ccflags="$ccflags -DNO_EFF_ONLY_OK"'
diff --git a/Porting/config_H b/Porting/config_H
index ab44615bea..536c66e864 100644
--- a/Porting/config_H
+++ b/Porting/config_H
@@ -17,7 +17,7 @@
/*
* Package name : perl5
* Source directory : .
- * Configuration time: Tue Jan 22 18:37:28 EET 2002
+ * Configuration time: Sun Feb 17 04:40:47 EET 2002
* Configured by : jhi
* Target system : osf1 alpha.hut.fi v4.0 878 alpha
*/
@@ -3421,18 +3421,18 @@
* If defined, this macro indicates that the C compiler can handle
* function prototypes.
*/
-/* PROTO_:
+/* _:
* This macro is used to declare function parameters for folks who want
* to make declarations with prototypes using a different style than
* the above macros. Use double parentheses. For example:
*
- * int main PROTO_((int argc, char *argv[]));
+ * int main _((int argc, char *argv[]));
*/
#define CAN_PROTOTYPE /**/
#ifdef CAN_PROTOTYPE
-#define PROTO_(args) args
+#define _(args) args
#else
-#define PROTO_(args) ()
+#define _(args) ()
#endif
/* SH_PATH: