mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d45bda0bf8
headers are inconsistent at this macro. [ruby-core:01432] * ext/curses/extconf.rb: check if _XOPEN_SOURCE_EXTENDED breaks. * ext/tcltklib/stubs.c: Status macro in X11/Xthreads.h bothers winspool.h * instruby.rb: make list at first instead of iterator. [ruby-talk:79347] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4405 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
31 lines
1 KiB
Ruby
31 lines
1 KiB
Ruby
require 'mkmf'
|
|
|
|
dir_config('curses')
|
|
dir_config('ncurses')
|
|
dir_config('termcap')
|
|
|
|
make=false
|
|
have_library("mytinfo", "tgetent") if /bow/ =~ RUBY_PLATFORM
|
|
have_library("tinfo", "tgetent") or have_library("termcap", "tgetent")
|
|
if have_header(*curses=%w"ncurses.h") and have_library("ncurses", "initscr")
|
|
make=true
|
|
elsif have_header(*curses=%w"ncurses/curses.h") and have_library("ncurses", "initscr")
|
|
make=true
|
|
elsif have_header(*curses=%w"curses_colr/curses.h") and have_library("cur_colr", "initscr")
|
|
curses.unshift("varargs.h")
|
|
make=true
|
|
elsif have_header(*curses=%w"curses.h") and have_library("curses", "initscr")
|
|
make=true
|
|
end
|
|
|
|
if make
|
|
for f in %w(isendwin ungetch beep getnstr wgetnstr doupdate flash deleteln wdeleteln keypad keyname init_color wresize resizeterm)
|
|
have_func(f)
|
|
end
|
|
flag = "-D_XOPEN_SOURCE_EXTENDED"
|
|
src = "int test_var[(sizeof(char*)>sizeof(int))*2-1];"
|
|
if try_compile(cpp_include(%w[stdio.h stdlib.h]+curses)+src , flag)
|
|
$defs << flag
|
|
end
|
|
create_makefile("curses")
|
|
end
|