summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-22 05:17:16 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-22 05:17:16 +0000
commite243aabc0c27bb55506551df91e56a2aec9a77c5 (patch)
tree15ec2bd9a3663e8d8a2b36570b84103eb7a867a8
parent45c2671e370a67686e0a64a7364baa00b628cceb (diff)
* configure.in: add missing comma.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26375 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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