source: ttyvaders/trunk/configure.ac @ 112

Last change on this file since 112 was 112, checked in by Sam Hocevar, 19 years ago
  • Removed CPPFLAGS_slang and CPPFLAGS_ncurses, we now have config.h.
  • Property svn:keywords set to Id
File size: 1.2 KB
Line 
1# $Id: configure.ac 112 2003-11-10 00:15:02Z sam $
2
3AC_INIT(ttyvaders,0.0cvs-20021223)
4
5AC_PREREQ(2.50)
6AC_CONFIG_SRCDIR(src/main.c)
7AC_CONFIG_AUX_DIR(autotools)
8AC_CANONICAL_SYSTEM
9
10AM_INIT_AUTOMAKE(ttyvaders,0.0cvs-20021223)
11AM_CONFIG_HEADER(config.h)
12
13AM_PROG_CC_C_O
14AC_PROG_CPP
15AC_PROG_RANLIB
16
17AC_ARG_ENABLE(slang,
18  [  --enable-slang          slang graphics support (default enabled)])
19AC_ARG_ENABLE(ncurses,
20  [  --enable-ncurses        ncurses graphics support (default disabled)])
21
22USE_SLANG=false
23USE_NCURSES=false
24if 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=:
29elif 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=:
34fi
35
36AM_CONDITIONAL(USE_SLANG, ${USE_SLANG})
37AM_CONDITIONAL(USE_NCURSES, ${USE_NCURSES})
38
39AC_OUTPUT([
40  Makefile
41  libee/Makefile
42  test/Makefile
43  src/Makefile
44  autotools/Makefile
45  debian/Makefile
46])
47
Note: See TracBrowser for help on using the repository browser.