]> git.ipfire.org Git - thirdparty/newt.git/blob - configure.in
sync with 0.52.0
[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 PACKAGE=newt
7 VERSION=0.52.0
8 SONAME=0.52
9 AC_SUBST(PACKAGE)
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 fribidi/fribidi.h dlfcn.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