diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-01-26 07:59:05 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-01-26 07:59:05 +0000 |
commit | 78691af570651b562e3ddf0326973f245d347cbc (patch) | |
tree | 48c0d6da698aabc112c6f1d58ef414dc5291cf0b /Porting | |
parent | 9b97abf735071824b3a4d478845cc819bf90cfe9 (diff) | |
download | perl-78691af570651b562e3ddf0326973f245d347cbc.tar.gz |
s/d_nvpresuv/d_nv_preserves_uv/;
plus cosmetic change for #4899.
p4raw-id: //depot/cfgperl@4900
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 2 | ||||
-rw-r--r-- | Porting/config.sh | 16 | ||||
-rw-r--r-- | Porting/config_H | 16 |
3 files changed, 24 insertions, 10 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index 995f7f9a95..17b408de2e 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -942,7 +942,7 @@ d_nice (d_nice.U): This variable conditionally defines the HAS_NICE symbol, which indicates to the C program that the nice() routine is available. -d_nvpresuv (perlxv.U): +d_nv_preserves_uv (perlxv.U): This variable indicates whether a variable of type nvtype can preserve all the bits a variable of type uvtype. diff --git a/Porting/config.sh b/Porting/config.sh index 13f2cb994e..c91d1d16a6 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -8,7 +8,7 @@ # Package name : perl5 # Source directory : . -# Configuration time: Thu Jan 20 00:43:41 EET 2000 +# Configuration time: Wed Jan 26 09:55:17 EET 2000 # Configured by : jhi # Target system : osf1 alpha.hut.fi v4.0 878 alpha @@ -31,9 +31,9 @@ alignbytes='8' ansi2knr='' aphostname='' api_revision='5' -api_subversion='640' +api_subversion='0' api_version='5' -api_versionstring='5.5.640' +api_versionstring='5.005' ar='ar' archlib='/opt/perl/lib/5.5.640/alpha-dec_osf-thread-multi' archlibexp='/opt/perl/lib/5.5.640/alpha-dec_osf-thread-multi' @@ -56,10 +56,10 @@ cc='cc' cccdlflags=' ' ccdlflags=' -Wl,-rpath,/opt/perl/lib/5.5.640/alpha-dec_osf-thread-multi/CORE' ccflags='-pthread -std -DLANGUAGE_C' -ccsymbols='__LANGUAGE_C__=1 _LONGLONG=1 LANGUAGE_C=1 SYSTYPE_BSD=1' +ccsymbols='__alpha=1 __LANGUAGE_C__=1 __osf__=1 __unix__=1 _LONGLONG=1 _SYSTYPE_BSD=1 SYSTYPE_BSD=1' cf_by='jhi' cf_email='yourname@yourhost.yourplace.com' -cf_time='Thu Jan 20 00:43:41 EET 2000' +cf_time='Wed Jan 26 09:55:17 EET 2000' charsize='1' chgrp='' chmod='' @@ -72,7 +72,7 @@ cp='cp' cpio='' cpp='cpp' cpp_stuff='42' -cppccsymbols='__alpha=1 __osf__=1 __unix__=1 _SYSTYPE_BSD=1 unix=1' +cppccsymbols='LANGUAGE_C=1 unix=1' cppflags='-pthread -std -DLANGUAGE_C' cpplast='' cppminus='' @@ -229,7 +229,7 @@ d_msgrcv='define' d_msgsnd='define' d_mymalloc='undef' d_nice='define' -d_nvpresuv='undef' +d_nv_preserves_uv='undef' d_off64_t='undef' d_old_pthread_create_joinable='undef' d_oldpthreads='undef' @@ -762,7 +762,7 @@ PERL_VERSION=5 PERL_SUBVERSION=640 PERL_API_REVISION=5 PERL_API_VERSION=5 -PERL_API_SUBVERSION=640 +PERL_API_SUBVERSION=0 CONFIGDOTSH=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 694e81e6ed..03aafe7f9e 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : . - * Configuration time: Thu Jan 20 00:43:41 EET 2000 + * Configuration time: Wed Jan 26 09:55:17 EET 2000 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ @@ -1212,9 +1212,14 @@ * available directly to the user. Note that it may well be different from * the preprocessor used to compile the C program. */ +/* CPPLAST: + * This symbol is intended to be used along with CPPRUN in the same manner + * symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "". + */ #define CPPSTDIN "cppstdin" #define CPPMINUS "" #define CPPRUN "/usr/bin/cpp" +#define CPPLAST "" /* HAS_ACCESS: * This manifest constant lets the C program know that the access() @@ -1406,6 +1411,11 @@ * so that it is safe even if used by a process with super-user * privileges. */ +/* HAS_PHOSTNAME: + * This symbol, if defined, indicates that the C program may use the + * contents of PHOSTNAME as a command to feed to the popen() routine + * to derive the host name. + */ #define HAS_GETHOSTNAME /**/ #define HAS_UNAME /**/ #undef HAS_PHOSTNAME @@ -2759,6 +2769,10 @@ /*#define USE_LONG_LONG / **/ #endif +/* USE_MORE_BITS: + * This symbol, if defined, indicates that 64-bit interfaces and + * long doubles should be used when available. + */ #ifndef USE_MORE_BITS /*#define USE_MORE_BITS / **/ #endif |