| [3181] | 1 | /* patchlevel.h
|
|---|
| 2 | *
|
|---|
| 3 | * Copyright (C) 1993, 1995, 1996, 1997, 1998, 1999,
|
|---|
| 4 | * 2000, 2001, 2002, 2003, 2004, 2005, 2006, by Larry Wall and others
|
|---|
| 5 | *
|
|---|
| 6 | * You may distribute under the terms of either the GNU General Public
|
|---|
| 7 | * License or the Artistic License, as specified in the README file.
|
|---|
| 8 | *
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | #ifndef __PATCHLEVEL_H_INCLUDED__
|
|---|
| 12 |
|
|---|
| 13 | /* do not adjust the whitespace! Configure expects the numbers to be
|
|---|
| 14 | * exactly on the third column */
|
|---|
| 15 |
|
|---|
| 16 | #define PERL_REVISION 5 /* age */
|
|---|
| 17 | #define PERL_VERSION 8 /* epoch */
|
|---|
| 18 | #define PERL_SUBVERSION 8 /* generation */
|
|---|
| 19 |
|
|---|
| 20 | /* The following numbers describe the earliest compatible version of
|
|---|
| 21 | Perl ("compatibility" here being defined as sufficient binary/API
|
|---|
| 22 | compatibility to run XS code built with the older version).
|
|---|
| 23 | Normally this should not change across maintenance releases.
|
|---|
| 24 |
|
|---|
| 25 | Note that this only refers to an out-of-the-box build. Many non-default
|
|---|
| 26 | options such as usemultiplicity tend to break binary compatibility
|
|---|
| 27 | more often.
|
|---|
| 28 |
|
|---|
| 29 | This is used by Configure et al to figure out
|
|---|
| 30 | PERL_INC_VERSION_LIST, which lists version libraries
|
|---|
| 31 | to include in @INC. See INSTALL for how this works.
|
|---|
| |
|---|