Initial commit
This commit is contained in:
19
config.h.in
Normal file
19
config.h.in
Normal file
@@ -0,0 +1,19 @@
|
||||
#define PACKAGE_NAME "@CMAKE_PROJECT_NAME@"
|
||||
#define PACKAGE_VERSION "@VERSION@"
|
||||
|
||||
#cmakedefine HAVE_ACTIVE_DESKTOP_H
|
||||
#cmakedefine HAVE_ACTIVE_DESKTOP_L
|
||||
#cmakedefine ENABLE_NLS 1
|
||||
#cmakedefine HAVE_PAM
|
||||
|
||||
#cmakedefine DATA_DIR "@DATA_DIR@"
|
||||
#cmakedefine LOCALE_DIR "@LOCALE_DIR@"
|
||||
|
||||
/* MS Visual Studio 2008 and newer doesn't know ssize_t */
|
||||
#if defined(HAVE_GNUTLS) && defined(WIN32) && !defined(__MINGW32__)
|
||||
#if defined(_WIN64)
|
||||
typedef __int64 ssize_t;
|
||||
#else
|
||||
typedef long ssize_t;
|
||||
#endif
|
||||
#endif
|
||||
Reference in New Issue
Block a user