From c9b2dae0d9b33da27dd194c4b9c2e8aed89de4e5 Mon Sep 17 00:00:00 2001 From: knu Date: Wed, 30 May 2001 16:29:32 +0000 Subject: * configure.in: default --with-libc_r to `no' until the problem is fixed. (FreeBSD only) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1477 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ configure.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 00381b7b7..52cd4818a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu May 31 01:25:59 2001 Akinori MUSHA + + * configure.in: default --with-libc_r to `no' until the problem is + fixed. (FreeBSD only) + Tue May 29 17:24:23 2001 K.Kosako * ruby.c (proc_options): unexpected SecurityError happens when -T4. diff --git a/configure.in b/configure.in index 620e28bd6..f565695b6 100644 --- a/configure.in +++ b/configure.in @@ -183,7 +183,7 @@ AC_ARG_WITH(libc_r, case $withval in yes) with_libc_r=yes;; *) with_libc_r=no;; - esac], [with_libc_r=yes]) + esac], [with_libc_r=no]) dnl Checks for libraries. case "$target_os" in -- cgit