bump version to 0.2.4

This commit is contained in:
git@daemon.de
2014-12-24 11:19:01 +01:00
parent 375a1db398
commit 5e2ee0aef2
5 changed files with 22 additions and 20 deletions

View File

@@ -5,25 +5,10 @@
extern "C" {
#endif
#if defined __linux__ || defined __GNU__ || defined __GLIBC__
# ifndef _DEFAULT_SOURCE
# define _DEFAULT_SOURCE 1
# endif
#
# ifndef _XOPEN_SOURCE
# define _XOPEN_SOURCE 1
# endif
#
# ifndef _GNU_SOURCE
# define _GNU_SOURCE 1
# endif
#else
# define _BSD_SOURCE 1
#endif
#include "pcp/config.h"
#include "pcp/base85.h"
#include "pcp/buffer.h"
#include "pcp/config.h"
#include "pcp/context.h"
#include "pcp/crypto.h"
#include "pcp/defines.h"

View File

@@ -25,7 +25,7 @@
#define PCP_VERSION_MAJOR 0
#define PCP_VERSION_MINOR 2
#define PCP_VERSION_PATCH 3
#define PCP_VERSION_PATCH 4
#define PCP_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))