make max-memory standard and disable installing new CHR for now.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1428 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc 2005-10-29 11:22:43 +00:00
parent 1c02fa4fdc
commit 7115515f1f
4 changed files with 4 additions and 3 deletions

View File

@ -545,7 +545,7 @@ install_data:
(cd LGPL/clp ; make install)
(cd LGPL/clpr ; make install)
# (cd CHR ; make install)
(cd LGPL/chr ; make install)
# (cd LGPL/chr ; make install)
(cd CLPBN ; make install)

View File

@ -16,6 +16,7 @@
<h2>Yap-5.1.0:</h2>
<ul>
<li> NEW: make enable-max-memory default. </li>
<li> FIXED: allow people to disable indexing (obs Ricardo Lopes). </li>
<li> FIXED: make undefined exception more ISO like (obs Paulo Moura). </li>
<li> FIXED: add missing dependency in chr's Makefile.in. </li>

2
configure vendored
View File

@ -2359,7 +2359,7 @@ if test "${enable_max_memory+set}" = set; then
enableval="$enable_max_memory"
maxmemory="$enableval"
else
maxmemory=no
maxmemory=yes
fi;
# Check whether --enable-debug-yap or --disable-debug-yap was given.
if test "${enable_debug_yap+set}" = set; then

View File

@ -60,7 +60,7 @@ AC_ARG_ENABLE(max-performance,
maxperformance="$enableval", maxperformance=no)
AC_ARG_ENABLE(max-memory,
[ --enable-max-memory try using the best flags for using the memory to the most ],
maxmemory="$enableval", maxmemory=no)
maxmemory="$enableval", maxmemory=yes)
AC_ARG_ENABLE(debug-yap,
[ --enable-debug-yap enable C-debugging for YAP ],
debugyap="$enableval", debugyap=no)