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