- Original Message -
From: "Suresh Govindachar" <[EMAIL PROTECTED]>
.
.
> Is the build number (e.g., 822) defined somewhere?
>
> If not, what is a good way for a make file (such as
> vim's Make_ming.mak) to pick up the build number?
> Have the Make parse the output of perl --version?
Sisyphus wrote:
> From: "Suresh Govindachar"
> .
>> Is the build number (e.g., 822) defined somewhere?
>>
>> If not, what is a good way for a make file (such as
>> vim's Make_ming.mak) to pick up the build number?
>> Have the Make parse the output of perl --version?
>>
>
>
The file perl\lib\CORE\patchlevel.h defines:
#define PERL_REVISION 5 /* age */
#define PERL_VERSION8 /* epoch */
#define PERL_SUBVERSION 8 /* generation */
Is the build number (e.g., 822) defined somewhere?
If not, what is a good way for a make file (such as