fix cygiwn version
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@2248 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
parent
214644aed4
commit
0c006711ba
@ -637,7 +637,7 @@ install_win32: startup
|
||||
(cd library/regex; make install)
|
||||
(cd library/rltree; make install)
|
||||
(cd library/system; make install)
|
||||
(cd LGPL/swi_console; make install)
|
||||
@ENABLE_WINCONSOLE@ (cd LGPL/swi_console; make install)
|
||||
@INSTALL_MATLAB@ (cd library/matlab; make install)
|
||||
(cd library/tries; make install)
|
||||
@ENABLE_CPLINT@ (cd cplint; make install)
|
||||
|
@ -7,7 +7,7 @@
|
||||
<title>YAP change log</title>
|
||||
<link rel=stylesheet href="changes.css" type="text/css">
|
||||
</head>
|
||||
xb
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
@ -17,6 +17,8 @@ xb
|
||||
|
||||
<h2>Yap-5.1.3:</h2>
|
||||
<ul>
|
||||
<li> FIXED: cygiwn should ignore SWI console (obs from A N Saravanaraj).</li>
|
||||
<li> FIXED: avoid null pointer (obs from Nicos Angelopoulos).</li>
|
||||
<li> FIXED: do not allow duplicate values in rbtrees (obs from Jan
|
||||
Wielemaker and Rui Mendes).</li>
|
||||
<li> FIXED: handle SIGPIPE and improve USR1 and USR2 (obs from Nicos
|
||||
|
@ -453,9 +453,11 @@ then
|
||||
use_malloc="yes"
|
||||
LIBS="-lcygwin"
|
||||
fi
|
||||
ENABLE_WINCONSOLE="@#"
|
||||
elif test "$target_os" = "mingw32"
|
||||
then
|
||||
yap_cv_readline=no
|
||||
ENABLE_WINCONSOLE=""
|
||||
INSTALL_COMMAND=install_win32
|
||||
AC_CHECK_LIB(wsock32,main)
|
||||
AC_CHECK_LIB(psapi,main)
|
||||
@ -1126,6 +1128,7 @@ AC_SUBST(JAVAINCPATH)
|
||||
AC_SUBST(LAMOBJS)
|
||||
AC_SUBST(MAX_WORKERS)
|
||||
AC_SUBST(STATIC_MODE)
|
||||
AC_SUBST(ENABLE_WINCONSOLE)
|
||||
|
||||
AC_SUBST(INSTALL_MATLAB)
|
||||
AC_SUBST(MATLAB_INCLUDE)
|
||||
|
@ -11,7 +11,7 @@
|
||||
* File: utilities for displaying messages in YAP. *
|
||||
* comments: error messages for YAP *
|
||||
* *
|
||||
* Last rev: $Date: 2008-05-23 10:02:13 $,$Author: vsc $ *
|
||||
* Last rev: $Date: 2008-05-23 22:29:52 $,$Author: vsc $ *
|
||||
* *
|
||||
* *
|
||||
*************************************************************************/
|
||||
@ -244,7 +244,7 @@ system_message(error(resource_error(threads), Where)) -->
|
||||
system_message(error(resource_error(memory), Where)) -->
|
||||
[ 'RESOURCE ERROR- not enough virtual memory' - [Where] ].
|
||||
system_message(error(signal(SIG,_), _)) -->
|
||||
[ 'UNEXPECTED SIGNAL: ~a' [SIG] ].
|
||||
[ 'UNEXPECTED SIGNAL: ~a' - [SIG] ].
|
||||
system_message(error(syntax_error(G,0,Msg,[],0,0), _)) -->
|
||||
[ 'SYNTAX ERROR: ~a' - [G,Msg] ].
|
||||
system_message(error(syntax_error(_,_,_,Term,Pos,Start), Where)) -->
|
||||
|
Reference in New Issue
Block a user