2009-09-08 10:04 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbnetio/utils/netiosrv.prg
    + Added 'root' cmdline parameter.

  * utils/hbmk2/hbmk2.prg
    + Small steps towards msvcmips and msvcsh support.
This commit is contained in:
Viktor Szakats
2009-09-08 08:07:12 +00:00
parent e104d71587
commit 5d76d01df8
3 changed files with 13 additions and 2 deletions

View File

@@ -17,6 +17,13 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-09-08 10:04 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbnetio/utils/netiosrv.prg
+ Added 'root' cmdline parameter.
* utils/hbmk2/hbmk2.prg
+ Small steps towards msvcmips and msvcsh support.
2009-09-08 02:44 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
! Fixed to work on newer Darwin systems (f.e. latest XCode

View File

@@ -15,10 +15,10 @@
/* netio_mtserver() needs MT HVM version */
request HB_MT
proc main( port, ifaddr )
proc main( port, ifaddr, root )
local pListenSocket
pListenSocket := netio_mtserver( iif( port != NIL, val( port ), ), ifaddr )
pListenSocket := netio_mtserver( iif( port != NIL, val( port ), ), ifaddr, root )
if empty( pListenSocket )
? "Cannot start server."
else

View File

@@ -6591,6 +6591,10 @@ FUNCTION hbmk_CPU( hbmk )
hbmk[ _HBMK_cCOMP ] == "msvcarm" .OR. ;
hbmk[ _HBMK_cCOMP ] == "poccarm"
RETURN "arm"
CASE hbmk[ _HBMK_cCOMP ] == "msvcmips"
RETURN "mips"
CASE hbmk[ _HBMK_cCOMP ] == "msvcsh"
RETURN "sh"
ENDCASE
RETURN ""