mirror of https://github.com/wolfSSL/wolfssl.git
Configure Update
Change the increment of the number of jobservers to be more posixish. More compatible with HPUX's ksh.pull/1659/head
parent
ae54bae2fa
commit
af65a9520a
|
@ -33,7 +33,9 @@
|
||||||
# and this notice are preserved. This file is offered as-is, without any
|
# and this notice are preserved. This file is offered as-is, without any
|
||||||
# warranty.
|
# warranty.
|
||||||
|
|
||||||
#serial 8
|
#serial 8.1
|
||||||
|
# Local update: Make the increment of enable-jobserver so it isn't executable
|
||||||
|
# and is more posix syntax.
|
||||||
|
|
||||||
AC_DEFUN([AX_AM_JOBSERVER], [
|
AC_DEFUN([AX_AM_JOBSERVER], [
|
||||||
AC_REQUIRE([AX_COUNT_CPUS])
|
AC_REQUIRE([AX_COUNT_CPUS])
|
||||||
|
@ -45,7 +47,7 @@ AC_DEFUN([AX_AM_JOBSERVER], [
|
||||||
],, [enable_jobserver=m4_ifval([$1],[$1],[yes])])
|
],, [enable_jobserver=m4_ifval([$1],[$1],[yes])])
|
||||||
if test "x$enable_jobserver" = "xyes"; then
|
if test "x$enable_jobserver" = "xyes"; then
|
||||||
enable_jobserver=$CPU_COUNT
|
enable_jobserver=$CPU_COUNT
|
||||||
((enable_jobserver++))
|
: $((enable_jobserver+=1))
|
||||||
fi
|
fi
|
||||||
m4_pattern_allow(AM_MAKEFLAGS)
|
m4_pattern_allow(AM_MAKEFLAGS)
|
||||||
if test "x$enable_jobserver" != "xno"; then
|
if test "x$enable_jobserver" != "xno"; then
|
||||||
|
|
Loading…
Reference in New Issue