Re: [Harbour] building httpadv.prg in tip tests using ssl support

2009-08-28 Thread Viktor Szakáts
Hi Francesco, I'm trying to build it but I got that ssl lib is not found. I'm using mingw but I see that there is no libssl.a, what I have to download to add it ? In a recent ChangeLog I've linked an OpenSSL binary package for Windows, you can also find it from openssl.org (they're finally o

[Harbour] building httpadv.prg in tip tests using ssl support

2009-08-28 Thread Francesco Saverio Giudice
Hi Viktor, as in subject. I'm trying to build it but I got that ssl lib is not found. I'm using mingw but I see that there is no libssl.a, what I have to download to add it ? this is trace of hbmk2: J:\cvs\harbourSVN_trunk\contrib\hbtip\tests>hbmk2 httpadv.prg hbmkssl.hbm -trace hbmk2: Pro

[Harbour] Error in HB_INETSERVER() parameters

2009-08-28 Thread Francesco Saverio Giudice
Hi, there is an error in parameters handling, because inet.txt doc says that: hb_InetServer( port [, cBindAddr [, nListenLimit]] ) --> SOCKET but internally function will check only 2 params and 2nd parameter as socket that it could reuse. so I have changed line 994 in source\rtl\hbinet.c f

Re: [Harbour] Error building demowvg.prg

2009-08-28 Thread Francesco Saverio Giudice
Hi Viktor, Il 28/08/2009 13.39, Viktor Szakáts ha scritto: Hi, It's lib ordering problem, regression after deleting lib grouping from link commands all over Harbour. I'll try to do a fix, or maybe I'll just readd grouping if I can't solve it. Brgds, Viktor I confirm it works after your Revi

Re: [Harbour] ActiveX

2009-08-28 Thread Alex Strickland
Pritpal Bedi wrote: Now I remember why I used another appproach to detect the Connection Point in GTWVG. I believe some OLE's are misaligned ( I have few ) which do not confirm to FindConnectionPoint() method. I had to enumerate all entry points and then Advise() if one is matching. I struggle

Re: [Harbour] mingw64 4.5.0 warnings

2009-08-28 Thread Viktor Szakáts
Hi Mindaugas, #if defined(_LP64) || defined(__LP64__) || defined(__arch64__) or: #if defined( HB_ARCH_64BIT ) typedef unsigned intFB_API_HANDLE; #else typedef void* FB_API_HANDLE; #endif typedef FB_API_HANDLE isc_db_handle; What is correct way to initialize handler? isc_db_h

Re: [Harbour] mingw64 4.5.0 warnings

2009-08-28 Thread Mindaugas Kavaliauskas
Hi, x86_64-w64-mingw32-gcc -I. -I../../../../../../include -Wall -W -O3 -fomit-frame-pointer -IC:\devl\Firebird-2.1.2-x64\include -ofbirddd.o -c ../../../fbirddd.c ../../../fbirddd.c: In function 'fbConnect': ../../../fbirddd.c:166:26: warning: initialization makes integer from pointer withou

[Harbour] SF.net SVN: harbour-project:[12362] trunk/harbour

2009-08-28 Thread vszakats
Revision: 12362 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12362&view=rev Author: vszakats Date: 2009-08-28 11:59:57 + (Fri, 28 Aug 2009) Log Message: --- 2009-08-28 14:00 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * INSTALL * Updated Ubu

Re: [Harbour] Error building demowvg.prg

2009-08-28 Thread Viktor Szakáts
Hi, It's lib ordering problem, regression after deleting lib grouping from link commands all over Harbour. I'll try to do a fix, or maybe I'll just readd grouping if I can't solve it. Brgds, Viktor On 2009.08.28., at 0:47, Francesco Saverio Giudice wrote: Hi All, I have an error building de

[Harbour] msvc + harbour

2009-08-28 Thread Fernando Athayde
if i mistake the name of propriert, an application simply frozen, don't call error ony happens in MSCV with BCC function normally ex: CLASS test DATA testdata METHOD new() ENDCLASS METHOD new() CLASS test ::testdataX := 1 RETURN Nil MSVC + harbour + Hwgui Best regards, Fernando

Re: [Harbour] Error building demowvg.prg

2009-08-28 Thread Francesco Saverio Giudice
Other infos: I built SVN using this settings: set HB_COMPILER=mingw set HB_DIR_GD=j:\lib\gd set HB_DIR_FREEIMAGE=j:\lib\freeimage set HB_DIR_FIREBIRD=J:\Firebird\Firebird_2_1 set HB_DIR_CURL=j:\lib\curl set HB_DIR_OPENSSL=j:\lib\openssl set HB_DIR_QT=D:\Qt\2009.03\qt set HB_DIR_BLAT=j

Re: [Harbour] SF.net SVN: harbour-project:[12355] trunk/harbour

2009-08-28 Thread Viktor Szakáts
Hi Maurilio, no solution from last porter of gnu make under OS/2. It seems to me that the problem is in make, thought, which does not take into account the maximum command line of the system on which it is running; Right now we reach a maximum of 32Kb but it could be even longer and fail

[Harbour] Error building demowvg.prg

2009-08-28 Thread Francesco Saverio Giudice
Hi All, I have an error building demowvg. environment is mingw / windows vista current SVN with clean rebuild built with hbmk2 demowvg.prg -trace > a.log 2>&1 The a.log contains: hbmk2: Processing local make script: hbmk.hbm hbmk2: Processing configuration: j:\cvs\harbour_mingw\bin\hbmk.cfg

Re: [Harbour] SF.net SVN: harbour-project:[12355] trunk/harbour

2009-08-28 Thread Maurilio Longo
Viktor, no solution from last porter of gnu make under OS/2. It seems to me that the problem is in make, thought, which does not take into account the maximum command line of the system on which it is running; Right now we reach a maximum of 32Kb but it could be even longer and fail on more plat

Re: [Harbour] ActiveX

2009-08-28 Thread Alex Strickland
Pritpal Bedi wrote: Now I remember why I used another appproach to detect the Connection Point in GTWVG. I believe some OLE's are misaligned ( I have few ) which do not confirm to FindConnectionPoint() method. I had to enumerate all entry points and then Advise() if one is matching. I struggle