home *** CD-ROM | disk | FTP | other *** search
/ Chip: Windows 2000 Professional Resource Kit / W2KPRK.iso / apps / perl / ActivePerl.exe / data.z / patchlevel.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-14  |  1.7 KB  |  56 lines

  1. #ifndef __PATCHLEVEL_H_INCLUDED__
  2.  
  3. #include "BuildInfo.h"
  4.  
  5. #define PATCHLEVEL 5
  6. #undef SUBVERSION     /* OS/390 has a SUBVERSION in a system header */
  7. #define SUBVERSION 3
  8.  
  9. /*
  10.     local_patches -- list of locally applied less-than-subversion patches.
  11.     If you're distributing such a patch, please give it a name and a
  12.     one-line description, placed just before the last NULL in the array
  13.     below.  If your patch fixes a bug in the perlbug database, please
  14.     mention the bugid.  If your patch *IS* dependent on a prior patch,
  15.     please place your applied patch line after its dependencies. This
  16.     will help tracking of patch dependencies.
  17.  
  18.     Please edit the hunk of diff which adds your patch to this list,
  19.     to remove context lines which would give patch problems.  For instance,
  20.     if the original context diff is
  21.        *** patchlevel.h.orig    <date here>
  22.        --- patchlevel.h    <date here>
  23.        *** 38,43 ***
  24.        --- 38,44 ---
  25.              ,"FOO1235 - some patch"
  26.              ,"BAR3141 - another patch"
  27.              ,"BAZ2718 - and another patch"
  28.        +     ,"MINE001 - my new patch"
  29.              ,NULL
  30.          };
  31.     
  32.     please change it to 
  33.        *** patchlevel.h.orig    <date here>
  34.        --- patchlevel.h    <date here>
  35.        *** 41,43 ***
  36.        --- 41,44 ---
  37.        +     ,"MINE001 - my new patch"
  38.          };
  39.     
  40.     (Note changes to line numbers as well as removal of context lines.)
  41.     This will prevent patch from choking if someone has previously
  42.     applied different patches than you.
  43.  */
  44. static    char    *local_patches[] = {
  45.     NULL
  46.     ,ACTIVEPERL_LOCAL_PATCHES_ENTRY
  47.     ,NULL
  48. };
  49.  
  50. /* Initial space prevents this variable from being inserted in config.sh  */
  51. #  define    LOCAL_PATCH_COUNT    \
  52.     (sizeof(local_patches)/sizeof(local_patches[0])-2)
  53.  
  54. #  define __PATCHLEVEL_H_INCLUDED__
  55. #endif
  56.