summaryrefslogtreecommitdiff
path: root/ext/readline/extconf.rb
blob: b883de3e01874fe00caf1794cb7f66a535487569 (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
require "mkmf"

dir_config("readline")
have_library("user32", nil) if /cygwin/ === RUBY_PLATFORM
have_library("ncurses", "tgetnum") or
  have_library("termcap", "tgetnum") or
  have_library("curses", "tgetnum")

if have_header("readline/readline.h") and
    have_header("readline/history.h") and
    have_library("readline", "readline")
  if have_func("rl_filename_completion_function")
    $CFLAGS += " -DREADLINE_42_OR_LATER"
  end
  if have_func("rl_cleanup_after_signal")
    $CFLAGS += " -DREADLINE_40_OR_LATER"
  end
  if try_link(<<EOF, $libs)
#include <stdio.h>
#include <readline/readline.h>
main() {rl_completion_append_character = 1;}
EOF
    # this feature is implemented in readline-2.1 or later. 
    $CFLAGS += " -DREADLINE_21_OR_LATER"
  end
  create_makefile("readline")
end