summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2edf174fe0..8de335178a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jan 22 14:16:18 2010 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * configure.in: add missing comma.
+
Fri Jan 22 01:07:16 2010 Yusuke Endoh <mame@tsg.ne.jp>
* test/ruby/test_bignum.rb, test/ruby/test_class.rb,
diff --git a/configure.in b/configure.in
index 37cae01781..8d74e74a7a 100644
--- a/configure.in
+++ b/configure.in
@@ -1491,7 +1491,7 @@ if test x"$enable_pthread" = xyes; then
AC_DEFINE(HAVE_LIBPTHREAD)
AS_CASE([$pthread_lib],
[c], [],
- [root], []
+ [root], [],
[c_r], [MAINLIBS="-pthread $MAINLIBS"],
[LIBS="-l$pthread_lib $LIBS"])
else