2011-05-19 19:31 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* src/rtl/arc4.c
    ! fixed for watcom/linux and watcom/dos and more [Tamas Tevesz]
This commit is contained in:
Viktor Szakats
2011-05-19 17:33:21 +00:00
parent 275ba9f480
commit 7eb97251b2
2 changed files with 12 additions and 3 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-05-19 19:31 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* src/rtl/arc4.c
! fixed for watcom/linux and watcom/dos and more [Tamas Tevesz]
2011-05-19 18:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* src/rtl/valtype.c
* contrib/xhb/xhb.hbx

View File

@@ -51,9 +51,8 @@
#include "hbdate.h"
#include "hbthread.h"
/* XXX: Check and possibly extend this to other Unix-like platforms */
#if defined( HB_OS_BSD ) || defined( HB_OS_LINUX )
#if defined( HB_OS_BSD ) || ( defined( HB_OS_LINUX ) && ! defined ( __WATCOMC__ ) )
# define HAVE_SYS_SYSCTL_H
# define HAVE_DECL_CTL_KERN
# define HAVE_DECL_KERN_RANDOM
@@ -67,9 +66,15 @@
#if defined( HB_OS_WIN )
# include <wincrypt.h>
# include <process.h>
#elif defined( HB_OS_DOS ) || defined( HB_OS_OS2 )
# include <sys/types.h>
# include <process.h>
#else
# include <sys/param.h>
# if ! defined( __WATCOMC__ )
# include <sys/param.h>
# endif
# include <sys/time.h>
# include <sys/types.h>
# ifdef HAVE_SYS_SYSCTL_H
# include <sys/sysctl.h>
# endif