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:
vsc 2008-05-23 22:29:52 +00:00
parent 214644aed4
commit 0c006711ba
5 changed files with 1016 additions and 3222 deletions

View File

@ -637,7 +637,7 @@ install_win32: startup
(cd library/regex; make install) (cd library/regex; make install)
(cd library/rltree; make install) (cd library/rltree; make install)
(cd library/system; 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) @INSTALL_MATLAB@ (cd library/matlab; make install)
(cd library/tries; make install) (cd library/tries; make install)
@ENABLE_CPLINT@ (cd cplint; make install) @ENABLE_CPLINT@ (cd cplint; make install)

View File

@ -7,7 +7,7 @@
<title>YAP change log</title> <title>YAP change log</title>
<link rel=stylesheet href="changes.css" type="text/css"> <link rel=stylesheet href="changes.css" type="text/css">
</head> </head>
xb
<body> <body>
@ -17,6 +17,8 @@ xb
<h2>Yap-5.1.3:</h2> <h2>Yap-5.1.3:</h2>
<ul> <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 <li> FIXED: do not allow duplicate values in rbtrees (obs from Jan
Wielemaker and Rui Mendes).</li> Wielemaker and Rui Mendes).</li>
<li> FIXED: handle SIGPIPE and improve USR1 and USR2 (obs from Nicos <li> FIXED: handle SIGPIPE and improve USR1 and USR2 (obs from Nicos

4225
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -453,9 +453,11 @@ then
use_malloc="yes" use_malloc="yes"
LIBS="-lcygwin" LIBS="-lcygwin"
fi fi
ENABLE_WINCONSOLE="@#"
elif test "$target_os" = "mingw32" elif test "$target_os" = "mingw32"
then then
yap_cv_readline=no yap_cv_readline=no
ENABLE_WINCONSOLE=""
INSTALL_COMMAND=install_win32 INSTALL_COMMAND=install_win32
AC_CHECK_LIB(wsock32,main) AC_CHECK_LIB(wsock32,main)
AC_CHECK_LIB(psapi,main) AC_CHECK_LIB(psapi,main)
@ -1126,6 +1128,7 @@ AC_SUBST(JAVAINCPATH)
AC_SUBST(LAMOBJS) AC_SUBST(LAMOBJS)
AC_SUBST(MAX_WORKERS) AC_SUBST(MAX_WORKERS)
AC_SUBST(STATIC_MODE) AC_SUBST(STATIC_MODE)
AC_SUBST(ENABLE_WINCONSOLE)
AC_SUBST(INSTALL_MATLAB) AC_SUBST(INSTALL_MATLAB)
AC_SUBST(MATLAB_INCLUDE) AC_SUBST(MATLAB_INCLUDE)

View File

@ -11,7 +11,7 @@
* File: utilities for displaying messages in YAP. * * File: utilities for displaying messages in YAP. *
* comments: error messages for 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)) --> system_message(error(resource_error(memory), Where)) -->
[ 'RESOURCE ERROR- not enough virtual memory' - [Where] ]. [ 'RESOURCE ERROR- not enough virtual memory' - [Where] ].
system_message(error(signal(SIG,_), _)) --> system_message(error(signal(SIG,_), _)) -->
[ 'UNEXPECTED SIGNAL: ~a' [SIG] ]. [ 'UNEXPECTED SIGNAL: ~a' - [SIG] ].
system_message(error(syntax_error(G,0,Msg,[],0,0), _)) --> system_message(error(syntax_error(G,0,Msg,[],0,0), _)) -->
[ 'SYNTAX ERROR: ~a' - [G,Msg] ]. [ 'SYNTAX ERROR: ~a' - [G,Msg] ].
system_message(error(syntax_error(_,_,_,Term,Pos,Start), Where)) --> system_message(error(syntax_error(_,_,_,Term,Pos,Start), Where)) -->