mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-12-28 16:15:02 +01:00
40232: Remove SH_USE_BSD_ECHO autoconf test.
It is unused; doesn't make sense in "build on one box, install on many" context; and its presence causes the downstream packages that install config.h to be non-reproducible.
This commit is contained in:
parent
044fcbabf1
commit
d287f81340
2 changed files with 4 additions and 15 deletions
|
@ -1,3 +1,7 @@
|
|||
2016-12-28 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||
|
||||
* 40232: configure.ac: Remove SH_USE_BSD_ECHO autoconf test.
|
||||
|
||||
2016-12-27 Barton E. Schaefer <schaefer@zsh.org>
|
||||
|
||||
* unposted (see users/22287): Completion/compinit: _comp_options
|
||||
|
|
15
configure.ac
15
configure.ac
|
@ -2309,21 +2309,6 @@ AH_TEMPLATE([HAVE_FIFOS],
|
|||
if test x$zsh_cv_sys_fifo = xyes; then
|
||||
AC_DEFINE(HAVE_FIFOS)
|
||||
fi
|
||||
dnl ---------------------
|
||||
dnl echo style of /bin/sh
|
||||
dnl ---------------------
|
||||
AC_CACHE_CHECK(if echo in /bin/sh interprets escape sequences,
|
||||
zsh_cv_prog_sh_echo_escape,
|
||||
[if test "`/bin/sh -c \"echo '\\n'\"`" = "\\n"; then
|
||||
zsh_cv_prog_sh_echo_escape=no
|
||||
else
|
||||
zsh_cv_prog_sh_echo_escape=yes
|
||||
fi])
|
||||
AH_TEMPLATE([SH_USE_BSD_ECHO],
|
||||
[Define to 1 if /bin/sh does not interpret \ escape sequences.])
|
||||
if test x$zsh_cv_prog_sh_echo_escape = xno; then
|
||||
AC_DEFINE(SH_USE_BSD_ECHO)
|
||||
fi
|
||||
|
||||
dnl -----------
|
||||
dnl test for whether link() works
|
||||
|
|
Loading…
Reference in a new issue