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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
Reference in New Issue
Block a user