You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
870 B
25 lines
870 B
/* BuildInfo.h
|
|
*
|
|
* (c) 1998 ActiveState Tool Corp. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#ifndef ___BuildInfo__h___
|
|
#define ___BuildInfo__h___
|
|
|
|
#define PRODUCT_BUILD_NUMBER "630"
|
|
#define PERLFILEVERSION "5,6,1,630\0"
|
|
#define PERLRC_VERSION 5,6,1,630
|
|
#define ACTIVEPERL_CHANGELIST ""
|
|
#define PERLPRODUCTVERSION "Build " PRODUCT_BUILD_NUMBER ACTIVEPERL_CHANGELIST "\0"
|
|
#define PERLPRODUCTNAME "ActivePerl\0"
|
|
|
|
#define PERL_VENDORLIB_NAME "ActiveState"
|
|
|
|
#define ACTIVEPERL_VERSION "Built "##__TIME__##" "##__DATE__##"\n"
|
|
#define ACTIVEPERL_LOCAL_PATCHES_ENTRY "ActivePerl Build " PRODUCT_BUILD_NUMBER ACTIVEPERL_CHANGELIST
|
|
#define BINARY_BUILD_NOTICE printf("\n\
|
|
Binary build " PRODUCT_BUILD_NUMBER ACTIVEPERL_CHANGELIST " provided by ActiveState Tool Corp. http://www.ActiveState.com\n\
|
|
" ACTIVEPERL_VERSION "\n");
|
|
|
|
#endif /* ___BuildInfo__h___ */
|