2011-11-15 23:28 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/rtl/hbproces.c
    * added workaround for missing chroot() in OpenWatcom 1.9 linux libraries
This commit is contained in:
Przemyslaw Czerpak
2011-11-15 22:28:33 +00:00
parent d48fad60fc
commit 7132c43df2
2 changed files with 14 additions and 1 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-11-15 23:28 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/hbproces.c
* added workaround for missing chroot() in OpenWatcom 1.9 linux libraries
2011-11-14 13:23 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/gtxwc/gtxwc.c
+ added support for selecting text with mouse and coping it

View File

@@ -1237,7 +1237,7 @@ int hb_fsProcessRun( const char * pszFilename,
return iResult;
}
/* temporary hack for still missing sysconf() in Watcom 1.9 */
/* temporary hack for still missing sysconf() and chroot() in Watcom 1.9 */
#if defined( HB_OS_LINUX ) && defined( __WATCOMC__ ) && \
__WATCOMC__ <= 1290
_WCRTLINK long sysconf( int __name )
@@ -1255,4 +1255,13 @@ _WCRTLINK long sysconf( int __name )
}
return -1;
}
_WCRTLINK int chroot(const char *__path)
{
int iTODO;
HB_SYMBOL_UNUSED( __path );
return -1;
}
#endif