2009-03-27 12:22 UTC+0100 Viktor Szakats (harbour.01 syenar hu)

* contrib/hbqt/tests/hbqt.hbp
    + Removed mingw32 lib not necessary.
    + Added gt=gtnul to suppress the console window.

  * utils/hbmk2/hbmk2.prg
    ! Fixed gtnul usage in one remaining place.
This commit is contained in:
Viktor Szakats
2009-03-27 11:23:07 +00:00
parent af4c14d95c
commit 56b242485e
3 changed files with 11 additions and 2 deletions

View File

@@ -8,6 +8,14 @@
2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2009-03-27 12:22 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* contrib/hbqt/tests/hbqt.hbp
+ Removed mingw32 lib not necessary.
+ Added gt=gtnul to suppress the console window.
* utils/hbmk2/hbmk2.prg
! Fixed gtnul usage in one remaining place.
2009-03-27 11:45 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* ChangeLog
* One TOFIX marked as DONE.

View File

@@ -2,7 +2,8 @@
# $Id$
#
{mingw}libs=supc++ mingw32
{mingw}libs=supc++
libs=hbqt
libs=QtCore4 QtGui4 QtNetwork4 QtWebKit4
gui=yes
gt=gtnul

View File

@@ -1167,7 +1167,7 @@ FUNCTION Main( ... )
s_aLIBVM := iif( s_lMT, aLIB_BASE_MT, aLIB_BASE_ST )
aLIB_BASE2 := ArrayAJoin( { aLIB_BASE2, t_aLIBCOREGT } )
IF ! Empty( s_cGT )
IF ! Empty( s_cGT ) .AND. !( Lower( s_cGT ) == "gtnul" )
IF AScan( aLIB_BASE2, {|tmp| Lower( tmp ) == Lower( s_cGT ) } ) == 0
AAdd( aLIB_BASE2, s_cGT )
ENDIF