Mercurial > pidgin.yaz
annotate configure.in @ 3936:cb6f970eec7e
[gaim-migrate @ 4110]
I AM A CONSUMER WHORE!
AND HOW!
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Sun, 10 Nov 2002 20:01:32 +0000 |
parents | 9bcb42faccc0 |
children | 9c31ddae80a1 |
rev | line source |
---|---|
3174 | 1 dnl Process this file with autoconf to produce a configure script. |
2 AC_INIT(src/aim.c) | |
3 AM_CONFIG_HEADER(config.h) | |
3351 | 4 AM_INIT_AUTOMAKE([gaim], [0.60cvs]) |
3174 | 5 |
6 | |
7 | |
8 AC_PATH_PROG(sedpath, sed) | |
9 | |
10 dnl Checks for programs. | |
11 AC_PROG_CC | |
12 AC_DISABLE_STATIC | |
13 AM_PROG_LIBTOOL | |
14 LIBTOOL="$LIBTOOL --silent" | |
15 AC_PROG_INSTALL | |
16 | |
17 | |
3462 | 18 ALL_LINGUAS="bg cs da de es fi fr hu it ja ko nl pl ro ru sk sv zh_CN zh_TW" |
3408
ba6d0856c8e4
[gaim-migrate @ 3427]
Christian Hammond <chipx86@chipx86.com>
parents:
3394
diff
changeset
|
19 AM_GNU_GETTEXT_VERSION(0.10.40) |
3174 | 20 AM_GNU_GETTEXT |
21 | |
22 AC_CYGWIN | |
23 | |
24 | |
25 dnl Checks for header files. | |
26 AC_HEADER_STDC | |
27 AC_HEADER_SYS_WAIT | |
28 AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h locale.h signal.h) | |
29 | |
30 dnl Checks for typedefs, structures, and compiler characteristics. | |
31 AC_C_CONST | |
32 AC_STRUCT_TM | |
33 | |
34 dnl Checks for library functions. | |
35 AC_TYPE_SIGNAL | |
36 AC_FUNC_STRFTIME | |
37 AC_CHECK_FUNCS(socket strdup strstr atexit getaddrinfo) | |
38 | |
39 dnl Checks for getopt in standard library | |
40 AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] ) | |
41 AC_SUBST(LIBOBJS) | |
42 | |
43 dnl Check for inet_aton | |
44 AC_CHECK_FUNC(inet_aton, , [AC_CHECK_LIB(resolv, inet_aton, , | |
45 [AC_ERROR(inet_aton not found)])]) | |
46 | |
47 dnl Check for socklen_t (in Unix98) | |
48 AC_MSG_CHECKING(for socklen_t) | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
49 AC_TRY_COMPILE([ |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
50 #include <sys/types.h> |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
51 #include <sys/socket.h> |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
52 socklen_t x; |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
53 ], [], |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
54 [ |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
55 AC_MSG_RESULT(yes) |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
56 ], [ |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
57 AC_TRY_COMPILE([ |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
58 #include <sys/types.h> |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
59 #include <sys/socket.h> |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
60 int accept(int, struct sockaddr *, size_t *); |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
61 ], [], [ |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
62 AC_MSG_RESULT(size_t) |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
63 AC_DEFINE(socklen_t, size_t, [socklen_t size]) |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
64 ], [ |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
65 AC_MSG_RESULT(int) |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
66 AC_DEFINE(socklen_t, int, [socklen_t size]) |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
67 ]) |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
68 ]) |
3174 | 69 |
70 dnl This is a bad, bad hack. I am a bad, bad man. | |
71 CFLAGS="$CFLAGS -I/usr/local/include -I/opt/include -I\$(top_srcdir)" | |
72 | |
73 AC_ARG_ENABLE(distrib,,,enable_distrib=no) | |
74 AM_CONDITIONAL(DISTRIB, test "x$enable_distrib" = "xyes") | |
75 AC_ARG_ENABLE(multi, [ --disable-multi disable multiple connections],,enable_multi=yes) | |
76 AC_ARG_ENABLE(prpls, [ --disable-prpls don't build dynamic protocol plugins],,enable_prpls=yes) | |
3572 | 77 AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="") |
3174 | 78 if test "x$STATIC_PRPLS" = "xall" ; then |
3382 | 79 STATIC_PRPLS="gg irc jabber msn napster oscar toc yahoo zephyr" |
3174 | 80 fi |
81 AC_SUBST(STATIC_PRPLS) | |
82 STATIC_LINK_LIBS= | |
83 extern_init= | |
84 load_proto= | |
85 for i in $STATIC_PRPLS ; do | |
86 STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a" | |
87 extern_init="$extern_init extern void ${i}_init(struct prpl *);" | |
88 load_proto="$load_proto load_protocol(${i}_init, sizeof(struct prpl));" | |
89 case $i in | |
90 gg) static_gg=yes ;; | |
91 irc) static_irc=yes ;; | |
92 jabber) static_jabber=yes ;; | |
93 msn) static_msn=yes ;; | |
94 napster) static_napster=yes ;; | |
95 oscar) static_oscar=yes ;; | |
96 toc) static_toc=yes ;; | |
97 yahoo) static_yahoo=yes ;; | |
98 zephyr) static_zephyr=yes ;; | |
99 *) echo "Invalid static protocol $i!!" ; exit ;; | |
100 esac | |
101 done | |
102 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes") | |
103 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes") | |
104 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes") | |
105 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") | |
106 AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes") | |
107 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") | |
108 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") | |
109 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") | |
110 AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes") | |
111 AC_SUBST(STATIC_LINK_LIBS) | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
112 AC_DEFINE_UNQUOTED(STATIC_PROTO_INIT, $extern_init void static_proto_init() { $load_proto }, |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
113 [Loads static protocol plugin module initialization functions.]) |
3174 | 114 |
115 AC_ARG_ENABLE(esd, [ --disable-esd Turn off ESD (default=auto)],,enable_esd=yes) | |
116 AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],,enable_nas=no) | |
117 AC_ARG_ENABLE(artsc, [ --disable-artsc Turn off ArtsC (default=auto)],,enable_artsc=yes) | |
118 | |
119 AC_ARG_ENABLE(plugins, [ --disable-plugins compile without plugin support],,enable_plugins=yes) | |
120 AC_ARG_ENABLE(perl, [ --disable-perl compile without perl scripting],,enable_perl=yes) | |
3802 | 121 AC_ARG_ENABLE(gtkspell, [ --disable-gtkspell compile without GtkSpell automatic spell checking],,enable_gtkspell=yes) |
3174 | 122 |
123 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no) | |
124 AC_ARG_ENABLE(screensaver, [ --disable-screensaver compile without X screensaver extension],,enable_xss=yes) | |
125 AC_ARG_WITH(krb4, [ --with-krb4=PREFIX Compile Zephyr plugin with Kerberos 4 support],kerberos="$withval",kerberos="no") | |
126 | |
127 if test "$enable_debug" = yes ; then | |
128 CFLAGS="$CFLAGS -Wall -g3" | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
129 AC_DEFINE(DEBUG, 1, [Define if debugging is enabled.]) |
3174 | 130 fi |
131 | |
132 | |
3551 | 133 AM_PATH_GLIB_2_0(2.0.0,,AC_MSG_ERROR([ |
3454 | 134 *** GLib 2.0 is required to build Gaim; please make sure you have the GLib |
135 *** development headers installed. The latest version of GLib is | |
136 *** always available at http://www.gtk.org/.])) | |
3551 | 137 AM_PATH_GTK_2_0(2.0.0,,AC_MSG_ERROR([ |
3454 | 138 *** GTK+ 2.0 is required to build Gaim; please make sure you have the GTK+ |
139 *** development headers installed. The latest version of GTK+ is | |
140 *** always available at http://www.gtk.org/.])) | |
141 | |
3425 | 142 AC_PATH_PROG(gaimpath, gaim) |
143 CFLAGS="$CFLAGS $GTK_CFLAGS -DGTK_ENABLE_BROKEN" | |
3174 | 144 |
145 dnl Check for XScreenSaver | |
146 if test "x$enable_xss" = "xyes" ; then | |
3285 | 147 AC_PATH_X |
3174 | 148 old_LIBS="$LIBS" |
3425 | 149 LIBS="$LIBS $GTK_LIBS -L$x_libraries" |
3174 | 150 XSS_LIBS="no" |
151 XSS_HEADERS="no" | |
3282 | 152 AC_CHECK_LIB(Xext, XScreenSaverRegister,[XSS_LIBS="-L$x_libraries"],[],[-lX11 -lXext -lm]) |
3288 | 153 AC_CHECK_LIB(Xss, XScreenSaverRegister,[XSS_LIBS="-L$x_libraries -lXss"],[],[-lX11 -lXext -lm]) |
3174 | 154 if test \! "$XSS_LIBS" = "no"; then |
155 AC_TRY_COMPILE([ | |
156 #include <X11/extensions/scrnsaver.h> | |
157 ],[],[enable_xss=no],[ | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
158 AC_DEFINE(USE_SCREENSAVER, 1, [Define if we're using XScreenSaver.]) |
3174 | 159 ]) |
160 else | |
161 XSS_LIBS="" | |
162 enable_xss=no | |
163 fi | |
164 LIBS="$old_LIBS" | |
165 else | |
166 XSS_LIBS="" | |
167 enable_xss=no | |
168 fi | |
169 AC_SUBST(XSS_LIBS) | |
170 | |
3203 | 171 AC_DEFUN(GC_TM_GMTOFF, |
172 [AC_REQUIRE([AC_STRUCT_TM])dnl | |
173 AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff, | |
174 [AC_TRY_COMPILE([#include <sys/types.h> | |
175 #include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;], | |
176 ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)]) | |
177 if test "$ac_cv_struct_tm_gmtoff" = yes; then | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
178 AC_DEFINE(HAVE_TM_GMTOFF, 1, [tm_gmtoff is available.]) |
3203 | 179 fi |
180 ]) | |
181 | |
182 GC_TM_GMTOFF | |
3174 | 183 |
184 | |
185 dnl This was taken straight from X-Chat. | |
186 dnl X-Chat is the greatest application ever, not only | |
187 dnl because it's a rocking IRC client but also because | |
188 dnl it's very easy to learn from. | |
189 if test "$enable_perl" = yes ; then | |
190 AC_PATH_PROG(perlpath, perl) | |
191 AC_MSG_CHECKING(for Perl compile flags) | |
192 PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null` | |
193 if test "_$PERL_CFLAGS" = _ ; then | |
194 AC_MSG_RESULT([not found, building without perl.]) | |
195 enable_perl = no | |
196 else | |
197 PERL_LIBS=`$perlpath -MExtUtils::Embed -e ldopts 2>/dev/null |$sedpath 's/-lgdbm //'` | |
198 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-ldb //'` | |
199 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lndbm //'` | |
200 if test "$system" = "Linux"; then | |
201 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lnsl //'` | |
202 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lposix //'` | |
203 fi | |
204 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lc //'` | |
205 AC_MSG_RESULT(ok) | |
206 AC_SUBST(PERL_CFLAGS) | |
207 AC_SUBST(PERL_LIBS) | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
208 AC_DEFINE(USE_PERL, 1, [Define if Perl is enabled.]) |
3174 | 209 AC_CHECK_FUNCS(Perl_eval_pv) |
210 fi | |
211 fi | |
212 | |
3802 | 213 dnl Thanks, Evan. |
214 if test "$enable_gtkspell" = yes ; then | |
215 PKG_CHECK_MODULES(GTKSPELL, gtkspell-2.0 >= 2.0.2, , enable_gtkspell=no) | |
216 if test "$enable_gtkspell" = "yes" ; then | |
217 AC_SUBST(GTKSPELL_CFLAGS) | |
218 AC_SUBST(GTKSPELL_LIBS) | |
219 AC_DEFINE(USE_GTKSPELL,,[do we have gtkspell?]) | |
220 fi | |
221 fi | |
222 | |
3174 | 223 if test "$enable_nas" = yes ; then |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
224 AC_DEFINE(NAS_SOUND, 1, [Define if we have NAS sound support.]) |
3174 | 225 SOUND_LIBS="-laudio -lXt" |
226 fi | |
227 if test "$enable_esd" = yes ; then | |
228 AM_PATH_GESD | |
229 if test "$no_esd" != yes ; then | |
230 old_CFLAGS="$CFLAGS" | |
231 CFLAGS="$CFLAGS $ESD_CFLAGS" | |
232 AC_TRY_COMPILE(,[#include <esd.h>], | |
233 [ | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
234 AC_DEFINE(ESD_SOUND, 1, [Define if we have ESD sound support.]) |
3174 | 235 SOUND_LIBS="$SOUND_LIBS $ESD_LIBS" |
236 ],[ | |
237 enable_esd=no | |
238 CFLAGS="$old_CFLAGS" | |
239 ]) | |
240 else | |
241 enable_esd=no | |
242 fi | |
243 fi | |
244 if test "x$enable_artsc" = "xyes"; then | |
245 AM_PATH_ARTSC | |
246 if test "x$no_artsc" != "xyes" ; then | |
247 old_CFLAGS="$CFLAGS" | |
248 CFLAGS="$CFLAGS $ARTSC_CFLAGS" | |
249 AC_TRY_COMPILE(,[#include <artsc.h>], | |
250 [ | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
251 AC_DEFINE(ARTSC_SOUND, 1, [Define if we have artsc sound support.]) |
3174 | 252 SOUND_LIBS="$SOUND_LIBS $ARTSC_LIBS" |
253 ],[ | |
254 enable_artsc=no | |
255 CFLAGS="$old_CFLAGS" | |
256 ]) | |
257 else | |
258 enable_artsc=no | |
259 fi | |
260 fi | |
261 AC_SUBST(SOUND_LIBS) | |
262 | |
263 if test "$ac_cv_cygwin" = yes ; then | |
264 LDADD="$LDADD -static" | |
265 CFLAGS="$CFLAGS -Wall -g" | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
266 AC_DEFINE(DEBUG, 1, [Define if debugging is enabled.]) |
3174 | 267 fi |
268 | |
269 AC_SUBST(CFLAGS) | |
270 AC_SUBST(LDADD) | |
271 AC_SUBST(LIBS) | |
272 | |
273 if test "x$enable_multi" != "xyes" ; then | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
274 AC_DEFINE(NO_MULTI, 1, [Define if multiple connections is disabled.]) |
3174 | 275 enable_multi=no |
276 fi | |
277 | |
278 if test "x$enable_plugins" = "xyes" ; then | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
279 AC_DEFINE(GAIM_PLUGINS, 1, [Define if plugins are enabled.]) |
3174 | 280 AM_CONDITIONAL(PLUGINS, test "x$enable_plugins" = "xyes") |
281 else | |
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
282 AM_CONDITIONAL(PLUGINS, false) |
3174 | 283 enable_plugins=no |
284 enable_prpls=no | |
285 fi | |
286 | |
287 if test "x$enable_prpls" = "xyes" ; then | |
288 AM_CONDITIONAL(PRPLS, test "x$enable_plugins" = "xyes") | |
289 else | |
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
290 AM_CONDITIONAL(PRPLS, false) |
3174 | 291 enable_prpls=no |
292 fi | |
293 | |
294 dnl checks for icqlib | |
295 AC_CHECK_HEADERS(asm/byteorder.h byteswap.h endian.h machine/endian.h arpa/nameser_compat.h) | |
296 AC_CHECK_FUNCS(bswap_32 bswap_16) | |
297 AC_C_BIGENDIAN | |
298 | |
299 dnl checks for jabber | |
300 dnl AC_CHECK_SIZEOF(short) | |
301 AC_CHECK_FUNCS(snprintf connect) | |
302 AC_CHECK_LIB(nsl, gethostent) | |
303 | |
304 dnl checks for zephyr | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
305 AC_DEFINE(ZEPHYR_INT32, long, [Size of an int32.]) |
3174 | 306 AC_SUBST(KRB4_CFLAGS) |
307 AC_SUBST(KRB4_LDFLAGS) | |
308 AC_SUBST(KRB4_LIBS) | |
309 if test "$kerberos" != "no" ; then | |
310 if test "$kerberos" != "yes" ; then | |
311 KRB4_CFLAGS="-I${kerberos}/include" | |
312 if test -d "$kerberos/include/kerberosIV" ; then | |
313 KRB4_CFLAGS="$KRB4_CFLAGS -I${kerberos}/include/kerberosIV" | |
314 fi | |
315 KRB4_LDFLAGS="-L${kerberos}/lib" | |
316 elif test -d /usr/local/include/kerberosIV ; then | |
317 KRB4_CFLAGS="-I/usr/local/include/kerberosIV" | |
318 elif test -d /usr/include/kerberosIV ; then | |
319 KRB4_CFLAGS="-I/usr/include/kerberosIV" | |
320 fi | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3586
diff
changeset
|
321 AC_DEFINE(ZEPHYR_USES_KERBEROS, 1, [Define if kerberos should be used in Zephyr.]) |
3174 | 322 |
323 orig_LDFLAGS="$LDFLAGS" | |
324 LDFLAGS="$LDFLAGS $KRB4_LDFLAGS" | |
325 AC_CHECK_LIB(krb4, krb_rd_req, | |
326 [KRB4_LIBS="-lkrb4 -ldes425 -lkrb5 -lk5crypto -lcom_err"], | |
327 [AC_CHECK_LIB(krb, krb_rd_req, | |
328 [KRB4_LIBS="-lkrb -ldes"], | |
329 [AC_ERROR(Kerberos 4 libraries not found)], | |
330 -ldes)], | |
331 -ldes425 -lkrb5 -lk5crypto -lcom_err) | |
332 orig_LIBS="$LIBS" | |
333 LIBS="$LIBS $KRB4_LIBS" | |
334 AC_CHECK_FUNCS(krb_set_key krb_rd_req krb_get_lrealm) | |
335 AC_CHECK_FUNCS(krb_get_err_text krb_log) | |
336 LIBS="$orig_LIBS" | |
337 LDFLAGS="$orig_LDFLAGS" | |
338 fi | |
339 AC_CHECK_FUNCS(gethostid lrand48) | |
340 AC_CHECK_FUNCS(memcpy memmove random strchr strerror vprintf) | |
341 AC_CHECK_HEADERS(malloc.h paths.h sgtty.h stdarg.h sys/cdefs.h) | |
342 AC_CHECK_HEADERS(sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h) | |
343 AC_CHECK_HEADERS(sys/select.h sys/uio.h sys/utsname.h sys/wait.h) | |
344 AC_CHECK_HEADERS(termios.h) | |
3194 | 345 AC_VAR_TIMEZONE_EXTERNALS |
3174 | 346 |
347 AC_OUTPUT([Makefile | |
348 doc/Makefile | |
349 intl/Makefile | |
350 m4/Makefile | |
351 pixmaps/Makefile | |
352 pixmaps/protocols/Makefile | |
353 pixmaps/protocols/msn/Makefile | |
354 pixmaps/protocols/yahoo/Makefile | |
3491 | 355 pixmaps/protocols/oscar/Makefile |
3586 | 356 pixmaps/protocols/napster/Makefile |
357 pixmaps/protocols/jabber/Makefile | |
358 pixmaps/protocols/irc/Makefile | |
359 pixmaps/protocols/icq/Makefile | |
360 pixmaps/protocols/gg/Makefile | |
3174 | 361 plugins/Makefile |
3510 | 362 plugins/docklet/Makefile |
3394
bc71eb7428ef
[gaim-migrate @ 3413]
Christian Hammond <chipx86@chipx86.com>
parents:
3391
diff
changeset
|
363 plugins/ticker/Makefile |
3174 | 364 po/Makefile.in |
365 sounds/Makefile | |
366 src/Makefile | |
367 src/protocols/Makefile | |
368 src/protocols/gg/Makefile | |
369 src/protocols/icq/Makefile | |
370 src/protocols/irc/Makefile | |
371 src/protocols/jabber/Makefile | |
372 src/protocols/msn/Makefile | |
373 src/protocols/napster/Makefile | |
374 src/protocols/oscar/Makefile | |
375 src/protocols/toc/Makefile | |
376 src/protocols/yahoo/Makefile | |
377 src/protocols/zephyr/Makefile | |
378 gaim.spec | |
379 ]) | |
380 | |
381 echo | |
382 echo $PACKAGE $VERSION | |
383 | |
384 echo | |
385 echo Allow Multiple Connections.... : $enable_multi | |
386 echo Build Protocol Plugins........ : $enable_prpls | |
387 echo Protocols to link statically.. : $STATIC_PRPLS | |
388 echo | |
3425 | 389 echo UI Library.................... : GTK 2.0 |
3174 | 390 echo |
391 echo Build with Plugin support..... : $enable_plugins | |
392 echo Build with Perl support....... : $enable_perl | |
393 echo | |
3802 | 394 echo Build with GtkSpell............: $enable_gtkspell |
395 echo | |
3174 | 396 echo Use XScreenSaver Extension.... : $enable_xss |
397 echo | |
398 echo Build with ESD................ : $enable_esd | |
399 echo Build with NAS................ : $enable_nas | |
400 echo Build with ArtsC.............. : $enable_artsc | |
401 echo | |
402 echo Print debugging messages...... : $enable_debug | |
403 echo | |
404 eval eval echo Gaim will be installed in $bindir. | |
405 if test "x$gaimpath" != "x" ; then | |
406 echo Warning: You have an old copy of gaim at $gaimpath. | |
407 fi | |
408 echo | |
409 echo configure complete, now type \'make\' | |
410 echo |