# HG changeset patch # User Lute Kamstra # Date 1116491309 0 # Node ID 038037bfdf1f648f343fb05bc473c53448665596 # Parent 6ffd8d40d1331eaf6c7a31f1926b718c146fed26 Add --enable-locallisppath. diff -r 6ffd8d40d133 -r 038037bfdf1f configure.in --- a/configure.in Thu May 19 08:25:58 2005 +0000 +++ b/configure.in Thu May 19 08:28:29 2005 +0000 @@ -142,6 +142,16 @@ fi AC_SUBST(MAINT) +AC_ARG_ENABLE(locallisppath, +[ --enable-locallisppath=PATH + directories Emacs should search for lisp files + specific to this site], +if test "${enableval}" = "no"; then + locallisppath= +elif test "${enableval}" != "yes"; then + locallisppath=${enableval} +fi) + #### Make srcdir absolute, if it isn't already. It's important to #### avoid running the path through pwd unnecessarily, since pwd can #### give you automounter prefixes, which can go away. We do all this