]> git.ipfire.org Git - thirdparty/newt.git/blob - configure.in
- fixed help line drawing in UTF-8 (#81718)
[thirdparty/newt.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_INIT(newt_pr.h)
4 AC_CONFIG_HEADER(config.h)
5
6 VERSION=$(awk '/^%define version/ {print $3}' $srcdir/newt.spec)
7
8 VERSION=0.51.4
9 SONAME=0.51
10 AC_SUBST(VERSION)
11 AC_SUBST(SONAME)
12 AC_PROG_CC
13 AC_PROG_INSTALL
14 AC_PROG_LN_S
15
16 AC_CHECK_HEADERS(sys/select.h alloca.h)
17
18 AC_ARG_WITH(gpm-support, [ --with-gpm-support Compile with GPM support])
19
20 if test "x$with_gpm_support" = "xyes"; then
21 AC_DEFINE(USE_GPM, 1, [Define to 1 if GPM support is enabled])
22 fi
23
24 AC_OUTPUT(Makefile)
25