diff --git a/harbour/ChangeLog b/harbour/ChangeLog index dede0708cc..a7189d24f0 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,13 @@ The license applies to all entries newer than 2009-04-28. */ +2011-02-28 14:00 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * src/rtl/hbsocket.c + ! Added hb_socketGetHostName() stub when HB_SOCKET_OFF. + + * contrib/hbrun/hbrun.hbp + + Linking in hbpmcom on dos platform. [Tamas] + 2011-02-28 13:47 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * contrib/hbqt/qtgui/hbqt_hbqgraphicsitem.cpp % Cast deleted. diff --git a/harbour/contrib/hbrun/hbrun.hbp b/harbour/contrib/hbrun/hbrun.hbp index 5e44ba08bc..043c8ef3cb 100644 --- a/harbour/contrib/hbrun/hbrun.hbp +++ b/harbour/contrib/hbrun/hbrun.hbp @@ -26,6 +26,7 @@ pullext.prg -lhbcplr -lhbpp -lhbcommon +-lhbpmcom{dos} # not using these together with .rc input, because some compilers (mingw) # do not support multiple .rc inputs diff --git a/harbour/src/rtl/hbsocket.c b/harbour/src/rtl/hbsocket.c index 7679bf1f96..b1b1f762b6 100644 --- a/harbour/src/rtl/hbsocket.c +++ b/harbour/src/rtl/hbsocket.c @@ -767,6 +767,14 @@ PHB_ITEM hb_socketGetAliases( const char * szAddr, int af ) return NULL; } +char * hb_socketGetHostName( const void * pSockAddr, unsigned len ) +{ + HB_SYMBOL_UNUSED( pSockAddr ); + HB_SYMBOL_UNUSED( len ); + hb_socketSetRawError( HB_SOCKET_ERR_AFNOSUPPORT ); + return NULL; +} + PHB_ITEM hb_socketGetIFaces( int af, HB_BOOL fNoAliases ) { HB_SYMBOL_UNUSED( af );