diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-02-16 22:00:14 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-02-16 22:00:14 +0000 |
commit | b79b76e09d4ebd270b9df34cc7e92494ba4df212 (patch) | |
tree | 5c287cfc217cbd98702de165d57b6997d9442b77 /perl.h | |
parent | e50b42d3b9d4d5466150b00299d8145beabd33df (diff) | |
download | perl-b79b76e09d4ebd270b9df34cc7e92494ba4df212.tar.gz |
PERL_FS_VER_FMT is only used with the current perl version, which is known at
compile time, so replace it with PERL_FS_VERSION, a compile time constant.
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -3060,10 +3060,18 @@ typedef pthread_key_t perl_key; # define MEMBER_TO_FPTR(name) name #endif +#ifndef PERL_CORE /* format to use for version numbers in file/directory names */ /* XXX move to Configure? */ -#ifndef PERL_FS_VER_FMT -# define PERL_FS_VER_FMT "%d.%d.%d" +/* This was only ever used for the current version, and that can be done at + compile time, as PERL_FS_VERSION, so should we just delete it? */ +# ifndef PERL_FS_VER_FMT +# define PERL_FS_VER_FMT "%d.%d.%d" +# endif +#endif + +#ifndef PERL_FS_VERSION +# define PERL_FS_VERSION PERL_VERSION_STRING #endif /* This defines a way to flush all output buffers. This may be a |