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