2010-10-22 14:29 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/vm/fm.c
    * added workaround for some compiler which defines FORCEINLINE
      macro with 'extern' keyword (i.e. some MinGW versions).

  * harbour/contrib/rddads/rddads.h
    * added workaround for some MinGW versions which do not understand
      _declspec() but only __declspec()
This commit is contained in:
Przemyslaw Czerpak
2010-10-22 12:29:53 +00:00
parent ef2d74889f
commit 5e85f8e844
3 changed files with 11 additions and 1 deletions

View File

@@ -16,6 +16,15 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-10-22 14:29 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/vm/fm.c
* added workaround for some compiler which defines FORCEINLINE
macro with 'extern' keyword (i.e. some MinGW versions).
* harbour/contrib/rddads/rddads.h
* added workaround for some MinGW versions which do not understand
_declspec() but only __declspec()
2010-10-22 11:24 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/gtwvt/gtwvt.c
! use ERROR_CLASS_ALREADY_EXISTS instead of hardcoded 1410 value

View File

@@ -65,7 +65,7 @@
#if !defined( x64 ) && defined( HB_ARCH_64BIT )
#define x64
#endif
#if defined( __WATCOMC__ ) || defined( __LCC__ )
#if defined( __WATCOMC__ ) || defined( __LCC__ ) || defined( __MINGW32__ )
#define _declspec( dllexport ) __declspec( dllexport )
#endif

View File

@@ -139,6 +139,7 @@
/* # define NO_MALLINFO 1 */
/* # define INSECURE */
/* # define USE_DL_PREFIX */
# undef FORCEINLINE
# if !defined( FORCEINLINE )
# define FORCEINLINE HB_FORCEINLINE
# endif