-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
228 lines (178 loc) · 6.75 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
AC_PREREQ([2.64])
AC_INIT([Vinagre], [3.9.5], [https://bugzilla.gnome.org/enter_bug.cgi?product=vinagre], [vinagre], [http://projects.gnome.org/vinagre/])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_SRCDIR([vinagre/vinagre-main.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([1.11.1 -Wall check-news dist-xz no-define no-dist-gzip nostdinc subdir-objects])
AM_SILENT_RULES([yes])
# Checks for programs.
AC_PROG_CC
AM_PROG_CC_C_O
AM_PROG_VALAC([0.12.0])
AM_MAINTAINER_MODE([enable])
GNOME_COMPILE_WARNINGS([maximum])
GNOME_MAINTAINER_MODE_DEFINES
AC_CANONICAL_HOST
AC_MSG_CHECKING([whether to build for a Windows host])
AS_CASE([$host_os],
[*mingw*], [gio_os=gio-windows-2.0; windows_host=yes],
[gio_os=gio-unix-2.0; windows_host=no])
AC_MSG_RESULT([$windows_host])
PKG_PROG_PKG_CONFIG([0.24])
AC_PROG_SED
GLIB_DEPS="glib-2.0 >= 2.28.0 $gio_os >= 2.28.0"
GTHREAD_DEPS="gthread-2.0 >= 2.0.0"
GTK_DEPS="gtk+-3.0 >= 3.9.6"
GTK_VNC_DEPS="gtk-vnc-2.0 >= 0.4.3"
XML2_DEPS="libxml-2.0 >= 2.6.31"
# Whether to enable support for SSH.
SSH_DEPS="vte-2.90 >= 0.20 $XML2_DEPS"
AC_ARG_ENABLE([ssh],
[AS_HELP_STRING([--disable-ssh],
[Disable Secure Shell (SSH) support])])
AS_IF([test "x$enable_ssh" != "xno"],
[PKG_CHECK_EXISTS([$SSH_DEPS],
[have_ssh=yes],
[have_ssh=no])],
[have_ssh=no])
AS_IF([test "x$have_ssh" = "xyes"],
[AC_DEFINE([VINAGRE_ENABLE_SSH], [], [Build with SSH support])
AC_PATH_PROG([SSH_PROGRAM], [ssh], [ssh])],
[SSH_DEPS=""
AS_IF([test "x$enable_ssh" = "xyes"],
[AC_MSG_ERROR([SSH support requested but required dependencies not found])])])
AM_CONDITIONAL([VINAGRE_ENABLE_SSH], [test "x$have_ssh" = "xyes"])
# Whether to enable support for RDP.
RDP_DEPS="$XML2_DEPS"
AC_ARG_ENABLE([rdp],
[AS_HELP_STRING([--disable-rdp],
[Disable Remote Desktop Protocol (RDP) support])])
AS_IF([test "x$enable_rdp" != "xno"],
[PKG_CHECK_EXISTS([$RDP_DEPS],
[have_rdp=yes],
[have_rdp=no])],
[have_rdp=no])
AS_IF([test "x$have_rdp" = "xyes"],
[AC_DEFINE([VINAGRE_ENABLE_RDP], [], [Build with RDP support])],
[RDP_DEPS=""
AS_IF([test "x$enable_rdp" = "xyes"],
[AC_MSG_ERROR([RDP support requested by required dependencies not found])])])
AM_CONDITIONAL([VINAGRE_ENABLE_RDP], [test "x$have_rdp" = "xyes"])
# Check for spice.
SPICE_DEPS="spice-client-gtk-3.0 >= 0.5"
AC_ARG_ENABLE([spice],
[AS_HELP_STRING([--disable-spice],
[Disable SPICE protocol support])])
AS_IF([test "x$enable_spice" != "xno"],
[PKG_CHECK_MODULES([SPICE],
[$SPICE_DEPS],
[have_spice=yes],
[have_spice=no])],
[have_spice=no])
AS_IF([test "x$have_spice" = "xyes"],
[AC_DEFINE([VINAGRE_ENABLE_SPICE], [], [Build with spice support])],
[SPICE_DEPS=""
AS_IF([test "x$enable_spice" = "xyes"],
[AC_MSG_ERROR([spice support requested but not found])])])
AM_CONDITIONAL([VINAGRE_ENABLE_SPICE], [test "x$have_spice" = "xyes"])
# Checks for header files. See vinagre/pyt_open.c for usage.
AC_CHECK_HEADERS([ifaddrs.h sys/un.h stropts.h termios.h utmp.h])
# Internationalization.
AC_SUBST([GETTEXT_PACKAGE], [$PACKAGE_TARNAME])
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], ["$GETTEXT_PACKAGE"], [GETTEXT package name])
IT_PROG_INTLTOOL([0.50.0])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_INLINE
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_UINT64_T
# Checks for library functions. See vinagre/pty_open.c for usage.
AC_CHECK_FUNCS([getpt posix_openpt grantpt unlockpt ptsname ptsname_r])
AM_CONDITIONAL([VINAGRE_PTY_OPEN], [test "x$ac_cv_func_grantpt" == xyes])
AC_SEARCH_LIBS([strerror], [cposix])
# Check for Avahi.
AVAHI_DEPS="avahi-ui-gtk3 >= 0.6.26 avahi-gobject >= 0.6.26"
AC_ARG_WITH([avahi],
[AS_HELP_STRING([--without-avahi],
[ignore avahi support and disable it])])
AS_IF([test "x$with_avahi" != "xno"],
[PKG_CHECK_EXISTS([$AVAHI_DEPS],
[have_avahi=yes],
[have_avahi=no])],
[have_avahi=no])
AS_IF([test "x$have_avahi" = "xyes"],
[AC_DEFINE([VINAGRE_HAVE_AVAHI], [], [Build with avahi support])],
[AVAHI_DEPS=""
AS_IF([test "x$with_avahi" = "xyes"],
[AC_MSG_ERROR([avahi support requested but not found])])])
AM_CONDITIONAL([VINAGRE_HAVE_AVAHI], [test "x$have_avahi" = "xyes"])
# Check for telepathy-glib.
TELEPATHY_GLIB_DEPS="dbus-glib-1 telepathy-glib >= 0.11.6"
AC_ARG_WITH([telepathy],
[AS_HELP_STRING([--without-telepathy],
[ignore the presence of telepathy and disable it])])
AS_IF([test "x$with_telepathy" != "xno"],
[PKG_CHECK_EXISTS([$TELEPATHY_GLIB_DEPS],
[have_telepathy=yes],
[have_telepathy=no])],
[have_telepathy=no])
AS_IF([test "x$have_telepathy" = "xyes"],
[AC_DEFINE([VINAGRE_HAVE_TELEPATHY_GLIB], [], [Build with telepathy-glib support])],
[TELEPATHY_GLIB_DEPS=""
AS_IF([test "x$with_telepathy" = "xyes"],
[AC_MSG_ERROR([telepathy support requested but not found])])])
AM_CONDITIONAL([VINAGRE_HAVE_TELEPATHY_GLIB], [test "x$have_telepathy" = "xyes"])
# Check required libraries
PKG_CHECK_MODULES([VINAGRE], [$GLIB_DEPS $GTHREAD_DEPS $GTK_DEPS libsecret-1 $XML2_DEPS $AVAHI_DEPS $TELEPATHY_GLIB_DEPS $SSH_DEPS])
PKG_CHECK_MODULES([VNC], [$GTK_VNC_DEPS $GTK_DEPS $XML2_DEPS])
AC_MSG_CHECKING([for gnome-icon-theme])
PKG_CHECK_EXISTS([gnome-icon-theme >= 2.30],
[AC_MSG_RESULT([yes])],
[AC_MSG_RESULT([no])
AC_MSG_WARN([gnome-icon-theme is suggested, as Vinagre no longer ships icons for the desktop files.])])
# *** Checks for pty stuff ***
# Pull in the right libraries for various functions which might not be
# bundled into an exploded libc.
AC_CHECK_FUNC([socketpair],
[have_socketpair=yes],
[AC_CHECK_LIB([socket],
[socketpair],
[have_socketpair=yes
LIBS="$LIBS -lsocket"])])
AS_IF([test "x$have_socketpair" = "xyes"],
[AC_DEFINE([VINAGRE_HAVE_SOCKETPAIR], [], [Define if you have the socketpair function.])])
AC_SEARCH_LIBS([login_tty],
[util],
[AC_DEFINE([HAVE_LOGIN_TTY], [], [Whether login_tty is available])])
# Check for bind in libsocket (needed on Solaris)
AC_CHECK_LIB([socket], [bind])
# Check for getifaddrs
AM_CONDITIONAL([VINAGRE_HAVE_SELF_IFADDRS], [test "x$ac_cv_header_ifaddrs_h" != "xyes"])
# RFC2553 introduce sockaddr_storage as ifa_addr member in ifaddrs structure
# Not all distros follow this.
AS_IF([test "x$ac_cv_header_ifaddrs_h" = "xyes"],
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <net/if.h>
#include <ifaddrs.h>
]], [[
struct ifaddrs *myaddrs;
getifaddrs (&myaddrs);
if (myaddrs->ifa_addr->ss_family == AF_INET) {
}
]])],
[have_sockaddr_storage=yes],
[have_sockaddr_storage=no])],
[AS_IF([test "x$have_sockaddr_storage" = "xyes"],
[AC_DEFINE([RFC2553], [], [Define if RFC2553 is followed])])])
YELP_HELP_INIT
GLIB_GSETTINGS
AC_CONFIG_FILES([
Makefile
data/vinagre.desktop.in
data/vinagre-file.desktop.in
help/Makefile
po/Makefile.in
])
AC_OUTPUT