pidgin/purple-plugin-pack

A few changes:
org.guifications.plugins
2008-07-22, rekkanoryo
1afb71dd8196
Parents 6bf9c444fc79
Children 21fc2c25e50b
A few changes:
* Make the enchant support in switchspell the default.
* Fix help for the configure flag to reflect that it's now --disable-enchant.
* Add output to show if enchant will be used for switchspell when switchspell
is going to be built.
* Make the ChangeLog reflect the change to enchant by default.
  • +3 -2
    ChangeLog
  • +5 -2
    configure.ac
  • --- a/ChangeLog Tue Jul 22 00:59:13 2008 -0400
    +++ b/ChangeLog Tue Jul 22 01:09:34 2008 -0400
    @@ -6,8 +6,9 @@
    * Fixed dewysiwygification's debug messages not properly ending lines.
    * Added Google plugin for "I'm Feeling Lucky" searches.
    * Fixed aspell dependency in switchspell (fixes gentoo bug #196693)
    - * Made switchspell work with gtkspell that uses enchant using
    - --enable-enchant option to ./configure
    + * Made switchspell work with gtkspell that uses enchant; this behavior is
    + now the default. To use gtkspell using aspell, use the
    + --disable-enchant argument to ./configure.
    * Added preferences to the irssi plugin that allow changing its behavior
    * Fixed the preference strings in slashexec so mnemonics are no longer
    incorrectly interpreted from the strings.
    --- a/configure.ac Tue Jul 22 00:59:13 2008 -0400
    +++ b/configure.ac Tue Jul 22 01:09:34 2008 -0400
    @@ -299,8 +299,8 @@
    AC_CHECK_LIB([aspell], [new_aspell_config], ASPELL_LIBS="-laspell", BUILD_SWITCH_SPELL=no)
    fi
    -AC_ARG_ENABLE(enchant, [AC_HELP_STRING([--enable-enchant], [compile with gtkspell using enchant])],
    - enable_enchant="$enableval", enable_enchant="no")
    +AC_ARG_ENABLE(enchant, [AC_HELP_STRING([--disable-enchant], [compile with gtkspell using aspell])],
    + enable_enchant="$enableval", enable_enchant="yes")
    if test "x$enable_enchant" = "xyes"; then
    PKG_CHECK_MODULES(ENCHANT, enchant, [
    BUILD_SWITCH_SPELL=yes
    @@ -410,6 +410,9 @@
    echo $PACKAGE $VERSION Configuration complete
    echo;
    echo Debugging enabled................: $enable_debug
    +if test x"$BUILD_SWITCH_SPELL" = x"yes" ; then
    + echo Use enchant for switchspell......: $enable_enchant
    +fi
    echo;
    echo Build purple plugins.............: $HAVE_PURPLE