diff options
| author | Lute Kamstra | 2005-05-19 08:28:29 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2005-05-19 08:28:29 +0000 |
| commit | 261967be48afece949149e70bc8268e10a72de1a (patch) | |
| tree | ba8527472e2c0f5330aa271eae17fac587daa897 | |
| parent | 73d5f66837db28554b5b96d6d846d9fca8a74ce7 (diff) | |
| download | emacs-261967be48afece949149e70bc8268e10a72de1a.tar.gz emacs-261967be48afece949149e70bc8268e10a72de1a.zip | |
Add --enable-locallisppath.
| -rw-r--r-- | configure.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 181b86007df..ec772a5c2a4 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -142,6 +142,16 @@ else | |||
| 142 | fi | 142 | fi |
| 143 | AC_SUBST(MAINT) | 143 | AC_SUBST(MAINT) |
| 144 | 144 | ||
| 145 | AC_ARG_ENABLE(locallisppath, | ||
| 146 | [ --enable-locallisppath=PATH | ||
| 147 | directories Emacs should search for lisp files | ||
| 148 | specific to this site], | ||
| 149 | if test "${enableval}" = "no"; then | ||
| 150 | locallisppath= | ||
| 151 | elif test "${enableval}" != "yes"; then | ||
| 152 | locallisppath=${enableval} | ||
| 153 | fi) | ||
| 154 | |||
| 145 | #### Make srcdir absolute, if it isn't already. It's important to | 155 | #### Make srcdir absolute, if it isn't already. It's important to |
| 146 | #### avoid running the path through pwd unnecessarily, since pwd can | 156 | #### avoid running the path through pwd unnecessarily, since pwd can |
| 147 | #### give you automounter prefixes, which can go away. We do all this | 157 | #### give you automounter prefixes, which can go away. We do all this |