Mercurial > pidgin.yaz
annotate configure.in @ 3411:5df423e0bca8
[gaim-migrate @ 3430]
This hopefully adds automake 1.6 support to gaim. I have not tested it,
though it came from a guy who uses 1.6, so I'd hope it works.
It doesn't break 1.4.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Sun, 18 Aug 2002 19:32:05 +0000 |
parents | ba6d0856c8e4 |
children | 59589bb7ce1e |
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 | |
3266 | 18 ALL_LINGUAS="bg cs da de es fi fr hu it ja ko nl pl 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) | |
49 AC_TRY_COMPILE([#include <sys/types.h> | |
50 #include <sys/socket.h> | |
51 socklen_t x; | |
52 ], [], [AC_MSG_RESULT(yes)], [ | |
3194 | 53 AC_TRY_COMPILE([#include <sys/types.h> |
3174 | 54 #include <sys/socket.h> |
55 int accept(int, struct sockaddr *, size_t *); | |
56 ], [], [ | |
57 AC_MSG_RESULT(size_t) | |
3194 | 58 AC_DEFINE(socklen_t, size_t)], [ |
3174 | 59 AC_MSG_RESULT(int) |
60 AC_DEFINE(socklen_t, int)])]) | |
61 | |
62 dnl This is a bad, bad hack. I am a bad, bad man. | |
63 CFLAGS="$CFLAGS -I/usr/local/include -I/opt/include -I\$(top_srcdir)" | |
64 | |
65 AC_ARG_ENABLE(distrib,,,enable_distrib=no) | |
66 AM_CONDITIONAL(DISTRIB, test "x$enable_distrib" = "xyes") | |
67 AC_ARG_ENABLE(multi, [ --disable-multi disable multiple connections],,enable_multi=yes) | |
68 AC_ARG_ENABLE(prpls, [ --disable-prpls don't build dynamic protocol plugins],,enable_prpls=yes) | |
3383 | 69 AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="oscar") |
3174 | 70 if test "x$STATIC_PRPLS" = "xall" ; then |
3382 | 71 STATIC_PRPLS="gg irc jabber msn napster oscar toc yahoo zephyr" |
3174 | 72 fi |
73 AC_SUBST(STATIC_PRPLS) | |
74 STATIC_LINK_LIBS= | |
75 extern_init= | |
76 load_proto= | |
77 for i in $STATIC_PRPLS ; do | |
78 STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a" | |
79 extern_init="$extern_init extern void ${i}_init(struct prpl *);" | |
80 load_proto="$load_proto load_protocol(${i}_init, sizeof(struct prpl));" | |
81 case $i in | |
82 gg) static_gg=yes ;; | |
83 irc) static_irc=yes ;; | |
84 jabber) static_jabber=yes ;; | |
85 msn) static_msn=yes ;; | |
86 napster) static_napster=yes ;; | |
87 oscar) static_oscar=yes ;; | |
88 toc) static_toc=yes ;; | |
89 yahoo) static_yahoo=yes ;; | |
90 zephyr) static_zephyr=yes ;; | |
91 *) echo "Invalid static protocol $i!!" ; exit ;; | |
92 esac | |
93 done | |
94 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes") | |
95 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes") | |
96 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes") | |
97 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") | |
98 AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes") | |
99 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") | |
100 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") | |
101 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") | |
102 AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes") | |
103 AC_SUBST(STATIC_LINK_LIBS) | |
104 AC_DEFINE_UNQUOTED(STATIC_PROTO_INIT, $extern_init void static_proto_init() { $load_proto }) | |
105 | |
106 AC_ARG_ENABLE(gtk2, [ --enable-gtk2 compile using GTK 2 (BROKEN)],,enable_gtk2=no) | |
107 AC_ARG_ENABLE(gnome, [ --disable-gnome compile without Gnome bits],,enable_gnome=yes) | |
108 AC_ARG_ENABLE(pixbuf, [ --disable-pixbuf compile without GdkPixbuf],,enable_pixbuf=yes) | |
109 AC_ARG_ENABLE(panel, [ --enable-panel compile as a GNOME applet],,enable_panel=$enable_distrib) | |
110 | |
111 AM_CONDITIONAL(GNOMEAPPLET, test "x$enable_panel" = "xyes") | |
112 AC_ARG_ENABLE(esd, [ --disable-esd Turn off ESD (default=auto)],,enable_esd=yes) | |
113 AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],,enable_nas=no) | |
114 AC_ARG_ENABLE(artsc, [ --disable-artsc Turn off ArtsC (default=auto)],,enable_artsc=yes) | |
115 | |
116 AC_ARG_ENABLE(plugins, [ --disable-plugins compile without plugin support],,enable_plugins=yes) | |
117 AC_ARG_ENABLE(perl, [ --disable-perl compile without perl scripting],,enable_perl=yes) | |
118 | |
119 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no) | |
120 AC_ARG_ENABLE(screensaver, [ --disable-screensaver compile without X screensaver extension],,enable_xss=yes) | |
121 AC_ARG_WITH(krb4, [ --with-krb4=PREFIX Compile Zephyr plugin with Kerberos 4 support],kerberos="$withval",kerberos="no") | |
122 | |
123 if test "$enable_debug" = yes ; then | |
124 CFLAGS="$CFLAGS -Wall -g3" | |
125 AC_DEFINE(DEBUG) | |
126 fi | |
127 | |
128 if test "x$enable_gtk2" = "xyes" ; then | |
129 dnl AM_PATH_GTK_2_0(1.3.10,[ | |
130 dnl enable_gnome=no | |
131 dnl enable_pixbuf=no | |
132 dnl CFLAGS="$CFLAGS -DGTK_ENABLE_BROKEN" | |
133 dnl UI_LIBS="$UI_LIBS $GTK_LIBS" | |
134 dnl ],enable_gtk2=no) | |
135 | |
136 AC_PATH_PROG(pkgcfg, pkg-config) | |
137 if test "x$pkgcfg" = "x" ; then | |
138 enable_gtk2=no | |
139 else | |
140 GTK_VER=`$pkgcfg gtk+-2.0 --modversion 2>/dev/null` | |
141 if test "x$GTK_VER" = "x" ; then | |
142 enable_gtk2=no | |
143 else | |
144 GTK_CFLAGS=`$pkgcfg gtk+-2.0 --cflags` | |
145 CFLAGS="$CFLAGS -DGTK_ENABLE_BROKEN" | |
146 GTK_LIBS=`$pkgcfg gtk+-2.0 --libs` | |
147 UI_LIBS="$UI_LIBS $GTK_LIBS" | |
148 enable_gnome=no | |
149 enable_pixbuf=no | |
150 fi | |
151 fi | |
152 fi | |
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
153 |
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
154 GNOME_INIT_HOOK([], nofail, applets) |
3174 | 155 |
156 if test "x$enable_gnome" = "xyes" ; then | |
157 if test "x$enable_panel" = "xyes" ; then | |
158 GNOME_X_CHECKS | |
159 CFLAGS="$CFLAGS $GNOME_INCLUDEDIR" | |
160 AC_DEFINE(USE_APPLET) | |
161 AC_DEFINE(USE_GNOME) | |
162 UI_LIBS="$UI_LIBS $GTK_LIBS $GNOME_LIBDIR $GNOME_APPLETS_LIBS $GNOMEUI_LIBS" | |
163 AC_PATH_PROG(gaimpath, gaim_applet) | |
164 else | |
165 AC_PATH_PROG(gnomepath, gnome-config) | |
166 AC_MSG_CHECKING(for Gnome compile flags) | |
167 GNOME_CFLAGS=`$gnomepath gnomeui --cflags 2>/dev/null` | |
168 if test "x$GNOME_CFLAGS" = "x" ; then | |
169 enable_gnome=no | |
170 AC_MSG_RESULT([Gnome not found, building without it.]) | |
171 else | |
172 GNOME_VER=`$gnomepath --version |$sedpath 's/gnome-libs //' 2>/dev/null` | |
173 GNOME_MAJOR=`echo $GNOME_VER |$sedpath 's/\([[0-9]*]*\).\([[0-9]*]*\).\([[0-9]*]*\)/\1/' 2>/dev/null` | |
174 if test "x$GNOME_MAJOR" = "x0" ; then | |
175 enable_gnome = no | |
176 AC_MSG_RESULT([old Gnome found, building without it.]) | |
177 else | |
178 AC_MSG_RESULT(ok) | |
179 CFLAGS="$CFLAGS $GNOME_CFLAGS" | |
180 UI_LIBS="$UI_LIBS `$gnomepath gnomeui --libs 2>/dev/null`" | |
181 AC_DEFINE(USE_GNOME) | |
182 GNOME_CONFIG="$gnomepath" | |
183 AC_SUBST(GNOME_CONFIG) | |
184 AC_PATH_PROG(gaimpath, gaim) | |
185 fi | |
186 fi | |
187 fi | |
188 fi | |
189 | |
190 if test "x$enable_gnome" != "xyes" -a "x$enable_gtk2" != "xyes" ; then | |
191 AM_PATH_GLIB(1.2.5,,AC_MSG_ERROR([ | |
192 *** GLib is required to build Gaim; please make sure you have the GLib | |
193 *** development headers installed. The latest version of GLib is | |
194 *** always available at http://www.gtk.org/.])) | |
195 AM_PATH_GTK(1.2.5,,AC_MSG_ERROR([ | |
196 *** GTK+ is required to build Gaim; please make sure you have the GTK+ | |
197 *** development headers installed. The latest version of GTK+ is | |
198 *** always available at http://www.gtk.org/.])) | |
199 UI_LIBS="$UI_LIBS $GTK_LIBS" | |
200 AC_PATH_PROG(gaimpath, gaim) | |
201 fi | |
202 CFLAGS="$CFLAGS $GTK_CFLAGS" | |
203 | |
204 dnl if test "x$enable_panel" = "xyes" ; then | |
205 dnl Things moved with the new versoin of Orbit. Thanks for | |
206 dnl telling me, Dan. This should fix them. | |
207 dnl | |
208 dnl The gnome-config script should pick this up and affect GNOME_ variables | |
209 dnl correctly. Thus, this check is not needed; if it fails, it is because of | |
210 dnl a broken installation or that your appletsConf.sh file is not updated | |
211 dnl for the new orbit installation. Gaim shouldn't need to do this. | |
212 dnl | |
213 dnl CFLAGS="$CFLAGS $ORBIT_CFLAGS" | |
214 dnl fi | |
215 | |
216 use_pixbuf=no | |
217 if test "x$enable_pixbuf" = "xyes" ; then | |
218 AC_PATH_PROG(pixbufcfg, gdk-pixbuf-config) | |
219 if test "x$pixbufcfg" != "x" ; then | |
220 GDK_PIXBUF_CFLAGS=`$pixbufcfg --cflags` | |
221 GDK_PIXBUF_LIBS=`$pixbufcfg --libs` | |
222 GDK_PIXBUF_CONFIG="$pixbufcfg" | |
223 AC_SUBST(GDK_PIXBUF_CONFIG) | |
224 AC_SUBST(GDK_PIXBUF_CFLAGS) | |
225 AC_SUBST(GDK_PIXBUF_LIBS) | |
226 CFLAGS="$CFLAGS $GDK_PIXBUF_CFLAGS" | |
227 UI_LIBS="$UI_LIBS $GDK_PIXBUF_LIBS" | |
228 dnl We should be doing checks to see that the header files and functions exist. eh. | |
229 AC_DEFINE(USE_PIXBUF) | |
230 use_pixbuf=yes | |
231 fi | |
232 fi | |
233 AC_SUBST(UI_LIBS) | |
234 | |
235 dnl Check for XScreenSaver | |
236 if test "x$enable_xss" = "xyes" ; then | |
3285 | 237 AC_PATH_X |
3174 | 238 old_LIBS="$LIBS" |
3282 | 239 LIBS="$LIBS $UI_LIBS -L$x_libraries" |
3174 | 240 XSS_LIBS="no" |
241 XSS_HEADERS="no" | |
3282 | 242 AC_CHECK_LIB(Xext, XScreenSaverRegister,[XSS_LIBS="-L$x_libraries"],[],[-lX11 -lXext -lm]) |
3288 | 243 AC_CHECK_LIB(Xss, XScreenSaverRegister,[XSS_LIBS="-L$x_libraries -lXss"],[],[-lX11 -lXext -lm]) |
3174 | 244 if test \! "$XSS_LIBS" = "no"; then |
245 AC_TRY_COMPILE([ | |
246 #include <X11/extensions/scrnsaver.h> | |
247 ],[],[enable_xss=no],[ | |
248 AC_DEFINE(USE_SCREENSAVER) | |
249 ]) | |
250 else | |
251 XSS_LIBS="" | |
252 enable_xss=no | |
253 fi | |
254 LIBS="$old_LIBS" | |
255 else | |
256 XSS_LIBS="" | |
257 enable_xss=no | |
258 fi | |
259 AC_SUBST(XSS_LIBS) | |
260 | |
3203 | 261 AC_DEFUN(GC_TM_GMTOFF, |
262 [AC_REQUIRE([AC_STRUCT_TM])dnl | |
263 AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff, | |
264 [AC_TRY_COMPILE([#include <sys/types.h> | |
265 #include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;], | |
266 ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)]) | |
267 if test "$ac_cv_struct_tm_gmtoff" = yes; then | |
268 AC_DEFINE(HAVE_TM_GMTOFF) | |
269 fi | |
270 ]) | |
271 | |
272 GC_TM_GMTOFF | |
3174 | 273 |
274 | |
275 dnl This was taken straight from X-Chat. | |
276 dnl X-Chat is the greatest application ever, not only | |
277 dnl because it's a rocking IRC client but also because | |
278 dnl it's very easy to learn from. | |
279 if test "$enable_perl" = yes ; then | |
280 AC_PATH_PROG(perlpath, perl) | |
281 AC_MSG_CHECKING(for Perl compile flags) | |
282 PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null` | |
283 if test "_$PERL_CFLAGS" = _ ; then | |
284 AC_MSG_RESULT([not found, building without perl.]) | |
285 enable_perl = no | |
286 else | |
287 PERL_LIBS=`$perlpath -MExtUtils::Embed -e ldopts 2>/dev/null |$sedpath 's/-lgdbm //'` | |
288 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-ldb //'` | |
289 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lndbm //'` | |
290 if test "$system" = "Linux"; then | |
291 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lnsl //'` | |
292 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lposix //'` | |
293 fi | |
294 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lc //'` | |
295 AC_MSG_RESULT(ok) | |
296 AC_SUBST(PERL_CFLAGS) | |
297 AC_SUBST(PERL_LIBS) | |
298 AC_DEFINE(USE_PERL) | |
299 AC_CHECK_FUNCS(Perl_eval_pv) | |
300 fi | |
301 fi | |
302 | |
303 if test "$enable_nas" = yes ; then | |
304 AC_DEFINE(NAS_SOUND) | |
305 SOUND_LIBS="-laudio -lXt" | |
306 fi | |
307 if test "$enable_esd" = yes ; then | |
308 AM_PATH_GESD | |
309 if test "$no_esd" != yes ; then | |
310 old_CFLAGS="$CFLAGS" | |
311 CFLAGS="$CFLAGS $ESD_CFLAGS" | |
312 AC_TRY_COMPILE(,[#include <esd.h>], | |
313 [ | |
314 AC_DEFINE(ESD_SOUND) | |
315 SOUND_LIBS="$SOUND_LIBS $ESD_LIBS" | |
316 ],[ | |
317 enable_esd=no | |
318 CFLAGS="$old_CFLAGS" | |
319 ]) | |
320 else | |
321 enable_esd=no | |
322 fi | |
323 fi | |
324 if test "x$enable_artsc" = "xyes"; then | |
325 AM_PATH_ARTSC | |
326 if test "x$no_artsc" != "xyes" ; then | |
327 old_CFLAGS="$CFLAGS" | |
328 CFLAGS="$CFLAGS $ARTSC_CFLAGS" | |
329 AC_TRY_COMPILE(,[#include <artsc.h>], | |
330 [ | |
331 AC_DEFINE(ARTSC_SOUND) | |
332 SOUND_LIBS="$SOUND_LIBS $ARTSC_LIBS" | |
333 ],[ | |
334 enable_artsc=no | |
335 CFLAGS="$old_CFLAGS" | |
336 ]) | |
337 else | |
338 enable_artsc=no | |
339 fi | |
340 fi | |
341 AC_SUBST(SOUND_LIBS) | |
342 | |
343 if test "$ac_cv_cygwin" = yes ; then | |
344 LDADD="$LDADD -static" | |
345 CFLAGS="$CFLAGS -Wall -g" | |
346 AC_DEFINE(DEBUG) | |
347 fi | |
348 | |
349 AC_SUBST(CFLAGS) | |
350 AC_SUBST(LDADD) | |
351 AC_SUBST(LIBS) | |
352 | |
353 if test "x$enable_multi" != "xyes" ; then | |
354 AC_DEFINE(NO_MULTI) | |
355 enable_multi=no | |
356 fi | |
357 | |
358 if test "x$enable_plugins" = "xyes" ; then | |
359 AC_DEFINE(GAIM_PLUGINS) | |
360 AM_CONDITIONAL(PLUGINS, test "x$enable_plugins" = "xyes") | |
361 else | |
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
362 AM_CONDITIONAL(PLUGINS, false) |
3174 | 363 enable_plugins=no |
364 enable_prpls=no | |
365 fi | |
366 | |
367 if test "x$enable_prpls" = "xyes" ; then | |
368 AM_CONDITIONAL(PRPLS, test "x$enable_plugins" = "xyes") | |
369 else | |
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
370 AM_CONDITIONAL(PRPLS, false) |
3174 | 371 enable_prpls=no |
372 fi | |
373 | |
374 dnl checks for icqlib | |
375 AC_CHECK_HEADERS(asm/byteorder.h byteswap.h endian.h machine/endian.h arpa/nameser_compat.h) | |
376 AC_CHECK_FUNCS(bswap_32 bswap_16) | |
377 AC_C_BIGENDIAN | |
378 | |
379 dnl checks for jabber | |
380 dnl AC_CHECK_SIZEOF(short) | |
381 AC_CHECK_FUNCS(snprintf connect) | |
382 AC_CHECK_LIB(nsl, gethostent) | |
383 | |
384 dnl checks for zephyr | |
385 AC_DEFINE(ZEPHYR_INT32, long) | |
386 AC_SUBST(KRB4_CFLAGS) | |
387 AC_SUBST(KRB4_LDFLAGS) | |
388 AC_SUBST(KRB4_LIBS) | |
389 if test "$kerberos" != "no" ; then | |
390 if test "$kerberos" != "yes" ; then | |
391 KRB4_CFLAGS="-I${kerberos}/include" | |
392 if test -d "$kerberos/include/kerberosIV" ; then | |
393 KRB4_CFLAGS="$KRB4_CFLAGS -I${kerberos}/include/kerberosIV" | |
394 fi | |
395 KRB4_LDFLAGS="-L${kerberos}/lib" | |
396 elif test -d /usr/local/include/kerberosIV ; then | |
397 KRB4_CFLAGS="-I/usr/local/include/kerberosIV" | |
398 elif test -d /usr/include/kerberosIV ; then | |
399 KRB4_CFLAGS="-I/usr/include/kerberosIV" | |
400 fi | |
401 AC_DEFINE(ZEPHYR_USES_KERBEROS) | |
402 | |
403 orig_LDFLAGS="$LDFLAGS" | |
404 LDFLAGS="$LDFLAGS $KRB4_LDFLAGS" | |
405 AC_CHECK_LIB(krb4, krb_rd_req, | |
406 [KRB4_LIBS="-lkrb4 -ldes425 -lkrb5 -lk5crypto -lcom_err"], | |
407 [AC_CHECK_LIB(krb, krb_rd_req, | |
408 [KRB4_LIBS="-lkrb -ldes"], | |
409 [AC_ERROR(Kerberos 4 libraries not found)], | |
410 -ldes)], | |
411 -ldes425 -lkrb5 -lk5crypto -lcom_err) | |
412 orig_LIBS="$LIBS" | |
413 LIBS="$LIBS $KRB4_LIBS" | |
414 AC_CHECK_FUNCS(krb_set_key krb_rd_req krb_get_lrealm) | |
415 AC_CHECK_FUNCS(krb_get_err_text krb_log) | |
416 LIBS="$orig_LIBS" | |
417 LDFLAGS="$orig_LDFLAGS" | |
418 fi | |
419 AC_CHECK_FUNCS(gethostid lrand48) | |
420 AC_CHECK_FUNCS(memcpy memmove random strchr strerror vprintf) | |
421 AC_CHECK_HEADERS(malloc.h paths.h sgtty.h stdarg.h sys/cdefs.h) | |
422 AC_CHECK_HEADERS(sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h) | |
423 AC_CHECK_HEADERS(sys/select.h sys/uio.h sys/utsname.h sys/wait.h) | |
424 AC_CHECK_HEADERS(termios.h) | |
3194 | 425 AC_VAR_TIMEZONE_EXTERNALS |
3174 | 426 |
427 AC_OUTPUT([Makefile | |
428 doc/Makefile | |
429 intl/Makefile | |
430 m4/Makefile | |
431 pixmaps/Makefile | |
432 pixmaps/protocols/Makefile | |
433 pixmaps/protocols/msn/Makefile | |
434 pixmaps/protocols/yahoo/Makefile | |
435 plugins/Makefile | |
3394
bc71eb7428ef
[gaim-migrate @ 3413]
Christian Hammond <chipx86@chipx86.com>
parents:
3391
diff
changeset
|
436 plugins/ticker/Makefile |
3174 | 437 po/Makefile.in |
438 sounds/Makefile | |
439 src/Makefile | |
440 src/protocols/Makefile | |
441 src/protocols/gg/Makefile | |
442 src/protocols/icq/Makefile | |
443 src/protocols/irc/Makefile | |
444 src/protocols/jabber/Makefile | |
445 src/protocols/msn/Makefile | |
446 src/protocols/napster/Makefile | |
447 src/protocols/oscar/Makefile | |
448 src/protocols/toc/Makefile | |
449 src/protocols/yahoo/Makefile | |
450 src/protocols/zephyr/Makefile | |
451 gaim.spec | |
452 ]) | |
453 | |
454 echo | |
455 echo $PACKAGE $VERSION | |
456 | |
457 echo | |
458 echo Allow Multiple Connections.... : $enable_multi | |
459 echo Build Protocol Plugins........ : $enable_prpls | |
460 echo Protocols to link statically.. : $STATIC_PRPLS | |
461 echo | |
462 if test "x$enable_panel" = "xyes" ; then | |
463 echo UI Library.................... : GNOME Panel | |
464 elif test "x$enable_gnome" = "xyes" ; then | |
465 echo UI Library.................... : GNOME App | |
466 elif test "x$enable_gtk2" = "xyes" ; then | |
467 echo UI Library.................... : GTK+ 2.0 | |
468 else | |
469 echo UI Library.................... : GTK+ 1.2 | |
470 fi | |
471 if test "x$enable_gtk2" = "xyes" ; then | |
472 echo Use GdkPixbuf................. : yes | |
473 else | |
474 echo Use GdkPixbuf................. : $use_pixbuf | |
475 fi | |
476 echo | |
477 echo Build with Plugin support..... : $enable_plugins | |
478 echo Build with Perl support....... : $enable_perl | |
479 echo | |
480 echo Use XScreenSaver Extension.... : $enable_xss | |
481 echo | |
482 echo Build with ESD................ : $enable_esd | |
483 echo Build with NAS................ : $enable_nas | |
484 echo Build with ArtsC.............. : $enable_artsc | |
485 echo | |
486 echo Print debugging messages...... : $enable_debug | |
487 echo | |
488 eval eval echo Gaim will be installed in $bindir. | |
489 if test "x$gaimpath" != "x" ; then | |
490 echo Warning: You have an old copy of gaim at $gaimpath. | |
491 fi | |
492 echo | |
493 echo configure complete, now type \'make\' | |
494 echo |