<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pkgsrc/lang/bwbasic, branch pkgsrc_2008Q1</title>
<subtitle>[no description]</subtitle>
<id>https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc_2008Q1</id>
<link rel='self' href='https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc_2008Q1'/>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/'/>
<updated>2007-01-07T09:13:46Z</updated>
<entry>
<title>Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of</title>
<updated>2007-01-07T09:13:46Z</updated>
<author>
<name>rillig</name>
<email>rillig</email>
</author>
<published>2007-01-07T09:13:46Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=87e1bea888d90a6044a18e46681bc456ea30305c'/>
<id>urn:sha1:87e1bea888d90a6044a18e46681bc456ea30305c</id>
<content type='text'>
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.

Fixes PR 35265, although I did not use the patch provided therein.
</content>
</entry>
<entry>
<title>Move init of errfdevice to bwb_init, it should be the first</title>
<updated>2005-12-30T23:29:36Z</updated>
<author>
<name>joerg</name>
<email>joerg</email>
</author>
<published>2005-12-30T23:29:36Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=a2c630fe0f7159ee230e96613da76868048eed78'/>
<id>urn:sha1:a2c630fe0f7159ee230e96613da76868048eed78</id>
<content type='text'>
function which is ran and stderr can't be used as lvalue in
file scope.
</content>
</entry>
<entry>
<title>Fixed wrong use of WRKSRC.</title>
<updated>2005-11-03T21:51:57Z</updated>
<author>
<name>rillig</name>
<email>rillig</email>
</author>
<published>2005-11-03T21:51:57Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=9dda2994b8deaa2602062e23b0dba61323a99b33'/>
<id>urn:sha1:9dda2994b8deaa2602062e23b0dba61323a99b33</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Removed empty PKGREVISION.</title>
<updated>2005-09-28T17:00:36Z</updated>
<author>
<name>rillig</name>
<email>rillig</email>
</author>
<published>2005-09-28T17:00:36Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=06758e076b860535ab66c1490b1d719198174a13'/>
<id>urn:sha1:06758e076b860535ab66c1490b1d719198174a13</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Removed trailing white-space.</title>
<updated>2005-05-23T08:26:03Z</updated>
<author>
<name>rillig</name>
<email>rillig</email>
</author>
<published>2005-05-23T08:26:03Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=88fbe0b4f045070c1d74e80e2ff7448527e556e4'/>
<id>urn:sha1:88fbe0b4f045070c1d74e80e2ff7448527e556e4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add RMD160 digests</title>
<updated>2005-02-24T09:03:05Z</updated>
<author>
<name>agc</name>
<email>agc</email>
</author>
<published>2005-02-24T09:03:05Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=6228209cdf7c2171878655ed12067f6c0cdec797'/>
<id>urn:sha1:6228209cdf7c2171878655ed12067f6c0cdec797</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update to version 2.20pl2, as hinted by Roland Illig in PR 26577.  While</title>
<updated>2004-08-09T21:41:23Z</updated>
<author>
<name>cube</name>
<email>cube</email>
</author>
<published>2004-08-09T21:41:23Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=ac96c1a4774dc1f9be1c6265f8f4b36e3566bf1d'/>
<id>urn:sha1:ac96c1a4774dc1f9be1c6265f8f4b36e3566bf1d</id>
<content type='text'>
here, find a new fetch site since the previous one didn't work any more.

Patch1:

bwb_cnd.c
   Moved init routine for bwb_while so that it would be initialized regardless
   of expression value, not just if TRUE.  This was causing some segmentation
   faults in WHILE-WEND loops.

bwb_elx.c
   Plugged gaping memory leak.  Temp variable space for expression evaluation
   was being allocated but not freed when done (oops!).

bwb_fnc.c
   Added check for NULL return from getenv to prevent segmentation faults.

Patch2:

bwb_cmd.c
   Fixed calling stack level logic in RETURN statement to prevent erroneous
   "RETURN without GOSUB" messages.

bwb_cnd.c
bwb_stc.c

   Changed continuation condition for WHILE, ELSEIF, and LOOP UNTIL
   to be != FALSE, not == TRUE.  More in line with common commercial
   BASIC implementations.

bwb_mth.c
   Fixed initialization in VAL function so that old results are not later
   returned as values.

bwb_var.c
   Added parenthesis level checking to dim_getparams. Using multi-level
   expressions as array subscripts was causing the program to bomb.

bwx_iqc.c
bwx_tty.c
bwb_mes.h
   Added second copyright notice.

bwb_dio.c
bwb_str.c
   Added support for strings longer than 255 characters.

bwb_prn.c
   Disabled tab expansion and print width checks when not printing to a file.

bwb_inp.c
   Fixed LINE INPUT file reads to accommodate strings of length MAXSTRINGSIZE.

bwx_ncu.h
bwx_ncu.c
   New files.  Code for UNIX ncurses interface, compliments of L.C. Benschop,
   Eindhoven, The Netherlands.

Makefile.ncu
   New files.  Sample makefile for ncurses implementation.

bwbasic.h
   Revised defines for MININTSIZE and MAXINTSIZE from 16-bit to 32-bit limits.
   Revised define for MAXSTRINGSIZE from 255 to 5000 characters.
   Changed string length from unsigned char to unsigned int to support strings
   longer than 255 characters.
   Added support for new ncurses package.
   Revised VERSION define to reflect above changes.
</content>
</entry>
<entry>
<title>Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248</title>
<updated>2004-01-27T00:53:10Z</updated>
<author>
<name>heinz</name>
<email>heinz</email>
</author>
<published>2004-01-27T00:53:10Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=022eb86624280ef9db72559a99f9253a3d003132'/>
<id>urn:sha1:022eb86624280ef9db72559a99f9253a3d003132</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move WRKSRC definition away from the first paragraph in a Makefile.</title>
<updated>2004-01-20T12:18:15Z</updated>
<author>
<name>agc</name>
<email>agc</email>
</author>
<published>2004-01-20T12:18:15Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=1e53090cc228edde244c3b79950271b8ca469b1f'/>
<id>urn:sha1:1e53090cc228edde244c3b79950271b8ca469b1f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Drop trailing whitespace.  Ok'ed by wiz.</title>
<updated>2003-05-06T17:40:18Z</updated>
<author>
<name>jmmv</name>
<email>jmmv</email>
</author>
<published>2003-05-06T17:40:18Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=5a79423b6feb188f48299ebbaf981575b33d3f48'/>
<id>urn:sha1:5a79423b6feb188f48299ebbaf981575b33d3f48</id>
<content type='text'>
</content>
</entry>
</feed>
