Mercurial > pidgin
annotate configure.ac @ 4436:83260179de90
[gaim-migrate @ 4711]
This will let you specify a different server to actually connect to for
jabber. Screenname should still take the form user@server/resource like
it always has.
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Mon, 27 Jan 2003 21:11:55 +0000 |
parents | 801830dec409 |
children | 58c3c6cfd537 |
rev | line source |
---|---|
2129 | 1 dnl Process this file with autoconf to produce a configure script. |
2 AC_INIT(src/aim.c) | |
3 AM_CONFIG_HEADER(config.h) | |
4209 | 4 AM_INIT_AUTOMAKE([gaim], [0.60cvs]) |
3174 | 5 |
6 AC_PREREQ([2.50]) | |
2129 | 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:
3391
diff
changeset
|
19 AM_GNU_GETTEXT_VERSION(0.10.40) |
2129 | 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 | |
4424 | 37 AC_CHECK_FUNCS(strdup strstr atexit) |
2129 | 38 dnl Checks for getopt in standard library |
3174 | 39 AC_CHECK_FUNCS(getopt_long , , |
40 AC_LIBOBJ(getopt) | |
41 AC_LIBOBJ(getopt1)) | |
42 | |
2129 | 43 |
2959 | 44 dnl Check for inet_aton |
45 AC_CHECK_FUNC(inet_aton, , [AC_CHECK_LIB(resolv, inet_aton, , | |
46 [AC_ERROR(inet_aton not found)])]) | |
4424 | 47 AC_CHECK_LIB(nsl, gethostent) |
48 AC_CHECK_FUNC(socket, , | |
49 [AC_CHECK_LIB(socket, socket, , [AC_ERROR([socket not found])])]) | |
50 dnl If all goes well, by this point the previous two checks will have | |
51 dnl pulled in -lsocket and -lnsl if we need them. | |
52 AC_CHECK_FUNC(getaddrinfo, [AC_DEFINE([HAVE_GETADDRINFO], [1], | |
53 [Define to 1 if you have the getaddrinfo function.])], | |
54 [AC_CHECK_LIB(socket, getaddrinfo, | |
55 [AC_DEFINE([HAVE_GETADDRINFO]) LIBS="-lsocket -lsnl $LIBS"], , , -lnsl)]) | |
2959 | 56 |
3150 | 57 dnl Check for socklen_t (in Unix98) |
58 AC_MSG_CHECKING(for socklen_t) | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
59 AC_TRY_COMPILE([ |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
60 #include <sys/types.h> |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
61 #include <sys/socket.h> |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
62 socklen_t x; |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
63 ], [], |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
64 [ |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
65 AC_MSG_RESULT(yes) |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
66 ], [ |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
67 AC_TRY_COMPILE([ |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
68 #include <sys/types.h> |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
69 #include <sys/socket.h> |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
70 int accept(int, struct sockaddr *, size_t *); |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
71 ], [], [ |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
72 AC_MSG_RESULT(size_t) |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
73 AC_DEFINE(socklen_t, size_t, [socklen_t size]) |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
74 ], [ |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
75 AC_MSG_RESULT(int) |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
76 AC_DEFINE(socklen_t, int, [socklen_t size]) |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
77 ]) |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
78 ]) |
3150 | 79 |
2129 | 80 dnl This is a bad, bad hack. I am a bad, bad man. |
4213
a9f5247a1840
[gaim-migrate @ 4450]
Christian Hammond <chipx86@chipx86.com>
parents:
4209
diff
changeset
|
81 CFLAGS="$CFLAGS -I/opt/include -I\$(top_srcdir)" |
2129 | 82 |
83 AC_ARG_ENABLE(distrib,,,enable_distrib=no) | |
84 AM_CONDITIONAL(DISTRIB, test "x$enable_distrib" = "xyes") | |
85 AC_ARG_ENABLE(multi, [ --disable-multi disable multiple connections],,enable_multi=yes) | |
86 AC_ARG_ENABLE(prpls, [ --disable-prpls don't build dynamic protocol plugins],,enable_prpls=yes) | |
3572 | 87 AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="") |
2129 | 88 if test "x$STATIC_PRPLS" = "xall" ; then |
3382 | 89 STATIC_PRPLS="gg irc jabber msn napster oscar toc yahoo zephyr" |
2129 | 90 fi |
91 AC_SUBST(STATIC_PRPLS) | |
92 STATIC_LINK_LIBS= | |
93 extern_init= | |
94 load_proto= | |
95 for i in $STATIC_PRPLS ; do | |
96 STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a" | |
97 extern_init="$extern_init extern void ${i}_init(struct prpl *);" | |
3572 | 98 load_proto="$load_proto load_protocol(${i}_init);" |
2129 | 99 case $i in |
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
100 gg) static_gg=yes ;; |
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
101 irc) static_irc=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
102 jabber) static_jabber=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
103 msn) static_msn=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
104 napster) static_napster=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
105 oscar) static_oscar=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
106 toc) static_toc=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
107 yahoo) static_yahoo=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
108 zephyr) static_zephyr=yes ;; |
2129 | 109 *) echo "Invalid static protocol $i!!" ; exit ;; |
110 esac | |
111 done | |
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
112 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes") |
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
113 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
114 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
115 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
116 AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
117 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
118 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
119 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
120 AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes") |
2129 | 121 AC_SUBST(STATIC_LINK_LIBS) |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
122 AC_DEFINE_UNQUOTED(STATIC_PROTO_INIT, $extern_init void static_proto_init() { $load_proto }, |
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
123 [Loads static protocol plugin module initialization functions.]) |
2129 | 124 |
4430 | 125 AC_ARG_ENABLE(esd, [ --disable-esd Turn off ESD (default=auto)],,enable_esd=yes) |
126 AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],,enable_nas=no) | |
127 AC_ARG_ENABLE(artsc, [ --disable-artsc Turn off ArtsC (default=auto)],,enable_artsc=yes) | |
128 | |
2129 | 129 AC_ARG_ENABLE(plugins, [ --disable-plugins compile without plugin support],,enable_plugins=yes) |
130 AC_ARG_ENABLE(perl, [ --disable-perl compile without perl scripting],,enable_perl=yes) | |
3802 | 131 AC_ARG_ENABLE(gtkspell, [ --disable-gtkspell compile without GtkSpell automatic spell checking],,enable_gtkspell=yes) |
2430
0ba75351a01b
[gaim-migrate @ 2443]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2416
diff
changeset
|
132 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no) |
2129 | 133 AC_ARG_ENABLE(screensaver, [ --disable-screensaver compile without X screensaver extension],,enable_xss=yes) |
4157 | 134 AC_ARG_ENABLE(sm, [ --disable-sm compile without X session management support],,enable_sm=yes) |
2129 | 135 AC_ARG_WITH(krb4, [ --with-krb4=PREFIX Compile Zephyr plugin with Kerberos 4 support],kerberos="$withval",kerberos="no") |
136 | |
137 if test "$enable_debug" = yes ; then | |
2541
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2540
diff
changeset
|
138 CFLAGS="$CFLAGS -Wall -g3" |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
139 AC_DEFINE(DEBUG, 1, [Define if debugging is enabled.]) |
2129 | 140 fi |
141 | |
3551 | 142 AM_PATH_GLIB_2_0(2.0.0,,AC_MSG_ERROR([ |
3425 | 143 *** GLib 2.0 is required to build Gaim; please make sure you have the GLib |
2129 | 144 *** development headers installed. The latest version of GLib is |
145 *** always available at http://www.gtk.org/.])) | |
3551 | 146 AM_PATH_GTK_2_0(2.0.0,,AC_MSG_ERROR([ |
3425 | 147 *** GTK+ 2.0 is required to build Gaim; please make sure you have the GTK+ |
2129 | 148 *** development headers installed. The latest version of GTK+ is |
2730
a9aabf1170f1
[gaim-migrate @ 2743]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2726
diff
changeset
|
149 *** always available at http://www.gtk.org/.])) |
2129 | 150 |
3425 | 151 AC_PATH_PROG(gaimpath, gaim) |
152 CFLAGS="$CFLAGS $GTK_CFLAGS -DGTK_ENABLE_BROKEN" | |
2129 | 153 |
4157 | 154 AC_PATH_X |
155 | |
2129 | 156 dnl Check for XScreenSaver |
157 if test "x$enable_xss" = "xyes" ; then | |
2182
665e1dbeb8da
[gaim-migrate @ 2192]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2181
diff
changeset
|
158 old_LIBS="$LIBS" |
3425 | 159 LIBS="$LIBS $GTK_LIBS -L$x_libraries" |
2129 | 160 XSS_LIBS="no" |
161 XSS_HEADERS="no" | |
3282 | 162 AC_CHECK_LIB(Xext, XScreenSaverRegister,[XSS_LIBS="-L$x_libraries"],[],[-lX11 -lXext -lm]) |
163 AC_CHECK_LIB(Xss, XScreenSaverRegister,[XSS_LIBS="-L$x_libraries -lXss"],[],[-lX11 -lXext -lm]) | |
2129 | 164 if test \! "$XSS_LIBS" = "no"; then |
165 AC_TRY_COMPILE([ | |
166 #include <X11/extensions/scrnsaver.h> | |
167 ],[],[enable_xss=no],[ | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
168 AC_DEFINE(USE_SCREENSAVER, 1, [Define if we're using XScreenSaver.]) |
2129 | 169 ]) |
170 else | |
171 XSS_LIBS="" | |
172 enable_xss=no | |
173 fi | |
2182
665e1dbeb8da
[gaim-migrate @ 2192]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2181
diff
changeset
|
174 LIBS="$old_LIBS" |
2129 | 175 else |
176 XSS_LIBS="" | |
177 enable_xss=no | |
178 fi | |
179 AC_SUBST(XSS_LIBS) | |
180 | |
181 | |
4157 | 182 dnl Check for X session management libs |
183 if test "x$enable_sm" = "xyes"; then | |
184 enable_sm=no | |
185 AC_CHECK_LIB(SM, SmcSaveYourselfDone, found_sm_lib=true, , [-L$x_libraries -lICE]) | |
186 if test "$found_sm_lib" = "true"; then | |
187 AC_CHECK_HEADERS(X11/SM/SMlib.h, SM_LIBS="-L$x_libraries -lSM -lICE" enable_sm=yes) | |
188 fi | |
189 else | |
190 SM_LIBS="" | |
191 enable_sm=no | |
192 fi | |
193 AC_SUBST(SM_LIBS) | |
194 if test "$enable_sm" = "yes"; then | |
195 AC_DEFINE(USE_SM, 1, [Define if we're using X Session Management.]) | |
196 fi | |
197 | |
198 | |
3203 | 199 AC_DEFUN(GC_TM_GMTOFF, |
200 [AC_REQUIRE([AC_STRUCT_TM])dnl | |
201 AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff, | |
202 [AC_TRY_COMPILE([#include <sys/types.h> | |
203 #include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;], | |
204 ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)]) | |
205 if test "$ac_cv_struct_tm_gmtoff" = yes; then | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
206 AC_DEFINE(HAVE_TM_GMTOFF, 1, [tm_gmtoff is available.]) |
3203 | 207 fi |
208 ]) | |
209 | |
210 GC_TM_GMTOFF | |
211 | |
212 | |
2129 | 213 |
214 dnl This was taken straight from X-Chat. | |
215 dnl X-Chat is the greatest application ever, not only | |
216 dnl because it's a rocking IRC client but also because | |
217 dnl it's very easy to learn from. | |
218 if test "$enable_perl" = yes ; then | |
219 AC_PATH_PROG(perlpath, perl) | |
220 AC_MSG_CHECKING(for Perl compile flags) | |
221 PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null` | |
222 if test "_$PERL_CFLAGS" = _ ; then | |
223 AC_MSG_RESULT([not found, building without perl.]) | |
224 enable_perl = no | |
225 else | |
226 PERL_LIBS=`$perlpath -MExtUtils::Embed -e ldopts 2>/dev/null |$sedpath 's/-lgdbm //'` | |
227 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-ldb //'` | |
228 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lndbm //'` | |
229 if test "$system" = "Linux"; then | |
230 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lnsl //'` | |
231 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lposix //'` | |
232 fi | |
233 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lc //'` | |
234 AC_MSG_RESULT(ok) | |
3931 | 235 |
236 oldLIBS=$LIBS | |
237 LIBS="$LIBS $PERL_LIBS" | |
238 AC_MSG_CHECKING(for libperl) | |
239 AC_CHECK_FUNCS(perl_run, [], enable_perl=no) | |
240 LIBS=$oldLIBS | |
2129 | 241 fi |
242 fi | |
243 | |
3931 | 244 if test "$enable_perl" = yes ; then |
245 AC_SUBST(PERL_CFLAGS) | |
246 AC_SUBST(PERL_LIBS) | |
247 AC_DEFINE(USE_PERL, 1, [Define if Perl is enabled.]) | |
248 | |
249 dnl This is almost definitely wrong, but in case there's | |
250 dnl something I'm missing, I'll leave it in. | |
251 AC_CHECK_FUNCS(Perl_eval_pv) | |
4298 | 252 |
253 AC_MSG_CHECKING(for old perl) | |
254 PERL_OLD=`$perlpath -e 'if($]<5.006){printf"yes\n";}else{printf"no\n";}'` | |
255 | |
256 if test "$PERL_OLD" = "yes"; then | |
257 AC_DEFINE(OLD_PERL, 1, [Define if old perl is installed.]) | |
258 AC_MSG_RESULT(yes) | |
259 else | |
260 AC_MSG_RESULT(no) | |
261 fi | |
3931 | 262 else |
263 PERL_CFLAGS= | |
264 PERL_LIBS= | |
265 fi | |
266 | |
3802 | 267 dnl Thanks, Evan. |
268 if test "$enable_gtkspell" = yes ; then | |
269 PKG_CHECK_MODULES(GTKSPELL, gtkspell-2.0 >= 2.0.2, , enable_gtkspell=no) | |
270 if test "$enable_gtkspell" = "yes" ; then | |
271 AC_SUBST(GTKSPELL_CFLAGS) | |
272 AC_SUBST(GTKSPELL_LIBS) | |
273 AC_DEFINE(USE_GTKSPELL,,[do we have gtkspell?]) | |
274 fi | |
275 fi | |
276 | |
4430 | 277 if test "$enable_nas" = yes ; then |
278 AC_DEFINE(NAS_SOUND, 1, [Define if we have NAS sound support.]) | |
279 SOUND_LIBS="-laudio -lXt" | |
280 fi | |
281 if test "$enable_esd" = yes ; then | |
282 AM_PATH_GESD | |
283 if test "$no_esd" != yes ; then | |
284 old_CFLAGS="$CFLAGS" | |
285 CFLAGS="$CFLAGS $ESD_CFLAGS" | |
286 AC_TRY_COMPILE(,[#include <esd.h>], | |
287 [ | |
288 AC_DEFINE(ESD_SOUND, 1, [Define if we have ESD sound support.]) | |
289 SOUND_LIBS="$SOUND_LIBS $ESD_LIBS" | |
290 ],[ | |
291 enable_esd=no | |
292 CFLAGS="$old_CFLAGS" | |
293 ]) | |
294 else | |
295 enable_esd=no | |
296 fi | |
297 fi | |
298 if test "x$enable_artsc" = "xyes"; then | |
299 AM_PATH_ARTSC | |
300 if test "x$no_artsc" != "xyes" ; then | |
301 old_CFLAGS="$CFLAGS" | |
302 CFLAGS="$CFLAGS $ARTSC_CFLAGS" | |
303 AC_TRY_COMPILE(,[#include <artsc.h>], | |
304 [ | |
305 AC_DEFINE(ARTSC_SOUND, 1, [Define if we have artsc sound support.]) | |
306 SOUND_LIBS="$SOUND_LIBS $ARTSC_LIBS" | |
307 ],[ | |
308 enable_artsc=no | |
309 CFLAGS="$old_CFLAGS" | |
310 ]) | |
311 else | |
312 enable_artsc=no | |
4429 | 313 fi |
2129 | 314 fi |
4430 | 315 AC_SUBST(SOUND_LIBS) |
2129 | 316 |
317 if test "$ac_cv_cygwin" = yes ; then | |
318 LDADD="$LDADD -static" | |
319 CFLAGS="$CFLAGS -Wall -g" | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
320 AC_DEFINE(DEBUG, 1, [Define if debugging is enabled.]) |
2129 | 321 fi |
322 | |
323 AC_SUBST(CFLAGS) | |
324 AC_SUBST(LDADD) | |
325 AC_SUBST(LIBS) | |
326 | |
327 if test "x$enable_multi" != "xyes" ; then | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
328 AC_DEFINE(NO_MULTI, 1, [Define if multiple connections is disabled.]) |
2129 | 329 enable_multi=no |
330 fi | |
331 | |
332 if test "x$enable_plugins" = "xyes" ; then | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
333 AC_DEFINE(GAIM_PLUGINS, 1, [Define if plugins are enabled.]) |
2129 | 334 AM_CONDITIONAL(PLUGINS, test "x$enable_plugins" = "xyes") |
335 else | |
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
336 AM_CONDITIONAL(PLUGINS, false) |
2129 | 337 enable_plugins=no |
338 enable_prpls=no | |
339 fi | |
340 | |
341 if test "x$enable_prpls" = "xyes" ; then | |
342 AM_CONDITIONAL(PRPLS, test "x$enable_plugins" = "xyes") | |
343 else | |
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
344 AM_CONDITIONAL(PRPLS, false) |
2129 | 345 enable_prpls=no |
346 fi | |
347 | |
348 dnl checks for icqlib | |
349 AC_CHECK_HEADERS(asm/byteorder.h byteswap.h endian.h machine/endian.h arpa/nameser_compat.h) | |
350 AC_CHECK_FUNCS(bswap_32 bswap_16) | |
351 AC_C_BIGENDIAN | |
352 | |
353 dnl checks for jabber | |
354 dnl AC_CHECK_SIZEOF(short) | |
355 AC_CHECK_FUNCS(snprintf connect) | |
356 | |
357 dnl checks for zephyr | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
358 AC_DEFINE(ZEPHYR_INT32, long, [Size of an int32.]) |
2129 | 359 AC_SUBST(KRB4_CFLAGS) |
360 AC_SUBST(KRB4_LDFLAGS) | |
361 AC_SUBST(KRB4_LIBS) | |
362 if test "$kerberos" != "no" ; then | |
363 if test "$kerberos" != "yes" ; then | |
364 KRB4_CFLAGS="-I${kerberos}/include" | |
365 if test -d "$kerberos/include/kerberosIV" ; then | |
366 KRB4_CFLAGS="$KRB4_CFLAGS -I${kerberos}/include/kerberosIV" | |
367 fi | |
368 KRB4_LDFLAGS="-L${kerberos}/lib" | |
369 elif test -d /usr/local/include/kerberosIV ; then | |
370 KRB4_CFLAGS="-I/usr/local/include/kerberosIV" | |
371 elif test -d /usr/include/kerberosIV ; then | |
372 KRB4_CFLAGS="-I/usr/include/kerberosIV" | |
373 fi | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
374 AC_DEFINE(ZEPHYR_USES_KERBEROS, 1, [Define if kerberos should be used in Zephyr.]) |
2129 | 375 |
376 orig_LDFLAGS="$LDFLAGS" | |
377 LDFLAGS="$LDFLAGS $KRB4_LDFLAGS" | |
378 AC_CHECK_LIB(krb4, krb_rd_req, | |
379 [KRB4_LIBS="-lkrb4 -ldes425 -lkrb5 -lk5crypto -lcom_err"], | |
380 [AC_CHECK_LIB(krb, krb_rd_req, | |
381 [KRB4_LIBS="-lkrb -ldes"], | |
382 [AC_ERROR(Kerberos 4 libraries not found)], | |
383 -ldes)], | |
384 -ldes425 -lkrb5 -lk5crypto -lcom_err) | |
385 orig_LIBS="$LIBS" | |
386 LIBS="$LIBS $KRB4_LIBS" | |
387 AC_CHECK_FUNCS(krb_set_key krb_rd_req krb_get_lrealm) | |
388 AC_CHECK_FUNCS(krb_get_err_text krb_log) | |
389 LIBS="$orig_LIBS" | |
390 LDFLAGS="$orig_LDFLAGS" | |
391 fi | |
392 AC_CHECK_FUNCS(gethostid lrand48) | |
393 AC_CHECK_FUNCS(memcpy memmove random strchr strerror vprintf) | |
394 AC_CHECK_HEADERS(malloc.h paths.h sgtty.h stdarg.h sys/cdefs.h) | |
395 AC_CHECK_HEADERS(sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h) | |
396 AC_CHECK_HEADERS(sys/select.h sys/uio.h sys/utsname.h sys/wait.h) | |
397 AC_CHECK_HEADERS(termios.h) | |
3194 | 398 AC_VAR_TIMEZONE_EXTERNALS |
2129 | 399 |
400 AC_OUTPUT([Makefile | |
401 doc/Makefile | |
402 intl/Makefile | |
403 m4/Makefile | |
404 pixmaps/Makefile | |
3039 | 405 pixmaps/protocols/Makefile |
406 pixmaps/protocols/msn/Makefile | |
407 pixmaps/protocols/yahoo/Makefile | |
3492 | 408 pixmaps/protocols/oscar/Makefile |
3586 | 409 pixmaps/protocols/napster/Makefile |
410 pixmaps/protocols/jabber/Makefile | |
411 pixmaps/protocols/irc/Makefile | |
412 pixmaps/protocols/icq/Makefile | |
413 pixmaps/protocols/gg/Makefile | |
4252 | 414 pixmaps/smileys/Makefile |
415 pixmaps/smileys/default/Makefile | |
2129 | 416 plugins/Makefile |
3510 | 417 plugins/docklet/Makefile |
4390
16540914c963
[gaim-migrate @ 4656]
Christian Hammond <chipx86@chipx86.com>
parents:
4298
diff
changeset
|
418 plugins/gestures/Makefile |
3391 | 419 plugins/ticker/Makefile |
2129 | 420 po/Makefile.in |
421 sounds/Makefile | |
422 src/Makefile | |
423 src/protocols/Makefile | |
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
424 src/protocols/gg/Makefile |
2129 | 425 src/protocols/icq/Makefile |
426 src/protocols/irc/Makefile | |
427 src/protocols/jabber/Makefile | |
428 src/protocols/msn/Makefile | |
429 src/protocols/napster/Makefile | |
430 src/protocols/oscar/Makefile | |
431 src/protocols/toc/Makefile | |
432 src/protocols/yahoo/Makefile | |
433 src/protocols/zephyr/Makefile | |
434 gaim.spec | |
435 ]) | |
436 | |
437 echo | |
438 echo $PACKAGE $VERSION | |
439 | |
440 echo | |
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
441 echo Allow Multiple Connections.... : $enable_multi |
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
442 echo Build Protocol Plugins........ : $enable_prpls |
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
443 echo Protocols to link statically.. : $STATIC_PRPLS |
2129 | 444 echo |
4430 | 445 echo UI Library.................... : GTK 2.0 |
2129 | 446 echo |
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
447 echo Build with Plugin support..... : $enable_plugins |
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
448 echo Build with Perl support....... : $enable_perl |
4430 | 449 echo |
450 echo Build with GtkSpell............: $enable_gtkspell | |
3802 | 451 echo |
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
452 echo Use XScreenSaver Extension.... : $enable_xss |
4157 | 453 echo Use X Session Management...... : $enable_sm |
2129 | 454 echo |
4430 | 455 echo Build with ESD................ : $enable_esd |
456 echo Build with NAS................ : $enable_nas | |
457 echo Build with ArtsC.............. : $enable_artsc | |
458 echo | |
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
459 echo Print debugging messages...... : $enable_debug |
2129 | 460 echo |
2452
824e1afefdd3
[gaim-migrate @ 2465]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2436
diff
changeset
|
461 eval eval echo Gaim will be installed in $bindir. |
2129 | 462 if test "x$gaimpath" != "x" ; then |
463 echo Warning: You have an old copy of gaim at $gaimpath. | |
464 fi | |
465 echo | |
466 echo configure complete, now type \'make\' | |
467 echo |