Attempted to document the GUI shell a bit.
[doldaconnect.git] / configure.in
... / ...
CommitLineData
1AC_INIT(daemon/main.c)
2AM_INIT_AUTOMAKE([doldaconnect], [0.5])
3AM_CONFIG_HEADER(config.h)
4
5DOLDA_AC_GROUP([Checking build chain])
6
7AC_PROG_CC
8AC_PROG_CC_C_O
9AM_PROG_CC_C_O
10AC_PROG_INSTALL
11
12DOLDA_AC_GROUP([Configuring gettext])
13
14AM_GNU_GETTEXT_VERSION(0.12.1)
15AM_GNU_GETTEXT([external])
16
17DOLDA_AC_GROUP([Configuring libtool])
18
19# Temporary hack to make libtool not check for g++ or g77
20m4_defun([_LT_AC_LANG_CXX_CONFIG], true)
21m4_defun([_LT_AC_LANG_F77_CONFIG], true)
22AC_PROG_LIBTOOL
23
24DOLDA_AC_GROUP([Checking required libraries])
25
26AC_CHECK_LIB(z, deflate, , AC_MSG_ERROR([*** must have zlib]))
27AC_CHECK_LIB(bz2, BZ2_bzWriteOpen, , AC_MSG_ERROR([*** must have bzlib]))
28AC_CHECK_LIB(gdbm, gdbm_open, , AC_MSG_ERROR([*** must have gdbm]))
29
30extlibs=
31experimental=no
32
33DOLDA_AC_GROUP([Checking optional libraries])
34
35# PAM check
36pam_msg=no
37AH_TEMPLATE(HAVE_PAM, [define to compile support for PAM authentication])
38AC_ARG_WITH(pam, [ --with-pam Enable PAM support])
39DOLDA_PKG([HAS_PAM], [test "$with_pam" = no && HAS_PAM=no],
40 [AC_CHECK_LIB(pam, pam_start, , [HAS_PAM=no])])
41if test "$with_pam" = yes -a "$HAS_PAM" = no; then
42 AC_MSG_ERROR([*** cannot find PAM on this system])
43fi
44if test "$HAS_PAM" = yes; then
45 AC_DEFINE(HAVE_PAM)
46 pam_msg=yes
47fi
48
49# Gtk 2.0 check
50AC_ARG_WITH(gtk2, [ --with-gtk2 Enable GTK2 support])
51DOLDA_PKG([HAS_GTK2], [test "$with_gtk2" = no && HAS_GTK2=no],
52 [PKG_CHECK_MODULES(GTK2, gtk+-2.0, [], [HAS_GTK2=no])],
53 [AC_CHECK_LIB(gtk-x11-2.0, gtk_init, [:], [HAS_GTK2=no], $GTK2_LIBS)],
54 [DOLDA_CHECK_HEADER(gtk/gtk.h, [], [HAS_GTK2=no], $GTK2_CFLAGS)])
55if test "$with_gtk2" = yes -a "$HAS_GTK2" = no; then
56 AC_MSG_ERROR([*** cannot find GTK2 on this system])
57fi
58
59# libxml2 check
60AC_ARG_WITH(libxml2, [ --with-libxml2 Enable libxml2 support])
61DOLDA_PKG([HAS_LIBXML], [test "$with_libxml2" = no && HAS_LIBXML=no],
62 [PKG_CHECK_MODULES(LIBXML, libxml-2.0, [], [HAS_LIBXML=no])],
63 [AC_CHECK_LIB(xml2, xmlReadFile, [:], [HAS_LIBXML=no], $LIBXML_LIBS)],
64 [DOLDA_CHECK_HEADER(libxml/parser.h, [], [HAS_LIBXML=no], $LIBXML_CFLAGS)])
65if test "$with_libxml" = yes -a "$HAS_LIBXML" = no; then
66 AC_MSG_ERROR([*** cannot find libxml2 on this system])
67fi
68
69# libnotify check
70AH_TEMPLATE(HAVE_NOTIFY, [define to compile support for libnotify])
71AC_ARG_WITH(libnotify, [ --with-libnotify Enable libnotify support])
72DOLDA_PKG([HAS_LIBNOTIFY], [test "$with_libnotify" = no && HAS_LIBNOTIFY=no],
73 [PKG_CHECK_MODULES(LIBNOTIFY, libnotify, [], [HAS_LIBNOTIFY=no])],
74 [AC_CHECK_LIB(notify, notify_init, [:], [HAS_LIBNOTIFY=no], $LIBNOTIFY_LIBS)])
75if test "$with_libnotify" = yes -a "$HAS_LIBNOTIFY" = no; then
76 AC_MSG_ERROR([*** cannot find libnotify on this system])
77fi
78if test "$HAS_LIBNOTIFY" = yes; then
79 AC_DEFINE(HAVE_NOTIFY)
80fi
81
82# libpanelapplet check
83DOLDA_PKG([HAS_LIBPANELAPPLET], [PKG_CHECK_MODULES(PANELAPPLET, libpanelapplet-2.0, [], [HAS_LIBPANELAPPLET=no])])
84
85# Gaim/Pidgin check
86DOLDA_PKG([HAS_LIBGAIM], [PKG_CHECK_MODULES(GAIM, gaim, [], [HAS_LIBGAIM=no])],
87 [DOLDA_CHECK_HEADER(plugin.h, [], [HAS_LIBGAIM=no], $GAIM_CFLAGS)])
88DOLDA_PKG([HAS_LIBPURPLE], [PKG_CHECK_MODULES(PURPLE, purple, [], [HAS_LIBPURPLE=no])],
89 [DOLDA_CHECK_HEADER(plugin.h, [], [HAS_LIBPURPLE=no], $PURPLE_CFLAGS)])
90
91# Gtk GUI check
92DOLDA_ENABLE(gtk2ui, [ --enable-gtk2ui Enable the GTK2 user interface], yes,
93 [HAS_GTK2 HAS_LIBXML])
94AM_CONDITIONAL(CLI_GTK2, test "$enable_gtk2ui" = yes)
95
96# Dolconf check
97DOLDA_ENABLE(dolconf, [ --enable-dolconf Build the configuration helper], yes,
98 [HAS_GTK2])
99AM_CONDITIONAL(DOLCONF, test "$enable_dolconf" = yes)
100
101# Gtk progress bar check
102AH_TEMPLATE(ENABLE_GTK2PBAR, [define to compile GTK2 progress bars (experimental)])
103DOLDA_ENABLE(gtk2pbar, [ --enable-gtk2pbar Enable GTK2 progress bars (experimental)], no,
104 [HAS_GTK2 enable_gtk2ui])
105if test "$enable_gtk2pbar" = yes; then
106 experimental=yes
107 AC_DEFINE(ENABLE_GTK2PBAR)
108fi
109
110# Gnome applet check
111DOLDA_ENABLE(gnomeapplet, [ --enable-gnomeapplet Enable GNOME transfer applet (experimental)], no,
112 [HAS_LIBPANELAPPLET])
113if test "$enable_gnomeapplet" = yes; then
114 experimental=yes
115fi
116AM_CONDITIONAL(CLI_GNOMEAPPLET, test "$enable_gnomeapplet" = yes)
117
118# Gaim plugin check
119gaimplugin_msg=
120DOLDA_ENABLE(gaimplugin, [ --enable-gaimplugin Enable Gaim chat plugin (experimental)], no,
121 [HAS_LIBGAIM])
122if test "$enable_gaimplugin" = yes; then
123 experimental=yes
124 gaimplugin_msg="Gaim $gaimplugin_msg"
125fi
126AM_CONDITIONAL(CLI_GAIM, test "$enable_gaimplugin" = yes)
127DOLDA_ENABLE(pidginplugin, [ --enable-pidginplugin Enable Pidgin chat plugin (experimental)], no,
128 [HAS_LIBPURPLE])
129if test "$enable_pidginplugin" = yes; then
130 experimental=yes
131 gaimplugin_msg="Pidgin $gaimplugin_msg"
132fi
133AM_CONDITIONAL(CLI_PIDGIN, test "$enable_pidginplugin" = yes)
134if test -z "$gaimplugin_msg"; then
135 gaimplugin_msg=none
136fi
137
138# Guile check (XXX: Shouldn't have to be enabled manually)
139guile_msg=no
140if test "$with_guile" = yes; then
141 GUILE_FLAGS
142 extlibs="$extlibs guile"
143 guile_msg=yes
144fi
145
146# Check whether to install baseconv
147AC_ARG_ENABLE(baseconv, [ --enable-baseconv Install the baseconv utility])
148AM_CONDITIONAL(BASECONV, test "$enable_baseconv" = yes)
149
150# Kerberos check
151krb_msg=no
152AH_TEMPLATE(HAVE_KRB5, [define to compile support for Kerberos 5 (not GSSAPI) authentication])
153AC_ARG_WITH(krb5, [ --with-krb5[=PATH] Enable Kerberos 5 (not GSSAPI) authentication])
154AC_CHECK_PROG(KRBCONF, krb5-config, yes, no)
155DOLDA_PKG([HAS_COMERR], [AC_CHECK_HEADER(com_err.h, [COMERR_CFLAGS=""; HAS_COMERR=yes], [])],
156 [AC_CHECK_HEADER(et/com_err.h, [COMERR_CFLAGS="-I/usr/include/et"; HAS_COMERR=yes], [])],
157 [HAS_COMERR=no])
158DOLDA_PKG([HAS_KRB5], [test "$with_krb5" = no && HAS_KRB5=no],
159 [test "$KRBCONF" != yes && HAS_KRB5=no],
160 [test "$HAS_COMERR" = no && HAS_KRB5=no],
161 [KRB5_LIBS="`krb5-config --libs krb5`"
162 KRB5_CFLAGS="`krb5-config --cflags krb5` $COMERR_CFLAGS"]
163 [AC_CHECK_LIB(krb5, krb5_init_context, [:], [HAS_KRB5=no], $KRB5_LIBS)],
164 [DOLDA_CHECK_HEADER(krb5.h, [], [HAS_KRB5=no], $KRB5_CFLAGS)])
165if test -n "$with_krb5" -a "$with_krb5" != no -a "$HAS_KRB5" = no; then
166 AC_MSG_ERROR([*** cannot find Kerberos 5 on this system])
167fi
168if test "$with_krb5" != no -a "$HAS_KRB5" = yes; then
169 AC_DEFINE(HAVE_KRB5)
170 krb_msg=yes
171fi
172AC_SUBST([KRB5_LIBS KRB5_CFLAGS])
173
174DOLDA_AC_GROUP([Checking operating system features])
175
176# Misc. functions checks
177AC_CHECK_FUNC(vswprintf, , AC_MSG_ERROR([*** must have vswprintf]))
178AH_TEMPLATE(HAVE_WCSCASECMP, [define if your system implements wcscasecmp])
179AC_CHECK_FUNC(wcscasecmp, [ AC_DEFINE(HAVE_WCSCASECMP) ])
180
181AH_TEMPLATE(HAVE_LINUX_SOCKIOS_H, [define if you have linux/sockios.h on your system])
182AC_CHECK_HEADER([linux/sockios.h], [ AC_DEFINE(HAVE_LINUX_SOCKIOS_H) ])
183
184AH_TEMPLATE(HAVE_IPV6, [define if your system supports IPv6 and you wish to compile with support for it])
185AC_CHECK_MEMBER(struct sockaddr_in6.sin6_family, [ AC_DEFINE(HAVE_IPV6) ], , [#include <netinet/in.h>])
186
187AH_TEMPLATE(HAVE_RESOLVER, [define if your system supports the res_* functions to fetch DNS RRs])
188AC_CHECK_LIB(resolv, res_query, [ AC_DEFINE(HAVE_RESOLVER)
189 LDFLAGS="$LDFLAGS -lresolv" ])
190AH_TEMPLATE(HAVE_KEYUTILS, [define if your system supports the Linux keyring functions])
191AC_CHECK_LIB(keyutils, keyctl_search, [ AC_DEFINE(HAVE_KEYUTILS)
192 LDFLAGS="$LDFLAGS -lkeyutils" ])
193
194# Unix credentials selector
195AH_TEMPLATE(UNIX_AUTH_STYLE, [undefine for no Unix auth, 1 for Linux style, 2 for BSD style])
196AC_CHECK_MEMBER(struct ucred.pid, [ linuxcreds=y ], [ linuxcreds=n ], [#include <sys/socket.h>])
197AC_CHECK_FUNC(getpeereid, [ bsdcreds=y ], [ bsdcreds=n ])
198AC_MSG_CHECKING([for Unix auth style])
199if test $linuxcreds = y; then
200 AC_DEFINE(UNIX_AUTH_STYLE, 1)
201 AC_MSG_RESULT(linux)
202elif test $bsdcreds = y; then
203 AC_DEFINE(UNIX_AUTH_STYLE, 2)
204 AC_MSG_RESULT(bsd)
205else
206 AC_MSG_RESULT(none)
207fi
208
209DOLDA_AC_GROUP([Checking standard headers])
210
211AC_HEADER_STDC
212AC_HEADER_DIRENT
213AC_HEADER_SYS_WAIT
214
215AC_TYPE_PID_T
216AC_TYPE_SIZE_T
217AC_HEADER_TIME
218AC_TYPE_SIGNAL
219
220CPPFLAGS="-I\$(top_srcdir)/include $CPPFLAGS"
221
222DOLDA_AC_GROUP([Writing output])
223
224AC_SUBST([extlibs])
225AC_OUTPUT([
226Makefile
227autopackage/Makefile
228common/Makefile
229daemon/Makefile
230lib/Makefile
231lib/guile/Makefile
232lib/guile/dolcon/Makefile
233clients/Makefile
234clients/gtk2/Makefile
235clients/tty/Makefile
236clients/gnome-trans-applet/Makefile
237clients/gaim/Makefile
238clients/gui-shell/Makefile
239include/Makefile
240include/doldaconnect/Makefile
241doc/Makefile
242doc/man/Makefile
243po/Makefile.in
244config/Makefile
245config/cmd/Makefile
246config/util/Makefile
247contrib/Makefile
248autopackage/dolcon.apspec
249autopackage/dcuilib.apspec
250autopackage/dcguile.apspec
251])
252
253echo
254echo "Dolda Connect has been configured with the following settings:"
255echo
256echo " PAM support: $pam_msg"
257echo " Kerberos 5 support: $krb_msg"
258echo " GTK2 user interface: $enable_gtk2ui"
259echo " GTK2 progress bars: $enable_gtk2pbar"
260echo " Dolconf configurator: $enable_dolconf"
261echo " Guile extension library: $guile_msg"
262echo " GNOME transfer applet: $enable_gnomeapplet"
263echo " Gaim chat plugin: $gaimplugin_msg"
264echo
265
266if tput bold >/dev/null 2>&1 && tty <&2 >/dev/null 2>&1; then
267 hastput=y
268fi
269if test "$HAS_GTK2" = no -a "$with_gtk2" != no -a "$enable_gtk2ui" != no; then
270 if test "$hastput" = y; then
271 tput bold
272 tput setf 4 2>/dev/null
273 fi
274 echo -n " Warning: " >&2
275 if test "$hastput" = y; then
276 tput sgr0
277 fi
278 echo "Could not find a GTK2 development installation on this system." >&2
279 echo " That means you won't get a UI." >&2
280 echo " Make absolutely sure this is what you want!" >&2
281 if test "$hastput" = y; then
282 tput bel
283 fi
284 sleep 1
285fi
286if test "$experimental" = yes; then
287 if test "$hastput" = y; then
288 tput bold
289 tput setf 4 2>/dev/null
290 fi
291 echo -n " Warning: " >&2
292 if test "$hastput" = y; then
293 tput sgr0
294 fi
295 echo "You have enabled one or more experimental features!" >&2
296 echo " Please don't complain that it doesn't work, unless" >&2
297 echo " you have something constructive to add about the situation." >&2
298 if test "$hastput" = y; then
299 tput bel
300 fi
301 sleep 1
302fi