• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# curses.m4 serial 1 (gettext-0.18)
2dnl Copyright (C) 2008 Free Software Foundation, Inc.
3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved.
6
7# Sets gl_curses_allowed to yes or no.
8AC_DEFUN([gl_CURSES],
9[
10  AC_MSG_CHECKING([whether curses libraries may be used])
11  AC_ARG_ENABLE(curses,
12    [  --disable-curses        do not use libncurses, libtermcap even if they exist],
13    [gl_curses_allowed="$enableval"],
14    [gl_curses_allowed=yes])
15  AC_MSG_RESULT([$gl_curses_allowed])
16])
17