comparison src/configure.ac @ 11370:e11d5966b822 v8.0.0570

patch 8.0.0570: can't run make with several jobs commit https://github.com/vim/vim/commit/c03944151fec2d5469746642a949c8fcb5a744a8 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 20 20:20:23 2017 +0200 patch 8.0.0570: can't run make with several jobs Problem: Can't run make with several jobs, creating directories has a race condition. Solution: Use the MKDIR_P autoconf mechanism. (Eric N. Vander Weele, closes #1639)
author Christian Brabandt <cb@256bit.org>
date Thu, 20 Apr 2017 20:30:04 +0200
parents 0895f142cac3
children 3f399c28e4af
comparison
equal deleted inserted replaced
11369:a196f7b3d62b 11370:e11d5966b822
9 dnl Being able to run configure means the system is Unix (compatible). 9 dnl Being able to run configure means the system is Unix (compatible).
10 AC_DEFINE(UNIX) 10 AC_DEFINE(UNIX)
11 AC_PROG_MAKE_SET 11 AC_PROG_MAKE_SET
12 12
13 dnl Checks for programs. 13 dnl Checks for programs.
14 AC_PROG_CC dnl required by almost everything 14 AC_PROG_CC dnl required by almost everything
15 AC_PROG_CPP dnl required by header file checks 15 AC_PROG_CPP dnl required by header file checks
16 AC_PROGRAM_EGREP dnl required by AC_EGREP_CPP 16 AC_PROGRAM_EGREP dnl required by AC_EGREP_CPP
17 AC_PROG_FGREP dnl finds working grep -F 17 AC_PROG_FGREP dnl finds working grep -F
18 AC_ISC_POSIX dnl required by AC_C_CROSS 18 AC_ISC_POSIX dnl required by AC_C_CROSS
19 AC_PROG_AWK dnl required for "make html" in ../doc 19 AC_PROG_AWK dnl required for "make html" in ../doc
20 AC_PROG_MKDIR_P dnl portable "mkdir -p", also works in parallel
20 21
21 dnl Don't strip if we don't have it 22 dnl Don't strip if we don't have it
22 AC_CHECK_PROG(STRIP, strip, strip, :) 23 AC_CHECK_PROG(STRIP, strip, strip, :)
23 24
24 dnl Check for extension of executables 25 dnl Check for extension of executables