summaryrefslogtreecommitdiff
path: root/ext/curses/extconf.rb
blob: 22b1e2f0ccec5815a94059f98cc509eccf3d85a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$CFLAGS="-I/usr/include/ncurses -I/usr/local/include/ncurses"
$LDFLAGS="-L/usr/local/lib"
make=FALSE
if have_header("ncurses.h") and have_library("ncurses", "initscr")
  make=TRUE
elsif have_header("ncurses/curses.h") and have_library("ncurses", "initscr")
  make=TRUE
else
  $CFLAGS=nil
  have_library("termcap", "tparam") 
  if have_library("curses", "initscr")
    make=TRUE
  end
end

if make then
  for f in ["isendwin", "ungetch", "beep"]
    have_func(f)
  end
  create_makefile("curses")
end