You can subscribe to this list here.
1999 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(341) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2000 |
Jan
(42) |
Feb
(22) |
Mar
(59) |
Apr
(12) |
May
(15) |
Jun
(30) |
Jul
(25) |
Aug
(13) |
Sep
(98) |
Oct
(51) |
Nov
(95) |
Dec
(99) |
2001 |
Jan
(105) |
Feb
(175) |
Mar
(411) |
Apr
(310) |
May
(294) |
Jun
(213) |
Jul
(132) |
Aug
(82) |
Sep
(26) |
Oct
(121) |
Nov
(181) |
Dec
(96) |
2002 |
Jan
(52) |
Feb
(128) |
Mar
(141) |
Apr
(111) |
May
(149) |
Jun
(164) |
Jul
(33) |
Aug
(77) |
Sep
(62) |
Oct
(92) |
Nov
(14) |
Dec
(33) |
2003 |
Jan
(33) |
Feb
(58) |
Mar
(120) |
Apr
(180) |
May
(206) |
Jun
(110) |
Jul
(232) |
Aug
(207) |
Sep
(103) |
Oct
(122) |
Nov
(42) |
Dec
(68) |
2004 |
Jan
(83) |
Feb
(107) |
Mar
(90) |
Apr
(7) |
May
(42) |
Jun
(36) |
Jul
(11) |
Aug
(24) |
Sep
(67) |
Oct
(116) |
Nov
(96) |
Dec
(22) |
2005 |
Jan
(29) |
Feb
(6) |
Mar
(12) |
Apr
(31) |
May
(47) |
Jun
(12) |
Jul
(76) |
Aug
(69) |
Sep
(7) |
Oct
(21) |
Nov
(5) |
Dec
(4) |
2006 |
Jan
(5) |
Feb
(7) |
Mar
(7) |
Apr
(3) |
May
(4) |
Jun
(4) |
Jul
(8) |
Aug
(13) |
Sep
(7) |
Oct
(2) |
Nov
(6) |
Dec
(30) |
2007 |
Jan
(43) |
Feb
(7) |
Mar
(2) |
Apr
(4) |
May
(11) |
Jun
(1) |
Jul
|
Aug
|
Sep
(22) |
Oct
(18) |
Nov
(6) |
Dec
(31) |
2008 |
Jan
(1) |
Feb
(2) |
Mar
(3) |
Apr
|
May
|
Jun
(3) |
Jul
(1) |
Aug
(2) |
Sep
(2) |
Oct
(11) |
Nov
(8) |
Dec
|
2009 |
Jan
(6) |
Feb
(4) |
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
(3) |
Nov
|
Dec
(8) |
2010 |
Jan
(15) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(4) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
(12) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
(7) |
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: David E. <de...@us...> - 2011-04-23 04:15:53
|
Hello, Recently, there as been some security issues with CVS on SF. Since any further development of TC is unlikely, I will make a request to SF to remove the TC CVS repository from SF. The latest archive sources, version 0.66, is derived from the current CVS so they should be identical. A copy of the TC CVS repository can be retrieved from SF using the 'rsync' command. rsync -Cavz rsync://tiny-cobol.cvs.sourceforge.net/cvsroot/tiny-cobol/ \ some-directory If you have any comments, or objections, just reply to TC mailing list. Cheers |
From: David E. <de...@us...> - 2011-04-22 17:54:42
|
Please see 'How to call a OpenCOBOL DLL module from CSharp' posting. The subject header is wrong, should read TinyCOBOL, but the code included is valid. Cheers. |
From: David E. <de...@us...> - 2011-04-22 17:54:13
|
Oops, sorry. The subject header is wrong. It should read TinyCOBOL. The source code included is valid for TC. Has been tested on MONO and Win32-CSharp. I neglected to mention that for mono, the LD_LIBRARY_PATH needs to be set. Otherwise a mono run-time exception will occur. export LD_LIBRARY_PATH=$PWD mono program02.exe For Win32, the DLLs need to be located in the CWD or in the PATH. Cheers. |
From: David E. <de...@us...> - 2011-04-21 19:35:28
|
There are two ways to incorporate TC code with .NET. One is to use managed code by wrapping the OC C code, and run-time, into a COM object. The other is to call TC modules (DLL) directly as unmanaged code. While more risky, the second approach offers the ability to leverage the legacy code business logic, and add a winGUI interface. The following simple examples are presented as a proof of concept only. The sources were tested using Mono v2 (Linux-32) and CSharp v2 / Mingw (winXP-32). To build extract 'readme.txt' file, and follow instructions. Example: mono: >make htcobol -v -m cobshlib06.cob -o libcobshlib06.so gmcs /debug /out:program03.exe program03.cs ... >mono program03.exe program03: cobfunc_dll called ----------------------------- cobfunc_dll: enter an_int=42 count_int=10: 0 1 2 3 4 5 6 7 8 9 cobfunc_dll: exit ----------------------------- program03: cobfunc_dll return Return Value: 84 str: String filled in DLL In CSharp, most types are allocated dynamically. And since COBOL has limited pointer manipulation, some issues wiere encountered with C structures with dynamic memory allocation. Cheers, References: 1) Calling a DLL with C# (C Sharp) http://www.adp-gmbh.ch/csharp/call_dll.html |
From: David E. <de...@us...> - 2010-10-31 17:25:45
|
Well yes and no. TC does not currently support the CALL-CONVENTION syntax in the SPECIAL-NAMES section. SPECIAL-NAMES. CALL-CONVENTION 0 IS WINAPI ... But it does support the WINAPI (PASCAL) call convention using an syntax extension. CALL WINAPI { literal-1 | identifier-1 } ... See examples in the 't25' and 't33' directories. Mohammad Shamsi wrote: > > Does tinycobol supports CALL-CONVENTION? |
From: Mohammad S. <m.h...@gm...> - 2010-10-31 06:02:29
|
Hi all, Does tinycobol supports CALL-CONVENTION? Regards, Mohammad |
From: David E. <de...@us...> - 2010-10-31 03:20:22
|
Support for Cygwin was dropped a few versions back, as the UN*X/POSIX emulation layer is not required. Consequently, the configure and make files are not up to date for Cygwin. I would recommend using the MinGW version as TC binaries, and support libraries, are available for download on SF. However, TC should be configurable with some minor changes to the 'tconfig.mingw.sh' script. Try the following changes, then run the script in a Cygwin window (sh tconfig.mingw.sh). #prefix="/mingw/local" prefix="/usr" #prefix_local="/mingw" prefix_local="/usr/local" #drive_prefix='C:' drive_prefix='' #TCOB_LD_ARGS_DB='-ldb1' TCOB_LD_ARGS_DB='-ldb1' # Insert BDB version name #TCOB_LD_ARGS_CURSES='-lpdcurses' TCOB_LD_ARGS_CURSES='-lncurses' Then test the make files with 'make -n'. Note to build TC, for Cygwin, you will need the the Cygwin version of the ncurses, bdb, vb-isam support libraries. Hope this helps. Mohammad Shamsi wrote: > > I am trying to install tinycobol 0.66 on my window pc. I have already > Cygwin installed on my pc. > > when i run configure from tinycobol folder, its complaining about > ncurses.h > > /checking ncurses.h usability... no/ > /checking ncurses.h presence... no/ > /checking for ncurses.h... no/ > /configure: error: header "ncurses.h" not found... aborting./ > > i have already install libncurses-devel on cygwin. i can see even > ncurses.h in /use/include/ncurses forlder. > > could you please help me to solve this issue. PS: The above problem can be fixed by adding the ncurses include path to the search path. export CPPFLAGS='-I/usr/include -I/usr/local/include -I/usr/include/ncurses' # one line Try './configure --help' to find more information. |
From: Mohammad S. <m.h...@gm...> - 2010-10-30 17:52:48
|
Hi All, I am trying to install tinycobol 0.66 on my window pc. I have already Cygwin installed on my pc. when i run configure from tinycobol folder, its complaining about ncurses.h *checking ncurses.h usability... no* *checking ncurses.h presence... no* *checking for ncurses.h... no* *configure: error: header "ncurses.h" not found... aborting.* i have already install libncurses-devel on cygwin. i can see even ncurses.h in /use/include/ncurses forlder. could you please help me to solve this issue. -- Sincerely Yours Mohammad H. Shamsi |
From: David E. <de...@us...> - 2010-08-28 07:58:26
|
TC version 0.66 (32-bit) is now available for download [1]. For indexed files, version 0.66, uses VB-ISAM version 2. While BDB is no longer used for indexed files, it is still required by the RT for file SORTS. To build and run TC version 0.66 requires the following. - VB-ISAM version 2 or later. - Berkeley DB version 1.85 or later. - A curses library (PDcurses on win32). Since VB-ISAM is not usually included in any UN*X distributions, the source can be found on SF [2]. For MinGW users, binaries are available on SF [1]. Cheers. 1) SF downloads 2) ISAM - vbisam-2.0.tar.bz2 http://sourceforge.net/projects/tiny-cobol/files/ |
From: John C. <jo...@we...> - 2010-01-14 14:03:16
|
On Wednesday 13 January 2010 21:08:33 David Essex wrote: > John Culleton wrote: > > I downloaded Berkley yacc per your instructions, compiled it,linked it to > > yacc and then put that yacc in every bin file I could find. Then I > > modified the configure file replacing every occurrence of bison with > > yacc. The compile of tiny seemed to work and the programs in the > > test_suite compiled. Most were successful but the IX series returned > > multiple errors. I can send you the complete error log if you like but > > there are about 4800 lines in it! > > I think you referring to the NIST COBOL-85 tests, found in the > 'test_suite/nist' directory. > > The NIST test make extensive use of 'DECLARATIVES', which TC does NOT > currently support. > Consequently I'm not surprised that the tests are full of errors. > > Have you tried running the examples found in the 'test.code' > directories. Just run 'mconfig.sh' first to generate the make files. > > Cheers. I compiled the test.code suit with make and then checked some sample programs. They seem to run OK. So I am back to listening mode for a while. -- John Culleton "Create Book Covers with Scribus" Printable E-book 38 pages $5.95 http://www.booklocker.com/books/4055.html |
From: David E. <de...@us...> - 2010-01-14 02:11:59
|
John Culleton wrote: > > I downloaded Berkley yacc per your instructions, compiled it,linked it to > yacc and then put that yacc in every bin file I could find. Then I modified the > configure file replacing every occurrence of bison with yacc. The compile of > tiny seemed to work and the programs in the test_suite compiled. Most were > successful but the IX series returned multiple errors. I can send you the > complete error log if you like but there are about 4800 lines in it! I think you referring to the NIST COBOL-85 tests, found in the 'test_suite/nist' directory. The NIST test make extensive use of 'DECLARATIVES', which TC does NOT currently support. Consequently I'm not surprised that the tests are full of errors. Have you tried running the examples found in the 'test.code' directories. Just run 'mconfig.sh' first to generate the make files. Cheers. |
From: John C. <jo...@we...> - 2010-01-13 14:55:05
|
On Tuesday 12 January 2010 20:27:13 David Essex wrote: > John Culleton wrote: > > ... > > I use Linux (Slackware 13) so mingw doesn't apply. > > Are your other suggestions still valid? > > Build and install using the source code for Berkeley's YACC (1). > > You can get the source for Berkeley's YACC (1) on the TC download area > at SF. Or just click on the second link below. > > > Hope this helps. > > 1) TC misc - yacc-1.9.3-1.tar.gz > http://sourceforge.net/projects/tiny-cobol/files/ > http://sourceforge.net/projects/tiny-cobol/files/misc/yacc-1.9.3-1.tar.gz/d >ownload > > > > --------------------------------------------------------------------------- >--- This SF.Net email is sponsored by the Verizon Developer Community > Take advantage of Verizon's best-in-class app development support > A streamlined, 14 day to market process makes app distribution fast and > easy Join now and get one step closer to millions of Verizon customers > http://p.sf.net/sfu/verizon-dev2dev > _______________________________________________ > Tin...@li... > https://lists.sourceforge.net/lists/listinfo/tiny-cobol-users I downloaded Berkley yacc per your instructions, compiled it,linked it to yacc and then put that yacc in every bin file I could find. Then I modified the configure file replacing every occurrence of bison with yacc. The compile of tiny seemed to work and the programs in the test_suite compiled. Most were successful but the IX series returned multiple errors. I can send you the complete error log if you like but there are about 4800 lines in it! -- John Culleton "Create Book Covers with Scribus" Printable E-book 38 pages $5.95 http://www.booklocker.com/books/4055.html |
From: David E. <de...@us...> - 2010-01-13 05:36:01
|
Due to a parser problem with some versions of Bison, TC version 0.65.9 (32-bit) is now available for download [1 2 3]. The Berkeley's YACC (version 1.9.3) generated parser and scanner C code is now enclosed with the TC source code. This should compile using GCC and thus avoid problems with Bison. Cheers. 1) SF downloads http://sourceforge.net/projects/tiny-cobol/files/ 2) SF downloads - tinycobol-0.65.9.tar.bz2 http://sourceforge.net/projects/tiny-cobol/files/tiny-cobol/0.65/tinycobol-0.65.9.tar.bz2/download 3) SF downloads - tinycobol-0.65.9.src.zip http://sourceforge.net/projects/tiny-cobol/files/tiny-cobol/0.65/tinycobol-0.65.9.src.zip/download |
From: David E. <de...@us...> - 2010-01-13 02:01:20
|
John Culleton wrote: > ... > I use Linux (Slackware 13) so mingw doesn't apply. > Are your other suggestions still valid? Build and install using the source code for Berkeley's YACC (1). You can get the source for Berkeley's YACC (1) on the TC download area at SF. Or just click on the second link below. Hope this helps. 1) TC misc - yacc-1.9.3-1.tar.gz http://sourceforge.net/projects/tiny-cobol/files/ http://sourceforge.net/projects/tiny-cobol/files/misc/yacc-1.9.3-1.tar.gz/download |
From: John C. <jo...@we...> - 2010-01-12 23:21:35
|
On Tuesday 12 January 2010 18:11:09 David Essex wrote: > John Culleton wrote: > > Both 65 and 65.5 generate errors on my system: > > ------------------------------------------------ > > htcobol.y:2093.7-8: $$ for the midrule at $6 of `search' has no declared > > type htcobol.y:2933.7-8: $$ for the midrule at $2 of `on_end' has no > > declared type htcobol.y:3237.10-11: $$ for the midrule at $2 of > > `on_size_error' has no declared type > > htcobol.y:3240.9-10: $$ for the midrule at $2 of `on_size_error' has no > > declared type > > make[1]: *** [htcobol.tab.c] Error 1 > > -------------------------------------------------------- > > any suggestions? > > I can't duplicate the problem on my development system, but this looks > like another Bison problem. > > I prefer to develop TC using a special version (1.9.3) of Berkeley's > YACC, which allows for large grammars, such as COBOL. > > Until I find a fix for this problem, I would suggest using Berkeley's > YACC version 1.9.3 (1). > Just configure TC with the 'with-yacc' option. > > Example: > ./configure --with-yacc=yacc193 > > You can get the source, and a MinGW binary, of this version of > Berkeley's YACC (1) on the TC download area at SF. > > Hope this helps. > > 1) TC misc - yacc-1.9.3-1.tar.gz > http://sourceforge.net/projects/tiny-cobol/files/ > http://sourceforge.net/projects/tiny-cobol/files/misc/yacc-1.9.3-1.tar.gz/d >ownload I use Linux (Slackware 13) so mingw doesn't apply. Are your other suggestions still valid? -- John Culleton "Create Book Covers with Scribus" Printable E-book 38 pages $5.95 http://www.booklocker.com/books/4055.html |
From: David E. <de...@us...> - 2010-01-12 23:14:35
|
John Culleton wrote: > Both 65 and 65.5 generate errors on my system: > ------------------------------------------------ > htcobol.y:2093.7-8: $$ for the midrule at $6 of `search' has no declared type > htcobol.y:2933.7-8: $$ for the midrule at $2 of `on_end' has no declared type > htcobol.y:3237.10-11: $$ for the midrule at $2 of `on_size_error' has no > declared type > htcobol.y:3240.9-10: $$ for the midrule at $2 of `on_size_error' has no > declared type > make[1]: *** [htcobol.tab.c] Error 1 > -------------------------------------------------------- > any suggestions? I can't duplicate the problem on my development system, but this looks like another Bison problem. I prefer to develop TC using a special version (1.9.3) of Berkeley's YACC, which allows for large grammars, such as COBOL. Until I find a fix for this problem, I would suggest using Berkeley's YACC version 1.9.3 (1). Just configure TC with the 'with-yacc' option. Example: ./configure --with-yacc=yacc193 You can get the source, and a MinGW binary, of this version of Berkeley's YACC (1) on the TC download area at SF. Hope this helps. 1) TC misc - yacc-1.9.3-1.tar.gz http://sourceforge.net/projects/tiny-cobol/files/ http://sourceforge.net/projects/tiny-cobol/files/misc/yacc-1.9.3-1.tar.gz/download |
From: John C. <jo...@we...> - 2010-01-12 20:11:36
|
On Monday 11 January 2010 02:45:12 David Essex wrote: > Due to a major bug fix, TC version 0.65.5 (32-bit) is now available for > download [1]. > > Lots of changes to the file IO compiler and run-time have been made. > > For indexed files, version 0.65, uses VB-ISAM version 2. > While BDB is no longer used for indexed files, it is still required by > the RT for file SORTS. > > To build and run TC version 0.65.5 requires the following. > - VB-ISAM version 2 or later. > - Berkeley DB version 1.85 or later. > - A curses library (PDcurses on win32). > > Since VB-ISAM is not usually included in any UN*X distributions, the > source can be found on SF [2]. > > For MinGW users, binaries are available on SF [1]. > Just download and install TC (ZIP or setup format), VB-ISAM version 2 > [3], BDB version 1.85 [4], and PDcurses version 2.4 [5]. > Or download the ALL version ZIP file which contains TC and required > libraries. > > Cheers. > > 1) SF downloads > 2) ISAM - vbisam-2.0.tar.bz2 > 3) ISAM - vbisam-2.0.mingw.zip > 4) BDB - bdb-1.85.mingw.zip > 5) PDcurses - pdcurses-2.4.mingw.zip > http://sourceforge.net/projects/tiny-cobol/files/ > > > > --------------------------------------------------------------------------- >--- This SF.Net email is sponsored by the Verizon Developer Community > Take advantage of Verizon's best-in-class app development support > A streamlined, 14 day to market process makes app distribution fast and > easy Join now and get one step closer to millions of Verizon customers > http://p.sf.net/sfu/verizon-dev2dev > _______________________________________________ > Tin...@li... > https://lists.sourceforge.net/lists/listinfo/tiny-cobol-users Both 65 and 65.5 generate errors on my system: ------------------------------------------------ htcobol.y:2093.7-8: $$ for the midrule at $6 of `search' has no declared type htcobol.y:2933.7-8: $$ for the midrule at $2 of `on_end' has no declared type htcobol.y:3237.10-11: $$ for the midrule at $2 of `on_size_error' has no declared type htcobol.y:3240.9-10: $$ for the midrule at $2 of `on_size_error' has no declared type make[1]: *** [htcobol.tab.c] Error 1 -------------------------------------------------------- any suggestions? -- John Culleton "Create Book Covers with Scribus" Printable E-book 38 pages $5.95 http://www.booklocker.com/books/4055.html |
From: David E. <de...@us...> - 2010-01-11 07:48:41
|
Due to a major bug fix, TC version 0.65.5 (32-bit) is now available for download [1]. Lots of changes to the file IO compiler and run-time have been made. For indexed files, version 0.65, uses VB-ISAM version 2. While BDB is no longer used for indexed files, it is still required by the RT for file SORTS. To build and run TC version 0.65.5 requires the following. - VB-ISAM version 2 or later. - Berkeley DB version 1.85 or later. - A curses library (PDcurses on win32). Since VB-ISAM is not usually included in any UN*X distributions, the source can be found on SF [2]. For MinGW users, binaries are available on SF [1]. Just download and install TC (ZIP or setup format), VB-ISAM version 2 [3], BDB version 1.85 [4], and PDcurses version 2.4 [5]. Or download the ALL version ZIP file which contains TC and required libraries. Cheers. 1) SF downloads 2) ISAM - vbisam-2.0.tar.bz2 3) ISAM - vbisam-2.0.mingw.zip 4) BDB - bdb-1.85.mingw.zip 5) PDcurses - pdcurses-2.4.mingw.zip http://sourceforge.net/projects/tiny-cobol/files/ |
From: David E. <de...@us...> - 2010-01-07 05:08:31
|
John Culleton wrote: ... > Now I need a working url for the TinyCobol 0.65 package itself. I've tested the links for 'tinycobol-0.65.tar.bz2' from the TC download page [1] and the SF files page [2], and both work as expected. I get a SF secondary download page with a direct and mirrors link. So I have no idea why you would get an invalid or non-working URL. Cheers. 1) TC download page http://tiny-cobol.sourceforge.net/download.php 2) SF files page for TC http://sourceforge.net/projects/tiny-cobol/files/ |
From: John C. <jo...@we...> - 2010-01-06 23:44:12
|
On Wednesday 06 January 2010 17:58:32 David Essex wrote: > John Culleton wrote: > ... > > > Sourceforge does not seem to have the VB-ISAM file on the url you list. > > I use Linux. > > > > I went to the TinyCOBOL page instead and tried to download the bz2 file. > > Each time the connection was reset. I'll wait a day or two and see if > > things improve. > > In my experience, SF downloads are problematic. Even worst when using a > web browser as it will not warn you of an incomplete download. > > So I generally use 'wget'. It will automatically reconnect and start the > download from the fail point. You can also use the continue option '-c'. > If that fails try using a mirror. > > Just click on link to go to the SF secondary download page, and copy the > 'direct link'. > > For example, the SF secondary download page is [1] and the direct link > is [2]. > > wget 'insert direct link url here ...' -O vbisam-2.0.tar.bz2 > > > Hope this helps. > > 1) SF secondary download page > http://sourceforge.net/projects/tiny-cobol/files/isam/vbisam-2.0.tar.bz2/do >wnload 2) SF download direct link > http://downloads.sourceforge.net/project/tiny-cobol/isam/vbisam-2.0.tar.bz2 >?use_mirror=hivelocity Given those urls the download took place in seconds. The ./configure make make install cycle also took just seconds. Wget wasn't needed. Now I need a working url for the Tiny Cobol 65 package itself. -- John Culleton "Create Book Covers with Scribus" Printable E-book 38 pages $5.95 http://www.scribd.com/doc/24676863/ http://www.booklocker.com/books/4055.html |
From: David E. <de...@us...> - 2010-01-06 23:01:46
|
John Culleton wrote: ... > Sourceforge does not seem to have the VB-ISAM file on the url you list. > I use Linux. > > I went to the TinyCOBOL page instead and tried to download the bz2 file. Each > time the connection was reset. I'll wait a day or two and see if things > improve. In my experience, SF downloads are problematic. Even worst when using a web browser as it will not warn you of an incomplete download. So I generally use 'wget'. It will automatically reconnect and start the download from the fail point. You can also use the continue option '-c'. If that fails try using a mirror. Just click on link to go to the SF secondary download page, and copy the 'direct link'. For example, the SF secondary download page is [1] and the direct link is [2]. wget 'insert direct link url here ...' -O vbisam-2.0.tar.bz2 Hope this helps. 1) SF secondary download page http://sourceforge.net/projects/tiny-cobol/files/isam/vbisam-2.0.tar.bz2/download 2) SF download direct link http://downloads.sourceforge.net/project/tiny-cobol/isam/vbisam-2.0.tar.bz2?use_mirror=hivelocity |
From: John C. <jo...@we...> - 2010-01-06 21:11:43
|
On Wednesday 06 January 2010 15:44:07 John Culleton wrote: > On Monday 04 January 2010 23:22:39 David Essex wrote: > > TC version 0.65 (32-bit) is now available for download [1]. > > > > Lots of changes to the file IO compiler and run-time have been made. > > > > For indexed files, version 0.65, uses VB-ISAM version 2. > > While BDB is no longer used for indexed files, it is still required by > > the RT for file SORTS. > > > > To build and run TC version 0.65 requires the following. > > - VB-ISAM version 2 or later. > > - Berkeley DB version 1.85 or later. > > - A curses library (PDcurses on win32). > > > > Since VB-ISAM is not usually included in any UN*X distributions, the > > source can be found on SF [2]. > > > > For MinGW users, binaries are available on SF [1]. > > Just download and install TC (ZIP or setup format), VB-ISAM version 2 > > [3], BDB version 1.85 [4], and PDcurses version 2.4 [5]. > > > > > > Cheers. > > > > > > 1) SF downloads > > 2) ISAM - vbisam-2.0.tar.bz2 > > 3) ISAM - vbisam-2.0.mingw.zip > > 4) BDB - bdb-1.85.mingw.zip > > http://sourceforge.net/projects/tiny-cobol/files/ > > > > 5) PDcurses - version 2.4 or later > > http://gnuwin32.sourceforge.net/ > > Sourceforge does not seem to have the VB-ISAM file on the url you list. I > use Linux. I went to the Tiny COBOL page instead and tried to download the bz2 file. Each time the connection was reset. I'll wait a day or two and see if things improve. -- John Culleton "Create Book Covers with Scribus" Printable E-book 38 pages $5.95 http://www.scribd.com/doc/24676863/ http://www.booklocker.com/books/4055.html |
From: John C. <jo...@we...> - 2010-01-06 20:43:54
|
On Monday 04 January 2010 23:22:39 David Essex wrote: > TC version 0.65 (32-bit) is now available for download [1]. > > Lots of changes to the file IO compiler and run-time have been made. > > For indexed files, version 0.65, uses VB-ISAM version 2. > While BDB is no longer used for indexed files, it is still required by > the RT for file SORTS. > > To build and run TC version 0.65 requires the following. > - VB-ISAM version 2 or later. > - Berkeley DB version 1.85 or later. > - A curses library (PDcurses on win32). > > Since VB-ISAM is not usually included in any UN*X distributions, the > source can be found on SF [2]. > > For MinGW users, binaries are available on SF [1]. > Just download and install TC (ZIP or setup format), VB-ISAM version 2 > [3], BDB version 1.85 [4], and PDcurses version 2.4 [5]. > > > Cheers. > > > 1) SF downloads > 2) ISAM - vbisam-2.0.tar.bz2 > 3) ISAM - vbisam-2.0.mingw.zip > 4) BDB - bdb-1.85.mingw.zip > http://sourceforge.net/projects/tiny-cobol/files/ > > 5) PDcurses - version 2.4 or later > http://gnuwin32.sourceforge.net/ > > > Sourceforge does not seem to have the VB-ISAM file on the url you list. I use Linux. -- John Culleton "Create Book Covers with Scribus" Printable E-book 38 pages $5.95 http://www.scribd.com/doc/24676863/ http://www.booklocker.com/books/4055.html |
From: David E. <de...@us...> - 2010-01-05 04:25:51
|
TC version 0.65 (32-bit) is now available for download [1]. Lots of changes to the file IO compiler and run-time have been made. For indexed files, version 0.65, uses VB-ISAM version 2. While BDB is no longer used for indexed files, it is still required by the RT for file SORTS. To build and run TC version 0.65 requires the following. - VB-ISAM version 2 or later. - Berkeley DB version 1.85 or later. - A curses library (PDcurses on win32). Since VB-ISAM is not usually included in any UN*X distributions, the source can be found on SF [2]. For MinGW users, binaries are available on SF [1]. Just download and install TC (ZIP or setup format), VB-ISAM version 2 [3], BDB version 1.85 [4], and PDcurses version 2.4 [5]. Cheers. 1) SF downloads 2) ISAM - vbisam-2.0.tar.bz2 3) ISAM - vbisam-2.0.mingw.zip 4) BDB - bdb-1.85.mingw.zip http://sourceforge.net/projects/tiny-cobol/files/ 5) PDcurses - version 2.4 or later http://gnuwin32.sourceforge.net/ |
From: Carlucio L. <car...@te...> - 2009-12-15 00:48:00
|
On Mon, 14 Dec 2009 12:37:02 -0800 (PST) Zoran Stevanovic <zrn...@ya...> wrote: > > I believe that the example on which the speech was interesting and others. > > Thank you. > > > > I have a document is in Portuguese, if anyone interested, email me bye -- Carlucio Lopes - 62-8415-8939 msn: car...@ho... http://www.tinycobol.org http://www.debian.org http://www.postgresql.org l |