1 | # $Id: configure.ac 112 2003-11-10 00:15:02Z sam $ |
---|
2 | |
---|
3 | AC_INIT(ttyvaders,0.0cvs-20021223) |
---|
4 | |
---|
5 | AC_PREREQ(2.50) |
---|
6 | AC_CONFIG_SRCDIR(src/main.c) |
---|
7 | AC_CONFIG_AUX_DIR(autotools) |
---|
8 | AC_CANONICAL_SYSTEM |
---|
9 | |
---|
10 | AM_INIT_AUTOMAKE(ttyvaders,0.0cvs-20021223) |
---|
11 | AM_CONFIG_HEADER(config.h) |
---|
12 | |
---|
13 | AM_PROG_CC_C_O |
---|
14 | AC_PROG_CPP |
---|
15 | AC_PROG_RANLIB |
---|
16 | |
---|
17 | AC_ARG_ENABLE(slang, |
---|
18 | [ --enable-slang slang graphics support (default enabled)]) |
---|
19 | AC_ARG_ENABLE(ncurses, |
---|
20 | [ --enable-ncurses ncurses graphics support (default disabled)]) |
---|
21 | |
---|
22 | USE_SLANG=false |
---|
23 | USE_NCURSES=false |
---|
24 | if test "${enable_ncurses}" = "yes"; then |
---|
25 | AC_CHECK_HEADER(ncurses.h,:,AC_MSG_ERROR([cannot find ncurses headers])) |
---|
26 | AC_CHECK_LIB(ncurses,initscr,:,AC_MSG_ERROR([cannot find ncurses library])) |
---|
27 | AC_DEFINE(USE_NCURSES, 1, Define if the backend driver is ncurses) |
---|
28 | USE_NCURSES=: |
---|
29 | elif test "${enable_slang}" != "no"; then |
---|
30 | AC_CHECK_HEADER(slang.h,:,AC_MSG_ERROR([cannot find slang headers])) |
---|
31 | AC_CHECK_LIB(slang,SLkp_init,:,AC_MSG_ERROR([cannot find slang library])) |
---|
32 | AC_DEFINE(USE_SLANG, 1, Define if the backend driver is slang) |
---|
33 | USE_SLANG=: |
---|
34 | fi |
---|
35 | |
---|
36 | AM_CONDITIONAL(USE_SLANG, ${USE_SLANG}) |
---|
37 | AM_CONDITIONAL(USE_NCURSES, ${USE_NCURSES}) |
---|
38 | |
---|
39 | AC_OUTPUT([ |
---|
40 | Makefile |
---|
41 | libee/Makefile |
---|
42 | test/Makefile |
---|
43 | src/Makefile |
---|
44 | autotools/Makefile |
---|
45 | debian/Makefile |
---|
46 | ]) |
---|
47 | |
---|