On Sun, 05 Oct 2008, Szak�ts Viktor wrote:

Hi Viktor,

> ../../gtcrs.c: In function tiGetS:
> ../../gtcrs.c:1415: warning: passing argument 1 of tigetstr discards 
> qualifiers from pointer target type

It's a casting only - I'll pacify it in a while.

> [ when building hbvmmt lib: ]
> In file included from ../../../arrays.c:78:
> ../../../../../include/hbstack.h:199: error: syntax error before 
> 'hb_stack_key'
> ../../../../../include/hbstack.h:199: warning: type defaults to 'int' in 
> declaration of 'hb_stack_key'
> ../../../../../include/hbstack.h:199: warning: data definition has no type 
> or storage class
> ../../../arrays.c: In function 'hb_arrayPushBase':
> ../../../arrays.c:106: warning: implicit declaration of function 
> 'hb_tls_get'

include/hbthread.h[59]:

   #if defined( HB_OS_LINUX ) && !defined( __WATCOMC__ )
   #  include <pthread.h>
   #  define HB_PTHREAD_API
   #elif defined( HB_OS_WIN_32 )

I intentionally haven't added any other *nixes until someone will
test them. Please change:

   #if defined( HB_OS_LINUX ) && !defined( __WATCOMC__ )

to:

   #if ( defined( HB_OS_LINUX ) && !defined( __WATCOMC__ ) ) || \
       defined( HB_OS_DARWIN )

and test.

best regards,
Przemek
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to