X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=configure.ac;h=5a139d95e36b4a53542791576bf57369ab62a401;hb=8e5831e371def4903b232c4e91962d2053cc6ce1;hp=8070a62380c4b8b3d6e4319983a3d336f8b26228;hpb=57358ec0b92d3529774187a4176c0e8a422eaf1b;p=apps%2Fmadtty.git diff --git a/configure.ac b/configure.ac index 8070a62..5a139d9 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([rote], 0.2.7) +AC_INIT([maddty], 0.0.0) AC_SUBST(PACKAGE_NAME) AC_SUBST(PACKAGE_VERSION) @@ -16,10 +16,26 @@ AC_HEADER_STDBOOL AC_CHECK_HEADERS([sys/types.h unistd.h stdlib.h string.h]) dnl Check for libraries -AC_CHECK_LIB([ncurses], [initscr], [], - AC_MSG_ERROR([Need ncurses to compile librote.])) -AC_CHECK_LIB([util], [forkpty], [], - AC_MSG_ERROR([Need util library (forkpty function) to compile librote.])) +AC_ARG_ENABLE([ncurses], + AS_HELP_STRING([--disable-ncurses], + [disables ncurses support (default enabled)]), + [enable_curses=n],[enable_curses=y]) +if test "$enable_curses" = y; then + AC_CHECK_LIB([ncurses], [initscr], [], + AC_MSG_ERROR([Need ncurses to compile ncurses support.])) + CFLAGS="$CFLAGS -DUSE_NCURSES" +fi + +AC_ARG_ENABLE([pty], + AS_HELP_STRING([--disable-pty], + [disables pty support (default enabled)]), + [enable_pty=n],[enable_pty=y]) + +if test "$enable_pty" = y; then + AC_CHECK_LIB([util], [forkpty], [], + AC_MSG_ERROR([Need util library (forkpty function) to compile pty support.])) + CFLAGS="$CFLAGS -DUSE_PTY" +fi dnl Checks for library functions AC_CHECK_FUNCS([memset select setenv]) @@ -33,6 +49,6 @@ AC_C_INLINE AC_TYPE_PID_T AC_TYPE_SIGNAL -AC_CONFIG_FILES([Makefile rote-config]) +AC_CONFIG_FILES([Makefile madtty.pc]) AC_OUTPUT