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