1/* Major version number */
2#define LASSO_VERSION_MAJOR @VERSION_MAJOR@
3
4/* Minor version number */
5#define LASSO_VERSION_MINOR @VERSION_MINOR@
6
7/* Release version number */
8#define LASSO_VERSION_SUBMINOR @VERSION_RELEASE@
9
10/* Windows version of the lasso version */
11#define LASSO_WINDOWS_VERSION @WINDOWS_VERSION@
12
13/* Define if ID-WSF support is enabled */
14/* #undef LASSO_WSF_ENABLED */
15#if @LASSO_WSF_SUPPORT@
16#  define LASSO_WSF_ENABLED
17#else
18#  undef LASSO_WSF_ENABLED
19#endif
20
21/* Name of package */
22#define PACKAGE "@PACKAGE@"
23
24/* Define to the address where bug reports for this package should be sent. */
25#define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
26
27/* Define to the full name of this package. */
28#define PACKAGE_NAME "@PACKAGE_NAME@"
29
30/* Define to the full name and version of this package. */
31#define PACKAGE_STRING "@PACKAGE_STRING@"
32
33/* Define to the one symbol short name of this package. */
34#define PACKAGE_TARNAME "@PACKAGE_TARNAME@"
35
36/* Define to the version of this package. */
37#define PACKAGE_VERSION "@PACKAGE_VERSION@"
38
39/* Version number of package */
40#define VERSION "@VERSION@"
41
42