dnl Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Thien-Thi Nguyen dnl dnl This file is part of ttn's personal elisp library, released under dnl the terms of the GNU General Public License as published by the dnl Free Software Foundation; either version 3, or (at your option) any dnl later version. There is NO WARRANTY. See file COPYING for details. AC_INIT([ttn-pers-elisp],[1.59],[ttn@gnuvola.org]) # allow env override but do not get fooled by EMACS=t test t = "$EMACS" && unset EMACS # the next line does nothing if var EMACS is already set AC_CHECK_PROG([EMACS], [emacs], [emacs]) if test "x$EMACS" = x ; then AC_MSG_ERROR([emacs not found; required!]) fi AC_ARG_WITH([sitelisp], AS_HELP_STRING([--with-sitelisp=DIR], [use DIR instead of ${datadir}/emacs/site-lisp]), [sitelisp="`echo $withval | sed s:/$::`"], [sitelisp='${datadir}'/emacs/site-lisp]) AC_SUBST(sitelisp) AC_CONFIG_FILES([Makefile about.el]) AC_OUTPUT dnl configure.ac ends here