Java: Hopefully working HubListeners.
[doldaconnect.git] / configure.in
... / ...
CommitLineData
1AC_INIT(daemon/main.c)
2AM_INIT_AUTOMAKE([doldaconnect], [1.1])
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])],
41 [PAM_LIBS=-lpam])
42if test "$with_pam" = yes -a "$HAS_PAM" = no; then
43 AC_MSG_ERROR([*** cannot find PAM on this system])
44fi
45if test "$HAS_PAM" = yes; then
46 AC_DEFINE(HAVE_PAM)
47 pam_msg=yes
48fi
49AC_SUBST(PAM_LIBS)
50
51# Gtk 2.0 check
52AC_ARG_WITH(gtk2, [ --with-gtk2 Enable GTK2 support])
53DOLDA_PKG([HAS_GTK2], [test "$with_gtk2" = no && HAS_GTK2=no],
54 [PKG_CHECK_MODULES(GTK2, gtk+-2.0, [], [HAS_GTK2=no])],
55 [AC_CHECK_LIB(gtk-x11-2.0, gtk_init, [:], [HAS_GTK2=no], $GTK2_LIBS)],
56 [DOLDA_CHECK_HEADER(gtk/gtk.h, [], [HAS_GTK2=no], $GTK2_CFLAGS)])
57if test "$with_gtk2" = yes -a "$HAS_GTK2" = no; then
58 AC_MSG_ERROR([*** cannot find GTK2 on this system])
59fi
60
61# libxml2 check
62AC_ARG_WITH(libxml2, [ --with-libxml2 Enable libxml2 support])
63DOLDA_PKG([HAS_LIBXML], [test "$with_libxml2" = no && HAS_LIBXML=no],
64 [PKG_CHECK_MODULES(LIBXML, libxml-2.0, [], [HAS_LIBXML=no])],
65 [AC_CHECK_LIB(xml2, xmlReadFile, [:], [HAS_LIBXML=no], $LIBXML_LIBS)],
66 [DOLDA_CHECK_HEADER(libxml/parser.h, [], [HAS_LIBXML=no], $LIBXML_CFLAGS)])
67if test "$with_libxml" = yes -a "$HAS_LIBXML" = no; then
68 AC_MSG_ERROR([*** cannot find libxml2 on this system])
69fi
70
71# libnotify check
72AH_TEMPLATE(HAVE_NOTIFY, [define to compile support for libnotify])
73AC_ARG_WITH(libnotify, [ --with-libnotify Enable libnotify support])
74DOLDA_PKG([HAS_LIBNOTIFY], [test "$with_libnotify" = no && HAS_LIBNOTIFY=no],
75 [PKG_CHECK_MODULES(LIBNOTIFY, libnotify, [], [HAS_LIBNOTIFY=no])],
76 [AC_CHECK_LIB(notify, notify_init, [:], [HAS_LIBNOTIFY=no], $LIBNOTIFY_LIBS)])
77if test "$with_libnotify" = yes -a "$HAS_LIBNOTIFY" = no; then
78 AC_MSG_ERROR([*** cannot find libnotify on this system])
79fi
80if test "$HAS_LIBNOTIFY" = yes; then
81 AC_DEFINE(HAVE_NOTIFY)
82fi
83
84# libpanelapplet check
85DOLDA_PKG([HAS_LIBPANELAPPLET], [PKG_CHECK_MODULES(PANELAPPLET, libpanelapplet-2.0, [], [HAS_LIBPANELAPPLET=no])])
86
87# Gaim/Pidgin check
88DOLDA_PKG([HAS_LIBGAIM], [PKG_CHECK_MODULES(GAIM, gaim, [], [HAS_LIBGAIM=no])],
89 [DOLDA_CHECK_HEADER(plugin.h, [], [HAS_LIBGAIM=no], $GAIM_CFLAGS)])
90DOLDA_PKG([HAS_LIBPURPLE], [PKG_CHECK_MODULES(PURPLE, purple, [], [HAS_LIBPURPLE=no])],
91 [DOLDA_CHECK_HEADER(plugin.h, [], [HAS_LIBPURPLE=no], $PURPLE_CFLAGS)])
92
93# Daemon check
94DOLDA_ENABLE(daemon, [ --enable-daemon Enable the daemon], yes, [])
95AM_CONDITIONAL(DAEMON, test "$enable_daemon" = yes)
96
97# Gtk GUI check
98DOLDA_ENABLE(gtk2ui, [ --enable-gtk2ui Enable the GTK2 user interface], yes,
99 [HAS_GTK2 HAS_LIBXML])
100AM_CONDITIONAL(CLI_GTK2, test "$enable_gtk2ui" = yes)
101
102# Dolconf check
103DOLDA_ENABLE(dolconf, [ --enable-dolconf Build the configuration helper], yes,
104 [HAS_GTK2])
105AM_CONDITIONAL(DOLCONF, test "$enable_dolconf" = yes)
106
107# GUI shell check
108DOLDA_ENABLE(guishell, [ --enable-guishell Build the GUI shell programs], yes,
109 [HAS_GTK2])
110AM_CONDITIONAL(GUISHELL, test "$enable_guishell" = yes)
111
112# Gnome applet check
113DOLDA_ENABLE(gnomeapplet, [ --enable-gnomeapplet Enable GNOME transfer applet (experimental)], no,
114 [HAS_LIBPANELAPPLET])
115if test "$enable_gnomeapplet" = yes; then
116 experimental=yes
117fi
118AM_CONDITIONAL(CLI_GNOMEAPPLET, test "$enable_gnomeapplet" = yes)
119
120# Gaim plugin check
121gaimplugin_msg=
122DOLDA_ENABLE(gaimplugin, [ --enable-gaimplugin Enable Gaim chat plugin (experimental)], no,
123 [HAS_LIBGAIM])
124if test "$enable_gaimplugin" = yes; then
125 experimental=yes
126 gaimplugin_msg="Gaim $gaimplugin_msg"
127fi
128AM_CONDITIONAL(CLI_GAIM, test "$enable_gaimplugin" = yes)
129DOLDA_ENABLE(pidginplugin, [ --enable-pidginplugin Enable Pidgin chat plugin (experimental)], no,
130 [HAS_LIBPURPLE])
131if test "$enable_pidginplugin" = yes; then
132 experimental=yes
133 gaimplugin_msg="Pidgin $gaimplugin_msg"
134fi
135AM_CONDITIONAL(CLI_PIDGIN, test "$enable_pidginplugin" = yes)
136if test -z "$gaimplugin_msg"; then
137 gaimplugin_msg=none
138fi
139
140# Guile check (XXX: Shouldn't have to be enabled manually)
141guile_msg=no
142if test "$with_guile" = yes; then
143 GUILE_FLAGS
144 extlibs="$extlibs guile"
145 guile_msg=yes
146fi
147
148# Check whether to install baseconv
149AC_ARG_ENABLE(baseconv, [ --enable-baseconv Install the baseconv utility])
150AM_CONDITIONAL(BASECONV, test "$enable_baseconv" = yes)
151
152# Kerberos check
153krb_msg=no
154AH_TEMPLATE(HAVE_KRB5, [define to compile support for Kerberos 5 (not GSSAPI) authentication])
155AC_ARG_WITH(krb5, [ --with-krb5[=PATH] Enable Kerberos 5 (not GSSAPI) authentication])
156AC_CHECK_PROG(KRBCONF, krb5-config, yes, no)
157DOLDA_PKG([HAS_COMERR], [AC_CHECK_HEADER(com_err.h, [COMERR_CFLAGS=""; HAS_COMERR=yes], [])],
158 [AC_CHECK_HEADER(et/com_err.h, [COMERR_CFLAGS="-I/usr/include/et"; HAS_COMERR=yes], [])],
159 [HAS_COMERR=no])
160DOLDA_PKG([HAS_KRB5], [test "$with_krb5" = no && HAS_KRB5=no],
161 [test "$KRBCONF" != yes && HAS_KRB5=no],
162 [test "$HAS_COMERR" = no && HAS_KRB5=no],
163 [KRB5_LIBS="`krb5-config --libs krb5`"
164 KRB5_CFLAGS="`krb5-config --cflags krb5` $COMERR_CFLAGS"]
165 [AC_CHECK_LIB(krb5, krb5_init_context, [:], [HAS_KRB5=no], $KRB5_LIBS)],
166 [DOLDA_CHECK_HEADER(krb5.h, [], [HAS_KRB5=no], $KRB5_CFLAGS)])
167if test -n "$with_krb5" -a "$with_krb5" != no -a "$HAS_KRB5" = no; then
168 AC_MSG_ERROR([*** cannot find Kerberos 5 on this system])
169fi
170if test "$with_krb5" != no -a "$HAS_KRB5" = yes; then
171 AC_DEFINE(HAVE_KRB5)
172 krb_msg=yes
173fi
174AC_SUBST([KRB5_LIBS KRB5_CFLAGS])
175
176# Linux keyring
177AH_TEMPLATE(HAVE_KEYUTILS, [define if your system supports the Linux keyring functions])
178AC_ARG_WITH(keyutils, [ --with-keyutils Enable support for the Linux keyring stash])
179DOLDA_PKG([HAS_KEYUTILS], [test "$with_keyutils" = no && HAS_KEYUTILS=no],
180 [AC_CHECK_LIB(keyutils, keyctl_search, [:], [HAS_KEYUTILS=no])])
181if test "$with_keyutils" = yes -a "$HAS_KEYUTILS" = no; then
182 AC_MSG_ERROR([*** cannot find keyutils on this system])
183fi
184if test "$HAS_KEYUTILS" = yes; then
185 AC_DEFINE(HAVE_KEYUTILS)
186 KEYUTILS_LIBS=-lkeyutils
187fi
188AC_SUBST([KEYUTILS_LIBS])
189
190DOLDA_AC_GROUP([Checking operating system features])
191
192# Misc. functions checks
193AC_CHECK_FUNC(vswprintf, , AC_MSG_ERROR([*** must have vswprintf]))
194AH_TEMPLATE(HAVE_WCSCASECMP, [define if your system implements wcscasecmp])
195AC_CHECK_FUNC(wcscasecmp, [ AC_DEFINE(HAVE_WCSCASECMP) ])
196
197AH_TEMPLATE(HAVE_LINUX_SOCKIOS_H, [define if you have linux/sockios.h on your system])
198AC_CHECK_HEADER([linux/sockios.h], [ AC_DEFINE(HAVE_LINUX_SOCKIOS_H) ])
199
200AH_TEMPLATE(HAVE_IPV6, [define if your system supports IPv6 and you wish to compile with support for it])
201AC_CHECK_MEMBER(struct sockaddr_in6.sin6_family, [ AC_DEFINE(HAVE_IPV6) ], , [#include <netinet/in.h>])
202
203AH_TEMPLATE(HAVE_RESOLVER, [define if your system supports the res_* functions to fetch DNS RRs])
204AC_CHECK_LIB(resolv, res_query, [ AC_DEFINE(HAVE_RESOLVER)
205 LDFLAGS="$LDFLAGS -lresolv" ])
206
207# Unix credentials selector
208AH_TEMPLATE(UNIX_AUTH_STYLE, [undefine for no Unix auth, 1 for Linux style, 2 for BSD style])
209AC_CHECK_MEMBER(struct ucred.pid, [ linuxcreds=y ], [ linuxcreds=n ], [#include <sys/socket.h>])
210AC_CHECK_FUNC(getpeereid, [ bsdcreds=y ], [ bsdcreds=n ])
211AC_MSG_CHECKING([for Unix auth style])
212if test $linuxcreds = y; then
213 AC_DEFINE(UNIX_AUTH_STYLE, 1)
214 AC_MSG_RESULT(linux)
215elif test $bsdcreds = y; then
216 AC_DEFINE(UNIX_AUTH_STYLE, 2)
217 AC_MSG_RESULT(bsd)
218else
219 AC_MSG_RESULT(none)
220fi
221
222DOLDA_AC_GROUP([Checking standard headers])
223
224AC_HEADER_STDC
225AC_HEADER_DIRENT
226AC_HEADER_SYS_WAIT
227
228AC_TYPE_PID_T
229AC_TYPE_SIZE_T
230AC_HEADER_TIME
231AC_TYPE_SIGNAL
232
233CPPFLAGS="-I\$(top_srcdir)/include $CPPFLAGS"
234
235DOLDA_AC_GROUP([Writing output])
236
237AH_TEMPLATE(RELEASEINFO, [define release information reported by various programs (should be left to configure to define)])
238relinfo="relver ${VERSION}\\n"
239relinfo="${relinfo}builddate $(date)\\n"
240if test -d .git && which git-rev-parse >/dev/null 2>&1; then
241 relinfo="${relinfo}source git $(git-rev-parse HEAD)\\n"
242elif test -r source; then
243 relinfo="${relinfo}source $(cat source)\\n"
244else
245 relinfo="${relinfo}source unknown\\n"
246fi
247AC_DEFINE_UNQUOTED([RELEASEINFO], ["$relinfo"])
248
249AC_SUBST([extlibs])
250AC_OUTPUT([
251Makefile
252autopackage/Makefile
253common/Makefile
254daemon/Makefile
255lib/Makefile
256lib/guile/Makefile
257lib/guile/dolcon/Makefile
258clients/Makefile
259clients/gtk2/Makefile
260clients/tty/Makefile
261clients/gnome-trans-applet/Makefile
262clients/gaim/Makefile
263clients/gui-shell/Makefile
264include/Makefile
265include/doldaconnect/Makefile
266doc/Makefile
267doc/man/Makefile
268po/Makefile.in
269config/Makefile
270config/cmd/Makefile
271config/util/Makefile
272contrib/Makefile
273contrib/doldaconnect.spec
274share/Makefile
275autopackage/doldacond.apspec
276autopackage/dolcon.apspec
277autopackage/dcuilib.apspec
278autopackage/dcguile.apspec
279autopackage/guishell.apspec
280])
281
282echo
283echo "Dolda Connect has been configured with the following settings:"
284echo
285echo " Daemon: $enable_daemon"
286echo " PAM support: $pam_msg"
287echo " Kerberos 5 support: $krb_msg"
288echo " GTK2 user interface: $enable_gtk2ui"
289echo " Dolconf configurator: $enable_dolconf"
290echo " GUI shell: $enable_guishell"
291echo " Guile extension library: $guile_msg"
292echo " GNOME transfer applet: $enable_gnomeapplet"
293echo " Gaim chat plugin: $gaimplugin_msg"
294echo
295
296if tput bold >/dev/null 2>&1 && tty <&2 >/dev/null 2>&1; then
297 hastput=y
298fi
299if test "$HAS_GTK2" = no -a "$with_gtk2" != no -a "$enable_gtk2ui" != no; then
300 if test "$hastput" = y; then
301 tput bold
302 tput setf 4 2>/dev/null
303 fi
304 echo -n " Warning: " >&2
305 if test "$hastput" = y; then
306 tput sgr0
307 fi
308 echo "Could not find a GTK2 development installation on this system." >&2
309 echo " That means you won't get a UI." >&2
310 echo " Make absolutely sure this is what you want!" >&2
311 if test "$hastput" = y; then
312 tput bel
313 fi
314 sleep 1
315fi
316if test "$experimental" = yes; then
317 if test "$hastput" = y; then
318 tput bold
319 tput setf 4 2>/dev/null
320 fi
321 echo -n " Warning: " >&2
322 if test "$hastput" = y; then
323 tput sgr0
324 fi
325 echo "You have enabled one or more experimental features!" >&2
326 echo " Please don't complain that it doesn't work, unless" >&2
327 echo " you have something constructive to add about the situation." >&2
328 if test "$hastput" = y; then
329 tput bel
330 fi
331 sleep 1
332fi