mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
15 lines
451 B
C
15 lines
451 B
C
/*
|
|
* In original xmlrpc-c distribution, version.h is generated across multiple directories.
|
|
* To avoid that here, everything versioned is placed here
|
|
*/
|
|
|
|
#define XMLRPC_MAJOR_RELEASE 1
|
|
#define XMLRPC_MINOR_RELEASE 16
|
|
#define XMLRPC_POINT_RELEASE 16
|
|
|
|
#define XMLRPC_VERSION_MAJOR XMLRPC_MAJOR_RELEASE
|
|
#define XMLRPC_VERSION_MINOR XMLRPC_MINOR_RELEASE
|
|
#define XMLRPC_VERSION_POINT XMLRPC_POINT_RELEASE
|
|
|
|
#define XMLRPC_C_VERSION "Xmlrpc-c 1.16.17"
|