Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Moreau <marcandre.moreau@gmail.com>2011-11-13 05:28:59 +0400
committerMarc-André Moreau <marcandre.moreau@gmail.com>2011-11-13 05:28:59 +0400
commit04e3f5d60f76c99ec4b12553d1d40eee8dbd348e (patch)
treed4a0806f492555342899059d8d88826cc0a5547f /config.h.in
parent69328d17516f391605b729fc4932278a05710761 (diff)
cmake: add detection of pthreads, gcrypt
Diffstat (limited to 'config.h.in')
-rw-r--r--config.h.in23
1 files changed, 23 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in
new file mode 100644
index 000000000..93c93458e
--- /dev/null
+++ b/config.h.in
@@ -0,0 +1,23 @@
+#ifndef __CONFIG_H
+#define __CONFIG_H
+
+#cmakedefine HAVE_SYS_PARAM_H
+#cmakedefine HAVE_SYS_SOCKET_H
+#cmakedefine HAVE_ARPA_INET_H
+#cmakedefine HAVE_NETINET_IN_H
+#cmakedefine HAVE_TERMIOS_H
+#cmakedefine HAVE_NETDB_H
+#cmakedefine HAVE_FCNTL_H
+#cmakedefine HAVE_UNISTD_H
+#cmakedefine HAVE_SYS_UN_H
+#cmakedefine HAVE_ERRNO_H
+
+#define remmina "remmina"
+#define VERSION "${REMMINA_VERSION}"
+#define GETTEXT_PACKAGE remmina
+
+#define REMMINA_DATADIR "${REMMINA_DATADIR}"
+#define REMMINA_LOCALEDIR "${REMMINA_LOCALEDIR}"
+#define REMMINA_PLUGINDIR "${REMMINA_PLUGINDIR}"
+
+#endif