diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-02-24 23:23:41 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-02-24 23:23:41 -0800 |
commit | 9411886d3818d55e86eb1002ed39b38ce2426c63 (patch) | |
tree | 98c8957b4c7797e53f78c68c889254b0b34e8bfa /configure | |
parent | b18947669cd182ec8487b317460f6df5878d0f11 (diff) | |
download | emacs-9411886d3818d55e86eb1002ed39b38ce2426c63.tar.gz |
Regenerate.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 34 |
1 files changed, 26 insertions, 8 deletions
diff --git a/configure b/configure index 70aa60bb1e7..f3fae2fb85f 100755 --- a/configure +++ b/configure @@ -874,6 +874,7 @@ GNULIB_DUP2 GNULIB_CLOSE GNULIB_CHOWN GETLOADAVG_LIBS +REPLACE_WCTOMB REPLACE_UNSETENV REPLACE_STRTOD REPLACE_SETENV @@ -881,6 +882,7 @@ REPLACE_REALPATH REPLACE_REALLOC REPLACE_PUTENV REPLACE_MKSTEMP +REPLACE_MBTOWC REPLACE_MALLOC REPLACE_CANONICALIZE_FILE_NAME REPLACE_CALLOC @@ -909,6 +911,7 @@ HAVE_DECL_GETLOADAVG HAVE_CANONICALIZE_FILE_NAME HAVE_ATOLL HAVE__EXIT +GNULIB_WCTOMB GNULIB_UNSETENV GNULIB_UNLOCKPT GNULIB_SYSTEM_POSIX @@ -927,6 +930,7 @@ GNULIB_MKSTEMP GNULIB_MKOSTEMPS GNULIB_MKOSTEMP GNULIB_MKDTEMP +GNULIB_MBTOWC GNULIB_MALLOC_POSIX GNULIB_GRANTPT GNULIB_GETSUBOPT @@ -13780,6 +13784,7 @@ _ACEOF GNULIB_GETSUBOPT=0; GNULIB_GRANTPT=0; GNULIB_MALLOC_POSIX=0; + GNULIB_MBTOWC=0; GNULIB_MKDTEMP=0; GNULIB_MKOSTEMP=0; GNULIB_MKOSTEMPS=0; @@ -13798,6 +13803,7 @@ _ACEOF GNULIB_SYSTEM_POSIX=0; GNULIB_UNLOCKPT=0; GNULIB_UNSETENV=0; + GNULIB_WCTOMB=0; HAVE__EXIT=1; HAVE_ATOLL=1; HAVE_CANONICALIZE_FILE_NAME=1; @@ -13826,6 +13832,7 @@ _ACEOF REPLACE_CALLOC=0; REPLACE_CANONICALIZE_FILE_NAME=0; REPLACE_MALLOC=0; + REPLACE_MBTOWC=0; REPLACE_MKSTEMP=0; REPLACE_PUTENV=0; REPLACE_REALLOC=0; @@ -13833,6 +13840,7 @@ _ACEOF REPLACE_SETENV=0; REPLACE_STRTOD=0; REPLACE_UNSETENV=0; + REPLACE_WCTOMB=0; GNULIB_CHOWN=0; @@ -19249,7 +19257,15 @@ test "${exec_prefix}" != NONE && ac_config_files="$ac_config_files Makefile lib/Makefile lib-src/Makefile oldXMenu/Makefile doc/emacs/Makefile doc/misc/Makefile doc/lispintro/Makefile doc/lispref/Makefile src/Makefile lwlib/Makefile lisp/Makefile leim/Makefile test/automated/Makefile" -ac_config_commands="$ac_config_commands default" + +ac_config_commands="$ac_config_commands mkdirs" + + +ac_config_commands="$ac_config_commands epaths" + + +ac_config_commands="$ac_config_commands gdbinit" + cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -20034,7 +20050,9 @@ do "lisp/Makefile") CONFIG_FILES="$CONFIG_FILES lisp/Makefile" ;; "leim/Makefile") CONFIG_FILES="$CONFIG_FILES leim/Makefile" ;; "test/automated/Makefile") CONFIG_FILES="$CONFIG_FILES test/automated/Makefile" ;; - "default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; + "mkdirs") CONFIG_COMMANDS="$CONFIG_COMMANDS mkdirs" ;; + "epaths") CONFIG_COMMANDS="$CONFIG_COMMANDS epaths" ;; + "gdbinit") CONFIG_COMMANDS="$CONFIG_COMMANDS gdbinit" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -20764,21 +20782,20 @@ $as_echo X"$file" | done } ;; - "default":C) - -### Make the necessary directories, if they don't exist. + "mkdirs":C) for dir in etc lisp ; do test -d ${dir} || mkdir ${dir} done - + ;; + "epaths":C) echo creating src/epaths.h ${MAKE-make} epaths-force - + ;; + "gdbinit":C) if test ! -f src/.gdbinit && test -f $srcdir/src/.gdbinit; then echo creating src/.gdbinit echo source $srcdir/src/.gdbinit > src/.gdbinit fi - ;; esac @@ -20818,3 +20835,4 @@ if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi + |