2010-11-03 02:58 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* external/sqlite3/Makefile
    + Cygwin patch from Tamas Tevesz.

  * contrib/hbqt/qtcore/hbqt_pointer.cpp
    * Formatting.
This commit is contained in:
Viktor Szakats
2010-11-03 01:58:52 +00:00
parent f42d1bc1dd
commit 2c0bf6bc84
3 changed files with 14 additions and 8 deletions

View File

@@ -16,6 +16,13 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-11-03 02:58 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* external/sqlite3/Makefile
+ Cygwin patch from Tamas Tevesz.
* contrib/hbqt/qtcore/hbqt_pointer.cpp
* Formatting.
2010-11-03 00:48 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/utils/hbqtgen.prg
% Simplified GC release code.

View File

@@ -118,9 +118,7 @@ void * hbqt_par_obj( int iParam )
HBQT_GC_T * p;
p = ( HBQT_GC_T * ) hb_parptrGC( hbqt_gcFuncs(), iParam );
if( p && p->ph )
{
return p->ph;
}
}
return NULL;
@@ -246,9 +244,7 @@ void * hbqt_detachgcpointer( int iParam )
return hbqt_detachgcpointer( -1 );
}
else
{
return NULL;
}
}
HB_FUNC( __HBQT_ISPOINTER )

View File

@@ -29,10 +29,13 @@ endif
ifeq ($(HB_HOST_PLAT)-$(HB_COMPILER),dos-watcom)
HB_SUPPORTED := no
endif
# NOTE: disable *nix builds on non-*nix platforms. [vszakats]
ifeq ($(HB_HOST_PLAT_UNIX),)
ifneq ($(HB_PLATFORM_UNIX),)
HB_SUPPORTED := no
# NOTE: disable *nix builds on non-*nix platforms; [vszakats]
# except for cygwin-on-win
ifneq ($(HB_HOST_PLAT)-$(HB_PLATFORM),win-cygwin)
ifeq ($(HB_HOST_PLAT_UNIX),)
ifneq ($(HB_PLATFORM_UNIX),)
HB_SUPPORTED := no
endif
endif
endif