aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.ja4
-rw-r--r--INSTALL2
-rw-r--r--INSTALL.ja2
-rw-r--r--configure.in4
5 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index fe938c34..63f18614 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2006-02-24
+ * configure.in: enabled GtkSpell by default.
+
+2006-02-24
+
* libsylph/folder.h: fixed comments.
2006-02-24
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 11bc0e13..66d05613 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,5 +1,9 @@
2006-02-24
+ * configure.in: GtkSpell をデフォルトで有効にした。
+
+2006-02-24
+
* libsylph/folder.h: コメントを修正。
2006-02-24
diff --git a/INSTALL b/INSTALL
index 5135d638..5842fc10 100644
--- a/INSTALL
+++ b/INSTALL
@@ -122,9 +122,9 @@ Options for configure script
--disable-ssl disable SSL support (requires OpenSSL)
--disable-compface disable compface (X-Face) support
--disable-ipv6 disable IPv6 support
+ --disable-gtkspell disable spell checking feature (requires GtkSpell)
--enable-jpilot enable JPilot support
--enable-ldap enable LDAP support
- --enable-gtkspell enable spell checking feature (requires GtkSpell)
For other options, refer to ./configure --help .
diff --git a/INSTALL.ja b/INSTALL.ja
index 193206c2..6242be2e 100644
--- a/INSTALL.ja
+++ b/INSTALL.ja
@@ -121,9 +121,9 @@ configure スクリプトのオプション
--disable-ssl SSL 対応(要 OpenSSL)を無効にする
--disable-compface compface(X-Face)対応を無効にする
--disable-ipv6 IPv6 対応を無効にする
+ --disable-gtkspell スペルチェック機能(要 GtkSpell)を無効にする
--enable-jpilot JPilot 対応を有効にする
--enable-ldap LDAP 対応を有効にする
- --enable-gtkspell スペルチェック機能を有効にする(要GtkSpell)
その他のオプションについては ./configure --help を参照してください。
diff --git a/configure.in b/configure.in
index 081c9136..9e3ccab4 100644
--- a/configure.in
+++ b/configure.in
@@ -251,8 +251,8 @@ fi
dnl Check for GtkSpell support
AC_MSG_CHECKING([whether to use GtkSpell])
AC_ARG_ENABLE(gtkspell,
- [ --enable-gtkspell Use GtkSpell in editor [[default=no]]],
- [ac_cv_enable_gtkspell=$enableval], [ac_cv_enable_gtkspell=no])
+ [ --disable-gtkspell Do not use GtkSpell in editor],
+ [ac_cv_enable_gtkspell=$enableval], [ac_cv_enable_gtkspell=yes])
if test "$ac_cv_enable_gtkspell" = yes; then
AC_MSG_RESULT(yes)
AC_MSG_CHECKING([whether GtkSpell is available])