blob: a0c30637cb0d19488f8146b2249af35ff21e618e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# FP_CURSES
# -------------
AC_DEFUN([FP_CURSES],
[
dnl--------------------------------------------------------------------
dnl * Deal with arguments telling us curses is somewhere odd
dnl--------------------------------------------------------------------
AC_ARG_WITH([curses-libraries],
[AS_HELP_STRING([--with-curses-libraries],
[directory containing curses libraries])],
[CURSES_LIB_DIRS=$withval])
AC_SUBST(CURSES_LIB_DIRS)
])# FP_CURSES
|