2010-07-19 23:19 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* src/rtl/hbsocket.c
  * include/hbthread.h
    ! Fix for two cygwin build breakers.
This commit is contained in:
Viktor Szakats
2010-07-19 21:19:40 +00:00
parent 618d38b205
commit 2f99a667e8
3 changed files with 11 additions and 5 deletions

View File

@@ -16,6 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-07-19 23:19 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* src/rtl/hbsocket.c
* include/hbthread.h
! Fix for two cygwin build breakers.
2010-07-19 21:00 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/make.hbs
* contrib/hbpre.hbm

View File

@@ -184,10 +184,11 @@ HB_EXTERN_BEGIN
typedef CRITICAL_SECTION HB_RAWCRITICAL_T;
typedef HANDLE HB_OSCOND_T;
# if defined( HB_OS_WIN_CE ) && \
( ( defined( __MINGW32CE__ ) && !defined( __MSVCRT__ ) ) || \
defined( __POCC__ ) ) || \
( defined( _MSC_VER ) && ( _MSC_VER <= 1500 ) )
# if ( defined( HB_OS_WIN_CE ) && \
( ( defined( __MINGW32CE__ ) && !defined( __MSVCRT__ ) ) || \
defined( __POCC__ ) ) || \
( defined( _MSC_VER ) && ( _MSC_VER <= 1500 ) ) ) || \
defined( __CYGWIN__ )
# define HB_THREAD_RAWWINAPI
# endif

View File

@@ -186,7 +186,7 @@
#endif
#if defined( HB_OS_WIN ) && ! defined( HB_OS_UNIX )
#if defined( HB_OS_WIN ) && ! defined( __CYGWIN__ )
# include <winsock2.h>
# include <ws2tcpip.h>
#else