diff options
author | Louie S <louie@example.com> | 2023-06-30 10:57:04 -0700 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-06-30 10:57:04 -0700 |
commit | 33e27b2c2796aa98fb7e48079187b01a2e59d72a (patch) | |
tree | d93fec7bc0e0c84716792217de456137901205f9 /configure.ac | |
parent | 4333cd2b11cc32fe75fa1ef31627c667bcc71327 (diff) |
draw skeleton
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 8154800..47b5956 100644 --- a/configure.ac +++ b/configure.ac @@ -9,10 +9,15 @@ AM_INIT_AUTOMAKE AC_PROG_CC # Checks for libraries. +AX_WITH_CURSES +if test "x$ax_cv_curses" != xyes; then + AC_MSG_ERROR([requires an X/Open-compatible Curses library]) +fi # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. +AC_CHECK_HEADER_STDBOOL # Checks for library functions. |