aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-08-07 02:59:00 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-08-07 02:59:00 +0000
commitd7f3a86b18ffa182688a86c25efd32081a7f8dd9 (patch)
treea9b8a27e204f1de370583626982a72d9b91addb5
parent2d2c86cbd9bbd1fc44ff338ed89ebae535c359a5 (diff)
use onig-config in configure.in.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1119 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog.ja13
-rw-r--r--configure.in3
2 files changed, 15 insertions, 1 deletions
diff --git a/ChangeLog.ja b/ChangeLog.ja
index a3096662..ff0303ac 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,3 +1,16 @@
+2006-08-07
+
+ * configure.in: onig-config を使用。
+
+2006-08-07
+
+ * src/folderview.c: 「すべて読んだことにする」の前にセパレータを追加。
+
+2006-08-04
+
+ * src/sylpheed.rc.in
+ configure.in: バージョン情報を追加。
+
2006-08-04
* src/sylpheed.rc.in
diff --git a/configure.in b/configure.in
index 82a82b90..7e87bf9c 100644
--- a/configure.in
+++ b/configure.in
@@ -285,7 +285,8 @@ if test "$ac_cv_enable_oniguruma" = yes; then
AC_MSG_CHECKING([whether Oniguruma is available])
dnl AC_CHECK_PROG(ONIG_CONFIG, onig-config, onig-config)
ONIG_CONFIG=onig-config
- if $ONIG_CONFIG --version; then
+ ONIG_VERSION=`$ONIG_CONFIG --version 2>/dev/null`
+ if test "x$ONIG_VERSION" != "x"; then
AC_MSG_RESULT(yes)
CFLAGS="$CFLAGS `$ONIG_CONFIG --cflags`"
LIBS="$LIBS `$ONIG_CONFIG --libs`"