aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-08-03 07:14:35 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-08-03 07:14:35 +0000
commit21161e9ecb7ade63c81ab126281ef5e2b9ee3ccc (patch)
tree0a395fce67f55057013addf43cd00c33cea0cfb9
parent34165083a911ffb9bf2c6938e3466285d553cfd8 (diff)
fixed OpenSSL test in configure.in.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1114 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja7
-rw-r--r--configure.in1
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index bc3ff813..3250fff8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2006-08-03
+ * configure.in: fixed a bug that $LIBS was not properly restored
+ when OpenSSL test failed (thanks to IWAMOTO Kouichi).
+
+2006-08-03
+
* libsylph/filter.c
src/about.c
src/prefs_filter_edit.c
diff --git a/ChangeLog.ja b/ChangeLog.ja
index d95b7d0b..fbcc6df2 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,10 +1,15 @@
2006-08-03
+ * configure.in: OpenSSL のテストが失敗したときに $LIBS を正しく復元
+ していなかったバグを修正(岩本さん thanks)。
+
+2006-08-03
+
* libsylph/filter.c
src/about.c
src/prefs_filter_edit.c
configure.in: システムの正規表現 API 以外に Oniguruma を使用できる
- ようにした (岩本さん thanks).
+ ようにした(岩本さん thanks)。
2006-08-02
diff --git a/configure.in b/configure.in
index b2318332..4bd98824 100644
--- a/configure.in
+++ b/configure.in
@@ -222,6 +222,7 @@ if test $ac_cv_enable_ssl = yes; then
else
dnl If pkg-config fails, run compile/link test.
AC_MSG_CHECKING([if openssl is available])
+ ac_save_LIBS="$LIBS"
if test "$native_win32" = yes; then
LIBS="$LIBS -lssl32 -leay32"
else