2011-07-05 07:49 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/pp/ppcore.c
% removed dummy (always false) condition
* harbour/src/rtl/arc4.c
! do not uses sysctl() in Android builds
This commit is contained in:
@@ -16,6 +16,13 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2011-07-05 07:49 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/src/pp/ppcore.c
|
||||
% removed dummy (always false) condition
|
||||
|
||||
* harbour/src/rtl/arc4.c
|
||||
! do not uses sysctl() in Android builds
|
||||
|
||||
2011-07-04 20:41 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* contrib/hbwin/tests/testsvc.prg
|
||||
+ added comment about 'S' internal parameter
|
||||
|
||||
@@ -1669,7 +1669,7 @@ static HB_BOOL hb_pp_tokenValueCmp( PHB_PP_TOKEN pToken, const char * szValue, H
|
||||
( HB_PP_TOKEN_TYPE( pToken->type ) == HB_PP_TOKEN_KEYWORD ||
|
||||
HB_PP_TOKEN_TYPE( pToken->type ) == HB_PP_TOKEN_STRING ||
|
||||
HB_PP_TOKEN_TYPE( pToken->type ) == HB_PP_TOKEN_TEXT ) )
|
||||
return hb_strnicmp( szValue, pToken->value, pToken->len < 4 ? 4 : pToken->len ) == 0;
|
||||
return hb_strnicmp( szValue, pToken->value, pToken->len ) == 0;
|
||||
else
|
||||
return hb_stricmp( szValue, pToken->value ) == 0;
|
||||
}
|
||||
|
||||
@@ -52,7 +52,8 @@
|
||||
#include "hbthread.h"
|
||||
|
||||
/* XXX: Check and possibly extend this to other Unix-like platforms */
|
||||
#if ( defined( HB_OS_BSD ) && ! defined( HB_OS_DARWIN ) ) || ( defined( HB_OS_LINUX ) && ! defined ( __WATCOMC__ ) )
|
||||
#if ( defined( HB_OS_BSD ) && ! defined( HB_OS_DARWIN ) ) || \
|
||||
( defined( HB_OS_LINUX ) && ! defined ( HB_OS_ANDROID ) && ! defined ( __WATCOMC__ ) )
|
||||
# define HAVE_SYS_SYSCTL_H
|
||||
# define HAVE_DECL_CTL_KERN
|
||||
# define HAVE_DECL_KERN_RANDOM
|
||||
|
||||
Reference in New Issue
Block a user