2009-09-18 01:43 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbthread.h
* harbour/include/hbdefs.h
* harbour/source/vm/dynlibhb.c
* harbour/config/bsd/libs.mk
! updated to work with FreeBSD
This commit is contained in:
@@ -17,6 +17,13 @@
|
||||
past entries belonging to author(s): Viktor Szakats.
|
||||
*/
|
||||
|
||||
2009-09-18 01:43 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/include/hbthread.h
|
||||
* harbour/include/hbdefs.h
|
||||
* harbour/source/vm/dynlibhb.c
|
||||
* harbour/config/bsd/libs.mk
|
||||
! updated to work with FreeBSD
|
||||
|
||||
2009-09-18 00:02 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/source/rtl/filebuf.c
|
||||
! fixed missing FS IO error setting on local lock collisions
|
||||
|
||||
@@ -34,6 +34,10 @@ ifneq ($(HB_LINKING_RTL),)
|
||||
ifeq ($(HB_HAS_ZLIB_LOCAL),)
|
||||
SYSLIBS += z
|
||||
endif
|
||||
|
||||
ifneq ($(HB_LINKING_VMMT),)
|
||||
SYSLIBS += pthread
|
||||
endif
|
||||
endif
|
||||
|
||||
SYSLIBS += m
|
||||
|
||||
@@ -79,7 +79,8 @@
|
||||
( defined( __DJGPP__ ) && \
|
||||
( __DJGPP__ > 2 || ( __DJGPP__ == 2 && __DJGPP_MINOR__ >= 4 ) ) ) || \
|
||||
defined( HB_OS_LINUX ) || defined( HB_OS_DARWIN ) || \
|
||||
defined( HB_OS_SUNOS ) || defined( HB_OS_BEOS ) ) )
|
||||
defined( HB_OS_BSD ) || defined( HB_OS_SUNOS ) || \
|
||||
defined( HB_OS_BEOS ) ) )
|
||||
#include <stdint.h>
|
||||
/* workaround for BCC 5.8 bug */
|
||||
#if ( defined( __BORLANDC__ ) && __BORLANDC__ >= 1410 )
|
||||
|
||||
@@ -63,7 +63,7 @@
|
||||
# define HB_TASK_THREAD
|
||||
#elif defined( HB_OS_LINUX ) || defined( HB_OS_DARWIN ) || \
|
||||
defined( HB_OS_SUNOS ) || defined( HB_OS_HPUX ) || \
|
||||
defined( HB_OS_BEOS )
|
||||
defined( HB_OS_BSD ) || defined( HB_OS_BEOS )
|
||||
# include <pthread.h>
|
||||
# define HB_PTHREAD_API
|
||||
#elif defined( HB_OS_WIN )
|
||||
|
||||
@@ -67,7 +67,7 @@
|
||||
#if !defined( HB_HAS_DLFCN ) && \
|
||||
( ( defined( HB_OS_LINUX ) && !defined( __WATCOMC__ ) ) || \
|
||||
defined( HB_OS_SUNOS ) || defined( HB_OS_DARWIN ) || \
|
||||
defined( HB_OS_BEOS ) )
|
||||
defined( HB_OS_BSD ) || defined( HB_OS_BEOS ) )
|
||||
# define HB_HAS_DLFCN
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user