2011-02-01 01:56 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* contrib/hbnetio/utils/hbnetio/netiosrv.prg
    + Keep order of filter lists.
    
  * utils/hbmk2/hbmk2.prg
    ! Use _hbmkcpp_<cFirstFile>.cpp (instead of _hbmkcpp.cpp) on
      non MS-DOS platforms.
This commit is contained in:
Viktor Szakats
2011-02-01 00:56:49 +00:00
parent f8d7ed8b18
commit e7ff8f5a0d
3 changed files with 16 additions and 0 deletions

View File

@@ -16,6 +16,14 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-02-01 01:56 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* contrib/hbnetio/utils/hbnetio/netiosrv.prg
+ Keep order of filter lists.
* utils/hbmk2/hbmk2.prg
! Use _hbmkcpp_<cFirstFile>.cpp (instead of _hbmkcpp.cpp) on
non MS-DOS platforms.
2011-02-01 01:08 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/utils/hbmk2/hbmk2.prg
! do not use the first source file name to set hbmk[ _HBMK_cPROGNAME ]

View File

@@ -104,6 +104,8 @@ PROCEDURE Main( ... )
netiosrv[ _NETIOSRV_mtxFilters ] := hb_mutexCreate()
hb_HKeepOrder( netiosrv[ _NETIOSRV_hConnection ], .T. )
hb_HKeepOrder( netiosrv[ _NETIOSRV_hAllow ], .T. )
hb_HKeepOrder( netiosrv[ _NETIOSRV_hBlock ], .T. )
netiomgm[ _NETIOSRV_cName ] := "Management"
netiomgm[ _NETIOSRV_nPort ] := _NETIOMGM_PORT_DEF
@@ -117,6 +119,8 @@ PROCEDURE Main( ... )
netiomgm[ _NETIOSRV_mtxFilters ] := hb_mutexCreate()
hb_HKeepOrder( netiomgm[ _NETIOSRV_hConnection ], .T. )
hb_HKeepOrder( netiomgm[ _NETIOSRV_hAllow ], .T. )
hb_HKeepOrder( netiomgm[ _NETIOSRV_hBlock ], .T. )
FOR EACH cParam IN { ... }
DO CASE

View File

@@ -5175,7 +5175,11 @@ FUNCTION hbmk2( aArgs, nArgTarget, /* @ */ lPause, nLevel )
! Empty( cBin_CompCPP ) .AND. ;
hbmk[ _HBMK_lHBCPPMM ]
#if defined( __PLATFORM__DOS )
l_cCPPSTUB := DirAddPathSep( hbmk[ _HBMK_cWorkDir ] ) + "_hbmkcpp.cpp"
#else
l_cCPPSTUB := DirAddPathSep( hbmk[ _HBMK_cWorkDir ] ) + "_hbmkcpp_" + FNameNameGet( hbmk[ _HBMK_cFIRST ] ) + ".cpp"
#endif
IF ! hbmk[ _HBMK_lCLEAN ]