From 1ea8b84235f2569f69dc0c81eeffd34146976c26 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 29 May 2009 23:12:49 +0000 Subject: [PATCH] 2009-05-30 01:12 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * INSTALL * Minor update. * contrib/hbwin/axcore.c ! Fixed mingw64 warning. * examples/uhttpd/uhttpd.prg * Applied fix sent by Vailton to the list. --- harbour/ChangeLog | 20 +++++++++++++++----- harbour/INSTALL | 2 +- harbour/contrib/hbwin/axcore.c | 2 +- harbour/examples/uhttpd/uhttpd.prg | 2 +- 4 files changed, 18 insertions(+), 8 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 931ebddc6d..64651a4471 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,16 @@ past entries belonging to these authors: Viktor Szakats. */ +2009-05-30 01:12 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * INSTALL + * Minor update. + + * contrib/hbwin/axcore.c + ! Fixed mingw64 warning. + + * examples/uhttpd/uhttpd.prg + * Applied fix sent by Vailton to the list. + 2009-05-29 18:40 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * bin/postinst.bat ! Typo in hbformat command. @@ -31,7 +41,7 @@ * examples/uhttpd/readme.txt * examples/terminal/trm_cli.hbp * examples/terminal/trm_srv.hbp - ! Missing updated to prev changes. + ! Missing updates to prev changes. 2009-05-29 18:35 UTC+0200 Viktor Szakats (harbour.01 syenar hu) - utils/hbformat/hbformat.hbm @@ -40,8 +50,8 @@ + utils/hbmk2/hbmk2.hbp - utils/hbtest/hbtest.hbm + utils/hbtest/hbtest.hbp - + utils/hbi18n/hbi18n.hbp - utils/hbi18n/hbi18n.hbm + + utils/hbi18n/hbi18n.hbp - utils/hbrun/hbrun.hbm + utils/hbrun/hbrun.hbp - contrib/hbbtree/tests/test.hbm @@ -50,12 +60,12 @@ + examples/pp/pp.hbp - examples/hbdoc/hbdoc.hbm + examples/hbdoc/hbdoc.hbp - + examples/superlib/hbsuper.hbp - examples/superlib/hbsuper.hbm - + examples/hbsqlit2/hbsqlit2.hbp + + examples/superlib/hbsuper.hbp - examples/hbsqlit2/hbsqlit2.hbm - + examples/hboleold/hboleold.hbp + + examples/hbsqlit2/hbsqlit2.hbp - examples/hboleold/hboleold.hbm + + examples/hboleold/hboleold.hbp - examples/hbapollo/hbapollo.hbm + examples/hbapollo/hbapollo.hbp - examples/pe/pe.hbm diff --git a/harbour/INSTALL b/harbour/INSTALL index 58595341de..87f998ee70 100644 --- a/harbour/INSTALL +++ b/harbour/INSTALL @@ -536,7 +536,7 @@ EXAMPLES HOW TO GET THE HARBOUR SOURCES ============================== - 1.) Most likely you're reading this file as part of the Harbour + 1.) It's possible you're reading this file as part of the Harbour source code package. If not, read along. 2.) Harbour source repository diff --git a/harbour/contrib/hbwin/axcore.c b/harbour/contrib/hbwin/axcore.c index a4bdf11527..b30eac3a2b 100644 --- a/harbour/contrib/hbwin/axcore.c +++ b/harbour/contrib/hbwin/axcore.c @@ -94,7 +94,7 @@ static int hb_ax_init( void ) PHB_AX_WININIT pAtlAxWinInit; s_hLib = LoadLibrary( TEXT( "atl.dll" ) ); - if( ( unsigned long ) s_hLib <= 32 ) + if( ( unsigned long ) ( HB_PTRDIFF ) s_hLib <= 32 ) { s_hLib = NULL; return 0; diff --git a/harbour/examples/uhttpd/uhttpd.prg b/harbour/examples/uhttpd/uhttpd.prg index e8ea436823..5750e65f85 100644 --- a/harbour/examples/uhttpd/uhttpd.prg +++ b/harbour/examples/uhttpd/uhttpd.prg @@ -1764,7 +1764,7 @@ FUNCTION uhttpd_GetHeader( cType ) PROCEDURE uhttpd_DelHeader( cType ) LOCAL nPos := hb_HPos( _HTTP_RESPONSE, cType ) IF nPos > 0 - hb_HDel( _HTTP_RESPONSE, nPos ) + hb_HDelAt( _HTTP_RESPONSE, nPos ) ENDIF RETURN /*