[Harbour] 2008-10-08 14:57 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-10-08 Thread Szakáts Viktor
2008-10-08 14:57 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * make_b32.mak * contrib/mtpl_b32.mak + Added -Q switch to BCC defaults. This will print verbose error messages. -- Brgds, Viktor ___ Harbour mailing list Harbour@harbour-proj

Re: [Harbour] nmake optimization for .prg

2008-10-08 Thread Szakáts Viktor
Hi Przemek, Have you tried sth like: set HB_CFG_FILE=hb_bld.cfg echo CC=$(CC) > %HB_CFG_FILE% echo CFLAGS=$(CLIBFLAGS) -Fo$(OBJ_DIR)\ >> %HB_CFG_FILE% echo VERBOSE=YES >> %HB_CFG_FILE% echo DELTMP=YES >> %HB_CFG_FILE% and then: {$(RTL_DIR)}.prg{$(OBJ_DIR)}$(OBJEXT):: $(HB) $(

Re: [SPAM] [Harbour] Speedtst.exe results for 2 computers

2008-10-08 Thread Przemyslaw Czerpak
On Wed, 08 Oct 2008, Phil Barnett wrote: Hi Phil, > Well, I see that I worded that badly. I saw that right after I sent it. > I did this: > export -DHB_GUI > mpkg_tgz.sh > (I observed that -DHB_GUI was in the compile strings) > Installled the resulting tarball > Recompiled the speedtst > ran it w

[Harbour] Suggested Tbrowse Changes

2008-10-08 Thread Gerald Drouillard
I am running Harbour's tbrowse in the latest version of xHarbour in the following issues I have found: METHOD refreshAll() CLASS TBROWSE ::setUnstable() // The following 2 lines do not follow clipper behavior: // Eval( ::bSkipBlock, 1 - ::nBufferPos ) // ::nBufferPos := 1 ::lFrames :=

[Harbour] 2008-10-08 14:36 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-10-08 Thread Szakáts Viktor
2008-10-08 14:36 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * bin/bld.bat * bin/bld_os2.cmd + Added support for HB_INSTALL_PREFIX. + Added experimental support for 'set HB_MT=MT' flag, to create an MT executable. * source/rtl/seconds.c * Formatting. -- Brgds, Viktor _

[Harbour] 2008-10-08 15:19 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-10-08 Thread Szakáts Viktor
2008-10-08 15:19 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * make_gnu.bat ! HARBOURDIR -> HB_INSTALL_PREFIX -- Brgds, Viktor ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

[Harbour] CHANGELOG: 2008-10-08 12:28 UTC+0200 Maurilio Longo ([EMAIL PROTECTED])

2008-10-08 Thread Maurilio Longo
2008-10-08 12:28 UTC+0200 Maurilio Longo ([EMAIL PROTECTED]) * harbour/source/rtl/seconds.c ! removed a couple of warnings. -- __ | | | |__| Maurilio Longo |_|_|_|| farmaconsult s.r.l.  ___ Harbour mailing list Harbour@harbour-pro

[Harbour] __DBPACK bug in 1.0.1

2008-10-08 Thread Mindaugas Kavaliauskas
Hi, after moving from some old Harbour version to 1.0.1 in production environment my app started to GPF on __DBPACK. I've debugged code a little bit. After evaluation of SELF_EVALBLOCK( ( AREAP ) pArea, pBlock ) inside hb_dbfPack(), the result of HB_IS_BLOCK( pBlock ) is FALSE, because hb

[Harbour] Re: Harbour under OS/2

2008-10-08 Thread David Arturo Macias Corona
Current Harbour under OS/2 build/run with some warnings: ../../seconds.c: In function `hb_secondsCPU': ../../seconds.c:320: warning: implicit declaration of function `_getpid' ../../seconds.c:325: warning: initialization makes pointer from integer without a cast -

Re: [SPAM] [Harbour] Speedtst.exe results for 2 computers

2008-10-08 Thread Teo Fonrouge
On Wednesday 08 October 2008 12:49:16 am Phil Barnett wrote: > On Tuesday 07 October 2008 08:45:51 pm Przemyslaw Czerpak wrote: > > > I saw the environment parameter included in all of the gcc compile > > > strings, so I think that -DHB_GUI was compiled into the compiler. Then > > > I ran mpkg_tgz.

[Harbour] Exception handling

2008-10-08 Thread Mindaugas Kavaliauskas
Hi, currently exception handling is set (hb_vmSetExceptionHandler() is called) right before evaluation of main procedure. Shouldn't it be initialized before _APPMAIN processing or before hb_vmDoInitFunctions()? My problem is that I use _APPMAIN to initialize application environment, includi

Re: [Harbour] Exception handling

2008-10-08 Thread Szakáts Viktor
Hi Mindaugas, On 2008.10.08., at 17:36, Mindaugas Kavaliauskas wrote: Hi, currently exception handling is set (hb_vmSetExceptionHandler() is called) right before evaluation of main procedure. Shouldn't it be initialized before _APPMAIN processing or before hb_vmDoInitFunctions()? I thi

Re: [Harbour] Exception handling

2008-10-08 Thread Przemyslaw Czerpak
On Wed, 08 Oct 2008, Mindaugas Kavaliauskas wrote: Hi Mindaugas, > currently exception handling is set (hb_vmSetExceptionHandler() is called) > right before evaluation of main procedure. Shouldn't it be initialized > before _APPMAIN processing or before hb_vmDoInitFunctions()? It is set before

[Harbour] rddads: possible problem

2008-10-08 Thread [EMAIL PROTECTED]
Hi ppl, Please I need understand: *if* for some reaction AdsGotoTop() function fail in ads server, this function return !AE_SUCCESS. In the code below from ads1.c, there is no need check this? ---cut--- static ERRCODE adsGoTop( ADSAREAP pArea ) { HB_TRACE(HB_TR_DEBUG, ("adsGoTop(%p)", pArea)

[Harbour] 2008-10-08 20:33 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-10-08 Thread Szakáts Viktor
2008-10-08 20:33 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/examples/hscript/hscript.prg * source/compiler/gencobj.c * source/compiler/genobj32.c * Formatting, minor cleanups. -- Brgds, Viktor ___ Harbour mailing list Harbour@harb

Re: [Harbour] Exception handling

2008-10-08 Thread Mindaugas Kavaliauskas
Przemyslaw Czerpak wrote: currently exception handling is set (hb_vmSetExceptionHandler() is called) right before evaluation of main procedure. Shouldn't it be initialized before _APPMAIN processing or before hb_vmDoInitFunctions()? It is set before _APPMAIN execution but after INIT procedures

[Harbour] 2008-10-09 00:17 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-10-08 Thread Przemyslaw Czerpak
2008-10-09 00:17 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbtypes.h * harbour/source/vm/maindllp.c ! updated casting for current SVN code [TOMERGE 1.0] * harbour/include/hbthread.h * harbour/source/vm/hvm.c * harbour/source/vm/thread.c + added

Re: [Harbour] Suggested Tbrowse Changes

2008-10-08 Thread Przemyslaw Czerpak
On Wed, 08 Oct 2008, Gerald Drouillard wrote: Hi Gerald, > I am running Harbour's tbrowse in the latest version of xHarbour in the > following issues I have found: > METHOD refreshAll() CLASS TBROWSE >::setUnstable() > // The following 2 lines do not follow clipper behavior: > // Eval( ::b

[Harbour] 2008-10-09 01:33 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-10-08 Thread Szakáts Viktor
2008-10-09 01:33 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * include/hbextern.ch + Added HB_THREADWAIT() -- Brgds, Viktor ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

Re: [Harbour] 2008-10-09 01:33 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-10-08 Thread Przemyslaw Czerpak
On Thu, 09 Oct 2008, Szak�ts Viktor wrote: Hi Viktor, > 2008-10-09 01:33 UTC+0200 Viktor Szakats (harbour.01 syenar hu) > * include/hbextern.ch > + Added HB_THREADWAIT() Thank you very much and sorry. I still forget about hbextern.ch :-( best regards, Przemek _

Re: [Harbour] 2008-10-09 01:33 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-10-08 Thread Szakáts Viktor
Hi Przemek, No porblem at all. hbextern.ch is a major maintenance PITA in Harbour unfortunately. I just have no idea how to replace it with a no-maintenance solution, or with something which needs to be done only once for each official release. We have the hbextern tool for this, but it doesn't

Re: [Harbour] rddads: possible problem

2008-10-08 Thread [EMAIL PROTECTED]
Sorry, wrote too fast, the correct code is this: ---cut--- u32RetVal = AdsGotoTop( (pArea->hOrdCurrent) ? pArea->hOrdCurrent : pArea->hTable ); if( u32RetVal != AE_SUCCESS ) { hb_errRT_DBCMD( error.code.here ); return FAILURE; } ---cut--- Regards, Toninho.

[Harbour] 2008-10-09 03:26 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-10-08 Thread Przemyslaw Czerpak
2008-10-09 03:26 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbcompdf.h * harbour/source/compiler/hbmain.c % do not add dummy entries to symbol table for functions declared as dynamic - it allows to include hbdynamic.ch with list of all supported funct

Re: [SPAM] [Harbour] Speedtst.exe results for 2 computers

2008-10-08 Thread Phil Barnett
On Wednesday 08 October 2008 05:10:19 am Przemyslaw Czerpak wrote: > OK. If possible please try current SVN [EMAIL PROTECTED] harbour]$ export C_USR=-DHB_GUI [EMAIL PROTECTED] harbour]$ mpkg_tgz.sh install resulting tarball as root [EMAIL PROTECTED] harbour]$ cd tests [EMAIL PROTECTED] tests]

Re: [SPAM] [Harbour] Speedtst.exe results for 2 computers

2008-10-08 Thread Phil Barnett
On Wednesday 08 October 2008 10:43:12 am Teo Fonrouge wrote: > I see that you are use a rpm based distro (Fedora 9) so you can build the > binaries and install it as rpm's. To create the Harbour rpm's, you just > need to send the following command in an console: > > $ ./mpkg_rpm.sh [EMAIL PROTECTE

Re: [SPAM] [Harbour] Speedtst.exe results for 2 computers

2008-10-08 Thread Teo Fonrouge
On Thursday 09 October 2008 12:27:41 am Phil Barnett wrote: > On Wednesday 08 October 2008 10:43:12 am Teo Fonrouge wrote: > > I see that you are use a rpm based distro (Fedora 9) so you can build the > > binaries and install it as rpm's. To create the Harbour rpm's, you just > > need to send the f