summaryrefslogtreecommitdiff
path: root/ext/curses/extconf.rb
blob: 9b2843784381c7550082ad8cb582de0107cccd82 (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", "tgetent") 
  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