summaryrefslogtreecommitdiff
path: root/ext/curses/extconf.rb
blob: 7c38bd9266dd5cd179db5aae1ce3df060b9f63de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
require 'mkmf'

def transact
  old_libs = $libs.dup
  old_defs = $defs.dup
  result = yield
  if !result
    $libs = old_libs
    $defs = old_defs
  end
  result
end

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")

curses = nil
if transact { have_header(*curses=%w"ncurses.h") and
              (have_library("ncursesw", "initscr") or
               have_library("ncurses", "initscr")) }
  make=true
elsif transact { have_header(*curses=%w"ncurses/curses.h") and
                 have_library("ncurses", "initscr") }
  make=true
elsif transact { have_header(*curses=%w"curses_colr/curses.h") and
                 have_library("cur_colr", "initscr") }
  curses.unshift("varargs.h")
  make=true
elsif transact { 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 newpad)
    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)
  have_var("COLORS", curses)
  have_var("COLOR_PAIRS", curses)
  create_makefile("curses")
end