Mercurial > pidgin
annotate configure.ac @ 6700:57161e3abbb5
[gaim-migrate @ 7226]
This certainly doesn't work, and possibly doesn't load, but it *does*
compile, which means I can now fix it in my own sweet time.
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Tue, 02 Sep 2003 04:28:34 +0000 |
parents | c08d32c3213e |
children | b7e113a59b51 |
rev | line source |
---|---|
2129 | 1 dnl Process this file with autoconf to produce a configure script. |
4489 | 2 AC_INIT(src/main.c) |
2129 | 3 AM_CONFIG_HEADER(config.h) |
6685 | 4 AM_INIT_AUTOMAKE([gaim], [0.68]) |
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 | |
6510 | 18 ALL_LINGUAS="am bg ca cs da de es fi fr he hi hu it ja ko nl no pl pt_BR ro ru sk sr sr@Latn 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 | |
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
22 dnl we don't use autobreak on cygwin!! |
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
23 dnl AC_CYGWIN |
2129 | 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 AC_ARG_ENABLE(distrib,,,enable_distrib=no) |
81 AM_CONDITIONAL(DISTRIB, test "x$enable_distrib" = "xyes") | |
82 AC_ARG_ENABLE(multi, [ --disable-multi disable multiple connections],,enable_multi=yes) | |
83 AC_ARG_ENABLE(prpls, [ --disable-prpls don't build dynamic protocol plugins],,enable_prpls=yes) | |
3572 | 84 AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="") |
2129 | 85 if test "x$STATIC_PRPLS" = "xall" ; then |
3382 | 86 STATIC_PRPLS="gg irc jabber msn napster oscar toc yahoo zephyr" |
2129 | 87 fi |
88 AC_SUBST(STATIC_PRPLS) | |
89 STATIC_LINK_LIBS= | |
90 extern_init= | |
91 load_proto= | |
92 for i in $STATIC_PRPLS ; do | |
93 STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a" | |
5449 | 94 extern_init="$extern_init extern gboolean gaim_init_${i}_plugin();" |
95 load_proto="$load_proto gaim_init_${i}_plugin();" | |
2129 | 96 case $i in |
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
97 gg) static_gg=yes ;; |
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
98 irc) static_irc=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
99 jabber) static_jabber=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
100 msn) static_msn=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
101 napster) static_napster=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
102 oscar) static_oscar=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
103 toc) static_toc=yes ;; |
5730
99ae9bd8b5fa
[gaim-migrate @ 6154]
Christian Hammond <chipx86@chipx86.com>
parents:
5719
diff
changeset
|
104 trepia) static_trepia=yes ;; |
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
105 yahoo) static_yahoo=yes ;; |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
106 zephyr) static_zephyr=yes ;; |
2129 | 107 *) echo "Invalid static protocol $i!!" ; exit ;; |
108 esac | |
109 done | |
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
110 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes") |
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
111 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
112 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
113 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
114 AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
115 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
116 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") |
5730
99ae9bd8b5fa
[gaim-migrate @ 6154]
Christian Hammond <chipx86@chipx86.com>
parents:
5719
diff
changeset
|
117 AM_CONDITIONAL(STATIC_TREPIA, test "x$static_trepia" = "xyes") |
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
118 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") |
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
119 AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes") |
2129 | 120 AC_SUBST(STATIC_LINK_LIBS) |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
121 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
|
122 [Loads static protocol plugin module initialization functions.]) |
2129 | 123 |
4561 | 124 AC_ARG_ENABLE(audio, [ --disable-audio compile without libao/libaudiofile for sound playing],,enable_audio=yes) |
4581 | 125 AC_ARG_ENABLE(nas, [ --enable-nas enable NAS (Network Audio System) support],,enable_nas=no) |
2129 | 126 AC_ARG_ENABLE(plugins, [ --disable-plugins compile without plugin support],,enable_plugins=yes) |
127 AC_ARG_ENABLE(perl, [ --disable-perl compile without perl scripting],,enable_perl=yes) | |
6694 | 128 AC_ARG_ENABLE(tcl, [ --disable-tcl compile without Tcl scripting],,enable_tcl=yes) |
129 AC_ARG_WITH(tclconfig, [ --with-tclconfig=DIR directory containing tclConfig.sh]) | |
130 AC_ARG_ENABLE(tk, [ --disable-tk compile without Tcl support for Tk],,enable_tk=yes) | |
131 AC_ARG_WITH(tkconfig, [ --with-tkconfig=DIR directory containing tkConfig.sh]) | |
3802 | 132 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
|
133 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no) |
2129 | 134 AC_ARG_ENABLE(screensaver, [ --disable-screensaver compile without X screensaver extension],,enable_xss=yes) |
4157 | 135 AC_ARG_ENABLE(sm, [ --disable-sm compile without X session management support],,enable_sm=yes) |
2129 | 136 AC_ARG_WITH(krb4, [ --with-krb4=PREFIX Compile Zephyr plugin with Kerberos 4 support],kerberos="$withval",kerberos="no") |
137 | |
138 if test "$enable_debug" = yes ; then | |
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
139 DEBUG_CFLAGS="$DEBUG_CFLAGS -Wall -g3 -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED" |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
140 AC_DEFINE(DEBUG, 1, [Define if debugging is enabled.]) |
2129 | 141 fi |
142 | |
3551 | 143 AM_PATH_GLIB_2_0(2.0.0,,AC_MSG_ERROR([ |
3425 | 144 *** GLib 2.0 is required to build Gaim; please make sure you have the GLib |
2129 | 145 *** development headers installed. The latest version of GLib is |
146 *** always available at http://www.gtk.org/.])) | |
3551 | 147 AM_PATH_GTK_2_0(2.0.0,,AC_MSG_ERROR([ |
3425 | 148 *** GTK+ 2.0 is required to build Gaim; please make sure you have the GTK+ |
2129 | 149 *** development headers installed. The latest version of GTK+ is |
2730
a9aabf1170f1
[gaim-migrate @ 2743]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2726
diff
changeset
|
150 *** always available at http://www.gtk.org/.])) |
2129 | 151 |
3425 | 152 AC_PATH_PROG(gaimpath, gaim) |
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
153 AC_SUBST(GTK_CFLAGS) |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6360
diff
changeset
|
154 AC_SUBST(GLIB_CFLAGS) |
2129 | 155 |
4884 | 156 AC_PATH_XTRA |
5344 | 157 # We can't assume that $x_libraries will be set, because autoconf does not |
158 # set it in the case when the X libraries are in a standard place. | |
159 # Ditto for $x_includes | |
160 if test X"$x_libraries" = X"" ; then | |
161 x_libpath_add= | |
162 else | |
163 x_libpath_add="-L$x_libraries" | |
164 fi | |
165 if test X"$x_includes" = X"" ; then | |
166 x_incpath_add= | |
167 else | |
168 x_incpath_add="-I$x_includes" | |
169 fi | |
4157 | 170 |
2129 | 171 dnl Check for XScreenSaver |
172 if test "x$enable_xss" = "xyes" ; then | |
2182
665e1dbeb8da
[gaim-migrate @ 2192]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2181
diff
changeset
|
173 old_LIBS="$LIBS" |
5344 | 174 LIBS="$LIBS $GTK_LIBS $x_libpath_add" |
2129 | 175 XSS_LIBS="no" |
176 XSS_HEADERS="no" | |
4884 | 177 AC_CHECK_LIB(Xext, XScreenSaverRegister,[XSS_LIBS="$X_LIBS $X_PRE_LIBS -lX11 -lXext $X_EXTRA_LIBS"],[],[-lX11 -lXext -lm]) |
178 AC_CHECK_LIB(Xss, XScreenSaverRegister,[XSS_LIBS="$X_LIBS $X_PRE_LIBS -lX11 -lXext $X_LIBS $X_EXTRA_LIBS -lXss"],[],[-lX11 -lXext -lm]) | |
2129 | 179 if test \! "$XSS_LIBS" = "no"; then |
180 AC_TRY_COMPILE([ | |
4884 | 181 #include <X11/Xlib.h> |
2129 | 182 #include <X11/extensions/scrnsaver.h> |
4884 | 183 ],[],[ |
184 AC_DEFINE(USE_SCREENSAVER, 1, [Define if we're using XScreenSaver.])],[enable_xss=no] | |
185 ) | |
2129 | 186 else |
187 XSS_LIBS="" | |
188 enable_xss=no | |
189 fi | |
2182
665e1dbeb8da
[gaim-migrate @ 2192]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2181
diff
changeset
|
190 LIBS="$old_LIBS" |
2129 | 191 else |
192 XSS_LIBS="" | |
193 enable_xss=no | |
194 fi | |
195 AC_SUBST(XSS_LIBS) | |
196 | |
197 | |
4157 | 198 dnl Check for X session management libs |
199 if test "x$enable_sm" = "xyes"; then | |
200 enable_sm=no | |
5344 | 201 AC_CHECK_LIB(SM, SmcSaveYourselfDone, found_sm_lib=true, , [$x_libpath_add -lICE]) |
4157 | 202 if test "$found_sm_lib" = "true"; then |
5344 | 203 AC_CHECK_HEADERS(X11/SM/SMlib.h, SM_LIBS="$x_libpath_add -lSM -lICE" enable_sm=yes) |
4157 | 204 fi |
205 else | |
206 SM_LIBS="" | |
207 enable_sm=no | |
208 fi | |
209 AC_SUBST(SM_LIBS) | |
210 if test "$enable_sm" = "yes"; then | |
211 AC_DEFINE(USE_SM, 1, [Define if we're using X Session Management.]) | |
212 fi | |
213 | |
214 | |
3203 | 215 AC_DEFUN(GC_TM_GMTOFF, |
216 [AC_REQUIRE([AC_STRUCT_TM])dnl | |
217 AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff, | |
218 [AC_TRY_COMPILE([#include <sys/types.h> | |
219 #include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;], | |
220 ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)]) | |
221 if test "$ac_cv_struct_tm_gmtoff" = yes; then | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
222 AC_DEFINE(HAVE_TM_GMTOFF, 1, [tm_gmtoff is available.]) |
3203 | 223 fi |
224 ]) | |
225 | |
226 GC_TM_GMTOFF | |
227 | |
228 | |
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
229 dnl |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
230 dnl Perl stuff. Yeah. |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
231 dnl |
2129 | 232 if test "$enable_perl" = yes ; then |
233 AC_PATH_PROG(perlpath, perl) | |
234 AC_MSG_CHECKING(for Perl compile flags) | |
235 PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null` | |
236 if test "_$PERL_CFLAGS" = _ ; then | |
237 AC_MSG_RESULT([not found, building without perl.]) | |
238 enable_perl = no | |
239 else | |
240 PERL_LIBS=`$perlpath -MExtUtils::Embed -e ldopts 2>/dev/null |$sedpath 's/-lgdbm //'` | |
241 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-ldb //'` | |
242 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lndbm //'` | |
243 if test "$system" = "Linux"; then | |
244 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lnsl //'` | |
245 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lposix //'` | |
246 fi | |
247 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lc //'` | |
248 AC_MSG_RESULT(ok) | |
3931 | 249 |
250 oldLIBS=$LIBS | |
251 LIBS="$LIBS $PERL_LIBS" | |
252 AC_MSG_CHECKING(for libperl) | |
253 AC_CHECK_FUNCS(perl_run, [], enable_perl=no) | |
254 LIBS=$oldLIBS | |
2129 | 255 fi |
256 fi | |
257 | |
3931 | 258 if test "$enable_perl" = yes ; then |
259 AC_SUBST(PERL_CFLAGS) | |
260 AC_SUBST(PERL_LIBS) | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5193
diff
changeset
|
261 AM_CONDITIONAL(USE_PERL, test "x$enable_perl" = "xyes") |
3931 | 262 |
263 dnl This is almost definitely wrong, but in case there's | |
264 dnl something I'm missing, I'll leave it in. | |
265 AC_CHECK_FUNCS(Perl_eval_pv) | |
4298 | 266 |
267 AC_MSG_CHECKING(for old perl) | |
268 PERL_OLD=`$perlpath -e 'if($]<5.006){printf"yes\n";}else{printf"no\n";}'` | |
269 | |
270 if test "$PERL_OLD" = "yes"; then | |
271 AC_DEFINE(OLD_PERL, 1, [Define if old perl is installed.]) | |
272 AC_MSG_RESULT(yes) | |
273 else | |
274 AC_MSG_RESULT(no) | |
275 fi | |
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
276 |
6586
c3388f361bdf
[gaim-migrate @ 7108]
Christian Hammond <chipx86@chipx86.com>
parents:
6535
diff
changeset
|
277 prefix=`eval echo $prefix` |
c3388f361bdf
[gaim-migrate @ 7108]
Christian Hammond <chipx86@chipx86.com>
parents:
6535
diff
changeset
|
278 PERL_MM_PARAMS="INSTALLDIRS=perl PREFIX=$prefix" |
c3388f361bdf
[gaim-migrate @ 7108]
Christian Hammond <chipx86@chipx86.com>
parents:
6535
diff
changeset
|
279 |
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
280 AC_ARG_WITH(perl-lib, |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
281 [ --with-perl-lib=[site|vendor|DIR] Specify where to install the |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
282 Perl libraries for gaim. Default is site.], |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
283 [ |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
284 if test "x$withval" = xsite; then |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
285 PERL_MM_PARAMS="" |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
286 elif test "x$withval" = xvendor; then |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
287 if test -z "`$perlpath -v | grep '5\.0'`"; then |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
288 PERL_MM_PARAMS="INSTALLDIRS=vendor" |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
289 else |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
290 PERL_MM_PARAMS="INSTALLDIRS=perl PREFIX=`perl -e 'use Config; print $Config{prefix}'`" |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
291 fi |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
292 else |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
293 PERL_MM_PARAMS="INSTALLDIRS=perl LIB=$withval" |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
294 fi |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
295 ]) |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
296 |
6586
c3388f361bdf
[gaim-migrate @ 7108]
Christian Hammond <chipx86@chipx86.com>
parents:
6535
diff
changeset
|
297 AC_SUBST(PERL_MM_PARAMS) |
c3388f361bdf
[gaim-migrate @ 7108]
Christian Hammond <chipx86@chipx86.com>
parents:
6535
diff
changeset
|
298 |
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
299 AC_MSG_CHECKING(for DynaLoader.a) |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
300 DYNALOADER_A=`echo $PERL_LDFLAGS | $perlpath -pe 's/^(.* )*([[^ ]]*DynaLoader\.a).*/\2/'` |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
301 |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
302 dnl Don't check libperl.a if dynaloader.a wasn't found. |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
303 if test -n "$DYNALOADER_A"; then |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
304 AC_MSG_RESULT(yes) |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
305 |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
306 dnl Find either libperl.a or libperl.so |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
307 AC_MSG_CHECKING(for libperl.a or libperl.so) |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
308 LIBPERL_A=`echo "$PERL_LDFLAGS -L/usr/lib"|$perlpath -e 'foreach (split(/ /, <STDIN>)) { if (/^-L(.*)/) { my $dir=$1; if (\`ls $dir/libperl.so* 2>/dev/null\`) { print "-lperl"; last; }; if (-e "$dir/libperl.a") { print "$dir/libperl.a"; last } } };'` |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
309 if test -z "$LIBPERL_A"; then |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
310 AC_MSG_RESULT(no) |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
311 DYNALOADER_A= |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
312 else |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
313 AC_MSG_RESULT(yes) |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
314 |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
315 if test "$LIBPERL_A" = "-lperl"; then |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
316 LIBPERL_A= |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
317 fi |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
318 fi |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
319 |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
320 PERL_LIBS=`echo $PERL_LIBS | $perlpath -pe 's/^(.* )*[[^ ]]*DynaLoader\.a/\1libperl_dynaloader.la/'` |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
321 |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
322 if test -n "$LIBPERL_A"; then |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
323 PERL_LIBS=`echo $PERL_LDFLAGS | $sedpath -e 's/-lperl /libperl_orig.la /' -e 's/-lperl$/libperl_orig.la$/'` |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
324 fi |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
325 |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
326 AC_SUBST(DYNALOADER_A) |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
327 AC_SUBST(LIBPERL_A) |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
328 else |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
329 AC_MSG_RESULT(no) |
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
330 fi |
3931 | 331 else |
332 PERL_CFLAGS= | |
333 PERL_LIBS= | |
5232
2d58a9a46292
[gaim-migrate @ 5602]
Christian Hammond <chipx86@chipx86.com>
parents:
5229
diff
changeset
|
334 AM_CONDITIONAL(USE_PERL, false) |
3931 | 335 fi |
336 | |
6694 | 337 dnl Check for Tcl |
338 if test "$enable_tcl" = yes; then | |
339 AC_MSG_CHECKING([for tclConfig.sh]) | |
340 TCLCONFIG=no | |
341 for dir in $with_tclconfig /usr/lib /usr/local/lib; do | |
342 if test -f $dir/tclConfig.sh; then | |
343 TCLCONFIG=$dir/tclConfig.sh | |
344 AC_MSG_RESULT([yes ($TCLCONFIG)]) | |
345 fi | |
346 done | |
6697 | 347 if test "$TCLCONFIG" = "no"; then |
6694 | 348 AC_MSG_RESULT([no]) |
349 enable_tcl=no | |
350 else | |
351 . $TCLCONFIG | |
352 eval "TCL_LIB_SPEC=\"$TCL_LIB_SPEC\"" | |
353 AC_MSG_CHECKING([for Tcl linkability]) | |
354 oldLIBS=$LIBS | |
355 LIBS="$LIBS $TCL_LIB_SPEC" | |
356 AC_TRY_LINK([#include <tcl.h>], [Tcl_Interp *interp; Tcl_Init(interp)], | |
357 [AC_MSG_RESULT([yes]);enable_tcl=yes], | |
358 [AC_MSG_RESULT([no]);enable_tcl=no]) | |
359 LIBS="$oldLIBS" | |
360 fi | |
361 fi | |
362 | |
363 if test "$enable_tcl" = yes; then | |
364 AM_CONDITIONAL(USE_TCL, true) | |
365 TCL_LIBS=$TCL_LIB_SPEC | |
366 AC_SUBST(TCL_LIBS) | |
367 else | |
368 AM_CONDITIONAL(USE_TCL, false) | |
369 fi | |
370 | |
371 dnl Check for Tk | |
372 if test "$enable_tcl" = yes -a "$enable_tk" = yes; then | |
373 AC_MSG_CHECKING([for tkConfig.sh]) | |
374 TKCONFIG=no | |
375 for dir in $with_tkconfig /usr/lib /usr/local/lib; do | |
376 if test -f $dir/tkConfig.sh; then | |
377 TKCONFIG=$dir/tkConfig.sh | |
378 AC_MSG_RESULT([yes ($TKCONFIG)]) | |
379 fi | |
380 done | |
381 if test "$TKCONFIG" = "no"; then | |
382 AC_MSG_RESULT([no]) | |
383 enable_tk=no | |
384 else | |
385 . $TKCONFIG | |
386 eval "TK_LIB_SPEC=\"$TK_LIB_SPEC\"" | |
387 AC_MSG_CHECKING([for Tk linkability]) | |
388 oldLIBS=$LIBS | |
389 LIBS="$LIBS $TCL_LIB_SPEC $TK_LIB_SPEC" | |
390 AC_TRY_LINK([#include <tk.h>], [Tcl_Interp *interp; Tcl_Init(interp); Tk_Init(interp);], | |
391 [AC_MSG_RESULT([yes]);enable_tk=yes], | |
392 [AC_MSG_RESULT([no]);enable_tk=no]) | |
393 LIBS="$oldLIBS" | |
394 fi | |
395 fi | |
396 | |
397 if test "$enable_tk" = yes; then | |
398 AM_CONDITIONAL(USE_TK, true) | |
399 AC_DEFINE(HAVE_TK, [1], [Compile with support for the Tk toolkit]) | |
400 TK_LIBS=$TK_LIB_SPEC | |
401 AC_SUBST(TK_LIBS) | |
402 else | |
403 AM_CONDITIONAL(USE_TK, false) | |
404 fi | |
405 | |
3802 | 406 dnl Thanks, Evan. |
407 if test "$enable_gtkspell" = yes ; then | |
408 PKG_CHECK_MODULES(GTKSPELL, gtkspell-2.0 >= 2.0.2, , enable_gtkspell=no) | |
409 if test "$enable_gtkspell" = "yes" ; then | |
410 AC_SUBST(GTKSPELL_CFLAGS) | |
411 AC_SUBST(GTKSPELL_LIBS) | |
412 AC_DEFINE(USE_GTKSPELL,,[do we have gtkspell?]) | |
413 fi | |
414 fi | |
415 | |
4581 | 416 if test "$enable_nas" = yes ; then |
417 AC_DEFINE(USE_NAS_AUDIO, 1, [Define if we have NAS sound support.]) | |
418 SOUND_LIBS="$SOUND_LIBS -laudio -lXt" | |
419 fi | |
420 | |
4561 | 421 if test "$enable_audio" = yes ; then |
422 GAIM_PATH_AO(found_ao_lib=true) | |
423 | |
424 AM_PATH_AUDIOFILE([0.2.0], found_af_lib=true) | |
425 | |
426 if test "$found_ao_lib" = "true" -a "$found_af_lib" = "true"; then | |
4581 | 427 SOUND_LIBS="$SOUND_LIBS $AO_LIBS $AUDIOFILE_LIBS" |
4561 | 428 AC_SUBST(SOUND_LIBS) |
429 AC_DEFINE(USE_AO, 1, [Define if we're using libao and libaudiofile for sound playing]) | |
430 enable_audio=yes | |
4430 | 431 else |
4561 | 432 enable_audio=no |
433 fi | |
434 else | |
435 enable_audio=no | |
4430 | 436 fi |
2129 | 437 |
438 if test "$ac_cv_cygwin" = yes ; then | |
439 LDADD="$LDADD -static" | |
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
440 DEBUG_CFLAGS="$DEBUG_CFLAGS -Wall -g" |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
441 AC_DEFINE(DEBUG, 1, [Define if debugging is enabled.]) |
2129 | 442 fi |
443 | |
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
444 AC_SUBST(DEBUG_CFLAGS) |
2129 | 445 AC_SUBST(LDADD) |
446 AC_SUBST(LIBS) | |
447 | |
448 if test "x$enable_multi" != "xyes" ; then | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
449 AC_DEFINE(NO_MULTI, 1, [Define if multiple connections is disabled.]) |
2129 | 450 enable_multi=no |
451 fi | |
452 | |
453 if test "x$enable_plugins" = "xyes" ; then | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
454 AC_DEFINE(GAIM_PLUGINS, 1, [Define if plugins are enabled.]) |
2129 | 455 AM_CONDITIONAL(PLUGINS, test "x$enable_plugins" = "xyes") |
456 else | |
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
457 AM_CONDITIONAL(PLUGINS, false) |
2129 | 458 enable_plugins=no |
459 enable_prpls=no | |
460 fi | |
461 | |
462 if test "x$enable_prpls" = "xyes" ; then | |
463 AM_CONDITIONAL(PRPLS, test "x$enable_plugins" = "xyes") | |
464 else | |
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
465 AM_CONDITIONAL(PRPLS, false) |
2129 | 466 enable_prpls=no |
467 fi | |
468 | |
469 dnl checks for icqlib | |
470 AC_CHECK_HEADERS(asm/byteorder.h byteswap.h endian.h machine/endian.h arpa/nameser_compat.h) | |
471 AC_CHECK_FUNCS(bswap_32 bswap_16) | |
472 AC_C_BIGENDIAN | |
473 | |
474 dnl checks for jabber | |
475 dnl AC_CHECK_SIZEOF(short) | |
476 AC_CHECK_FUNCS(snprintf connect) | |
477 | |
478 dnl checks for zephyr | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
479 AC_DEFINE(ZEPHYR_INT32, long, [Size of an int32.]) |
2129 | 480 AC_SUBST(KRB4_CFLAGS) |
481 AC_SUBST(KRB4_LDFLAGS) | |
482 AC_SUBST(KRB4_LIBS) | |
483 if test "$kerberos" != "no" ; then | |
484 if test "$kerberos" != "yes" ; then | |
485 KRB4_CFLAGS="-I${kerberos}/include" | |
486 if test -d "$kerberos/include/kerberosIV" ; then | |
487 KRB4_CFLAGS="$KRB4_CFLAGS -I${kerberos}/include/kerberosIV" | |
488 fi | |
489 KRB4_LDFLAGS="-L${kerberos}/lib" | |
490 elif test -d /usr/local/include/kerberosIV ; then | |
491 KRB4_CFLAGS="-I/usr/local/include/kerberosIV" | |
492 elif test -d /usr/include/kerberosIV ; then | |
493 KRB4_CFLAGS="-I/usr/include/kerberosIV" | |
494 fi | |
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
495 AC_DEFINE(ZEPHYR_USES_KERBEROS, 1, [Define if kerberos should be used in Zephyr.]) |
2129 | 496 |
497 orig_LDFLAGS="$LDFLAGS" | |
498 LDFLAGS="$LDFLAGS $KRB4_LDFLAGS" | |
499 AC_CHECK_LIB(krb4, krb_rd_req, | |
500 [KRB4_LIBS="-lkrb4 -ldes425 -lkrb5 -lk5crypto -lcom_err"], | |
501 [AC_CHECK_LIB(krb, krb_rd_req, | |
502 [KRB4_LIBS="-lkrb -ldes"], | |
503 [AC_ERROR(Kerberos 4 libraries not found)], | |
504 -ldes)], | |
505 -ldes425 -lkrb5 -lk5crypto -lcom_err) | |
506 orig_LIBS="$LIBS" | |
507 LIBS="$LIBS $KRB4_LIBS" | |
508 AC_CHECK_FUNCS(krb_set_key krb_rd_req krb_get_lrealm) | |
509 AC_CHECK_FUNCS(krb_get_err_text krb_log) | |
510 LIBS="$orig_LIBS" | |
511 LDFLAGS="$orig_LDFLAGS" | |
512 fi | |
6150 | 513 |
514 AC_MSG_CHECKING(for me pot o' gold) | |
515 AC_MSG_RESULT(no) | |
2129 | 516 AC_CHECK_FUNCS(gethostid lrand48) |
517 AC_CHECK_FUNCS(memcpy memmove random strchr strerror vprintf) | |
518 AC_CHECK_HEADERS(malloc.h paths.h sgtty.h stdarg.h sys/cdefs.h) | |
519 AC_CHECK_HEADERS(sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h) | |
520 AC_CHECK_HEADERS(sys/select.h sys/uio.h sys/utsname.h sys/wait.h) | |
521 AC_CHECK_HEADERS(termios.h) | |
3194 | 522 AC_VAR_TIMEZONE_EXTERNALS |
2129 | 523 |
524 AC_OUTPUT([Makefile | |
4554
fbf9f873abfc
[gaim-migrate @ 4834]
Christian Hammond <chipx86@chipx86.com>
parents:
4489
diff
changeset
|
525 Doxyfile |
2129 | 526 doc/Makefile |
527 intl/Makefile | |
528 pixmaps/Makefile | |
4252 | 529 pixmaps/smileys/Makefile |
530 pixmaps/smileys/default/Makefile | |
4687 | 531 pixmaps/status/Makefile |
532 pixmaps/status/default/Makefile | |
2129 | 533 plugins/Makefile |
3510 | 534 plugins/docklet/Makefile |
5859
022786c7ab53
[gaim-migrate @ 6290]
Christian Hammond <chipx86@chipx86.com>
parents:
5759
diff
changeset
|
535 plugins/gaim-remote/Makefile |
4390
16540914c963
[gaim-migrate @ 4656]
Christian Hammond <chipx86@chipx86.com>
parents:
4298
diff
changeset
|
536 plugins/gestures/Makefile |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5193
diff
changeset
|
537 plugins/perl/Makefile |
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
538 plugins/perl/common/Makefile.PL |
6694 | 539 plugins/tcl/Makefile |
3391 | 540 plugins/ticker/Makefile |
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
541 po/Makefile.in |
2129 | 542 sounds/Makefile |
543 src/Makefile | |
544 src/protocols/Makefile | |
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
545 src/protocols/gg/Makefile |
2129 | 546 src/protocols/irc/Makefile |
547 src/protocols/jabber/Makefile | |
548 src/protocols/msn/Makefile | |
549 src/protocols/napster/Makefile | |
550 src/protocols/oscar/Makefile | |
551 src/protocols/toc/Makefile | |
552 src/protocols/yahoo/Makefile | |
553 src/protocols/zephyr/Makefile | |
554 gaim.spec | |
555 ]) | |
556 | |
557 echo | |
558 echo $PACKAGE $VERSION | |
559 | |
560 echo | |
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
561 echo Allow Multiple Connections.... : $enable_multi |
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
562 echo Build Protocol Plugins........ : $enable_prpls |
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
563 echo Protocols to link statically.. : $STATIC_PRPLS |
2129 | 564 echo |
4561 | 565 echo UI Library.................... : GTK 2.x |
2129 | 566 echo |
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
567 echo Build with Plugin support..... : $enable_plugins |
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
568 echo Build with Perl support....... : $enable_perl |
6694 | 569 echo Build with Tcl support........ : $enable_tcl |
570 echo Build with Tk support......... : $enable_tk | |
4561 | 571 echo Build with Audio support...... : $enable_audio |
4581 | 572 echo Build with NAS support........ : $enable_nas |
4561 | 573 echo Build with GtkSpell support... : $enable_gtkspell |
3802 | 574 echo |
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
575 echo Use XScreenSaver Extension.... : $enable_xss |
4157 | 576 echo Use X Session Management...... : $enable_sm |
2129 | 577 echo |
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
578 echo Print debugging messages...... : $enable_debug |
2129 | 579 echo |
2452
824e1afefdd3
[gaim-migrate @ 2465]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2436
diff
changeset
|
580 eval eval echo Gaim will be installed in $bindir. |
2129 | 581 if test "x$gaimpath" != "x" ; then |
582 echo Warning: You have an old copy of gaim at $gaimpath. | |
583 fi | |
584 echo | |
585 echo configure complete, now type \'make\' | |
586 echo |