mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
b949be82cf
support UTF-8 strings. non UTF-8 strings should be converted explicitly. [ruby-core:21094] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21508 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
34 lines
1.3 KiB
Ruby
34 lines
1.3 KiB
Ruby
require 'mkmf'
|
|
|
|
dir_config('curses')
|
|
dir_config('ncurses')
|
|
dir_config('termcap')
|
|
|
|
make=false
|
|
headers = []
|
|
|
|
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("ncursesw", "initscr") or 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(beep bkgd bkgdset curs_set deleteln doupdate flash getbkgd getnstr init isendwin keyname keypad resizeterm scrl set setscrreg ungetch wattroff wattron wattrset wbkgd wbkgdset wdeleteln wgetnstr wresize wscrl wsetscrreg def_prog_mode reset_prog_mode timeout wtimeout nodelay init_color wcolor_set use_default_colors)
|
|
have_func(f) || (have_macro(f, curses) && $defs.push(format("-DHAVE_%s", f.upcase)))
|
|
end
|
|
flag = "-D_XOPEN_SOURCE_EXTENDED"
|
|
if try_static_assert("sizeof(char*)>sizeof(int)", %w[stdio.h stdlib.h]+curses , flag)
|
|
$defs << flag
|
|
end
|
|
have_var("ESCDELAY", curses)
|
|
have_var("TABSIZE", curses)
|
|
create_makefile("curses")
|
|
end
|