Re: [Harbour] A small analysis of hb_sendmail

2009-11-20 Thread Saulius Zrelskis
Francesco, ... - it doesn't fully respect handling return codes (it doesn't understand when there are no more replies to wait for) ... In FTP protocol space after reply code means it is last line of multi-line replies Best regards, Saulius ___

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

2009-11-20 Thread Bisz István
Hi Pritpal, - Removed QtWebKit support. Code still resides in the files. I plan to separate it next week. Please post if still any error is reported related with QWebKit involved cross builds. On Fedora 12 we have now: native

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

2009-11-20 Thread Bisz István
Hi Przemek, You have quite precise information about the source of problem. Building such libraries in cross builds usually is not easy because they strongly depends on header files which can be different in local installation then the one used on destination platform. Anyhow you can

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

2009-11-20 Thread Ranier Vilela
Tamas TEVESZ escreveu: On Fri, 20 Nov 2009, Bisz István wrote: ../../../dlmalloc.c: In function 'void* dlmalloc(size_t)': ../../../dlmalloc.c:4107: warning: dereferencing pointer 'b' does break strict-aliasing rules there is an updated dlmalloc available from

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

2009-11-20 Thread Przemysław Czerpak
On Fri, 20 Nov 2009, Tamas TEVESZ wrote: Hi, ../../../dlmalloc.c: In function 'void* dlmalloc(size_t)': ../../../dlmalloc.c:4107: warning: dereferencing pointer 'b' does break strict-aliasing rules there is an updated dlmalloc available from ftp://gee.cs.oswego.edu/pub/misc/ (2.8.4 as

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

2009-11-20 Thread Viktor Szakáts
there is an updated dlmalloc available from ftp://gee.cs.oswego.edu/pub/misc/ (2.8.4 as opposed to the in-tree 2.8.3, with a good 3.5yrs between them). my quick build tests show that neither watcom nor mingw (4.2.1 here) like it as-is, but to my untrained eye they don't look too difficult

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

2009-11-20 Thread Viktor Szakáts
Hi Przemek, maybe przemek would want to take a peek whether updating to the newer upstream is of any benefit to hvm. [...] In ST mode we are using only one mstate and in MT mode if Harbour is compiled with HB_FM_DLMT_ALLOC we can use one mspace per thread. In all cases it's rather small

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

2009-11-20 Thread snaiperis
Revision: 12947 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12947view=rev Author: snaiperis Date: 2009-11-20 12:30:42 + (Fri, 20 Nov 2009) Log Message: --- 2009-11-20 14:28 UTC+0200 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt) +

Re: [Harbour] OLE objects syntax...

2009-11-20 Thread Viktor Szakáts
Hi Mindaugas, An easy (but I do not know if it is correct) way to solve this problem is to use DISPATCH_PROPERTYPUT | DISPATCH_PROPERTYPUTREF instead of DISPATCH_PROPERTYPUT in Invoke() call. Actually we use such technique on access: DISPATCH_PROPERTYGET | DISPATCH_METHOD. But my

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

2009-11-20 Thread Mindaugas Kavaliauskas
Hi, Przemysław Czerpak wrote: I haven't time too look at this whole code so I cannot say what exactly is fixed by version 2.8.4 in comparison to 2.8.3. 2.8.4 is used with nedmalloc designed to improve performance in MT programs but I added to Harbour exactly the same functionality using pure

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

2009-11-20 Thread vszakats
Revision: 12946 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12946view=rev Author: vszakats Date: 2009-11-20 12:18:58 + (Fri, 20 Nov 2009) Log Message: --- 2009-11-20 13:18 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * src/rtl/errapi.c *

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

2009-11-20 Thread Viktor Szakáts
Przemysław Czerpak wrote: I haven't time too look at this whole code so I cannot say what exactly is fixed by version 2.8.4 in comparison to 2.8.3. 2.8.4 is used with nedmalloc designed to improve performance in MT programs but I added to Harbour exactly the same functionality using pure

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

2009-11-20 Thread vszakats
Revision: 12948 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12948view=rev Author: vszakats Date: 2009-11-20 12:45:41 + (Fri, 20 Nov 2009) Log Message: --- 2009-11-20 13:44 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * contrib/rddsql/rddsql.hbc

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

2009-11-20 Thread vszakats
Revision: 12949 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12949view=rev Author: vszakats Date: 2009-11-20 12:57:07 + (Fri, 20 Nov 2009) Log Message: --- 2009-11-20 13:56 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * src/vm/set.c ! USHORT

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

2009-11-20 Thread Przemysław Czerpak
On Fri, 20 Nov 2009, Ranier Vilela wrote: Hi, There are alternative to dlmalloc, ptmalloc3 is out here http://www.malloc.de/malloc/ptmalloc3-current.tar.gz *New ptmalloc3 release May 31st, 2006!* Here http://www.malloc.de/malloc/ptmalloc3-current.tar.gz you can download the third version

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

2009-11-20 Thread Przemysław Czerpak
On Fri, 20 Nov 2009, Szak�ts Viktor wrote: Hi, I'd say go for it. I'll commit it in a while. Any reason we don't seem to have HB_FM_DLMT_ALLOC enabled by default when building vmmt lib? I think we should enable it. For all platforms which now uses DLMALLOC I think it can be enabled. For

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

2009-11-20 Thread druzus
Revision: 12950 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12950view=rev Author: druzus Date: 2009-11-20 13:30:53 + (Fri, 20 Nov 2009) Log Message: --- 2009-11-20 14:30 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) *

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

2009-11-20 Thread vszakats
Revision: 12951 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12951view=rev Author: vszakats Date: 2009-11-20 14:06:50 + (Fri, 20 Nov 2009) Log Message: --- 2009-11-20 15:04 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * include/hbdefs.h *

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

2009-11-20 Thread vouchcac
Revision: 12952 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12952view=rev Author: vouchcac Date: 2009-11-20 15:18:06 + (Fri, 20 Nov 2009) Log Message: --- 2009-11-20 07:15 UTC-0800 Pritpal Bedi (prit...@vouchcac.com) * contrib/hbqt/hbqt.ch +

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

2009-11-20 Thread vszakats
Revision: 12953 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12953view=rev Author: vszakats Date: 2009-11-20 15:52:58 + (Fri, 20 Nov 2009) Log Message: --- 2009-11-20 16:51 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * src/rdd/usrrdd/usrrdd.c

[Harbour] To Pritpal about hbide

2009-11-20 Thread francesco perillo
Hi, I was told that hbide will integrate support for svn... Since I'm an user of Mercurial I'd like to talk with you to cooperate to add support for this dvcs... Francesco ___ Harbour mailing list (attachment size limit: 40KB)

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

2009-11-20 Thread vszakats
Revision: 12954 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12954view=rev Author: vszakats Date: 2009-11-20 16:26:16 + (Fri, 20 Nov 2009) Log Message: --- 2009-11-20 17:25 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) *

[Harbour] GTwin console window

2009-11-20 Thread Maurizio la Cecilia
Ther'is a way to maximize the windows of a console application (GTwin)? I means no fullscreen mode, but resize avoiding any scrollbar. In my compiled app, the horizontal size don't match the 80 chars * charwidth pixel and is needed to click the maximize button on the titlebar to avoid the display

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

2009-11-20 Thread Viktor Szakáts
2. in contrib/hbqt/qtgui/filelist.mk from: ... QWindowsStyle.cpp \ QWindowsXPStyle.cpp \ QWizard.cpp \ QWizardPage.cpp \ ... TQWindowsStyle.prg \ TQWindowsXPStyle.prg \ TQWizard.prg \ TQWizardPage.prg \ The QWindowsXPStyle should be eliminated from the platform

Re: [Harbour] GTwin console window

2009-11-20 Thread Viktor Szakáts
Ther'is a way to maximize the windows of a console application (GTwin)? I means no fullscreen mode, but resize avoiding any scrollbar. In my compiled app, the horizontal size don't match the 80 chars * charwidth pixel and is needed to click the maximize button on the titlebar to avoid the

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

2009-11-20 Thread vouchcac
Revision: 12955 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12955view=rev Author: vouchcac Date: 2009-11-20 22:34:03 + (Fri, 20 Nov 2009) Log Message: --- 2009-11-20 14:32 UTC-0800 Pritpal Bedi (prit...@vouchcac.com) *

Re: [Harbour] To Pritpal about hbide

2009-11-20 Thread Pritpal Bedi
Hi francesco perillo-2 wrote: I was told that hbide will integrate support for svn... Since I'm an user of Mercurial I'd like to talk with you to cooperate to add support for this dvcs... Probably it is too early a question/solution integration during the process of HDIDE evolution.

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

2009-11-20 Thread Viktor Szakáts
Thank you very much. Brgds, Viktor On 2009 Nov 20, at 23:34, vouch...@users.sourceforge.net wrote: Revision: 12955 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12955view=rev Author: vouchcac Date: 2009-11-20 22:34:03 + (Fri, 20 Nov 2009) Log

[Harbour] HBMK2 - Possibility of accepting buffer of .hbm format

2009-11-20 Thread Pritpal Bedi
Hello Viktor Is it possible to pass string buffer to hbmk2 in .hbm format? I want to avoid writing to .hbm disk file and then invoke hbmk2. This will open another black window on the screen. Also, can I capture the output of compile/link processes ? Regards Pritpal Bedi -- View this message

[Harbour] Please try this sendmail patch

2009-11-20 Thread francesco perillo
Is anybody using hb_sendmail() ? I already said that it is not fully smtp protocol compliant and my tests (trunk compiled with bcc) didn't worked at all due to this incoorect protocol implementation So, if you are using this patch and it works ok for you, please tell me ! If it works for

Re: [Harbour] HBMK2 - Possibility of accepting buffer of .hbm format

2009-11-20 Thread Viktor Szakáts
Hi Pritpal, Hello Viktor Is it possible to pass string buffer to hbmk2 in .hbm format? I want to avoid writing to .hbm disk file and then invoke hbmk2. Yes, simply pass all parameters on the command line. This will open another black window on the screen. Check how to spawn

Re: [Harbour] Please try this sendmail patch

2009-11-20 Thread Bruno Luciani
Francesco Actually I use HB_Sendmail from svn and works ok Bruno Luciani 2009/11/20 francesco perillo fperi...@gmail.com Is anybody using hb_sendmail() ? I already said that it is not fully smtp protocol compliant and my tests (trunk compiled with bcc) didn't worked at all due to this

Re: [Harbour] Please try this sendmail patch

2009-11-20 Thread francesco perillo
Hi Bruno, thank you for your reply. I have some ideas ... can you please show me how do you call hb_sendmail() ? can you please compile and run contrib/hbtip/tests/gmail.prg (after changing the data inside) and run it ? Which are your operating system and compiler used ? Thank you Francesco

Re: [Harbour] Please try this sendmail patch

2009-11-20 Thread Viktor Szakáts
With SSL (gmail) I used to experience some instability in sending process. Sometimes it doesn't catch it. Maybe timeout issue. I don't use hbtip mail for anything critical ATM, so I just didn't care to spend another big chunk of time to get to the end of it. Brgds, Viktor On 2009 Nov 21, at

Re: [Harbour] Please try this sendmail patch

2009-11-20 Thread Bruno Luciani
I am not using SSL I use it in windows in an OOHG aplication , and compiled using Mingw function sendcaja(cuerpo) if hb_sendmail('200.xxx.xxx.xxx',,'f...@domain',{'adre...@domain ','adre...@domain'},,,cuerpo,'Cierre de caja') else msginfo(No se pudo contactar el servidor de correo

Re: [Harbour] Please try this sendmail patch

2009-11-20 Thread francesco perillo
I am not using SSL I use it in windows in an OOHG aplication , and compiled using Mingw ok hb_sendmail('200.xxx.xxx.xxx',,'f...@domain',{'adre...@domain','adre...@domain'},,,cuerpo,'Cierre de caja') Is it possible to have (in private mail) the IP of the server and an address I can send some

Re: [Harbour] Please try this sendmail patch

2009-11-20 Thread francesco perillo
gmail only supports SSL mail or TLS on port 25... in my bcc setup I don't have openssl so I can't connect to gmail (at the moment) Do you have a server you connect without authentication on port 25 for mail delivery ? Does it work for you ? Standard timeout is 1 second... gmail is quick

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

2009-11-20 Thread vouchcac
Revision: 12956 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12956view=rev Author: vouchcac Date: 2009-11-21 01:45:51 + (Sat, 21 Nov 2009) Log Message: --- 2009-11-20 17:43 UTC-0800 Pritpal Bedi (prit...@vouchcac.com) *

Re: [Harbour] Please try this sendmail patch

2009-11-20 Thread Bruno Luciani
My server uses TLS But you can' t use it , it is blocked for all IP' s I only can Send Mail from My Public and Fixed IP It is an antispam protection , sorry about that Bruno 2009/11/20 francesco perillo fperi...@gmail.com I am not using SSL I use it in windows in an OOHG aplication ,

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

2009-11-20 Thread Angel Pais
vouch...@users.sourceforge.net escribió: * contrib/hbide/hbide.prg + Implemented prototype of Project Tree Structure. Also play with various icons. Docks at the right and at the bottom can be collapsed. Please forward suggesstions. Hi Pritpal I was playing with the new toy

Re: [Harbour] Please try this sendmail patch

2009-11-20 Thread Bruno Luciani
May be BLAT ? Bruno 2009/11/20 francesco perillo fperi...@gmail.com gmail only supports SSL mail or TLS on port 25... in my bcc setup I don't have openssl so I can't connect to gmail (at the moment) Do you have a server you connect without authentication on port 25 for mail delivery ?

Re: [Harbour] Please try this sendmail patch

2009-11-20 Thread Bruno Luciani
Try this http://www.e-eeasy.com/SMTPServerList.aspx Bruno 2009/11/20 francesco perillo fperi...@gmail.com gmail only supports SSL mail or TLS on port 25... in my bcc setup I don't have openssl so I can't connect to gmail (at the moment) Do you have a server you connect without

Re: [Harbour] Please try this sendmail patch

2009-11-20 Thread Viktor Szakáts
gmail SMTPS servers are perfect for testing. Brgds, Viktor On 2009 Nov 21, at 03:15, Bruno Luciani wrote: Try this http://www.e-eeasy.com/SMTPServerList.aspx Bruno 2009/11/20 francesco perillo fperi...@gmail.com gmail only supports SSL mail or TLS on port 25... in my bcc setup I

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

2009-11-20 Thread Bruno Luciani
Error compiling HBIDE last SVN Ubuntu Linux 9.10 / br...@notebook:~/harbour_svn/harbour/contrib/hbide$ hbmk2 hbide hbmk2: Processing local make script: hbmk.hbm hbmk2: Processing configuration:

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

2009-11-20 Thread Bruno Luciani
*Sorry my mistake , I forget to make install Bruno * 2009/11/20 Bruno Luciani bruno.luci...@gmail.com Error compiling HBIDE last SVN Ubuntu Linux 9.10 /

[Harbour] osx harbour.dylib not found issue

2009-11-20 Thread Lorenzo Fiorini
To get ./demoqt working after hbmk2 demoqt I have to do ln -s libharbour.dylib harbour.dylib. Any comment? best regards, Lorenzo ___ Harbour mailing list (attachment size limit: 40KB) Harbour@harbour-project.org

[Harbour] Added support for OSX frameworks in hb* scripts

2009-11-20 Thread Lorenzo Fiorini
I've locally added support for -fname for hb* scripts. In bin/hb-func.sh ... -f[^-]*) HB_USRLIBS=\${HB_USRLIBS} -framework \${v#-f} ;; ... this makes hbmk usable for Qt like: hbmk -n demoqt.prg -lhbqt -lhbqtcore -lhbqtgui -lhbqtnetwork -fQtCore -fQtGui -fQtNetwork -lsupc++ and I've also

Re: [Harbour] Please try this sendmail patch

2009-11-20 Thread francesco perillo
At the moment I tried hb_sendmail against exim without any form of authentication, just plain old clear-text smtp I will try Qmail and other servers this evening but I have to remove the patch first... The problem is that hb_sendmail() sends the EHLO or HELO command without waiting for the

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

2009-11-20 Thread Pritpal Bedi
Hi Angel Pais wrote: I was playing with the new toy and noticed something weird: Open the app, then click on close button and everything is ok. Open it again, then open hbide.prg with the source editor, close both tabs and try to close the app. It freezes and has to be killed with the

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

2009-11-20 Thread Pritpal Bedi
Bruno Bruno Luciani wrote: Error compiling HBIDE last SVN Ubuntu Linux 9.10 'QMAINWINDOW_ALLOWTABBEDDOCKS' I expect some mature messages though you have quickly reverted it. Regards Pritpal Bedi -- View this message in context: