diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2006-08-08 03:02:35 +0300 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-08-08 03:55:13 +0000 |
commit | 666ea1927d03c6430ac8120e8603244e721e20a0 (patch) | |
tree | 825978bf91e0470887834b60aeb5ca5815ec39ed /Porting | |
parent | 0ec9ad96b741d60d5dad460acf757c031b11fe15 (diff) | |
download | perl-666ea1927d03c6430ac8120e8603244e721e20a0.tar.gz |
g++ stage 1 reached
Message-ID: <44D7AA6B.4040802@iki.fi>
p4raw-id: //depot/perl@28674
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 5 | ||||
-rw-r--r-- | Porting/config.sh | 1 | ||||
-rw-r--r-- | Porting/config_H | 6 |
3 files changed, 12 insertions, 0 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index 43723bb230..9e9f9e1e07 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -534,6 +534,11 @@ d_const (d_const.U): indicates to the C program that this C compiler knows about the const type. +d_cplusplus (d_cplusplus.U): + This variable conditionally defines the USE_CPLUSPLUS symbol, which + indicates that a C++ compiler was used to compiled Perl and will be + used to compile extensions. + 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. diff --git a/Porting/config.sh b/Porting/config.sh index 9cf8297ca3..5f95bdec1f 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -139,6 +139,7 @@ d_closedir='define' d_cmsghdr_s='define' d_const='define' d_copysignl='define' +d_cplusplus='undef' d_crypt='define' d_crypt_r='undef' d_csh='define' diff --git a/Porting/config_H b/Porting/config_H index f07eb4877e..51e86b1a20 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -3869,6 +3869,12 @@ */ #define HAS_COPYSIGNL /**/ +/* USE_CPLUSPLUS: + * This symbol, if defined, indicates that a C++ compiler was + * used to compiled Perl and will be used to compile extensions. + */ +/*#define USE_CPLUSPLUS /**/ + /* HAS_DBMINIT_PROTO: * This symbol, if defined, indicates that the system provides * a prototype for the dbminit() function. Otherwise, it is up |