diff options
| -rwxr-xr-x | autogen/configure | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/autogen/configure b/autogen/configure index 7df5dddeebe..aed6c711a65 100755 --- a/autogen/configure +++ b/autogen/configure | |||
| @@ -4034,6 +4034,15 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' | |||
| 4034 | 4034 | ||
| 4035 | 4035 | ||
| 4036 | 4036 | ||
| 4037 | for var in "`pwd`" "`cd \"$srcdir\"; pwd`" "$prefix" "$exec_prefix" \ | ||
| 4038 | "$datarootdir" "$bindir" "$datadir" "$sharedstatedir" "$libexecdir"; do | ||
| 4039 | |||
| 4040 | case "$var" in | ||
| 4041 | *[^\ -~]*) as_fn_error "Emacs cannot be built or installed in a directory whose name contains non-ASCII characters: $var" "$LINENO" 5 ;; | ||
| 4042 | esac | ||
| 4043 | |||
| 4044 | done | ||
| 4045 | |||
| 4037 | lispdir='${datadir}/emacs/${version}/lisp' | 4046 | lispdir='${datadir}/emacs/${version}/lisp' |
| 4038 | leimdir='${datadir}/emacs/${version}/leim' | 4047 | leimdir='${datadir}/emacs/${version}/leim' |
| 4039 | standardlisppath='${lispdir}:${leimdir}' | 4048 | standardlisppath='${lispdir}:${leimdir}' |
| @@ -29289,7 +29298,7 @@ CFLAGS=$SAVE_CFLAGS | |||
| 29289 | LIBS=$SAVE_LIBS | 29298 | LIBS=$SAVE_LIBS |
| 29290 | 29299 | ||
| 29291 | if test "${opsys}" = "mingw32"; then | 29300 | if test "${opsys}" = "mingw32"; then |
| 29292 | CPPFLAGS="$CPPFLAGS -DUSE_CRT_DLL=1 -I $srcdir/nt/inc" | 29301 | CPPFLAGS="$CPPFLAGS -DUSE_CRT_DLL=1 -I \${abs_top_srcdir}/nt/inc" |
| 29293 | # Remove unneeded switches from the value of CC that goes to Makefiles | 29302 | # Remove unneeded switches from the value of CC that goes to Makefiles |
| 29294 | CC=`echo $CC | sed -e "s,$GCC_TEST_OPTIONS,,"` | 29303 | CC=`echo $CC | sed -e "s,$GCC_TEST_OPTIONS,,"` |
| 29295 | fi | 29304 | fi |
| @@ -31140,7 +31149,7 @@ fi | |||
| 31140 | ;; | 31149 | ;; |
| 31141 | "src/.gdbinit":C) | 31150 | "src/.gdbinit":C) |
| 31142 | if test ! -f src/.gdbinit && test -f "$srcdir/src/.gdbinit"; then | 31151 | if test ! -f src/.gdbinit && test -f "$srcdir/src/.gdbinit"; then |
| 31143 | echo "source $srcdir/src/.gdbinit" > src/.gdbinit | 31152 | echo "source $ac_abs_top_srcdir/src/.gdbinit" > src/.gdbinit |
| 31144 | fi | 31153 | fi |
| 31145 | ;; | 31154 | ;; |
| 31146 | 31155 | ||