File: configure.in

package info (click to toggle)
psgml 1.3.2-8
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,164 kB
  • ctags: 1,046
  • sloc: lisp: 10,073; sh: 497; makefile: 53
file content (21 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
dnl Process this file with autoconf to produce a `configure' script.
dnl To rebuild `configure' from this, execute the command
dnl 	autoconf
dnl in the directory containing this script.
AC_PREREQ(2.9)dnl
AC_INIT(psgml.el)

PACKAGE=psgml
VERSION=1.3.2
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
AC_DEFINE_UNQUOTED(VERSION, "$VERSION")

AC_SET_MAKE
AC_PROG_INSTALL
AM_PATH_LISPDIR
AC_PATH_PROG(MAKEINFO, makeinfo, no)
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
AC_OUTPUT(Makefile)

dnl configure.in ends here