diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2010-08-12 12:02:12 +0200 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2010-08-12 12:03:16 +0200 |
commit | 9e08e8f0ce1e3b57a74c472a4ddff63ec61d8d11 (patch) | |
tree | d27755d7026e636029ef6b6cde06d18a9eec24d3 /Porting/Glossary | |
parent | 44885db356d43ce046830669852738437e8ad2db (diff) | |
download | perl-9e08e8f0ce1e3b57a74c472a4ddff63ec61d8d11.tar.gz |
Account for GNU "i" extension when checking 'nm' output.
Add the new static_inline stuff to the "other" config files too
Add the missing Glossary parts
Diffstat (limited to 'Porting/Glossary')
-rw-r--r-- | Porting/Glossary | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index e0df178db8..909d8012ae 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -2153,6 +2153,12 @@ d_statfs_s (d_statfs_s.U): This variable conditionally defines the HAS_STRUCT_STATFS symbol, which indicates that the struct statfs is supported. +d_static_inline (d_static_inline.U): + This variable conditionally defines the HAS_STATIC_INLINE symbol, + which indicates that the C compiler supports C99-style static + inline. That is, the function can't be called from another + translation unit. + d_statvfs (d_statvfs.U): This variable conditionally defines the HAS_STATVFS symbol, which indicates to the C program that the statvfs() routine is available. @@ -4111,6 +4117,16 @@ PERL_REVISION (Oldsyms.U): In a Perl version number such as 5.6.2, this is the 5. This value is manually set in patchlevel.h +perl_static_inline (d_static_inline.U): + This variable defines the PERL_STATIC_INLINE symbol to + the best-guess incantation to use for static inline functions. + Possibilities include + static inline (c99) + static __inline__ (gcc -ansi) + static __inline (MSVC) + static _inline (older MSVC) + static (c89 compilers) + PERL_SUBVERSION (Oldsyms.U): In a Perl version number such as 5.6.2, this is the 2. Values greater than 50 represent potentially unstable |