Don't link everything against lib{z,bz2,pam,gdbm}.
[doldaconnect.git] / configure.in
CommitLineData
d3372da9 1AC_INIT(daemon/main.c)
ae7ccbfe 2AM_INIT_AUTOMAKE([doldaconnect], [0.5])
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 30extlibs=
31experimental=no
32
b2ab3796 33DOLDA_AC_GROUP([Checking optional libraries])
d3372da9 34
ded209d3
FT
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],
9e5a735c
FT
40 [AC_CHECK_LIB(pam, pam_start, [:], [HAS_PAM=no])],
41 [PAM_LIBS=-lpam])
ded209d3
FT
42if test "$with_pam" = yes -a "$HAS_PAM" = no; then
43 AC_MSG_ERROR([*** cannot find PAM on this system])
44fi
d70e35d9 45if test "$HAS_PAM" = yes; then
ded209d3
FT
46 AC_DEFINE(HAVE_PAM)
47 pam_msg=yes
48fi
9e5a735c 49AC_SUBST(PAM_LIBS)
ded209d3 50
0c1a8103 51# Gtk 2.0 check
d3372da9 52AC_ARG_WITH(gtk2, [ --with-gtk2 Enable GTK2 support])
b2ab3796
FT
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)])
d3372da9 57if test "$with_gtk2" = yes -a "$HAS_GTK2" = no; then
58 AC_MSG_ERROR([*** cannot find GTK2 on this system])
59fi
60
0c1a8103 61# libxml2 check
b2ab3796
FT
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])
0c1a8103 69fi
70
bbc9d874 71# libnotify check
d70e35d9 72AH_TEMPLATE(HAVE_NOTIFY, [define to compile support for libnotify])
b2ab3796
FT
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])
bbc9d874 79fi
d70e35d9
FT
80if test "$HAS_LIBNOTIFY" = yes; then
81 AC_DEFINE(HAVE_NOTIFY)
82fi
bbc9d874 83
b2ab3796
FT
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
0c1a8103 93# Gtk GUI check
b2ab3796
FT
94DOLDA_ENABLE(gtk2ui, [ --enable-gtk2ui Enable the GTK2 user interface], yes,
95 [HAS_GTK2 HAS_LIBXML])
96AM_CONDITIONAL(CLI_GTK2, test "$enable_gtk2ui" = yes)
d3372da9 97
3589c61e 98# Dolconf check
b2ab3796
FT
99DOLDA_ENABLE(dolconf, [ --enable-dolconf Build the configuration helper], yes,
100 [HAS_GTK2])
101AM_CONDITIONAL(DOLCONF, test "$enable_dolconf" = yes)
3589c61e 102
ed9135a0
FT
103# GUI shell check
104DOLDA_ENABLE(guishell, [ --enable-guishell Build the GUI shell programs], yes,
105 [HAS_GTK2])
106AM_CONDITIONAL(GUISHELL, test "$enable_guishell" = yes)
107
0c1a8103 108# Gtk progress bar check
d3372da9 109AH_TEMPLATE(ENABLE_GTK2PBAR, [define to compile GTK2 progress bars (experimental)])
b2ab3796
FT
110DOLDA_ENABLE(gtk2pbar, [ --enable-gtk2pbar Enable GTK2 progress bars (experimental)], no,
111 [HAS_GTK2 enable_gtk2ui])
d3372da9 112if test "$enable_gtk2pbar" = yes; then
d3372da9 113 experimental=yes
d3372da9 114 AC_DEFINE(ENABLE_GTK2PBAR)
115fi
116
0c1a8103 117# Gnome applet check
b2ab3796
FT
118DOLDA_ENABLE(gnomeapplet, [ --enable-gnomeapplet Enable GNOME transfer applet (experimental)], no,
119 [HAS_LIBPANELAPPLET])
d3372da9 120if test "$enable_gnomeapplet" = yes; then
121 experimental=yes
d3372da9 122fi
b2ab3796 123AM_CONDITIONAL(CLI_GNOMEAPPLET, test "$enable_gnomeapplet" = yes)
d3372da9 124
0c1a8103 125# Gaim plugin check
34ec1e2f 126gaimplugin_msg=
b2ab3796
FT
127DOLDA_ENABLE(gaimplugin, [ --enable-gaimplugin Enable Gaim chat plugin (experimental)], no,
128 [HAS_LIBGAIM])
9db6483b 129if test "$enable_gaimplugin" = yes; then
130 experimental=yes
34ec1e2f
FT
131 gaimplugin_msg="Gaim $gaimplugin_msg"
132fi
133AM_CONDITIONAL(CLI_GAIM, test "$enable_gaimplugin" = yes)
b2ab3796
FT
134DOLDA_ENABLE(pidginplugin, [ --enable-pidginplugin Enable Pidgin chat plugin (experimental)], no,
135 [HAS_LIBPURPLE])
34ec1e2f
FT
136if test "$enable_pidginplugin" = yes; then
137 experimental=yes
138 gaimplugin_msg="Pidgin $gaimplugin_msg"
139fi
140AM_CONDITIONAL(CLI_PIDGIN, test "$enable_pidginplugin" = yes)
141if test -z "$gaimplugin_msg"; then
b2ab3796 142 gaimplugin_msg=none
9db6483b 143fi
144
0c1a8103 145# Guile check (XXX: Shouldn't have to be enabled manually)
b2ab3796 146guile_msg=no
d3372da9 147if test "$with_guile" = yes; then
148 GUILE_FLAGS
149 extlibs="$extlibs guile"
b2ab3796 150 guile_msg=yes
d3372da9 151fi
152
72e3daf5 153# Check whether to install baseconv
154AC_ARG_ENABLE(baseconv, [ --enable-baseconv Install the baseconv utility])
a1b1a665 155AM_CONDITIONAL(BASECONV, test "$enable_baseconv" = yes)
72e3daf5 156
0c1a8103 157# Kerberos check
b2ab3796
FT
158krb_msg=no
159AH_TEMPLATE(HAVE_KRB5, [define to compile support for Kerberos 5 (not GSSAPI) authentication])
d3372da9 160AC_ARG_WITH(krb5, [ --with-krb5[=PATH] Enable Kerberos 5 (not GSSAPI) authentication])
b2ab3796
FT
161AC_CHECK_PROG(KRBCONF, krb5-config, yes, no)
162DOLDA_PKG([HAS_COMERR], [AC_CHECK_HEADER(com_err.h, [COMERR_CFLAGS=""; HAS_COMERR=yes], [])],
163 [AC_CHECK_HEADER(et/com_err.h, [COMERR_CFLAGS="-I/usr/include/et"; HAS_COMERR=yes], [])],
164 [HAS_COMERR=no])
165DOLDA_PKG([HAS_KRB5], [test "$with_krb5" = no && HAS_KRB5=no],
166 [test "$KRBCONF" != yes && HAS_KRB5=no],
167 [test "$HAS_COMERR" = no && HAS_KRB5=no],
168 [KRB5_LIBS="`krb5-config --libs krb5`"
169 KRB5_CFLAGS="`krb5-config --cflags krb5` $COMERR_CFLAGS"]
170 [AC_CHECK_LIB(krb5, krb5_init_context, [:], [HAS_KRB5=no], $KRB5_LIBS)],
171 [DOLDA_CHECK_HEADER(krb5.h, [], [HAS_KRB5=no], $KRB5_CFLAGS)])
172if test -n "$with_krb5" -a "$with_krb5" != no -a "$HAS_KRB5" = no; then
173 AC_MSG_ERROR([*** cannot find Kerberos 5 on this system])
d3372da9 174fi
175if test "$with_krb5" != no -a "$HAS_KRB5" = yes; then
176 AC_DEFINE(HAVE_KRB5)
b2ab3796 177 krb_msg=yes
d3372da9 178fi
b2ab3796
FT
179AC_SUBST([KRB5_LIBS KRB5_CFLAGS])
180
181DOLDA_AC_GROUP([Checking operating system features])
d3372da9 182
0c1a8103 183# Misc. functions checks
d3372da9 184AC_CHECK_FUNC(vswprintf, , AC_MSG_ERROR([*** must have vswprintf]))
185AH_TEMPLATE(HAVE_WCSCASECMP, [define if your system implements wcscasecmp])
186AC_CHECK_FUNC(wcscasecmp, [ AC_DEFINE(HAVE_WCSCASECMP) ])
187
188AH_TEMPLATE(HAVE_LINUX_SOCKIOS_H, [define if you have linux/sockios.h on your system])
189AC_CHECK_HEADER([linux/sockios.h], [ AC_DEFINE(HAVE_LINUX_SOCKIOS_H) ])
190
191AH_TEMPLATE(HAVE_IPV6, [define if your system supports IPv6 and you wish to compile with support for it])
192AC_CHECK_MEMBER(struct sockaddr_in6.sin6_family, [ AC_DEFINE(HAVE_IPV6) ], , [#include <netinet/in.h>])
193
194AH_TEMPLATE(HAVE_RESOLVER, [define if your system supports the res_* functions to fetch DNS RRs])
195AC_CHECK_LIB(resolv, res_query, [ AC_DEFINE(HAVE_RESOLVER)
196 LDFLAGS="$LDFLAGS -lresolv" ])
57f76d12 197AH_TEMPLATE(HAVE_KEYUTILS, [define if your system supports the Linux keyring functions])
198AC_CHECK_LIB(keyutils, keyctl_search, [ AC_DEFINE(HAVE_KEYUTILS)
199 LDFLAGS="$LDFLAGS -lkeyutils" ])
d3372da9 200
a8c5ada6 201# Unix credentials selector
202AH_TEMPLATE(UNIX_AUTH_STYLE, [undefine for no Unix auth, 1 for Linux style, 2 for BSD style])
203AC_CHECK_MEMBER(struct ucred.pid, [ linuxcreds=y ], [ linuxcreds=n ], [#include <sys/socket.h>])
204AC_CHECK_FUNC(getpeereid, [ bsdcreds=y ], [ bsdcreds=n ])
205AC_MSG_CHECKING([for Unix auth style])
206if test $linuxcreds = y; then
207 AC_DEFINE(UNIX_AUTH_STYLE, 1)
208 AC_MSG_RESULT(linux)
209elif test $bsdcreds = y; then
210 AC_DEFINE(UNIX_AUTH_STYLE, 2)
211 AC_MSG_RESULT(bsd)
212else
213 AC_MSG_RESULT(none)
214fi
215
b2ab3796
FT
216DOLDA_AC_GROUP([Checking standard headers])
217
d3372da9 218AC_HEADER_STDC
219AC_HEADER_DIRENT
220AC_HEADER_SYS_WAIT
221
222AC_TYPE_PID_T
223AC_TYPE_SIZE_T
224AC_HEADER_TIME
225AC_TYPE_SIGNAL
226
227CPPFLAGS="-I\$(top_srcdir)/include $CPPFLAGS"
228
b2ab3796
FT
229DOLDA_AC_GROUP([Writing output])
230
f7b314dc 231AC_SUBST([extlibs])
d3372da9 232AC_OUTPUT([
233Makefile
b43db3fd 234autopackage/Makefile
8b17e919 235common/Makefile
d3372da9 236daemon/Makefile
237lib/Makefile
238lib/guile/Makefile
239lib/guile/dolcon/Makefile
240clients/Makefile
241clients/gtk2/Makefile
a24f31ec 242clients/tty/Makefile
d3372da9 243clients/gnome-trans-applet/Makefile
9db6483b 244clients/gaim/Makefile
f7a57385 245clients/gui-shell/Makefile
d3372da9 246include/Makefile
5b5c7760 247include/doldaconnect/Makefile
d9d072f9 248doc/Makefile
e7e96456 249doc/man/Makefile
d3372da9 250po/Makefile.in
251config/Makefile
7df0ddad
FT
252config/cmd/Makefile
253config/util/Makefile
0870fc19 254contrib/Makefile
d3372da9 255autopackage/dolcon.apspec
5fbecb4f 256autopackage/dcuilib.apspec
257autopackage/dcguile.apspec
d3372da9 258])
259
260echo
261echo "Dolda Connect has been configured with the following settings:"
262echo
ded209d3 263echo " PAM support: $pam_msg"
d3372da9 264echo " Kerberos 5 support: $krb_msg"
b2ab3796
FT
265echo " GTK2 user interface: $enable_gtk2ui"
266echo " GTK2 progress bars: $enable_gtk2pbar"
267echo " Dolconf configurator: $enable_dolconf"
ed9135a0 268echo " GUI shell: $enable_guishell"
d3372da9 269echo " Guile extension library: $guile_msg"
b2ab3796 270echo " GNOME transfer applet: $enable_gnomeapplet"
9db6483b 271echo " Gaim chat plugin: $gaimplugin_msg"
d3372da9 272echo
273
274if tput bold >/dev/null 2>&1 && tty <&2 >/dev/null 2>&1; then
275 hastput=y
276fi
277if test "$HAS_GTK2" = no -a "$with_gtk2" != no -a "$enable_gtk2ui" != no; then
278 if test "$hastput" = y; then
279 tput bold
280 tput setf 4 2>/dev/null
281 fi
282 echo -n " Warning: " >&2
283 if test "$hastput" = y; then
284 tput sgr0
285 fi
286 echo "Could not find a GTK2 development installation on this system." >&2
287 echo " That means you won't get a UI." >&2
288 echo " Make absolutely sure this is what you want!" >&2
289 if test "$hastput" = y; then
290 tput bel
291 fi
292 sleep 1
293fi
294if test "$experimental" = yes; then
295 if test "$hastput" = y; then
296 tput bold
297 tput setf 4 2>/dev/null
298 fi
299 echo -n " Warning: " >&2
300 if test "$hastput" = y; then
301 tput sgr0
302 fi
303 echo "You have enabled one or more experimental features!" >&2
304 echo " Please don't complain that it doesn't work, unless" >&2
305 echo " you have something constructive to add about the situation." >&2
306 if test "$hastput" = y; then
307 tput bel
308 fi
309 sleep 1
310fi