diff options
| author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-05-30 16:29:32 +0000 |
|---|---|---|
| committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-05-30 16:29:32 +0000 |
| commit | c9b2dae0d9b33da27dd194c4b9c2e8aed89de4e5 (patch) | |
| tree | 3e77e7f7eeb91a6660b3bef81f799328ce0e626d | |
| parent | b53fdf24a832666b63f5e4fcb343f6cbe1254736 (diff) | |
| download | ruby-c9b2dae0d9b33da27dd194c4b9c2e8aed89de4e5.tar.gz ruby-c9b2dae0d9b33da27dd194c4b9c2e8aed89de4e5.tar.xz ruby-c9b2dae0d9b33da27dd194c4b9c2e8aed89de4e5.zip | |
* 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
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Thu May 31 01:25:59 2001 Akinori MUSHA <knu@iDaemons.org> + + * configure.in: default --with-libc_r to `no' until the problem is + fixed. (FreeBSD only) + Tue May 29 17:24:23 2001 K.Kosako <kosako@sofnec.co.jp> * 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 |
