comparison configure.in @ 3802:9bcb42faccc0

[gaim-migrate @ 3945] Rewrote show_im_dialog and show_info_dialog. Ported to gtkspell2. Gtkspell2 is a library available from gtkspell.sf.net. It requires the pspell library. If you want the "highlight misspelled words" feature to work, you must have this library installed. If installed, configure will detect it and link against it. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 26 Oct 2002 06:41:13 +0000
parents 4fcd36091737
children 9c31ddae80a1
comparison
equal deleted inserted replaced
3801:8cc3d7526043 3802:9bcb42faccc0
116 AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],,enable_nas=no) 116 AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],,enable_nas=no)
117 AC_ARG_ENABLE(artsc, [ --disable-artsc Turn off ArtsC (default=auto)],,enable_artsc=yes) 117 AC_ARG_ENABLE(artsc, [ --disable-artsc Turn off ArtsC (default=auto)],,enable_artsc=yes)
118 118
119 AC_ARG_ENABLE(plugins, [ --disable-plugins compile without plugin support],,enable_plugins=yes) 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) 120 AC_ARG_ENABLE(perl, [ --disable-perl compile without perl scripting],,enable_perl=yes)
121 AC_ARG_ENABLE(gtkspell, [ --disable-gtkspell compile without GtkSpell automatic spell checking],,enable_gtkspell=yes)
121 122
122 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no) 123 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no)
123 AC_ARG_ENABLE(screensaver, [ --disable-screensaver compile without X screensaver extension],,enable_xss=yes) 124 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 AC_ARG_WITH(krb4, [ --with-krb4=PREFIX Compile Zephyr plugin with Kerberos 4 support],kerberos="$withval",kerberos="no")
125 126
204 AC_MSG_RESULT(ok) 205 AC_MSG_RESULT(ok)
205 AC_SUBST(PERL_CFLAGS) 206 AC_SUBST(PERL_CFLAGS)
206 AC_SUBST(PERL_LIBS) 207 AC_SUBST(PERL_LIBS)
207 AC_DEFINE(USE_PERL, 1, [Define if Perl is enabled.]) 208 AC_DEFINE(USE_PERL, 1, [Define if Perl is enabled.])
208 AC_CHECK_FUNCS(Perl_eval_pv) 209 AC_CHECK_FUNCS(Perl_eval_pv)
210 fi
211 fi
212
213 dnl Thanks, Evan.
214 if test "$enable_gtkspell" = yes ; then
215 PKG_CHECK_MODULES(GTKSPELL, gtkspell-2.0 >= 2.0.2, , enable_gtkspell=no)
216 if test "$enable_gtkspell" = "yes" ; then
217 AC_SUBST(GTKSPELL_CFLAGS)
218 AC_SUBST(GTKSPELL_LIBS)
219 AC_DEFINE(USE_GTKSPELL,,[do we have gtkspell?])
209 fi 220 fi
210 fi 221 fi
211 222
212 if test "$enable_nas" = yes ; then 223 if test "$enable_nas" = yes ; then
213 AC_DEFINE(NAS_SOUND, 1, [Define if we have NAS sound support.]) 224 AC_DEFINE(NAS_SOUND, 1, [Define if we have NAS sound support.])
378 echo UI Library.................... : GTK 2.0 389 echo UI Library.................... : GTK 2.0
379 echo 390 echo
380 echo Build with Plugin support..... : $enable_plugins 391 echo Build with Plugin support..... : $enable_plugins
381 echo Build with Perl support....... : $enable_perl 392 echo Build with Perl support....... : $enable_perl
382 echo 393 echo
394 echo Build with GtkSpell............: $enable_gtkspell
395 echo
383 echo Use XScreenSaver Extension.... : $enable_xss 396 echo Use XScreenSaver Extension.... : $enable_xss
384 echo 397 echo
385 echo Build with ESD................ : $enable_esd 398 echo Build with ESD................ : $enable_esd
386 echo Build with NAS................ : $enable_nas 399 echo Build with NAS................ : $enable_nas
387 echo Build with ArtsC.............. : $enable_artsc 400 echo Build with ArtsC.............. : $enable_artsc