2019-11-26 07:32:25 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/* Name of package */
|
|
|
|
#define PACKAGE "openvpn-gui"
|
|
|
|
|
|
|
|
/* Define to the address where bug reports for this package should be sent. */
|
|
|
|
#define PACKAGE_BUGREPORT "openvpn-devel@lists.sourceforge.net"
|
|
|
|
|
|
|
|
/* Define to the full name of this package. */
|
|
|
|
#define PACKAGE_NAME "OpenVPN GUI"
|
|
|
|
|
|
|
|
/* Define to the one symbol short name of this package. */
|
|
|
|
#define PACKAGE_TARNAME "openvpn-gui"
|
|
|
|
|
|
|
|
/* Define to the home page for this package. */
|
|
|
|
#define PACKAGE_URL "https://github.com/openvpn/openvpn-gui/"
|
|
|
|
|
|
|
|
/* Define to the version of this package. */
|
|
|
|
#define PACKAGE_VERSION "11"
|
|
|
|
|
|
|
|
/* Version in windows resource format */
|
2023-07-07 16:09:33 +00:00
|
|
|
#define PACKAGE_VERSION_RESOURCE @GUI_VERSION_MAJOR@, @GUI_VERSION_MINOR@, 0, 0
|
2019-11-26 07:32:25 +00:00
|
|
|
|
|
|
|
/* Version as a string */
|
2021-05-24 09:03:33 +00:00
|
|
|
#define PACKAGE_VERSION_RESOURCE_STR "@GUI_VERSION_MAJOR@.@GUI_VERSION_MINOR@.0.0"
|