mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-06-07 06:36:52 +02:00
Some checks failed
Build containers / Building container for linux/amd64 (push) Has been cancelled
Build containers / Building container for linux/arm64 (push) Has been cancelled
Build containers / Building container for linux/arm/v7 (push) Has been cancelled
Build containers / Building container for linux/386 (push) Has been cancelled
Build Debian packages / bookworm (push) Has been cancelled
Build on Windows / clang-x86_64 (push) Has been cancelled
Build Debian packages / bullseye (push) Has been cancelled
Build Debian packages / buster (push) Has been cancelled
Build on FreeBSD / with UPnP (push) Has been cancelled
Build on OSX / With USE_UPNP=no (push) Has been cancelled
Build on OSX / With USE_UPNP=yes (push) Has been cancelled
Build on Windows / i686 (push) Has been cancelled
Build on Windows / ucrt-x86_64 (push) Has been cancelled
Build on Windows / x86_64 (push) Has been cancelled
Build on Windows / CMake clang-x86_64 (push) Has been cancelled
Build on Windows / CMake i686 (push) Has been cancelled
Build on Windows / CMake ucrt-x86_64 (push) Has been cancelled
Build on Windows / CMake x86_64 (push) Has been cancelled
Build on Windows / XP (push) Has been cancelled
Build on Ubuntu / Make with USE_UPNP=no (push) Has been cancelled
Build on Ubuntu / Make with USE_UPNP=yes (push) Has been cancelled
Build on Ubuntu / CMake with -DWITH_UPNP=OFF (push) Has been cancelled
Build on Ubuntu / CMake with -DWITH_UPNP=ON (push) Has been cancelled
Build containers / Pushing merged manifest (push) Has been cancelled
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2013-2024, The PurpleI2P Project
|
|
*
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
*
|
|
* See full license text in LICENSE file at top of project tree
|
|
*/
|
|
|
|
#ifndef _VERSION_H_
|
|
#define _VERSION_H_
|
|
|
|
#define CODENAME "Purple"
|
|
|
|
#define XSTRINGIZE(x) STRINGIZE(x)
|
|
#define STRINGIZE(x) #x
|
|
|
|
#define MAKE_VERSION(a,b,c) STRINGIZE(a) "." STRINGIZE(b) "." STRINGIZE(c)
|
|
#define MAKE_VERSION_NUMBER(a,b,c) ((a*100+b)*100+c)
|
|
|
|
#define I2PD_VERSION_MAJOR 2
|
|
#define I2PD_VERSION_MINOR 57
|
|
#define I2PD_VERSION_MICRO 0
|
|
#define I2PD_VERSION_PATCH 0
|
|
#ifdef GITVER
|
|
#define I2PD_VERSION XSTRINGIZE(GITVER)
|
|
#else
|
|
#define I2PD_VERSION MAKE_VERSION(I2PD_VERSION_MAJOR, I2PD_VERSION_MINOR, I2PD_VERSION_MICRO)
|
|
#endif
|
|
|
|
#define VERSION I2PD_VERSION
|
|
|
|
#define I2PD_NET_ID 2
|
|
|
|
#define I2P_VERSION_MAJOR 0
|
|
#define I2P_VERSION_MINOR 9
|
|
#define I2P_VERSION_MICRO 66
|
|
#define I2P_VERSION_PATCH 0
|
|
#define I2P_VERSION MAKE_VERSION(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO)
|
|
#define I2P_VERSION_NUMBER MAKE_VERSION_NUMBER(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO)
|
|
|
|
#endif
|