2012-09-04 18:49 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* harbour/src/rtl/fstemp.c
    ! fixed GCC PP rules - thanks to Teo Fonrouge for the information
      about the problem
This commit is contained in:
Przemyslaw Czerpak
2012-09-04 16:49:45 +00:00
parent 68d92676c1
commit 576ee9e052
2 changed files with 12 additions and 5 deletions

View File

@@ -16,6 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-09-04 18:49 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/src/rtl/fstemp.c
! fixed GCC PP rules - thanks to Teo Fonrouge for the information
about the problem
2012-09-04 14:47 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/src/debug/debugger.prg
* harbour/src/debug/dbgwa.prg

View File

@@ -79,12 +79,14 @@
#if ( defined( HB_OS_LINUX ) && ( !defined( __WATCOMC__ ) || __WATCOMC__ >= 1280 ) ) || \
defined( HB_OS_BSD ) || defined( HB_OS_DARWIN ) || defined( HB_OS_SUNOS )
# define HB_HAS_MKSTEMP
# if ( defined( HB_OS_BSD ) && !defined( __NetBSD__ ) ) || \
defined( HB_OS_DARWIN ) || \
( defined( HB_OS_LINUX ) && \
( defined( _BSD_SOURCE ) || defined( _SVID_SOURCE ) ) && \
( defined( __GLIBC_PREREQ ) && __GLIBC_PREREQ( 2, 12 ) ) )
# if ( defined( HB_OS_BSD ) && !defined( __NetBSD__ ) ) || defined( HB_OS_DARWIN )
# define HB_HAS_MKSTEMPS
# elif defined( HB_OS_LINUX ) && \
( defined( _BSD_SOURCE ) || defined( _SVID_SOURCE ) ) && \
defined( __GLIBC_PREREQ )
# if __GLIBC_PREREQ( 2, 12 )
# define HB_HAS_MKSTEMPS
# endif
# endif
#endif