diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-02 09:27:47 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-02 09:27:47 +0000 |
| commit | 0c31a0404734d49c16898da7205315a27fdb6cfc (patch) | |
| tree | 813875522145c63f8a16e1fd6e87b79163f81594 | |
| parent | cb89138e3928c030962dbb606971370f16a53a23 (diff) | |
* configure.in: detect stdio buffer pointers for uClibc. a patch
from Brian Candler <B.Candler at pobox.com> in [ruby-core:12020].
[ruby-core:19713]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@20445 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | configure.in | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,9 @@ +Tue Dec 2 18:23:33 2008 Yukihiro Matsumoto <matz@ruby-lang.org> + + * configure.in: detect stdio buffer pointers for uClibc. a patch + from Brian Candler <B.Candler at pobox.com> in [ruby-core:12020]. + [ruby-core:19713] + Thu Nov 27 11:25:04 2008 Akinori MUSHA <knu@iDaemons.org> * range.c: Add Range#cover? as a new alias to #include? for the diff --git a/configure.in b/configure.in index b696e7e995..c97420c4d5 100644 --- a/configure.in +++ b/configure.in @@ -888,6 +888,7 @@ AC_CACHE_VAL(rb_cv_frptr, __ptr dnl bufpos dnl _p dnl + __bufpos dnl ; do AC_TRY_COMPILE([#include <stdio.h> ], @@ -907,6 +908,7 @@ else [for frend in dnl _IO_read_end dnl bufread dnl + __bufread dnl ; do AC_TRY_COMPILE([#include <stdio.h> ], |
