File: configure.in

package info (click to toggle)
newt 0.50.17-9.6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 572 kB
  • ctags: 1,065
  • sloc: ansic: 7,315; python: 537; makefile: 402; sh: 229
file content (20 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
dnl Process this file with autoconf to produce a configure script.

AC_INIT(newt_pr.h)
AC_CONFIG_HEADER(config.h)
VERSION=0.50.17
SONAME=0.50
AC_SUBST(VERSION)
AC_SUBST(SONAME)
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)