mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2026-02-05 12:31:41 -05:00
append -broken-compiler to the VERSION (bb #684) introduce VERSION_SUFFIX for easier handling, and convert -exp to use it git-svn: trunk@4239
16 lines
293 B
C
16 lines
293 B
C
#ifdef HAVE_CONFIG_H
|
|
#include "clamav-config.h"
|
|
#endif
|
|
#include "clamav.h"
|
|
#include "version.h"
|
|
|
|
#ifndef REPO_VERSION
|
|
#define REPO_VERSION VERSION
|
|
#endif
|
|
|
|
/* libclamav's version is always the SVN revision (if available) */
|
|
const char *cl_retver(void)
|
|
{
|
|
return REPO_VERSION""VERSION_SUFFIX;
|
|
}
|