diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-07-07 03:20:53 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-07-07 03:20:53 +0000 |
commit | 950abe3995d64e96d387eb01f34ec146296b306f (patch) | |
tree | 5903ff25972c6d5399725ec7ad14fe25df9026f6 /README.EXT | |
parent | 733953a72fcd8b3f4e38e6cb288205a4a8930517 (diff) | |
download | ruby-950abe3995d64e96d387eb01f34ec146296b306f.tar.gz ruby-950abe3995d64e96d387eb01f34ec146296b306f.tar.xz ruby-950abe3995d64e96d387eb01f34ec146296b306f.zip |
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'README.EXT')
-rw-r--r-- | README.EXT | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/README.EXT b/README.EXT index 90673661e..dc5126efa 100644 --- a/README.EXT +++ b/README.EXT @@ -585,7 +585,7 @@ at the top of the file. You can use the functions below to check the condition. have_library(lib, func): check whether library containing function exists. - have_func(func): check whether function exists + have_func(func, header): check whether function exists have_header(header): check whether header file exists create_makefile(target): generate Makefile @@ -975,11 +975,11 @@ These functions are available in extconf.rb: Checks whether library which contains specified function exists. Returns true if the library exists. - have_func(func) + have_func(func, header) -Checks whether func exists. Returns true if the function exists. To -check functions in the additional library, you need to check that -library first using have_library(). +Checks whether func exists with header. Returns true if the function +exists. To check functions in the additional library, you need to +check that library first using have_library(). have_header(header) |