Tue, 13 Nov 2001 06:14:07 +0000
[gaim-migrate @ 2723]
gaim requires at least 1.2.3, but it should probably be 1.2.8, since i've seen problems with 1.2.7.
| 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) | |
|
2655
3ad3b22abc18
[gaim-migrate @ 2668]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2636
diff
changeset
|
4 | AM_INIT_AUTOMAKE([gaim], [0.48]) |
| 2129 | 5 | |
| 6 | AC_PATH_PROG(sedpath, sed) | |
| 7 | ||
| 8 | dnl Checks for programs. | |
| 9 | AC_PROG_CC | |
| 10 | AC_DISABLE_STATIC | |
| 11 | AM_PROG_LIBTOOL | |
| 12 | LIBTOOL="$LIBTOOL --silent" | |
| 13 | AC_PROG_INSTALL | |
| 14 | ||
| 15 | ||
| 2636 | 16 | ALL_LINGUAS="de es fr ko ru zh_CN pl nl" |
| 2129 | 17 | AM_GNU_GETTEXT |
| 18 | ||
| 19 | AC_CYGWIN | |
| 20 | ||
| 21 | ||
| 22 | dnl Checks for header files. | |
| 23 | AC_HEADER_STDC | |
| 24 | AC_HEADER_SYS_WAIT | |
| 25 | AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h locale.h signal.h) | |
| 26 | ||
| 27 | dnl Checks for typedefs, structures, and compiler characteristics. | |
| 28 | AC_C_CONST | |
| 29 | AC_STRUCT_TM | |
| 30 | ||
| 31 | dnl Checks for library functions. | |
| 32 | AC_TYPE_SIGNAL | |
| 33 | AC_FUNC_STRFTIME | |
| 34 | AC_CHECK_FUNCS(socket strdup strstr atexit getaddrinfo) | |
| 35 | ||
| 36 | dnl Checks for getopt in standard library | |
| 37 | AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] ) | |
| 38 | AC_SUBST(LIBOBJS) | |
| 39 | ||
| 40 | dnl This is a bad, bad hack. I am a bad, bad man. | |
| 41 | CFLAGS="$CFLAGS -I/usr/local/include -I/opt/include -I\$(top_srcdir)" | |
| 42 | ||
| 43 | AC_ARG_ENABLE(distrib,,,enable_distrib=no) | |
| 44 | AM_CONDITIONAL(DISTRIB, test "x$enable_distrib" = "xyes") | |
| 45 | AC_ARG_ENABLE(multi, [ --disable-multi disable multiple connections],,enable_multi=yes) | |
| 46 | AC_ARG_ENABLE(prpls, [ --disable-prpls don't build dynamic protocol plugins],,enable_prpls=yes) | |
| 47 | AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="oscar toc") | |
| 48 | if test "x$STATIC_PRPLS" = "xall" ; then | |
|
2393
cfef0212506b
[gaim-migrate @ 2406]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2330
diff
changeset
|
49 | STATIC_PRPLS="gg icq irc jabber msn napster oscar toc yahoo zephyr" |
| 2129 | 50 | fi |
| 51 | AC_SUBST(STATIC_PRPLS) | |
| 52 | STATIC_LINK_LIBS= | |
| 53 | extern_init= | |
| 54 | load_proto= | |
| 55 | for i in $STATIC_PRPLS ; do | |
| 56 | STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a" | |
| 57 | extern_init="$extern_init extern void ${i}_init(struct prpl *);" | |
| 58 | load_proto="$load_proto load_protocol(${i}_init, sizeof(struct prpl));" | |
| 59 | case $i in | |
|
2393
cfef0212506b
[gaim-migrate @ 2406]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2330
diff
changeset
|
60 | gg) static_gg=yes ;; |
|
2244
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
61 | icq) static_icq=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
62 | irc) static_irc=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
63 | jabber) static_jabber=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
64 | msn) static_msn=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
65 | napster) static_napster=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
66 | oscar) static_oscar=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
67 | toc) static_toc=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
68 | yahoo) static_yahoo=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
69 | zephyr) static_zephyr=yes ;; |
| 2129 | 70 | *) echo "Invalid static protocol $i!!" ; exit ;; |
| 71 | esac | |
| 72 | done | |
|
2393
cfef0212506b
[gaim-migrate @ 2406]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2330
diff
changeset
|
73 | AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes") |
|
2244
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
74 | AM_CONDITIONAL(STATIC_ICQ, test "x$static_icq" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
75 | AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
76 | AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
77 | AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
78 | AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
79 | AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
80 | AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
81 | AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
82 | AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes") |
| 2129 | 83 | AC_SUBST(STATIC_LINK_LIBS) |
| 84 | AC_DEFINE_UNQUOTED(STATIC_PROTO_INIT, $extern_init void static_proto_init() { $load_proto }) | |
| 85 | ||
| 86 | AC_ARG_ENABLE(gnome, [ --disable-gnome compile without Gnome bits],,enable_gnome=yes) | |
| 87 | AC_ARG_ENABLE(pixbuf, [ --disable-pixbuf compile without GdkPixbuf (needed for Buddy Icons)],,enable_pixbuf=yes) | |
| 88 | AC_ARG_ENABLE(panel, [ --enable-panel compile as a GNOME applet],,enable_panel=$enable_distrib) | |
| 89 | ||
| 90 | AM_CONDITIONAL(GNOMEAPPLET, test "x$enable_panel" = "xyes") | |
| 91 | AC_ARG_ENABLE(esd, [ --disable-esd Turn off ESD (default=auto)],,enable_esd=yes) | |
| 92 | AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],,enable_nas=no) | |
| 2179 | 93 | AC_ARG_ENABLE(artsc, [ --disable-artsc Turn off ArtsC (default=auto)],,enable_artsc=yes) |
| 2129 | 94 | |
| 95 | AC_ARG_ENABLE(plugins, [ --disable-plugins compile without plugin support],,enable_plugins=yes) | |
| 96 | AC_ARG_ENABLE(perl, [ --disable-perl compile without perl scripting],,enable_perl=yes) | |
| 97 | ||
|
2430
c1cb49692a34
[gaim-migrate @ 2443]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2416
diff
changeset
|
98 | AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no) |
| 2129 | 99 | AC_ARG_ENABLE(screensaver, [ --disable-screensaver compile without X screensaver extension],,enable_xss=yes) |
| 100 | AC_ARG_WITH(krb4, [ --with-krb4=PREFIX Compile Zephyr plugin with Kerberos 4 support],kerberos="$withval",kerberos="no") | |
| 101 | ||
| 102 | if test "$enable_debug" = yes ; then | |
|
2541
0afd3aaba327
[gaim-migrate @ 2554]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2540
diff
changeset
|
103 | CFLAGS="$CFLAGS -Wall -g3" |
| 2129 | 104 | AC_DEFINE(DEBUG) |
| 105 | fi | |
| 106 | ||
| 107 | if test "x$enable_gnome" = "xyes" ; then | |
| 108 | if test "x$enable_panel" = "xyes" ; then | |
| 109 | GNOME_INIT(applets) | |
| 110 | GNOME_X_CHECKS | |
| 111 | CFLAGS="$CFLAGS $GNOME_INCLUDEDIR" | |
| 112 | AC_DEFINE(USE_APPLET) | |
| 113 | AC_DEFINE(USE_GNOME) | |
|
2181
51afafcf4053
[gaim-migrate @ 2191]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2179
diff
changeset
|
114 | UI_LIBS="$UI_LIBS $GTK_LIBS $GNOME_LIBDIR $GNOME_APPLETS_LIBS $GNOMEUI_LIBS" |
| 2129 | 115 | AC_PATH_PROG(gaimpath, gaim_applet) |
| 116 | else | |
| 117 | AC_PATH_PROG(gnomepath, gnome-config) | |
| 118 | AC_MSG_CHECKING(for Gnome compile flags) | |
| 119 | GNOME_CFLAGS=`$gnomepath gnomeui --cflags 2>/dev/null` | |
| 120 | if test "x$GNOME_CFLAGS" = "x" ; then | |
| 121 | enable_gnome=no | |
| 122 | AC_MSG_RESULT([Gnome not found, building without it.]) | |
| 123 | else | |
| 124 | GNOME_VER=`$gnomepath --version |$sedpath 's/gnome-libs //' 2>/dev/null` | |
| 125 | GNOME_MAJOR=`echo $GNOME_VER |$sedpath 's/\([[0-9]*]*\).\([[0-9]*]*\).\([[0-9]*]*\)/\1/' 2>/dev/null` | |
| 126 | if test "x$GNOME_MAJOR" = "x0" ; then | |
| 127 | enable_gnome = no | |
| 128 | AC_MSG_RESULT([old Gnome found, building without it.]) | |
| 129 | else | |
| 130 | AC_MSG_RESULT(ok) | |
| 131 | CFLAGS="$CFLAGS $GNOME_CFLAGS" | |
|
2181
51afafcf4053
[gaim-migrate @ 2191]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2179
diff
changeset
|
132 | UI_LIBS="$UI_LIBS `$gnomepath gnomeui --libs 2>/dev/null`" |
| 2129 | 133 | AC_DEFINE(USE_GNOME) |
| 134 | GNOME_CONFIG="$gnomepath" | |
| 135 | AC_SUBST(GNOME_CONFIG) | |
| 136 | AC_PATH_PROG(gaimpath, gaim) | |
| 137 | fi | |
| 138 | fi | |
| 139 | fi | |
| 140 | fi | |
| 141 | ||
| 142 | if test "x$enable_gnome" != "xyes" ; then | |
|
2710
274f450b4aad
[gaim-migrate @ 2723]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2708
diff
changeset
|
143 | AM_PATH_GLIB(1.2.3,,AC_MSG_ERROR([ |
| 2129 | 144 | *** GLib is required to build Gaim; please make sure you have the GLib |
| 145 | *** development headers installed. The latest version of GLib is | |
| 146 | *** always available at http://www.gtk.org/.])) | |
|
2710
274f450b4aad
[gaim-migrate @ 2723]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2708
diff
changeset
|
147 | AM_PATH_GTK(1.2.3,,AC_MSG_ERROR([ |
| 2129 | 148 | *** GTK+ is required to build Gaim; please make sure you have the GTK+ |
| 149 | *** development headers installed. The latest version of GTK+ is | |
| 150 | *** always available at http://www.gtk.org/.]),gthread) | |
|
2181
51afafcf4053
[gaim-migrate @ 2191]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2179
diff
changeset
|
151 | UI_LIBS="$UI_LIBS $GTK_LIBS" |
| 2129 | 152 | AC_PATH_PROG(gaimpath, gaim) |
| 153 | fi | |
| 154 | CFLAGS="$CFLAGS $GTK_CFLAGS" | |
| 155 | ||
|
2659
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
156 | dnl if test "x$enable_panel" = "xyes" ; then |
| 2657 | 157 | dnl Things moved with the new versoin of Orbit. Thanks for |
| 158 | dnl telling me, Dan. This should fix them. | |
|
2659
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
159 | dnl |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
160 | dnl The gnome-config script should pick this up and affect GNOME_ variables |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
161 | dnl correctly. Thus, this check is not needed; if it fails, it is because of |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
162 | dnl a broken installation or that your appletsConf.sh file is not updated |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
163 | dnl for the new orbit installation. Gaim shouldn't need to do this. |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
164 | dnl |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
165 | dnl CFLAGS="$CFLAGS $ORBIT_CFLAGS" |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
166 | dnl fi |
| 2657 | 167 | |
| 2129 | 168 | use_pixbuf=no |
| 169 | if test "x$enable_pixbuf" = "xyes" ; then | |
| 170 | AC_PATH_PROG(pixbufcfg, gdk-pixbuf-config) | |
| 171 | if test "x$pixbufcfg" != "x" ; then | |
| 172 | GDK_PIXBUF_CFLAGS=`$pixbufcfg --cflags` | |
| 173 | GDK_PIXBUF_LIBS=`$pixbufcfg --libs` | |
| 174 | GDK_PIXBUF_CONFIG="$pixbufcfg" | |
| 175 | AC_SUBST(GDK_PIXBUF_CONFIG) | |
| 176 | AC_SUBST(GDK_PIXBUF_CFLAGS) | |
| 177 | AC_SUBST(GDK_PIXBUF_LIBS) | |
| 178 | CFLAGS="$CFLAGS $GDK_PIXBUF_CFLAGS" | |
|
2181
51afafcf4053
[gaim-migrate @ 2191]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2179
diff
changeset
|
179 | UI_LIBS="$UI_LIBS $GDK_PIXBUF_LIBS" |
| 2129 | 180 | dnl We should be doing checks to see that the header files and functions exist. eh. |
| 181 | AC_DEFINE(USE_PIXBUF) | |
| 182 | use_pixbuf=yes | |
| 183 | fi | |
| 184 | fi | |
|
2178
e30d0c41f165
[gaim-migrate @ 2188]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2163
diff
changeset
|
185 | AC_SUBST(UI_LIBS) |
| 2129 | 186 | |
| 187 | dnl Check for XScreenSaver | |
| 188 | if test "x$enable_xss" = "xyes" ; then | |
|
2182
c33eb7c19074
[gaim-migrate @ 2192]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2181
diff
changeset
|
189 | old_LIBS="$LIBS" |
|
c33eb7c19074
[gaim-migrate @ 2192]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2181
diff
changeset
|
190 | LIBS="$LIBS $UI_LIBS" |
| 2129 | 191 | XSS_LIBS="no" |
| 192 | XSS_HEADERS="no" | |
| 193 | AC_CHECK_LIB(Xext, XScreenSaverRegister,[XSS_LIBS=""],[],[-lX11 -lXext -lm]) | |
| 194 | AC_CHECK_LIB(Xss, XScreenSaverRegister,[XSS_LIBS="-lXss"],[],[-lX11 -lXext -lm]) | |
| 195 | if test \! "$XSS_LIBS" = "no"; then | |
| 196 | AC_TRY_COMPILE([ | |
| 197 | #include <X11/extensions/scrnsaver.h> | |
| 198 | ],[],[enable_xss=no],[ | |
| 199 | AC_DEFINE(USE_SCREENSAVER) | |
| 200 | ]) | |
| 201 | else | |
| 202 | XSS_LIBS="" | |
| 203 | enable_xss=no | |
| 204 | fi | |
|
2182
c33eb7c19074
[gaim-migrate @ 2192]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2181
diff
changeset
|
205 | LIBS="$old_LIBS" |
| 2129 | 206 | else |
| 207 | XSS_LIBS="" | |
| 208 | enable_xss=no | |
| 209 | fi | |
| 210 | AC_SUBST(XSS_LIBS) | |
| 211 | ||
| 212 | ||
| 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) | |
| 235 | AC_SUBST(PERL_CFLAGS) | |
| 236 | AC_SUBST(PERL_LIBS) | |
| 237 | AC_DEFINE(USE_PERL) | |
| 238 | AC_CHECK_FUNCS(Perl_eval_pv) | |
| 239 | fi | |
| 240 | fi | |
| 241 | ||
| 242 | if test "$enable_nas" = yes ; then | |
| 243 | AC_DEFINE(NAS_SOUND) | |
|
2178
e30d0c41f165
[gaim-migrate @ 2188]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2163
diff
changeset
|
244 | SOUND_LIBS="-laudio -lXt" |
| 2129 | 245 | fi |
| 246 | if test "$enable_esd" = yes ; then | |
| 247 | AM_PATH_GESD | |
| 248 | if test "$no_esd" != yes ; then | |
| 2179 | 249 | old_CFLAGS="$CFLAGS" |
| 2129 | 250 | CFLAGS="$CFLAGS $ESD_CFLAGS" |
|
2184
83f29bfc76d6
[gaim-migrate @ 2194]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2182
diff
changeset
|
251 | AC_TRY_COMPILE(,[#include <esd.h>], |
| 2179 | 252 | [ |
| 253 | AC_DEFINE(ESD_SOUND) | |
| 254 | SOUND_LIBS="$SOUND_LIBS $ESD_LIBS" | |
| 255 | ],[ | |
| 256 | enable_esd=no | |
| 257 | CFLAGS="$old_CFLAGS" | |
| 258 | ]) | |
| 2129 | 259 | else |
| 260 | enable_esd=no | |
| 261 | fi | |
| 262 | fi | |
| 2179 | 263 | if test "x$enable_artsc" = "xyes"; then |
| 264 | AM_PATH_ARTSC | |
| 265 | if test "x$no_artsc" != "xyes" ; then | |
| 266 | old_CFLAGS="$CFLAGS" | |
| 267 | CFLAGS="$CFLAGS $ARTSC_CFLAGS" | |
|
2184
83f29bfc76d6
[gaim-migrate @ 2194]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2182
diff
changeset
|
268 | AC_TRY_COMPILE(,[#include <artsc.h>], |
| 2179 | 269 | [ |
| 270 | AC_DEFINE(ARTSC_SOUND) | |
| 271 | SOUND_LIBS="$SOUND_LIBS $ARTSC_LIBS" | |
| 272 | ],[ | |
| 273 | enable_artsc=no | |
| 274 | CFLAGS="$old_CFLAGS" | |
| 275 | ]) | |
| 276 | else | |
| 277 | enable_artsc=no | |
| 278 | fi | |
| 279 | fi | |
|
2178
e30d0c41f165
[gaim-migrate @ 2188]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2163
diff
changeset
|
280 | AC_SUBST(SOUND_LIBS) |
| 2129 | 281 | |
| 282 | if test "$ac_cv_cygwin" = yes ; then | |
| 283 | LDADD="$LDADD -static" | |
| 284 | CFLAGS="$CFLAGS -Wall -g" | |
| 285 | AC_DEFINE(DEBUG) | |
| 286 | fi | |
| 287 | ||
| 288 | AC_SUBST(CFLAGS) | |
| 289 | AC_SUBST(LDADD) | |
| 290 | AC_SUBST(LIBS) | |
| 291 | ||
| 292 | if test "x$enable_multi" != "xyes" ; then | |
| 293 | AC_DEFINE(NO_MULTI) | |
| 294 | enable_multi=no | |
| 295 | fi | |
| 296 | ||
| 297 | if test "x$enable_plugins" = "xyes" ; then | |
| 298 | AC_DEFINE(GAIM_PLUGINS) | |
| 299 | AM_CONDITIONAL(PLUGINS, test "x$enable_plugins" = "xyes") | |
| 300 | else | |
| 301 | enable_plugins=no | |
| 302 | enable_prpls=no | |
| 303 | fi | |
| 304 | ||
| 305 | if test "x$enable_prpls" = "xyes" ; then | |
| 306 | AM_CONDITIONAL(PRPLS, test "x$enable_plugins" = "xyes") | |
| 307 | else | |
| 308 | enable_prpls=no | |
| 309 | fi | |
| 310 | ||
| 311 | dnl checks for icqlib | |
| 312 | AC_CHECK_HEADERS(asm/byteorder.h byteswap.h endian.h machine/endian.h arpa/nameser_compat.h) | |
| 313 | AC_CHECK_FUNCS(bswap_32 bswap_16) | |
| 314 | AC_C_BIGENDIAN | |
| 315 | ||
| 316 | dnl checks for jabber | |
| 317 | dnl AC_CHECK_SIZEOF(short) | |
| 318 | AC_CHECK_FUNCS(snprintf connect) | |
| 319 | AC_CHECK_LIB(nsl, gethostent) | |
| 320 | ||
|
2708
f5d9cdf41771
[gaim-migrate @ 2721]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2659
diff
changeset
|
321 | dnl checks for yahoo |
|
f5d9cdf41771
[gaim-migrate @ 2721]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2659
diff
changeset
|
322 | AC_CHECK_HEADERS(crypt.h) |
|
f5d9cdf41771
[gaim-migrate @ 2721]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2659
diff
changeset
|
323 | |
| 2129 | 324 | dnl checks for zephyr |
| 325 | AC_DEFINE(ZEPHYR_INT32, long) | |
| 326 | AC_SUBST(KRB4_CFLAGS) | |
| 327 | AC_SUBST(KRB4_LDFLAGS) | |
| 328 | AC_SUBST(KRB4_LIBS) | |
| 329 | if test "$kerberos" != "no" ; then | |
| 330 | if test "$kerberos" != "yes" ; then | |
| 331 | KRB4_CFLAGS="-I${kerberos}/include" | |
| 332 | if test -d "$kerberos/include/kerberosIV" ; then | |
| 333 | KRB4_CFLAGS="$KRB4_CFLAGS -I${kerberos}/include/kerberosIV" | |
| 334 | fi | |
| 335 | KRB4_LDFLAGS="-L${kerberos}/lib" | |
| 336 | elif test -d /usr/local/include/kerberosIV ; then | |
| 337 | KRB4_CFLAGS="-I/usr/local/include/kerberosIV" | |
| 338 | elif test -d /usr/include/kerberosIV ; then | |
| 339 | KRB4_CFLAGS="-I/usr/include/kerberosIV" | |
| 340 | fi | |
| 341 | AC_DEFINE(ZEPHYR_USES_KERBEROS) | |
| 342 | ||
| 343 | orig_LDFLAGS="$LDFLAGS" | |
| 344 | LDFLAGS="$LDFLAGS $KRB4_LDFLAGS" | |
| 345 | AC_CHECK_LIB(krb4, krb_rd_req, | |
| 346 | [KRB4_LIBS="-lkrb4 -ldes425 -lkrb5 -lk5crypto -lcom_err"], | |
| 347 | [AC_CHECK_LIB(krb, krb_rd_req, | |
| 348 | [KRB4_LIBS="-lkrb -ldes"], | |
| 349 | [AC_ERROR(Kerberos 4 libraries not found)], | |
| 350 | -ldes)], | |
| 351 | -ldes425 -lkrb5 -lk5crypto -lcom_err) | |
| 352 | orig_LIBS="$LIBS" | |
| 353 | LIBS="$LIBS $KRB4_LIBS" | |
| 354 | AC_CHECK_FUNCS(krb_set_key krb_rd_req krb_get_lrealm) | |
| 355 | AC_CHECK_FUNCS(krb_get_err_text krb_log) | |
| 356 | LIBS="$orig_LIBS" | |
| 357 | LDFLAGS="$orig_LDFLAGS" | |
| 358 | fi | |
| 359 | AC_CHECK_FUNCS(gethostid lrand48) | |
| 360 | AC_CHECK_FUNCS(memcpy memmove random strchr strerror vprintf) | |
| 361 | AC_CHECK_HEADERS(malloc.h paths.h sgtty.h stdarg.h sys/cdefs.h) | |
| 362 | AC_CHECK_HEADERS(sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h) | |
| 363 | AC_CHECK_HEADERS(sys/select.h sys/uio.h sys/utsname.h sys/wait.h) | |
| 364 | AC_CHECK_HEADERS(termios.h) | |
| 365 | ||
| 366 | AC_OUTPUT([Makefile | |
| 367 | doc/Makefile | |
| 368 | intl/Makefile | |
| 369 | m4/Makefile | |
| 370 | pixmaps/Makefile | |
| 371 | plugins/Makefile | |
| 372 | po/Makefile.in | |
| 373 | sounds/Makefile | |
| 374 | src/Makefile | |
| 375 | src/protocols/Makefile | |
|
2393
cfef0212506b
[gaim-migrate @ 2406]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2330
diff
changeset
|
376 | src/protocols/gg/Makefile |
| 2129 | 377 | src/protocols/icq/Makefile |
| 378 | src/protocols/irc/Makefile | |
| 379 | src/protocols/jabber/Makefile | |
| 380 | src/protocols/msn/Makefile | |
| 381 | src/protocols/napster/Makefile | |
| 382 | src/protocols/oscar/Makefile | |
| 383 | src/protocols/toc/Makefile | |
| 384 | src/protocols/yahoo/Makefile | |
| 385 | src/protocols/zephyr/Makefile | |
| 386 | gaim.spec | |
| 387 | ]) | |
| 388 | ||
| 389 | echo | |
| 390 | echo $PACKAGE $VERSION | |
| 391 | ||
| 392 | echo | |
| 393 | echo Allow Multiple Connections.. : $enable_multi | |
| 394 | echo Build Protocol Plugins...... : $enable_prpls | |
| 395 | echo Protocols to link statically : $STATIC_PRPLS | |
| 396 | echo | |
| 397 | echo Build with GNOME bits....... : $enable_gnome | |
| 398 | echo Use GdkPixbuf for Icons..... : $use_pixbuf | |
| 399 | echo Build as GNOME applet....... : $enable_panel | |
| 400 | echo | |
| 401 | echo Build with Plugin support... : $enable_plugins | |
| 402 | echo Build with Perl support..... : $enable_perl | |
| 403 | echo | |
| 404 | echo Use XScreenSaver Extension.. : $enable_xss | |
| 405 | echo | |
| 406 | echo Build with ESD.............. : $enable_esd | |
| 407 | echo Build with NAS.............. : $enable_nas | |
| 2179 | 408 | echo Build with ArtsC............ : $enable_artsc |
| 2129 | 409 | echo |
| 410 | echo Print debugging messages.... : $enable_debug | |
| 411 | echo | |
|
2452
8a19e5abeaf8
[gaim-migrate @ 2465]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2436
diff
changeset
|
412 | eval eval echo Gaim will be installed in $bindir. |
| 2129 | 413 | if test "x$gaimpath" != "x" ; then |
| 414 | echo Warning: You have an old copy of gaim at $gaimpath. | |
| 415 | fi | |
| 416 | echo | |
| 417 | echo configure complete, now type \'make\' | |
| 418 | echo |