summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorttate <ttate@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-12-04 05:27:26 +0000
committerttate <ttate@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-12-04 05:27:26 +0000
commite0ed1214e42669ca294463c4fca8fb6a55c597c7 (patch)
tree4c9b986c3cfe9fb586c1792147dd7f49b7988bd8
parentf514f94a5103a3b1cab621289eb1d90e5e8342c2 (diff)
replace have_header("curses") with have_header("curses.h")
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1885 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ext/curses/extconf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curses/extconf.rb b/ext/curses/extconf.rb
index 8e35876237..075a147937 100644
--- a/ext/curses/extconf.rb
+++ b/ext/curses/extconf.rb
@@ -14,7 +14,7 @@ elsif have_header("curses_colr/curses.h") and have_library("cur_colr", "initscr"
make=true
else
have_library("termcap", "tgetent")
- if have_header("curses") and have_library("curses", "initscr")
+ if have_header("curses.h") and have_library("curses", "initscr")
make=true
end
end