This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Regen Glossary et alia.
authorJarkko Hietaniemi <jhi@iki.fi>
Thu, 17 Apr 2003 15:07:08 +0000 (15:07 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Thu, 17 Apr 2003 15:07:08 +0000 (15:07 +0000)
p4raw-id: //depot/perl@19250

Porting/Glossary
Porting/config.sh
Porting/config_H

index a3d52e6..41ec777 100644 (file)
@@ -480,6 +480,11 @@ d_accessx (d_accessx.U):
        This variable conditionally defines the HAS_ACCESSX symbol, which
        indicates to the C program that the accessx() routine is available.
 
+d_aintl (d_aintl.U):
+       This variable conditionally defines the HAS_AINTL symbol, which
+       indicates to the C program that the aintl() routine is available.
+       If copysignl is also present we can emulate modfl.
+
 d_alarm (d_alarm.U):
        This variable conditionally defines the HAS_ALARM symbol, which
        indicates to the C program that the alarm() routine is available.
@@ -575,6 +580,11 @@ d_const (d_const.U):
        indicates to the C program that this C compiler knows about the
        const type.
 
+d_copysignl (d_copysignl.U):
+       This variable conditionally defines the HAS_COPYSIGNL symbol, which
+       indicates to the C program that the copysignl() routine is available.
+       If aintl is also present we can emulate modfl.
+
 d_crypt (d_crypt.U):
        This variable conditionally defines the CRYPT symbol, which
        indicates to the C program that the crypt() routine is available
@@ -1157,6 +1167,11 @@ d_htonl (d_htonl.U):
        This variable conditionally defines HAS_HTONL if htonl() and its
        friends are available to do network order byte swapping.
 
+d_ilogbl (d_ilogbl.U):
+       This variable conditionally defines the HAS_ILOGBL symbol, which
+       indicates to the C program that the ilogbl() routine is available.
+       If scalbnl is also present we can emulate frexpl.
+
 d_index (d_strchr.U):
        This variable conditionally defines HAS_INDEX if index() and
        rindex() are available for string searching.
@@ -1593,6 +1608,11 @@ d_sbrkproto (d_sbrkproto.U):
        a prototype for the sbrk() function.  Otherwise, it is
        up to the program to supply one.
 
+d_scalbnl (d_scalbnl.U):
+       This variable conditionally defines the HAS_SCALBNL symbol, which
+       indicates to the C program that the scalbnl() routine is available.
+       If ilogbl is also present we can emulate frexpl.
+
 d_sched_yield (d_pthread_y.U):
        This variable conditionally defines the HAS_SCHED_YIELD
        symbol if the sched_yield routine is available to yield
index 78e940e..736fff2 100644 (file)
@@ -8,7 +8,7 @@
 
 # Package name      : perl5
 # Source directory  : .
-# Configuration time: Tue Mar 18 09:54:47 EET 2003
+# Configuration time: Thu Apr 17 19:11:54 EET DST 2003
 # Configured by     : jhi
 # Target system     : osf1 kosh.hut.fi v5.1 2650 alpha 
 
@@ -59,11 +59,11 @@ ccdlflags='  -Wl,-rpath,/opt/perl/lib/5.9.0/alpha-dec_osf/CORE'
 ccflags='-std -D_INTRINSICS -fprm d -ieee -DLANGUAGE_C'
 ccflags_uselargefiles=''
 ccname='cc'
-ccsymbols='_LONGLONG=1 _SYSTYPE_BSD=1 __Alpha_AXP=1 __DATE__="Mar __DECC=1 __DECC_MODE_RELAXED=1 __DECC_VER=60590011 __IEEE_FLOAT=1 __INITIAL_POINTER_SIZE=0 __PRAGMA_ENVIRONMENT=1 __STDC_HOSTED__=1 __STDC_VERSION__=199901L __STDC__=0 __TIME__="09:55:47" __X_FLOAT=1 __arch64__=1 __digital__=1'
+ccsymbols='_LONGLONG=1 _SYSTYPE_BSD=1 __Alpha_AXP=1 __DATE__="Apr __DECC=1 __DECC_MODE_RELAXED=1 __DECC_VER=60590011 __IEEE_FLOAT=1 __INITIAL_POINTER_SIZE=0 __PRAGMA_ENVIRONMENT=1 __STDC_HOSTED__=1 __STDC_VERSION__=199901L __STDC__=0 __TIME__="19:12:46" __X_FLOAT=1 __arch64__=1 __digital__=1'
 ccversion='V6.5-011'
 cf_by='jhi'
 cf_email='yourname@yourhost.yourplace.com'
-cf_time='Tue Mar 18 09:54:47 EET 2003'
+cf_time='Thu Apr 17 19:11:54 EET DST 2003'
 charsize='1'
 chgrp=''
 chmod='chmod'
@@ -105,6 +105,7 @@ d_SCNfldbl='define'
 d__fwalk='undef'
 d_access='define'
 d_accessx='undef'
+d_aintl='undef'
 d_alarm='define'
 d_archlib='define'
 d_asctime_r='undef'
@@ -127,6 +128,7 @@ d_class='undef'
 d_closedir='define'
 d_cmsghdr_s='define'
 d_const='define'
+d_copysignl='define'
 d_crypt='define'
 d_crypt_r='undef'
 d_csh='define'
@@ -251,6 +253,7 @@ d_gnulibc='undef'
 d_grpasswd='define'
 d_hasmntopt='undef'
 d_htonl='define'
+d_ilogbl='define'
 d_index='undef'
 d_inetaton='define'
 d_int64_t='define'
@@ -347,6 +350,7 @@ d_safebcpy='undef'
 d_safemcpy='undef'
 d_sanemcmp='define'
 d_sbrkproto='define'
+d_scalbnl='define'
 d_sched_yield='undef'
 d_scm_rights='define'
 d_seekdir='define'
index 9b9eb76..6cb3eda 100644 (file)
@@ -17,7 +17,7 @@
 /*
  * Package name      : perl5
  * Source directory  : .
- * Configuration time: Tue Mar 18 09:54:47 EET 2003
+ * Configuration time: Thu Apr 17 19:11:54 EET DST 2003
  * Configured by     : jhi
  * Target system     : osf1 kosh.hut.fi v5.1 2650 alpha 
  */
  */
 /*#define HAS__FWALK           / **/
 
+/* HAS_AINTL:
+ *     This symbol, if defined, indicates that the aintl routine is
+ *     available.  If copysignl is also present we can emulate modfl.
+ */
+/*#define HAS_AINTL            / **/
+
 /* HAS_CLASS:
  *     This symbol, if defined, indicates that the class routine is
  *     available to classify doubles.  Available for example in AIX.
  */
 #define HAS_STRUCT_CMSGHDR     /**/
 
+/* HAS_COPYSIGNL:
+ *     This symbol, if defined, indicates that the copysignl routine is
+ *     available.  If aintl is also present we can emulate modfl.
+ */
+#define HAS_COPYSIGNL          /**/
+
 /* HAS_DBMINIT_PROTO:
  *     This symbol, if defined, indicates that the system provides
  *     a prototype for the dbminit() function.  Otherwise, it is up
  */
 /*#define HAS_HASMNTOPT                / **/
 
+/* HAS_ILOGBL:
+ *     This symbol, if defined, indicates that the ilogbl routine is
+ *     available.  If scalbnl is also present we can emulate frexpl.
+ */
+#define HAS_ILOGBL             /**/
+
 /* HAS_INT64_T:
  *     This symbol will defined if the C compiler supports int64_t.
  *     Usually the <inttypes.h> needs to be included, but sometimes
  */
 #define        HAS_SBRK_PROTO  /**/
 
+/* HAS_SCALBNL:
+ *     This symbol, if defined, indicates that the scalbnl routine is
+ *     available.  If ilogbl is also present we can emulate frexpl.
+ */
+#define HAS_SCALBNL            /**/
+
 /* HAS_SENDMSG:
  *     This symbol, if defined, indicates that the sendmsg routine is
  *     available to send structured socket messages.