home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _52c6e56cf3a2a6a276bf6a8a6e39114c < prev    next >
Text File  |  2000-03-22  |  3KB  |  88 lines

  1. #ifndef __PATCHLEVEL_H_INCLUDED__
  2.  
  3. #include "BuildInfo.h"
  4.  
  5. /* do not adjust the whitespace! Configure expects the numbers to be
  6.  * exactly on the third column */
  7.  
  8. #define PERL_REVISION    5        /* age */
  9. #define PERL_VERSION    6        /* epoch */
  10. #define PERL_SUBVERSION    0        /* generation */
  11.  
  12. /* The following numbers describe the earliest compatible version of
  13.    Perl ("compatibility" here being defined as sufficient binary/API
  14.    compatibility to run XS code built with the older version).
  15.    Normally this should not change across maintenance releases.
  16.  
  17.    Note that this only refers to an out-of-the-box build.  Many non-default
  18.    options such as usemultiplicity tend to break binary compatibility
  19.    more often.
  20.  
  21.    This is used by Configure et al to figure out 
  22.    PERL_INC_VERSION_LIST, which lists version libraries
  23.    to include in @INC.  See INSTALL for how this works.
  24. */
  25. #define PERL_API_REVISION    5    /* Adjust manually as needed.  */
  26. #define PERL_API_VERSION    5    /* Adjust manually as needed.  */
  27. #define PERL_API_SUBVERSION    0    /* Adjust manually as needed.  */
  28. /*
  29.    XXX Note:  The selection of non-default Configure options, such
  30.    as -Duselonglong may invalidate these settings.  Currently, Configure
  31.    does not adequately test for this.   A.D.  Jan 13, 2000
  32. */
  33.  
  34. #define __PATCHLEVEL_H_INCLUDED__
  35. #endif
  36.  
  37. /*
  38.     local_patches -- list of locally applied less-than-subversion patches.
  39.     If you're distributing such a patch, please give it a name and a
  40.     one-line description, placed just before the last NULL in the array
  41.     below.  If your patch fixes a bug in the perlbug database, please
  42.     mention the bugid.  If your patch *IS* dependent on a prior patch,
  43.     please place your applied patch line after its dependencies. This
  44.     will help tracking of patch dependencies.
  45.  
  46.     Please edit the hunk of diff which adds your patch to this list,
  47.     to remove context lines which would give patch problems.  For instance,
  48.     if the original context diff is
  49.        *** patchlevel.h.orig    <date here>
  50.        --- patchlevel.h    <date here>
  51.        *** 38,43 ***
  52.        --- 38,44 ---
  53.              ,"FOO1235 - some patch"
  54.              ,"BAR3141 - another patch"
  55.              ,"BAZ2718 - and another patch"
  56.        +     ,"MINE001 - my new patch"
  57.              ,NULL
  58.          };
  59.     
  60.     please change it to 
  61.        *** patchlevel.h.orig    <date here>
  62.        --- patchlevel.h    <date here>
  63.        *** 41,43 ***
  64.        --- 41,44 ---
  65.        +     ,"MINE001 - my new patch"
  66.          };
  67.     
  68.     (Note changes to line numbers as well as removal of context lines.)
  69.     This will prevent patch from choking if someone has previously
  70.     applied different patches than you.
  71.  */
  72. #if !defined(PERL_PATCHLEVEL_H_IMPLICIT) && !defined(LOCAL_PATCH_COUNT)
  73. static    char    *local_patches[] = {
  74.     NULL
  75.     ,ACTIVEPERL_LOCAL_PATCHES_ENTRY
  76.     ,NULL
  77. };
  78.  
  79. /* Initial space prevents this variable from being inserted in config.sh  */
  80. #  define    LOCAL_PATCH_COUNT    \
  81.     (sizeof(local_patches)/sizeof(local_patches[0])-2)
  82.  
  83. /* the old terms of reference, add them only when explicitly included */
  84. #define PATCHLEVEL        PERL_VERSION
  85. #undef  SUBVERSION        /* OS/390 has a SUBVERSION in a system header */
  86. #define SUBVERSION        PERL_SUBVERSION
  87. #endif
  88.