Re: [xHarbour-developers] Crash after trying to build 10208 under MinGW 7.2.0

2017-12-19 Thread Andi Jahja via xHarbour-developers
Hi Enrico: You missed MINGW Tools. You can download BINUTILS from MINGW site, or, downloag GIT package from : http://gitforwindows.org/ I suggest you download GIT, in case you already have it, point your PATH to for example: d:\GIT\usr\bin MINGW tools are in that folder. Andi On Tue, 19

Re: [xHarbour-developers] 2017-12-18 19:20 UTC+0100 Enrico Maria Giordano <e.m.giord...@emagsoftware.it>

2017-12-18 Thread Andi Jahja via xHarbour-developers
Hi Enrico: Embarcadero C++ 7.30 for Win32 Copyright (c) 1993-2017 Embarcadero Technologies, Inc. source\rtl\zlib\inflate.c: Error E2293 source\rtl\zlib\inflate.c 381: ) expected Error E2141 source\rtl\zlib\inflate.c 383: Declaration syntax error *** 2 errors in Compile *** Andi On Mon, 18 Dec

Re: [xHarbour-developers] Memory Allocation Report

2017-02-12 Thread Andi Jahja
Mind to send a self-contained example? Sent from my Samsung device Original message From: Enrico Maria Giordano Date: 02/12/2017 01:10 (GMT+07:00) To: xHarbour Developers Mailing List Subject:

Re: [xHarbour-developers] OS() function

2017-02-12 Thread Andi Jahja
Mind to send a test program? Sent from my Samsung device Original message From: Enrico Maria Giordano Date: 02/11/2017 05:48 (GMT+07:00) To: xHarbour Developers Mailing List Subject:

Re: [xHarbour-developers] OS() function

2017-02-12 Thread Andi Jahja
Sorry I replied a wrong thread. Sent from my Samsung device Original message From: Enrico Maria Giordano Date: 02/11/2017 05:48 (GMT+07:00) To: xHarbour Developers Mailing List Subject:

Re: [xHarbour-developers] Error in building xHarbour with BCC 7.20 32-bit

2017-01-26 Thread Andi Jahja
Under common.mak, COMPILER_LIB_OBJS=\ $(OBJ_DIR)$(DIR_SEP)harbour$(OBJEXT)\ ADD HBARCH.OBJ dependency: $(OBJ_DIR)$(DIR_SEP)hbarch$(OBJEXT)\ Andi On Thu, 26 Jan 2017 18:44:27 +0100 Enrico Maria Giordano wrote: > Now I get > > Error: Unresolved

Re: [xHarbour-developers] Error in building xHarbour with BCC 7.20 32-bit

2017-01-25 Thread Andi Jahja
Hi Enrico, I guess you are building 64bit version. If yes, please make changes to makefile.bc a bit as follows: From: !if ("$(HB_ARCH)"=="64") ACE_LIB =$(ACE64_LIB) CC=BCC64 LINKEXE =ILINK64 LIBEXE=TLIB64 IMPLIBEXE =MKEXP To: !if ("$(HB_ARCH)"=="64") ACE_LIB =$(ACE64_LIB)

Re: [xHarbour-developers] changelogs

2016-12-21 Thread Andi Jahja
Luiz: contrib\hbssl\evpenc.c(70) : error C3861: 'EVP_ENCODE_CTX_free': identifier not found contrib\hbssl\evpenc.c(96) : error C3861: 'EVP_ENCODE_CTX_new': identifier not found Andi On Tue, 20 Dec 2016 21:12:18 -0200 Luiz Rafael Culik wrote: 2016-12-20 21:10 UTC-0300

Re: [xHarbour-developers] Changelog 2016-10-22 21:20 UTC-0300 Luiz Rafael Culik <l...@xharbour.com.br>

2016-10-23 Thread Andi Jahja
Thank you Luiz. Andi Sent from my Samsung device Original message From: Luiz Rafael Culik <l...@xharbour.com.br> Date: 10/23/2016 4:03 PM (GMT+07:00) To: Andi Jahja <andi.ja...@yahoo.co.id> Cc: xHarbour Developers Mailing List <xhar

Re: [xHarbour-developers] Changelog 2016-10-22 21:20 UTC-0300 Luiz Rafael Culik <l...@xharbour.com.br>

2016-10-22 Thread Andi Jahja
Hi Luis, contrib\rdd_ads\ads1.c: Error E2451 contrib\rdd_ads\ads1.c 2082: Undefined symbol 'u32RetVal' in function adsGetValue *** 1 errors in Compile *** Andi On Sat, 22 Oct 2016 21:25:33 -0200 Luiz Rafael Culik wrote: 2016-10-22 21:20 UTC-0300 Luiz Rafael Culik

Re: [xHarbour-developers] PCODE version 10?

2016-10-08 Thread Andi Jahja
Do not know what happen. But clean builds solve this issue. Andi On Sun, 9 Oct 2016 00:11:44 +0200 Enrico Maria Giordano wrote: > Using the latest xHarbour from SVN, any FWH program crashes with a message > > Module: 'blabla' was compiled into PCODE version:

Re: [xHarbour-developers] WITH OBJECT

2015-07-08 Thread Andi Jahja
of PCODE? On Jul 8, 2015 2:23 PM, Andi Jahja andi.ja...@yahoo.co.id wrote: Hi Ron: Sorry for I cannot post a reduced code. The application is quite huge and I do not know where it happened. Yes, I am using -gc3, but not aware where the recursion is. IMO, Przemek's example should

Re: [xHarbour-developers] WITH OBJECT

2015-07-08 Thread Andi Jahja
+1 I confirm that not using -gc3, the following snippet works fine: #include hbclass.ch proc main() local i for i := 1 to 100 begin sequence with object i if i 100 break

Re: [xHarbour-developers] WITH OBJECT

2015-07-08 Thread Andi Jahja
...@xharbour.com wrote: Hi Andi, Could you kindly post a reduced sample? As long as you are not using -gc3 (as per Przemek observation) and/or recursion which exceeds the fixed limit, then I am not aware of such issue. Ron On Jun 30, 2015, at 6:13 AM, Andi Jahja andi.ja...@yahoo.co.id wrote

Re: [xHarbour-developers] WITH OBJECT

2015-06-30 Thread Andi Jahja
Jun 2015, Andi Jahja wrote: Hi, Hello, I randomly get this error message: WITH OBJECT excessive nesting! As per default build, HB_MAX_WITH_OBJECT is preset to 64. But I am very sure that my application does not have that much nests. This occurs when I repeatedly execute sub

Re: [xHarbour-developers] 2014-05-25 16:50 UTC+0100 Enrico Maria Giordano e.m.giord...@emagsoftware.it

2014-05-25 Thread Andi Jahja
OK, they are there now. Thanks. Andi Ops, sorry! Can you check it now, please? -- Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS

[xHarbour-developers] Good Luck xHarbour

2013-01-23 Thread Andi Jahja
All: I have removed myself as admin and/or developer of xHarbour. Allow me, in this opportunity, to express my sorry for what I have done wrong and, I also extend my thanks for all of you who have given me chances to learn from an Open Source Project. I love it, obviously. I sincerely expect

Re: [xHarbour-developers] NEW RELEASE

2013-01-19 Thread Andi Jahja
...@xharbour.com wrote: I just subscribed Saulius, so he should now accecable here. :-) Saulius, please make sure to use your email client Reply to All o that it will be psted to the list. Sent from my iPad On Jan 17, 2013, at 9:11 PM, Andi Jahja andi.ja...@yahoo.co.id wrote: On Thu, 17 Jan 2013

Re: [xHarbour-developers] NEW RELEASE

2013-01-19 Thread Andi Jahja
On Sat, 19 Jan 2013 17:29:31 +0100 Patrick Mast patrick.m...@xharbour.com wrote: Hey Andi, I know a few Linux users, but not that many. Maybe we should ask on the NG to see how many Linux users we have? I only use Windows ;-) Same here. I only use Windows. No time to experiment with

[xHarbour-developers] ChangeLog: 2013-01-17 06:38 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2013-01-16 Thread Andi Jahja
2013-01-17 06:38 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * winmake/common.mak * winmake/common2.mak * winmake/common3.mak * winmake/makefile.gc * winmake/compile.mak ! create hbcgi.lib comprising source/cgi/*.* * source/cgi/tedit.prg - remove doubly defined OnSelect

[xHarbour-developers] ChangeLog: 2013-01-17 13:38 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2013-01-16 Thread Andi Jahja
2013-01-17 13:38 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * winmake/common.mak ! disable creation of telepath.lib due to non-existent of functions: P_ISCTS, P_ISDSR, P_ISRI, P_ISDCD, P_CTRLCTS, P_OUTFREE Andi

[xHarbour-developers] ChangeLog: 2013-01-17 13:49 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2013-01-16 Thread Andi Jahja
2013-01-17 13:49 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * utils/misc/hbrm.c ! check file existence before removing (Thanks to Saulius) Andi -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5

[xHarbour-developers] ChangeLog: 2013-01-17 14:08 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2013-01-16 Thread Andi Jahja
2013-01-17 14:08 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * utils/misc/hbrm.c + include io.h to satisfy MSVC Andi -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps

Re: [xHarbour-developers] Make files

2013-01-14 Thread Andi Jahja
Hi Ron, There is no special flags for that purpose. You can review the current SVN, that harbour.exe is created with pplib.c and pplib3.c as it without including hvm which certainly doe not exist yet at the time harbour.exe is created. Please review your script and make sure your xbuild does not

Re: [xHarbour-developers] Make files

2013-01-14 Thread Andi Jahja
Hi Ron, The current configuration follows the ever existing one which include them. I'll see if excluding them will be OK, and if yes, certainly we have to exclude them when building harbour.exe Andi Actually, it seems pplib*.c should NOT be included when building Harbour.exe

[xHarbour-developers] ChangeLog: 2013-01-15 06:45 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2013-01-14 Thread Andi Jahja
2013-01-15 06:45 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * winmake/common.mak * winmake/compile.mak ! pplib.c, pplib2.c and pplib3.c are not required when building harbour.exe, hence removed as compiler.lib dependencies. Andi

Re: [xHarbour-developers] Make files

2013-01-14 Thread Andi Jahja
Hi Ron, You are right. They have been removed accordingly now. Andi On Tue, 15 Jan 2013 06:21:13 +0700 Andi Jahja andi.ja...@yahoo.co.id wrote: Hi Ron, The current configuration follows the ever existing one which include them. I'll see if excluding them will be OK, and if yes, certainly

[xHarbour-developers] ChangeLog (multiple): 2013-01-12 17:05 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2013-01-12 Thread Andi Jahja
2013-01-12 17:05 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/compiler/harbour.c * source/compiler/genc.c * source/compiler/comptool.c * source/pp/ppcore.c * include/hbcomp.h + pragma: #pragma CPP, to be put on top of PRG file, to force output file name extension

[xHarbour-developers] ChangeLog: 2013-01-12 17:32 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2013-01-12 Thread Andi Jahja
2013-01-12 17:32 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * ChangeLog ! fixed log entries which were unintentionally bad dated (forward) Andi -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5

[xHarbour-developers] ChangeLog: 2013-01-13 12:20 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2013-01-12 Thread Andi Jahja
2013-01-13 12:20 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * include/hbcomp.h * source/compiler/harbour.c * source/compiler/harbour.sly * source/compiler/harbouryy.c ! further fix to memory leaks * source/compiler/harbour.c * source/compiler/comptool.c * source/pp/ppcore.c

Re: [xHarbour-developers] Fwd: Can not compile with MSVC 9.0

2012-12-26 Thread Andi Jahja
Hi Patrick, I think you have corrected this error yourself per your email: - Date: Mon, 17 Dec 2012 21:02:43 +0100 From: Patrick Mast patrickm...@me.com X-Mailer: Apple Mail (2.1499) Oops, sorry, forgot to set envoirement variable. Compiling now ;-)

[xHarbour-developers] ChangeLog: 2012-12-27 01:16 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-26 Thread Andi Jahja
2012-12-27 01:16 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * winmake/makefile.vc * winmake/makefile.pc * winmake/makefile.bc * winmake/makefile.wc ! covered include path macro within parentheses Andi

Re: [xHarbour-developers] Fwd: Can not compile with MSVC 9.0

2012-12-26 Thread Andi Jahja
Hi Patrick, Sorry. But it should be OK now after: 2012-12-27 01:16 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * winmake/makefile.vc * winmake/makefile.pc * winmake/makefile.bc * winmake/makefile.wc ! covered include path macro within parentheses Andi On Wed, 26 Dec 2012 16:02:33

[xHarbour-developers] ChangeLog: 2012-12-25 03:45 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-24 Thread Andi Jahja
2012-12-25 03:45 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/vm/inet.c + prg level INETFD( iSocket ) - returns iSocket's file descriptor (fd) * include/hbapi.h * source/vm/extend.c + Added API hb_stor() to store a NIL into a parameter passed by reference, copied

[xHarbour-developers] ChangeLog: 2012-12-25 0:00 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-24 Thread Andi Jahja
2012-12-25 0:00 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/compiler/harbouryy.c * source/macro/macroyy.c * include/harboury.h * include/macroy.h ! regenerated using Bison 2.7 Andi -- LogMeIn

[xHarbour-developers] ChangeLog: 2012-12-23 04:00 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-22 Thread Andi Jahja
2012-12-23 04:00 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * utils/misc/hbrm.c ! include bufferoverflowU.lib when linking with MSVC7-DDK * contrib/hbsqlit3/sqlite3.c * contrib/hbsqlit3/sqlite3.h ! update to version 3.7.15.1 Andi

[xHarbour-developers] ChangeLog: 2012-12-21 23:40 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-21 Thread Andi Jahja
2012-12-21 23:40 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * tests/pexec.prg * tests/pcode.prg * tests/pcode1.prg + SVN file attributes Andi -- LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free

[xHarbour-developers] ChangeLog: 2012-12-21 09:35 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-20 Thread Andi Jahja
2012-12-21 09:35 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id - tests/pdll55.bat ! removal was omitted 2012-12-21 09:30 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * utils/hbmake/hbmake.prg ! harbour.exe errors not directed to file, fixed. ; NOTES: having a quick review

Re: [xHarbour-developers] ChangeLog: 2012-12-16 17:10 UTC+0700 AndiJahja xharbour/AT/telkom/net/id

2012-12-17 Thread Andi Jahja
I think the current configuration is right. There is no make_bc.log or cont_bc.log is created. I wonder how the batch removes them? make_b32.log and cont_b32.log are created when building 32-bit (default) while make_b64.log and cont_b64.log are created when building 64-bit. Am I

Re: [xHarbour-developers] ChangeLog: 2012-12-16 17:10 UTC+0700 AndiJahja xharbour/AT/telkom/net/id

2012-12-17 Thread Andi Jahja
They were deleted here in my machine. Strange. The command is very clear (in :REMOVE section of winmake/mdir.bat) I'm very sorry! I forgot to replace make_b32.bat clean with make_bc.bat clean :-) No problem at all :-) Andi

[xHarbour-developers] ChangeLog: 2012-12-16 19:02 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-16 Thread Andi Jahja
2012-12-16 19:02 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/compiler/comptool.c ! missing from previous commit Andi -- LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely

Re: [xHarbour-developers] ChangeLog: 2012-12-16 17:10 UTC+0700 AndiJahja xharbour/AT/telkom/net/id

2012-12-16 Thread Andi Jahja
Enrico, Error: Unresolved external '_hb_xgrabEx' referenced from E:\XHBSVN\XHARBOUR\LIB\B32\COMPILER.LIB|harbour_hbstr Error: Unresolved external '_hb_xreallocEx' referenced from E:\XHBSVN\XHARBOUR\LIB\B32\COMPILER.LIB|harbour_hbprintf Error: Unresolved external '_hb_xfreeEx' referenced

Re: [xHarbour-developers] ChangeLog: 2012-12-16 17:10 UTC+0700 AndiJahja xharbour/AT/telkom/net/id

2012-12-16 Thread Andi Jahja
Enrico, And also I remember you that make_b32.log and cont_b32.log must be renamed to make_bc.log and cont_bc.log. Clean option currently removes the last two while the build process generates the first two. I think the current configuration is right. There is no make_bc.log or cont_bc.log

[xHarbour-developers] ChangeLog: 2012-12-15 20:48 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-15 Thread Andi Jahja
2012-12-15 20:48 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * include/hbcomp.h ! rename: in struct __PINLINE: _INLINE - __INLINE for BCC64 because _INLINE was conflicting with BCC64 definition ) * source/compiler/harbour.c ! rename: _INLINE - __INLINE for BCC64 * include

[xHarbour-developers] ChangeLog: 2012-12-15 21:04 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-15 Thread Andi Jahja
2012-12-15 21:04 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * utils/misc/hblib.c ! use c0d64w.o instead of c0d32.obj in 64bit mode Andi -- LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial

[xHarbour-developers] ChangeLog: 2012-12-15 21:08 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-15 Thread Andi Jahja
2012-12-15 21:08 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/common/hbprintf.c + function _isnanl(), _finite() and _finitel() for BCC64 Andi -- LogMeIn Rescue: Anywhere, Anytime Remote support

[xHarbour-developers] ChangeLog: 2012-12-15 21:19 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-15 Thread Andi Jahja
2012-12-15 21:19 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/common/hbprintf.c ! minor reformatting and declare function prototypes Andi -- LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free

Re: [xHarbour-developers] ChangeLog: 2012-12-15 20:48 UTC+0700 AndiJahja xharbour/AT/telkom/net/id

2012-12-15 Thread Andi Jahja
Yes. Also RDDADS should be changed accordingly. I am downloading ACESDK for 64bit now. Andi On Sat, 15 Dec 2012 15:17:09 +0100 Enrico Maria Giordano e.m.giord...@emagsoftware.it wrote: -Messaggio Originale- Da: Andi Jahja andi.ja...@yahoo.co.id A: xharbour-developers

Re: [xHarbour-developers] BCC errors

2012-12-15 Thread Andi Jahja
OOps.. If you remove -q flag it should be printed. Anyway, I think we should override -q on errors. Will patch in a while. Thank you for spotting. Andi On Sat, 15 Dec 2012 16:07:43 +0100 Enrico Maria Giordano e.m.giord...@emagsoftware.it wrote: I can't see BCC errors anymore. Do you need a

[xHarbour-developers] ChangeLog: 2012-12-16 06:10 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-15 Thread Andi Jahja
2012-12-16 06:10 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * winmake/common.mak + macro for import lib of aceXX.DLL (ACE32_LIB and ACE64_LIB) * winmake/makefile.vc ! linking ace64.lib instead of ace32.lib in 64-bit mode * winmake/makefile.dc * winmake/makefile.wc * winmake

[xHarbour-developers] Need Helping Hands :-)

2012-12-15 Thread Andi Jahja
Hello All Fellow Developers: Our harbour.exe needs helping hands to follow up the things that I have noted quite some times ago: 1. Fix memory leaks on certain circumstances 2. Fix -w3 flag - not working - example: on source/rtl/tbcolumn.prg The memory tracer (ie. hb_xgrab + friend functions)

[xHarbour-developers] New Color To BCC Compiler

2012-12-14 Thread Andi Jahja
Hello All: Just FYI. Embarcadero has today announced the release of C++ Compiler 64 bit (!), a thing that many people have in the past doubted it. It is version 6.50: The header/logo: Embarcadero C++ 6.50 for Win64 Copyright (c) 2012 Embarcadero Technologies, Inc. Roll your own:

[xHarbour-developers] ChangeLog: 2012-12-12 17:20 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-12 Thread Andi Jahja
2012-12-12 17:20 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * contrib/rdd_ads/adsfunc.c ! protect new additions to not to be compiled in Windows OS because they simply don't compile (perhaps the author intention is for other OS?) Andi

[xHarbour-developers] ChangeLog: 2012-12-12 18:29 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-12 Thread Andi Jahja
2012-12-12 18:29 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * contrib/rdd_ads/adsfunc.c ! yet, remmed bad codes to not to be compiled in Windows OS XCC: 1702: warning: [ISO] Conversion from 'const char *' to 'unsigned short' is compiler dependent. 1702: warning

[xHarbour-developers] ChangeLog (multiple): 2012-12-12 18:53 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-12 Thread Andi Jahja
2012-12-12 18:53 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * tests/TESTTONE.PRG - tests/testtone.prg ! lower-cased file name 2012-12-12 18:51 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/rtl/tone.c + HB_TONE(), tone functionality for Windows OS via MMSYSTEM + tests

[xHarbour-developers] ChangeLog: 2012-12-13 10:35 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-12 Thread Andi Jahja
2012-12-13 10:35 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * contrib/hbsqlit3/sqlite3.c * contrib/hbsqlit3/sqlite3.h * contrib/hbsqlit3/sqlite3ext.h ! updated to version 3.7.15 Andi -- LogMeIn Rescue

Re: [xHarbour-developers] 2012-12-09 23:00 UTC-200 Luiz Rafael Culik luiz/AT/xharbour/com/br

2012-12-11 Thread Andi Jahja
After: 2012-12-09 23:00 UTC-200 Luiz Rafael Culik luiz/AT/xharbour/com/br * contrib/rdd_ads/adsfunc.c ! added new function provided by Reinaldo Crespo reinaldo.cre...@gmail.com adsfunc.c contrib\rdd_ads\adsfunc.c(2013) : warning C4245: '=' : conversion from 'int' to 'UNSIGNED32',

Re: [xHarbour-developers] 2012-12-09 23:00 UTC-200 Luiz RafaelCulik luiz/AT/xharbour/com/br

2012-12-11 Thread Andi Jahja
Andi -Original Message- From: Andi Jahja Sent: Tuesday, December 11, 2012 9:31 PM To: xharbour-developers@lists.sourceforge.net Subject: Re: [xHarbour-developers] 2012-12-09 23:00 UTC-200 Luiz RafaelCulik After: 2012-12-09 23:00 UTC-200 Luiz Rafael Culik luiz/AT/xharbour/com/br

[xHarbour-developers] ChangeLog (multiple): 2012-12-10 19:44 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-10 Thread Andi Jahja
2012-12-10 19:44 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * winmake\makefile.bc ! do not compile hbzlib with -tWM switch. This cause undetected GPF. 2012-12-10 15:53 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/rtl/str.c ! fixed memory leak on str( numberWithDecimal

[xHarbour-developers] ChangeLog: 2012-12-09 09:08 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-08 Thread Andi Jahja
2012-12-09 09:08 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/compiler/comptool.c ! Harbour Compiler now uses dlmalloc - hopefully, compiling PRG files should now become faster than before Andi

[xHarbour-developers] ChangeLog: 2012-12-08 13:40 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-07 Thread Andi Jahja
2012-12-08 13:40 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/rtl/dirdrive.c + Add Windows functions for: * HB_ISREMOTEDISK( cDrv ) - .T. if cDrv is a Remote Drive * HB_ISRAMDISK( cDrv )- .T. if cDrv is a RAM Disk * HB_ISHARDDISK( cDrv ) - .T. if cDrv

[xHarbour-developers] ChangeLog: 2012-12-08 14:05 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-07 Thread Andi Jahja
2012-12-08 14:05 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * include/hbexpra.c * include/hbexprb.c * include/hbexprc.c * include/simplex.c ! reformatted Andi -- LogMeIn Rescue: Anywhere, Anytime Remote

[xHarbour-developers] ChangeLog: 2012-12-07 07:05 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-06 Thread Andi Jahja
2012-12-07 07:05 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/rtl/str.c * source/rtl/empty.c * source/rtl/val.c * source/rtl/left.c * source/rtl/right.c * source/rtl/substr.c * source/rtl/padc.c * source/rtl/padl.c * source/rtl/padr.c * source/rtl/val.c * source/rtl

[xHarbour-developers] ChangeLog: 2012-12-07 07:12 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-06 Thread Andi Jahja
2012-12-07 07:12 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * ChangeLog ! typo: hbping.prg - hbping.c Andi -- LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely access PCs and mobile

[xHarbour-developers] ChangeLog: 2012-12-07 07:52 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-06 Thread Andi Jahja
2012-12-07 07:52 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/vm/consmt.c - commented unused function Andi -- LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely access PCs

[xHarbour-developers] ChangeLog: 2012-12-06 05:05 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-05 Thread Andi Jahja
2012-12-06 05:05 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/rtl/rat.c ! xHarbour extended RAT() not returning correct value when paramater 3 is passed, fixed. Andi -- LogMeIn Rescue: Anywhere

[xHarbour-developers] ChangeLog: 2012-12-06 05:48 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-05 Thread Andi Jahja
2012-12-06 05:48 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * tests/regextest.prg ! program was not compilable, fixed. Andi -- LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely access

[xHarbour-developers] ChangeLog: 2012-12-03 18:48 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-03 Thread Andi Jahja
2012-12-03 18:48 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * include/hbapi.h * source/rtl/tprinter.c * source/vm/set.c * source/vm/hvm.c * source/vm/garbage.c * source/vm/arrays.c * source/vm/fastitem.c * source/vm/errorapi.c * source/rtl/filebuf.c * source/rtl/version.c

[xHarbour-developers] ChangeLog: 2012-12-03 18:53 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-03 Thread Andi Jahja
2012-12-03 18:53 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * winmake/compile.mak ! missing from previous commit Andi -- Keep yourself connected to Go Parallel: BUILD Helping you discover the best ways

[xHarbour-developers] ChangeLog: 2012-12-03 20:33 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-03 Thread Andi Jahja
2012-12-03 20:33 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/rtl/pcre/pcre_dfa_exec.c ! minor modification in function internal_dfa_exec() to kill BCC warning Andi -- Keep yourself connected to Go

Re: [xHarbour-developers] ChangeLog: 2012-12-03 18:48 UTC+0700 AndiJahja xharbour/AT/telkom/net/id

2012-12-03 Thread Andi Jahja
Fixed. Andi On Mon, 3 Dec 2012 13:58:13 +0100 Enrico Maria Giordano e.m.giord...@emagsoftware.it wrote: * source/rtl/pcre/*.* ! updated to version 8.32 ! folder refreshed Warning W8041 source\rtl\pcre\pcre_dfa_exec.c 1711: Negating unsigned value in function internal_dfa_exec

[xHarbour-developers] ChangeLog: 2012-12-03 20:55 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-12-03 Thread Andi Jahja
2012-12-03 20:55 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * tests/testping.prg ! fix runtime error when the pingee did not reply Andi -- Keep yourself connected to Go Parallel: BUILD Helping you discover

[xHarbour-developers] ChangeLog: 2012-12-01 10:27 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-30 Thread Andi Jahja
2012-12-01 10:27 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * utils/hbdoc/hbdoc.prg * utils/hbpp/hbpp.c * utils/hbmake/hbmake.prg * utils/hbtest/hbtest.prg * utils/hbrun/hbrun.prg * source/compiler/hbusage.c ! bump copyright years to 2013 Andi

[xHarbour-developers] ChangeLog: 2012-12-01 11:32 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-30 Thread Andi Jahja
2012-12-01 11:32 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/rtl/hbping.c * tests/testping.prg ! copy error message to passed-by-ref parameter Andi -- Keep yourself connected to Go Parallel: INSIGHTS

[xHarbour-developers] ChangeLog: 2012-11-30 03:10 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-29 Thread Andi Jahja
2012-11-30 03:10 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/vm/thread.c + added HB_GETCURRENTPROCESSID returns ID of current process * source/vm/macro.c ! macro string size increased to 8192 Andi

Re: [xHarbour-developers] Macro string size

2012-11-29 Thread Andi Jahja
. Andi On Thu, 29 Nov 2012 10:08:38 +0100 Enrico Maria Giordano e.m.giord...@emagsoftware.it wrote: 2012-11-22 20:36 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/vm/macro.c ! increase macro string size to 4096 (this should be enough IMO) Andi, can you increase that size

Re: [xHarbour-developers] Macro string size

2012-11-29 Thread Andi Jahja
Enrico, I think they are logos (?). I need xHarbour icon in ICO format :-) Do you remember if there was a consensus to use what is the 'official icon' for xHarbour? Andi BTW, do you happen to have what supposed to be xHarbour icon? I need it to bind resource to xHarbour's EXEs and DLLs.

Re: [xHarbour-developers] Macro string size

2012-11-29 Thread Andi Jahja
I think they are logos (?). I need xHarbour icon in ICO format :-) Can't you just convert it to ICO? :-) OK. I'll try. Do you remember if there was a consensus to use what is the 'official icon' for xHarbour? Don't think so. That's sound good. Andi

[xHarbour-developers] ChangeLog: 2012-11-30 06:12 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-29 Thread Andi Jahja
2012-11-30 06:12 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * include/hbcomp.h * source/compiler/harbour.c * source/compiler/genc.c * source/compiler/hbpcstat.c + add poor-man's profiler, print message on how many opcode are used in module being compiled (the lesser the total

[xHarbour-developers] ChangeLog: 2012-11-26 06:40 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-25 Thread Andi Jahja
2012-11-26 06:40 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/vm/fm.c ! pacify BCC warnings when HB_NO_VM_ALL is defined * include/thread.h * source/rtl/arc4.c * source/rtl/console.c * source/rtl/hbsocket.c * source/rtl/hbserv.c * source

[xHarbour-developers] ChangeLog: 2012-11-26 07:52 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-25 Thread Andi Jahja
2012-11-26 07:52 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/vm/consmt.c ! removed not-needed function protoypes/declarations Andi -- Monitor your physical, virtual and cloud infrastructure from

[xHarbour-developers] What32 - Anybody use it?

2012-11-25 Thread Andi Jahja
Hello, Is there anybody using What32 contrib lib? I remember that years ago, this stuff needs a closed add-ons to be functional. What32 is not maintained or has proved to even work. If there is no objection, I'll remove this ill contrib ASAP. Andi

[xHarbour-developers] ChangeLog: 2012-11-25 07:43 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-24 Thread Andi Jahja
2012-11-25 07:43 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/macro/macro.y ! left over: HB_MACRO_PTR - PHB_MACRO Andi -- Monitor your physical, virtual and cloud infrastructure from a single web console

[xHarbour-developers] ChangeLog: 2012-11-24 13:43 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-23 Thread Andi Jahja
2012-11-24 13:43 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/rtl/teditor.prg ! fixed routine for line-reformatting invoked by pressing CTRL-B Andi -- Monitor your physical, virtual and cloud

Re: [xHarbour-developers] ChangeLog: 2012-11-22 20:36 UTC+0700 AndiJahja xharbour/AT/telkom/net/id

2012-11-22 Thread Andi Jahja
Thank you, Andi. Out of curiosity, why did it work fine only a couple of days ago? Sorry about that. Previously, memory for the macro string was dinamically allocated. I am trying to reduce the time of evaluating macro expression by using a static char. This reduce at least 2 CPU cycle, ie

[xHarbour-developers] ChangeLog: 2012-11-22 08:25 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-21 Thread Andi Jahja
2012-11-22 08:25 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * include/item.api * include/hbapi.h * include/hbapierr.h * include/hbapirdd.h * include/hbstack.h * include/hbvmpub.h * source/ct/ctnet.c * source/rdd/wafunc.c * source/rdd/nulsys/nulsys.c * source/rtl/bkgtsks.c

[xHarbour-developers] ChangeLog: 2012-11-21 06:10 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-20 Thread Andi Jahja
2012-11-21 06:10 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/compiler/harbour.c * only avoid uses of reserved words if HB_AVOID_RESERVED_WORDS is defined when building xHarbour Andi -- Monitor

[xHarbour-developers] ChangeLog: 2012-11-21 07:47 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-20 Thread Andi Jahja
2012-11-21 07:47 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * winmake/makefile.gc ! typo: if - ifeq Andi -- Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth

[xHarbour-developers] ChangeLog: 2012-11-20 00:10 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-19 Thread Andi Jahja
2012-11-20 00:10 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/vm/dynlibhb.c * source/vm/thread.c * source/vm/cmdarg.c * source/vm/arrays.c * source/vm/arrayshb.c * source/vm/codebloc.c * source/vm/classes.c * source/vm/classesc.c * source/vm/dbgentry.c * source/vm

[xHarbour-developers] ChangeLog: 2012-11-20 10:06 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-19 Thread Andi Jahja
2012-11-20 10:06 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/vm/macro.c * source/vm/mainstd.c * source/vm/mainwin.c * source/vm/maindllp.c ! reformatted (left over), mainly replaced '//' - '/**/' * include/hbtypes.h ! updated function prototypes * source/vm

[xHarbour-developers] ChangeLog: 2012-11-16 14:37 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-15 Thread Andi Jahja
2012-11-16 14:37 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * include/hbbomp.h * source/pp/ppgen.c + create ppword.c, a list of supposedly reserved words, not to be used as variable names (overrideable with -vx flag) NOTE: To be completed on the run * source/pp/Makefile

[xHarbour-developers] ChangeLog: 2012-11-13 21:58 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-13 Thread Andi Jahja
2012-11-13 21:58 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/compiler/harbour.c ! recent changes cause module without MAIN does not execute, fixed. * source/compiler/harbour.sly * source/compiler/harbouryy.c ! fixed some other memory leaks on failure Andi

[xHarbour-developers] ChangeLog: 2012-11-12 01:30 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-11 Thread Andi Jahja
2012-11-12 01:30 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * include/simplex.c + void cleansPair( void ) to clean variable upon failure * source/common/hbfsapi.c ! reformatted * source/compiler/harbour.sly * source/compiler/harbouryy.c * source/compiler/hbgenerr.c ! fix

[xHarbour-developers] ChangeLog: 2012-11-12 04:17 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-11 Thread Andi Jahja
2012-11-12 04:17 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/compiler/harbour.sly * source/compiler/harbouryy.c ! hb_comp_LocalParams not released upon failure, fixed. Andi -- Everyone hates slow

[xHarbour-developers] ChangeLog: 2012-11-10 02:55 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-09 Thread Andi Jahja
2012-11-10 02:55 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * utils/misc/hblib.c ! upper - lower, NULL - 0 * include/hbcompat.h + HB_ISPOINTER now defined * contrib/hbmxml/hbmxml.c ! callback functions now can be codeblock or pointer * contrib/hbmxml/tests/reminder.prg

[xHarbour-developers] ChangeLog: 2012-11-08 18:00 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-08 Thread Andi Jahja
2012-11-08 18:00 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * contrib/hbmxml/hbmxml.c ! code clean-ups and applied unicode features * utils/misc/hblib.c + add functionality to include other list files * winmake/dll.lst ! remove RTL redundant object list, include rtl.lst

[xHarbour-developers] ChangeLog: 2012-11-07 20:53 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-07 Thread Andi Jahja
2012-11-07 20:53 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * source/vm/fm.c ! pacify BCC warnings when HB_NO_VM_ALL is defined + winmake/dll.lst + winmake/rtl.lst * winmake/common2.mak * winmake/makefile.bc * winmake/makefile.vc * winmake/makefile.gc * winmake/makefile.wc

[xHarbour-developers] ChangeLog: 2012-11-07 21:00 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-07 Thread Andi Jahja
2012-11-07 21:00 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * utils/misc/hblib.c + added functionalities to process rtl.lib and xHarbour.dll * ChangeLog ! corrected typo: GTGUI - GTWVT Andi -- LogMeIn

[xHarbour-developers] ChangeLog: 2012-11-07 21:35 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-07 Thread Andi Jahja
2012-11-07 21:35 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * utils/misc/hblib.c ! minor optimization Andi -- LogMeIn Central: Instant, anywhere, Remote PC access and management. Stay in control, update

[xHarbour-developers] ChangeLog: 2012-11-07 22:01 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id

2012-11-07 Thread Andi Jahja
2012-11-07 22:01 UTC+0700 Andi Jahja xharbour/AT/telkom/net/id * utils/misc/hblib.c ! yet another minor optimization Andi -- LogMeIn Central: Instant, anywhere, Remote PC access and management. Stay in control

  1   2   3   4   5   6   7   8   9   >