File: configure.in

package info (click to toggle)
newt 0.50-7
  • links: PTS
  • area: main
  • in suites: potato
  • size: 516 kB
  • ctags: 981
  • sloc: ansic: 6,642; python: 501; makefile: 270; sh: 167
file content (18 lines) | stat: -rw-r--r-- 359 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dnl Process this file with autoconf to produce a configure script.

AC_INIT(newt_pr.h)
AC_CONFIG_HEADER(config.h)
VERSION=0.50
AC_SUBST(VERSION)
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S

AC_ARG_WITH(gpm-support, [  --with-gpm-support         Compile with GPM support])

if test "x$with_gpm_support" = "xyes"; then
  AC_DEFINE(USE_GPM)
fi

AC_OUTPUT(Makefile)