Fix unportable == operator in configure scripts
Now this code is more portable and now people can use faster shells than Bash such as Dash. To use a faster shell with autoconf set the CONFIG_SHELL environment variable to the shell and run the configure script with the shell.
This commit is contained in:
parent
c521df5dcf
commit
79230fef31
@ -833,7 +833,7 @@ have_dss="1"
|
|||||||
dnl Check whether the BSD/SUSv1 sbrk() exists. If not, disable DSS support.
|
dnl Check whether the BSD/SUSv1 sbrk() exists. If not, disable DSS support.
|
||||||
AC_CHECK_FUNC([sbrk], [have_sbrk="1"], [have_sbrk="0"])
|
AC_CHECK_FUNC([sbrk], [have_sbrk="1"], [have_sbrk="0"])
|
||||||
if test "x$have_sbrk" = "x1" ; then
|
if test "x$have_sbrk" = "x1" ; then
|
||||||
if test "x$sbrk_deprecated" == "x1" ; then
|
if test "x$sbrk_deprecated" = "x1" ; then
|
||||||
AC_MSG_RESULT([Disabling dss allocation because sbrk is deprecated])
|
AC_MSG_RESULT([Disabling dss allocation because sbrk is deprecated])
|
||||||
have_dss="0"
|
have_dss="0"
|
||||||
fi
|
fi
|
||||||
@ -951,7 +951,7 @@ JE_COMPILABLE([a program using __builtin_ffsl], [
|
|||||||
printf("%d\n", rv);
|
printf("%d\n", rv);
|
||||||
}
|
}
|
||||||
], [je_cv_gcc_builtin_ffsl])
|
], [je_cv_gcc_builtin_ffsl])
|
||||||
if test "x${je_cv_gcc_builtin_ffsl}" == "xyes" ; then
|
if test "x${je_cv_gcc_builtin_ffsl}" = "xyes" ; then
|
||||||
AC_DEFINE([JEMALLOC_INTERNAL_FFSL], [__builtin_ffsl])
|
AC_DEFINE([JEMALLOC_INTERNAL_FFSL], [__builtin_ffsl])
|
||||||
AC_DEFINE([JEMALLOC_INTERNAL_FFS], [__builtin_ffs])
|
AC_DEFINE([JEMALLOC_INTERNAL_FFS], [__builtin_ffs])
|
||||||
else
|
else
|
||||||
@ -965,7 +965,7 @@ else
|
|||||||
printf("%d\n", rv);
|
printf("%d\n", rv);
|
||||||
}
|
}
|
||||||
], [je_cv_function_ffsl])
|
], [je_cv_function_ffsl])
|
||||||
if test "x${je_cv_function_ffsl}" == "xyes" ; then
|
if test "x${je_cv_function_ffsl}" = "xyes" ; then
|
||||||
AC_DEFINE([JEMALLOC_INTERNAL_FFSL], [ffsl])
|
AC_DEFINE([JEMALLOC_INTERNAL_FFSL], [ffsl])
|
||||||
AC_DEFINE([JEMALLOC_INTERNAL_FFS], [ffs])
|
AC_DEFINE([JEMALLOC_INTERNAL_FFS], [ffs])
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user