diff options
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -5303,8 +5303,6 @@ case "$host_os" in #( printf "%s\n" "#define __WINDOWS__ /**/" >>confdefs.h - - ;; #( *) : @@ -5314,6 +5312,8 @@ printf "%s\n" "#define __WINDOWS__ /**/" >>confdefs.h *) : ;; esac + + # AC_DEFINE([ENABLE_NCURSES], [], [Enable ncurses]) # AC_CHECK_LIB([ncurses], [initscr]) diff --git a/configure.ac b/configure.ac index b5d3b52..f74eefb 100644 --- a/configure.ac +++ b/configure.ac @@ -22,13 +22,13 @@ AS_CASE(["$host_os"], DEPS_CFLAGS="-Ix86_64-w64-mingw32/include/SDL2" DEPS_LIBS="-Lx86_64-w64-mingw32/lib -lSDL2 -municode" AC_DEFINE([__WINDOWS__], [], [Compile for Windows]) - AC_SUBST([DEPS_CFLAGS]) - AC_SUBST([DEPS_LIBS]) ], [*], [ AC_MSG_ERROR([Unsupported OS.]) ] ) +AC_SUBST([DEPS_CFLAGS]) +AC_SUBST([DEPS_LIBS]) # AC_DEFINE([ENABLE_NCURSES], [], [Enable ncurses]) # AC_CHECK_LIB([ncurses], [initscr]) |