config.h | config.h | |||
---|---|---|---|---|
/* $Id: config.h 4109 2012-04-27 07:36:13Z nanang $ */ | /* $Id: config.h 4142 2012-05-22 11:30:26Z nanang $ */ | |||
/* | /* | |||
* Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) | * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) | |||
* Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org> | * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org> | |||
* | * | |||
* This program is free software; you can redistribute it and/or modify | * This program is free software; you can redistribute it and/or modify | |||
* it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | |||
* the Free Software Foundation; either version 2 of the License, or | * the Free Software Foundation; either version 2 of the License, or | |||
* (at your option) any later version. | * (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This program is distributed in the hope that it will be useful, | |||
skipping to change at line 1089 | skipping to change at line 1089 | |||
PJ_BEGIN_DECL | PJ_BEGIN_DECL | |||
/** PJLIB version major number. */ | /** PJLIB version major number. */ | |||
#define PJ_VERSION_NUM_MAJOR 1 | #define PJ_VERSION_NUM_MAJOR 1 | |||
/** PJLIB version minor number. */ | /** PJLIB version minor number. */ | |||
#define PJ_VERSION_NUM_MINOR 14 | #define PJ_VERSION_NUM_MINOR 14 | |||
/** PJLIB version revision number. */ | /** PJLIB version revision number. */ | |||
#define PJ_VERSION_NUM_REV 0 | #define PJ_VERSION_NUM_REV 2 | |||
/** | /** | |||
* Extra suffix for the version (e.g. "-trunk"), or empty for | * Extra suffix for the version (e.g. "-svn"), or empty for | |||
* web release version. | * web release version. | |||
*/ | */ | |||
#define PJ_VERSION_NUM_EXTRA "" | #define PJ_VERSION_NUM_EXTRA "" | |||
/** | /** | |||
* PJLIB version number consists of three bytes with the following format: | * PJLIB version number consists of three bytes with the following format: | |||
* 0xMMIIRR00, where MM: major number, II: minor number, RR: revision | * 0xMMIIRR00, where MM: major number, II: minor number, RR: revision | |||
* number, 00: always zero for now. | * number, 00: always zero for now. | |||
*/ | */ | |||
#define PJ_VERSION_NUM ((PJ_VERSION_NUM_MAJOR << 24) | \ | #define PJ_VERSION_NUM ((PJ_VERSION_NUM_MAJOR << 24) | \ | |||
End of changes. 3 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||