2009-09-17 16:37 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/external/libpng/Makefile
    * disabled when XCC compiler is used - it cannot compile it

  * harbour/contrib/hbnetio/netiomt.prg
    * updated comment with NETIO_MTSERVER() syntax

  * harbour/contrib/hbnetio/netiosrv.c
    * minor formatting
This commit is contained in:
Przemyslaw Czerpak
2009-09-17 14:38:02 +00:00
parent f8cd3bf329
commit 9285b24bc4
4 changed files with 16 additions and 3 deletions

View File

@@ -17,6 +17,16 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-09-17 16:37 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/external/libpng/Makefile
* disabled when XCC compiler is used - it cannot compile it
* harbour/contrib/hbnetio/netiomt.prg
* updated comment with NETIO_MTSERVER() syntax
* harbour/contrib/hbnetio/netiosrv.c
* minor formatting
2009-09-17 15:38 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbnetio/utils/netiosrv.prg
+ Added header.

View File

@@ -8,7 +8,8 @@
* very simple TCP/IP file server.
* All files which names starts 'net:' are redirected to this API.
* This is code for simple MT server which is activated by:
* NETIO_MTSERVER( [<nPort>], [<cAddress>] ) -> <pListenSocket> | NIL
* NETIO_MTSERVER( [<nPort>], [<cAddress>], [<cRootDir>] )
-> <pListenSocket> | NIL
* and can be stopped by:
* NETIO_SERVERSTOP( <pListenSocket>, .T. )
*

View File

@@ -138,8 +138,7 @@ static const char * s_consrvFilePath( char * pszFileName, PHB_CONSRV conn )
pszFileName = NULL;
else if( conn->rootPathLen )
{
memmove( pszFileName + conn->rootPathLen, pszFileName,
iPos + 1 );
memmove( pszFileName + conn->rootPathLen, pszFileName, iPos + 1 );
memcpy( pszFileName, conn->rootPath, conn->rootPathLen );
}

View File

@@ -34,6 +34,9 @@ HB_SUPPORTED := yes
ifeq ($(HB_COMPILER),poccarm)
HB_SUPPORTED := no
endif
ifeq ($(HB_COMPILER),xcc)
HB_SUPPORTED := no
endif
ifeq ($(HB_SUPPORTED),yes)