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:
parent
1c02fa4fdc
commit
7115515f1f
@ -545,7 +545,7 @@ install_data:
|
|||||||
(cd LGPL/clp ; make install)
|
(cd LGPL/clp ; make install)
|
||||||
(cd LGPL/clpr ; make install)
|
(cd LGPL/clpr ; make install)
|
||||||
# (cd CHR ; make install)
|
# (cd CHR ; make install)
|
||||||
(cd LGPL/chr ; make install)
|
# (cd LGPL/chr ; make install)
|
||||||
(cd CLPBN ; make install)
|
(cd CLPBN ; make install)
|
||||||
|
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
<h2>Yap-5.1.0:</h2>
|
<h2>Yap-5.1.0:</h2>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li> NEW: make enable-max-memory default. </li>
|
||||||
<li> FIXED: allow people to disable indexing (obs Ricardo Lopes). </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: make undefined exception more ISO like (obs Paulo Moura). </li>
|
||||||
<li> FIXED: add missing dependency in chr's Makefile.in. </li>
|
<li> FIXED: add missing dependency in chr's Makefile.in. </li>
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -2359,7 +2359,7 @@ if test "${enable_max_memory+set}" = set; then
|
|||||||
enableval="$enable_max_memory"
|
enableval="$enable_max_memory"
|
||||||
maxmemory="$enableval"
|
maxmemory="$enableval"
|
||||||
else
|
else
|
||||||
maxmemory=no
|
maxmemory=yes
|
||||||
fi;
|
fi;
|
||||||
# Check whether --enable-debug-yap or --disable-debug-yap was given.
|
# Check whether --enable-debug-yap or --disable-debug-yap was given.
|
||||||
if test "${enable_debug_yap+set}" = set; then
|
if test "${enable_debug_yap+set}" = set; then
|
||||||
|
@ -60,7 +60,7 @@ AC_ARG_ENABLE(max-performance,
|
|||||||
maxperformance="$enableval", maxperformance=no)
|
maxperformance="$enableval", maxperformance=no)
|
||||||
AC_ARG_ENABLE(max-memory,
|
AC_ARG_ENABLE(max-memory,
|
||||||
[ --enable-max-memory try using the best flags for using the memory to the most ],
|
[ --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,
|
AC_ARG_ENABLE(debug-yap,
|
||||||
[ --enable-debug-yap enable C-debugging for YAP ],
|
[ --enable-debug-yap enable C-debugging for YAP ],
|
||||||
debugyap="$enableval", debugyap=no)
|
debugyap="$enableval", debugyap=no)
|
||||||
|
Reference in New Issue
Block a user