PageRenderTime 49ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/IronPython_Main/Runtime/Tests/LinqDlrTests/testenv/perl/lib/CORE/patchlevel.h

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