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