sigar/src/sigar_version_autoconf.c.in
Jan Kneschke d65177559d fixed the autotools setup
* fixed compile on all Unixes
  * added unit-tests
  * added cmake to build natively on win32
  * fixed the "make dist" setup to include all os-dirs
2009-08-09 15:35:24 +02:00

23 lines
455 B
C

#include "sigar.h"
static sigar_version_t sigar_version = {
__DATE__,
"@SCM_REVISION@",
"@PACKAGE_STRING@",
"@build@",
"@build_os@",
"@build_cpu@",
"SIGAR-@PACKAGE_VERSION@, "
"SCM revision @SCM_REVISION@, "
"built "__DATE__" as @build_cpu@",
@VERSION_MAJOR@,
@VERSION_MINOR@,
@VERSION_MAINT@,
@VERSION_BUILD@
};
SIGAR_DECLARE(sigar_version_t *) sigar_version_get(void)
{
return &sigar_version;
}