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