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