2013-05-16 22:34 UTC+0200 Tamas TEVESZ (ice extreme.hu)

* contrib/3rd/sqlite3/sqlite3.hbp
    * Disable on Minix (no MAP_SHARED which is needed by SQLite WAL);
      (Hopefully a temporary measure.)
  * src/rtl/filesys.c
    ! Disable hb_fsPipeUnblock() on Minix;
      makes hb_processRun() work. Thanks to Przemek for the idea.
This commit is contained in:
Tamas TEVESZ
2013-05-16 22:39:24 +02:00
parent 6d3f954534
commit 4469d28b70
3 changed files with 14 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
/*
* $Id: f4934025d18f140a3ddbba830c74633a830d9ef5 $
* $Id$
*/
/* Read doc/howtorep.txt and use this format for entry headers:
@@ -10,6 +10,14 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-05-16 22:34 UTC+0200 Tamas TEVESZ (ice extreme.hu)
* contrib/3rd/sqlite3/sqlite3.hbp
* Disable on Minix (no MAP_SHARED which is needed by SQLite WAL);
(Hopefully a temporary measure.)
* src/rtl/filesys.c
! Disable hb_fsPipeUnblock() on Minix;
makes hb_processRun() work. Thanks to Przemek for the idea.
2013-05-16 17:00 UTC+0200 Jfl mafact (jfl/at/mafact.com)
* contrib/rddads/adsfunc.c
! Adding 2nd param to function ADSCOPYTABLECONTENT to allow filtering like in ADSCOPYTABLE

View File

@@ -9,6 +9,10 @@
# NOTE: disable *nix builds on non-*nix platforms; [vszakats]
# except for cygwin-on-win
-stop{!(HB_HOST_PLAT='win'&cygwin)&HB_HOST_PLAT_UNIX=''&unix}
# NOTE: no MAP_SHARED (used by WAL) -- don't yet know what to do;
# this lets the rest build.
-stop{minix}
-hblib
-inc

View File

@@ -857,7 +857,7 @@ HB_BOOL hb_fsPipeUnblock( HB_FHANDLE hPipeHandle )
{
HB_TRACE( HB_TR_DEBUG, ( "hb_fsPipeUnblock(%p)", ( void * ) ( HB_PTRDIFF ) hPipeHandle ) );
#if defined( HB_OS_UNIX )
#if defined( HB_OS_UNIX ) && ! defined( HB_OS_MINIX )
{
int ret = fcntl( hPipeHandle, F_GETFL, 0 );