fix configure to handle or-parallelism correctly and to remove random from clib.
This commit is contained in:
parent
65c7b4250a
commit
dcbf8b0522
6
configure
vendored
6
configure
vendored
@ -4955,7 +4955,7 @@ else
|
|||||||
#define MAX_WORKERS $yap_cv_max_workers
|
#define MAX_WORKERS $yap_cv_max_workers
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
if test "$orparallelism" = copy
|
if test "$orparallelism" = copy -o "$orparallelism" = yes
|
||||||
then
|
then
|
||||||
use_malloc="no"
|
use_malloc="no"
|
||||||
fi
|
fi
|
||||||
@ -9693,8 +9693,8 @@ CHR_TARGETS=chr_support."$SO"
|
|||||||
|
|
||||||
|
|
||||||
if test "$ENABLE_CLIB" = ""; then
|
if test "$ENABLE_CLIB" = ""; then
|
||||||
CLIB_TARGETS="random.$SO socket.$SO cgi.$SO memfile.$SO files.$SO mime.$SO $CRYPT_TARGETS"
|
CLIB_TARGETS="socket.$SO cgi.$SO memfile.$SO files.$SO mime.$SO $CRYPT_TARGETS"
|
||||||
CLIB_PLTARGETS="random.pl socket.pl cgi.pl memfile.pl filesex.pl mime.pl $CRYPT_TARGETS"
|
CLIB_PLTARGETS="socket.pl cgi.pl memfile.pl filesex.pl mime.pl $CRYPT_TARGETS"
|
||||||
|
|
||||||
if test "$ac_cv_func_setitimer" = "yes"; then
|
if test "$ac_cv_func_setitimer" = "yes"; then
|
||||||
CLIB_TARGETS="$CLIB_TARGETS time.$SO"
|
CLIB_TARGETS="$CLIB_TARGETS time.$SO"
|
||||||
|
@ -469,7 +469,7 @@ then
|
|||||||
AC_DEFINE(MAX_WORKERS,1)
|
AC_DEFINE(MAX_WORKERS,1)
|
||||||
else
|
else
|
||||||
AC_DEFINE_UNQUOTED(MAX_WORKERS,$yap_cv_max_workers)
|
AC_DEFINE_UNQUOTED(MAX_WORKERS,$yap_cv_max_workers)
|
||||||
if test "$orparallelism" = copy
|
if test "$orparallelism" = copy -o "$orparallelism" = yes
|
||||||
then
|
then
|
||||||
use_malloc="no"
|
use_malloc="no"
|
||||||
fi
|
fi
|
||||||
@ -2073,8 +2073,8 @@ AC_SUBST(CHR_TARGETS)
|
|||||||
|
|
||||||
dnl clib
|
dnl clib
|
||||||
if test "$ENABLE_CLIB" = ""; then
|
if test "$ENABLE_CLIB" = ""; then
|
||||||
CLIB_TARGETS="random.$SO socket.$SO cgi.$SO memfile.$SO files.$SO mime.$SO $CRYPT_TARGETS"
|
CLIB_TARGETS="socket.$SO cgi.$SO memfile.$SO files.$SO mime.$SO $CRYPT_TARGETS"
|
||||||
CLIB_PLTARGETS="random.pl socket.pl cgi.pl memfile.pl filesex.pl mime.pl $CRYPT_TARGETS"
|
CLIB_PLTARGETS="socket.pl cgi.pl memfile.pl filesex.pl mime.pl $CRYPT_TARGETS"
|
||||||
|
|
||||||
if test "$ac_cv_func_setitimer" = "yes"; then
|
if test "$ac_cv_func_setitimer" = "yes"; then
|
||||||
CLIB_TARGETS="$CLIB_TARGETS time.$SO"
|
CLIB_TARGETS="$CLIB_TARGETS time.$SO"
|
||||||
|
Reference in New Issue
Block a user