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

* utils/hbmk2/hbmk2.prg
    ! Fixed to recognize GT libs in dynlibhas= lines, 
      and add them to core GT list.
This commit is contained in:
Viktor Szakats
2009-03-07 21:21:54 +00:00
parent b8b600f2cb
commit ff9e616a86
2 changed files with 13 additions and 2 deletions

View File

@@ -8,6 +8,11 @@
2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2009-03-07 22:14 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
! Fixed to recognize GT libs in dynlibhas= lines,
and add them to core GT list.
2009-03-07 19:56 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/common/hbgete.c
* added suport for BSD systems

View File

@@ -2391,8 +2391,14 @@ STATIC PROCEDURE HBP_ProcessOne( cFileName,;
CASE Lower( Left( cLine, Len( "libdynhas=" ) ) ) == "libdynhas=" ; cLine := SubStr( cLine, Len( "libdynhas=" ) + 1 )
FOR EACH cItem IN hb_ATokens( cLine,, .T. )
cItem := PathSepToTarget( StrStripQuote( cItem ) )
IF AScan( aLIBDYNHAS, {|tmp| tmp == cItem } ) == 0
AAddNotEmpty( aLIBDYNHAS, cItem )
IF ! Empty( cItem )
IF AScan( aLIBDYNHAS, {|tmp| tmp == cItem } ) == 0
AAdd( aLIBDYNHAS, cItem )
ENDIF
IF Lower( Left( cItem, 2 ) ) == "gt" .AND. ;
AScan( t_aLIBCOREGT, {|tmp| Lower( tmp ) == Lower( cItem ) } ) == 0
AAdd( t_aLIBCOREGT, cItem )
ENDIF
ENDIF
NEXT