Initial commit

This commit is contained in:
John Doty 2012-03-22 07:16:09 -07:00
commit a491ef2093
813 changed files with 345031 additions and 0 deletions

21
site-lisp/configure.in Normal file
View file

@ -0,0 +1,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.2.5
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