9base, branch HEAD revived minimalist port of Plan 9 userland to Unix 63916da7bd6d73d9a405ce83fc4ca34845667cce 2019-09-11T22:46:27Z 2019-09-13T15:56:15Z hoc: Don't nest calls to follow() when lexing ++/+= and --/-= Evan Gates evan@gnarbox.com commit 63916da7bd6d73d9a405ce83fc4ca34845667cce parent 09e95a2d6f8dbafc6601147b2f5f150355813be6 Author: Evan Gates <evan@gnarbox.com> Date: Wed, 11 Sep 2019 15:46:27 -0700 hoc: Don't nest calls to follow() when lexing ++/+= and --/-= The code had a nested use of the follow() function that could cause +=+ and -=- to register as ++ and --. The first follow() to execute could consume a character and match and then the second follow() could consume another character and match. For example i-=-10 would result in a syntax error and i-=- would decrement i. 09e95a2d6f8dbafc6601147b2f5f150355813be6 2017-08-06T07:30:30Z 2017-08-06T07:30:30Z replaced sbrk() uses with malloc() Anselm R Garbe anselm@garbe.us commit 09e95a2d6f8dbafc6601147b2f5f150355813be6 parent bdca47727a2618c3cbb85a43fadcf9298ebec424 Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 6 Aug 2017 09:30:30 +0200 replaced sbrk() uses with malloc() bdca47727a2618c3cbb85a43fadcf9298ebec424 2017-06-07T15:58:04Z 2017-06-30T08:56:44Z ed: avoid name collision with libc's getline. Christopher Brannon chris@the-brannons.com commit bdca47727a2618c3cbb85a43fadcf9298ebec424 parent 1583c9239d968bbc571190d2cf563146a9704528 Author: Christopher Brannon <chris@the-brannons.com> Date: Wed, 7 Jun 2017 08:58:04 -0700 ed: avoid name collision with libc's getline. Redefining getline leads to a fun bug when linking statically against musl. 1583c9239d968bbc571190d2cf563146a9704528 2017-05-19T23:06:03Z 2017-06-30T08:54:10Z apply changes from https://github.com/9fans/plan9port on rc/havefork.c pranomostro pranomestro@gmail.com commit 1583c9239d968bbc571190d2cf563146a9704528 parent de27e3fba58c3dd467c29ea9a1aea6f9e65a5299 Author: pranomostro <pranomestro@gmail.com> Date: Sat, 20 May 2017 01:06:03 +0200 apply changes from https://github.com/9fans/plan9port on rc/havefork.c before applying those changes, rc exited with sigsegv when receiving sigint while executing a command in a subshell (example: rc -c '`{read}'). de27e3fba58c3dd467c29ea9a1aea6f9e65a5299 2016-09-09T19:36:57Z 2016-09-12T12:29:38Z check for _LARGEFILE64_SOURCE instead of __USE_LARGEFILE64 Evan Gates evan.gates@gmail.com commit de27e3fba58c3dd467c29ea9a1aea6f9e65a5299 parent 5673fdd72fae4823ba67e2c216bbfd724bc9e01c Author: Evan Gates <evan.gates@gmail.com> Date: Fri, 9 Sep 2016 12:36:57 -0700 check for _LARGEFILE64_SOURCE instead of __USE_LARGEFILE64 glibc doesn't define getdents() and requires use of the raw syscall. As such lib9/dirread.c needed to decide whether to use SYS_getdents or SYS_getdents64 and was checking if __USE_LARGEFILE64 was defined in order to do so. musl does not define __USE_LARGEFILE64 so the wrong syscall was being used. musl does however define _LARGEFILE64_SOURCE, the macro that glibc checks in order to define __USE_LARGEFILE64. 5673fdd72fae4823ba67e2c216bbfd724bc9e01c 2016-08-17T18:45:57Z 2016-08-18T06:49:11Z add bclib from plan 9 sources Evan Gates evan.gates@gmail.com commit 5673fdd72fae4823ba67e2c216bbfd724bc9e01c parent c074f6d0c7ad9ee13cfa65900e1789cfe4eb693c Author: Evan Gates <evan.gates@gmail.com> Date: Wed, 17 Aug 2016 11:45:57 -0700 add bclib from plan 9 sources add post-install and pre-uninstall targets to tools using yacc.mk mirroring those in std.mk in order to install and uninstall bclib c074f6d0c7ad9ee13cfa65900e1789cfe4eb693c 2016-08-17T18:40:29Z 2016-08-18T06:49:04Z fix DESTDIRK typo in yacc/Makefile Evan Gates evan.gates@gmail.com commit c074f6d0c7ad9ee13cfa65900e1789cfe4eb693c parent 7a0d18922b67c0e21c415e0865a1cfdb0646f020 Author: Evan Gates <evan.gates@gmail.com> Date: Wed, 17 Aug 2016 11:40:29 -0700 fix DESTDIRK typo in yacc/Makefile 7a0d18922b67c0e21c415e0865a1cfdb0646f020 2016-06-16T08:02:58Z 2016-06-16T08:02:58Z applied Alexander Clouter's 9base sha1sum patch Anselm R Garbe garbeam@gmail.com commit 7a0d18922b67c0e21c415e0865a1cfdb0646f020 parent c5aeaf9ec5e393061e87fe5d41d002ef5d4428e9 Author: Anselm R Garbe <garbeam@gmail.com> Date: Thu, 16 Jun 2016 10:02:58 +0200 applied Alexander Clouter's 9base sha1sum patch c5aeaf9ec5e393061e87fe5d41d002ef5d4428e9 2015-06-27T19:53:02Z 2015-06-27T19:53:02Z applied emg's cal fix Anselm R Garbe garbeam@gmail.com commit c5aeaf9ec5e393061e87fe5d41d002ef5d4428e9 parent 4fe8994317557febe21758a92fe26edbce6d517d Author: Anselm R Garbe <garbeam@gmail.com> Date: Sat, 27 Jun 2015 21:53:02 +0200 applied emg's cal fix 4fe8994317557febe21758a92fe26edbce6d517d 2014-10-09T10:34:03Z 2014-10-09T10:34:03Z install lib9.a sin sin@2f30.org commit 4fe8994317557febe21758a92fe26edbce6d517d parent 9108d8bdacd655aed0b6a9a79a035dd24a99ff24 Author: sin <sin@2f30.org> Date: Thu, 9 Oct 2014 11:34:03 +0100 install lib9.a This patch installs lib9.a in ${DESTDIR}${PREFIX}/lib/ so it can be linked against with -l9 (given the correct -L). I found that necessary to compile y.tab.c generated by 9base's yacc due to sprint(). Patch contributed by Evan Gates. 9108d8bdacd655aed0b6a9a79a035dd24a99ff24 2014-10-07T23:24:23Z 2014-10-07T23:25:01Z Install yaccpar and yaccpars sin sin@2f30.org commit 9108d8bdacd655aed0b6a9a79a035dd24a99ff24 parent 27d866c6ab4a2349a23cb21dada9a1136f76bfc0 Author: sin <sin@2f30.org> Date: Wed, 8 Oct 2014 00:24:23 +0100 Install yaccpar and yaccpars fatal error:cannot open parser /usr/local/plan9/yacc/yaccpar: No such file or directory, /home/egates/projects/hoc/hoc1/hoc.y:27 Issue reported by Evan Gates. 27d866c6ab4a2349a23cb21dada9a1136f76bfc0 2014-03-03T13:57:30Z 2014-03-07T15:04:28Z Fix building on OpenBSD 5.5 sin sin@2f30.org commit 27d866c6ab4a2349a23cb21dada9a1136f76bfc0 parent a71862d4fff6274e7b59e5d6381a05d8a1db579b Author: sin <sin@2f30.org> Date: Mon, 3 Mar 2014 13:57:30 +0000 Fix building on OpenBSD 5.5 getdirentries() has been removed and instead we should use getdents(). a71862d4fff6274e7b59e5d6381a05d8a1db579b 2014-03-03T10:59:34Z 2014-03-07T15:03:58Z Simplify preprocessor conditions to enable building on musl-libc sin sin@2f30.org commit a71862d4fff6274e7b59e5d6381a05d8a1db579b parent 45d1314a1bd1886c42c1bdaac4a0128f23f50e32 Author: sin <sin@2f30.org> Date: Mon, 3 Mar 2014 10:59:34 +0000 Simplify preprocessor conditions to enable building on musl-libc musl-libc does not export __MUSL__ so we cannot use that. I've chosen to go with the common solution here that works on uClibc, glibc and musl-libc by just using syscall(2) and getdents(2). To build 9base, you will need the appropriate kernel headers in place. 45d1314a1bd1886c42c1bdaac4a0128f23f50e32 2013-04-27T19:07:51Z 2013-04-27T19:07:51Z applied David Galos musl compile patch, thanks Anselm R Garbe anselm@garbe.us commit 45d1314a1bd1886c42c1bdaac4a0128f23f50e32 parent 51cdf1141edd627428ecf0b8bd643142dd5c3773 Author: Anselm R Garbe <anselm@garbe.us> Date: Sat, 27 Apr 2013 21:07:51 +0200 applied David Galos musl compile patch, thanks 51cdf1141edd627428ecf0b8bd643142dd5c3773 2012-11-01T17:42:41Z 2012-11-01T17:42:41Z added missing urlencode, thanks sl for checking this anselm@garbe.us unknown commit 51cdf1141edd627428ecf0b8bd643142dd5c3773 parent 19a07111123964b50fff2644882430398fded904 Author: anselm@garbe.us <unknown> Date: Thu, 1 Nov 2012 18:42:41 +0100 added missing urlencode, thanks sl for checking this 19a07111123964b50fff2644882430398fded904 2012-11-01T17:07:57Z 2012-11-01T17:07:57Z applied sl's 9front patch anselm@garbe.us unknown commit 19a07111123964b50fff2644882430398fded904 parent 21195c3217d3a4a69848735cb7cab5e669fad8de Author: anselm@garbe.us <unknown> Date: Thu, 1 Nov 2012 18:07:57 +0100 applied sl's 9front patch 21195c3217d3a4a69848735cb7cab5e669fad8de 2012-07-02T19:52:15Z 2012-07-02T19:52:15Z applied sl's read patch anselm@garbe.us unknown commit 21195c3217d3a4a69848735cb7cab5e669fad8de parent b7ce8129de5defa275d14b7656101ddcfb06cb77 Author: anselm@garbe.us <unknown> Date: Mon, 2 Jul 2012 21:52:15 +0200 applied sl's read patch b7ce8129de5defa275d14b7656101ddcfb06cb77 2012-04-19T17:17:26Z 2012-04-19T17:17:26Z remove useless files Connor Lane Smith cls@lubutu.com commit b7ce8129de5defa275d14b7656101ddcfb06cb77 parent 8528f7e3faac54de1b61ddc1443431543a1c1ce9 Author: Connor Lane Smith <cls@lubutu.com> Date: Thu, 19 Apr 2012 18:17:26 +0100 remove useless files 8528f7e3faac54de1b61ddc1443431543a1c1ce9 2012-04-05T18:27:40Z 2012-04-05T18:27:40Z applied cls's OSX troff fix patch, thanks anselm@garbe.us unknown commit 8528f7e3faac54de1b61ddc1443431543a1c1ce9 parent 5fcbf100201b93235b43cff403080a049a3a482d Author: anselm@garbe.us <unknown> Date: Thu, 5 Apr 2012 20:27:40 +0200 applied cls's OSX troff fix patch, thanks 5fcbf100201b93235b43cff403080a049a3a482d 2012-03-19T21:42:11Z 2012-03-19T21:42:11Z added PLAN9PORT flag as outlined by Chris Brannon, thanks! anselm@garbe.us unknown commit 5fcbf100201b93235b43cff403080a049a3a482d parent d2a6d3b9d5cc69cfb0fe09604217280d4093f21c Author: anselm@garbe.us <unknown> Date: Mon, 19 Mar 2012 22:42:11 +0100 added PLAN9PORT flag as outlined by Chris Brannon, thanks! d2a6d3b9d5cc69cfb0fe09604217280d4093f21c 2012-03-07T20:34:14Z 2012-03-07T20:34:14Z applied Matthew's dirread patch, thanks anselm@garbe.us unknown commit d2a6d3b9d5cc69cfb0fe09604217280d4093f21c parent 0ebf0433351f6e6fd61c5bfc25d5d4bd685f7b3a Author: anselm@garbe.us <unknown> Date: Wed, 7 Mar 2012 21:34:14 +0100 applied Matthew's dirread patch, thanks 0ebf0433351f6e6fd61c5bfc25d5d4bd685f7b3a 2012-03-07T20:29:55Z 2012-03-07T20:29:55Z applied Paul's final uClibc patches, thanks anselm@garbe.us unknown commit 0ebf0433351f6e6fd61c5bfc25d5d4bd685f7b3a parent 4644257fec39484e3dedb9dc9688105bc2605b98 Author: anselm@garbe.us <unknown> Date: Wed, 7 Mar 2012 21:29:55 +0100 applied Paul's final uClibc patches, thanks 4644257fec39484e3dedb9dc9688105bc2605b98 2012-02-29T19:52:27Z 2012-02-29T19:52:27Z applied Paul Onyschuk's remarks anselm@garbe.us unknown commit 4644257fec39484e3dedb9dc9688105bc2605b98 parent 422c761c28840f03071ac83a3edbfc6ae04d1921 Author: anselm@garbe.us <unknown> Date: Wed, 29 Feb 2012 20:52:27 +0100 applied Paul Onyschuk's remarks 422c761c28840f03071ac83a3edbfc6ae04d1921 2012-02-28T17:50:48Z 2012-02-28T17:50:48Z applied Anthony's fix for yacc.mk anselm@garbe.us unknown commit 422c761c28840f03071ac83a3edbfc6ae04d1921 parent 629f22258ad7db15ecccd9e38baa6456a5153e9e Author: anselm@garbe.us <unknown> Date: Tue, 28 Feb 2012 18:50:48 +0100 applied Anthony's fix for yacc.mk 629f22258ad7db15ecccd9e38baa6456a5153e9e 2012-02-12T22:13:17Z 2012-02-12T22:13:17Z applied Juliens 9base fixes on OBSD anselm@garbe.us unknown commit 629f22258ad7db15ecccd9e38baa6456a5153e9e parent 3ba816cd672688bda5c8657e3499e734c28f24c3 Author: anselm@garbe.us <unknown> Date: Sun, 12 Feb 2012 23:13:17 +0100 applied Juliens 9base fixes on OBSD 3ba816cd672688bda5c8657e3499e734c28f24c3 2011-07-05T18:25:18Z 2011-07-05T18:25:18Z added missing rules, thanks peth garbeam@gmail.com unknown commit 3ba816cd672688bda5c8657e3499e734c28f24c3 parent 7e8dfaf921d135e0c8b2cea4d231c3a509059f7d Author: garbeam@gmail.com <unknown> Date: Tue, 5 Jul 2011 19:25:18 +0100 added missing rules, thanks peth 7e8dfaf921d135e0c8b2cea4d231c3a509059f7d 2011-05-22T07:11:50Z 2011-05-22T07:11:50Z applied nsz's makefile cleanup, thanks Szabolcs! Anselm R Garbe anselm@garbe.us commit 7e8dfaf921d135e0c8b2cea4d231c3a509059f7d parent 443de6b2ff7295c63811275a5e97659a11a5d5c0 Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 22 May 2011 07:11:50 +0000 applied nsz's makefile cleanup, thanks Szabolcs! 443de6b2ff7295c63811275a5e97659a11a5d5c0 2011-05-08T08:26:38Z 2011-05-08T08:26:38Z applied sl's patch, thanks Stanley! Anselm R Garbe anselm@garbe.us commit 443de6b2ff7295c63811275a5e97659a11a5d5c0 parent 6d2a7da4aae588f1bb970dbe40d66a8585d4c0bb Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 8 May 2011 08:26:38 +0000 applied sl's patch, thanks Stanley! 6d2a7da4aae588f1bb970dbe40d66a8585d4c0bb 2011-05-02T14:17:55Z 2011-05-02T14:17:55Z Update TODO. Uriel u@berlinblue.org commit 6d2a7da4aae588f1bb970dbe40d66a8585d4c0bb parent 616bc8fa86909ff44a2cda817ad43fb29a33db93 Author: Uriel <u@berlinblue.org> Date: Mon, 2 May 2011 14:17:55 +0000 Update TODO. 616bc8fa86909ff44a2cda817ad43fb29a33db93 2011-02-25T13:45:57Z 2011-02-25T13:45:57Z applied the right man page from p9p, thanks Evil_Bob Anselm R Garbe anselm@garbe.us commit 616bc8fa86909ff44a2cda817ad43fb29a33db93 parent 8afe866336de73ae7b81b601b13673cb820b8c90 Author: Anselm R Garbe <anselm@garbe.us> Date: Fri, 25 Feb 2011 13:45:57 +0000 applied the right man page from p9p, thanks Evil_Bob 8afe866336de73ae7b81b601b13673cb820b8c90 2011-02-25T12:58:56Z 2011-02-25T12:58:56Z added listen.1 placeholder, is there a man page in p9 source somewhere? Anselm R Garbe anselm@garbe.us commit 8afe866336de73ae7b81b601b13673cb820b8c90 parent 4f7cd11b8b5e6b5b69cf29a11a85c876795da881 Author: Anselm R Garbe <anselm@garbe.us> Date: Fri, 25 Feb 2011 12:58:56 +0000 added listen.1 placeholder, is there a man page in p9 source somewhere? 4f7cd11b8b5e6b5b69cf29a11a85c876795da881 2011-02-23T21:56:46Z 2011-02-23T21:56:46Z added missing files Anselm R Garbe anselm@garbe.us commit 4f7cd11b8b5e6b5b69cf29a11a85c876795da881 parent 60bd5888062ba341609f89bb9788fbf31123b060 Author: Anselm R Garbe <anselm@garbe.us> Date: Wed, 23 Feb 2011 21:56:46 +0000 added missing files 60bd5888062ba341609f89bb9788fbf31123b060 2011-02-23T21:49:39Z 2011-02-23T21:49:39Z applied Stanley's listen1 patch, thanks Stanley! Anselm R Garbe anselm@garbe.us commit 60bd5888062ba341609f89bb9788fbf31123b060 parent 5eee7b5bb7e801a2ab1f88d327aff192fd8fd334 Author: Anselm R Garbe <anselm@garbe.us> Date: Wed, 23 Feb 2011 21:49:39 +0000 applied Stanley's listen1 patch, thanks Stanley! 5eee7b5bb7e801a2ab1f88d327aff192fd8fd334 2011-01-06T09:50:05Z 2011-01-06T09:50:05Z added sun4u OBJTYPE Anselm R Garbe anselm@garbe.us commit 5eee7b5bb7e801a2ab1f88d327aff192fd8fd334 parent 6f16e4300c567ec7f42a000abce4c674dc848227 Author: Anselm R Garbe <anselm@garbe.us> Date: Thu, 6 Jan 2011 09:50:05 +0000 added sun4u OBJTYPE 6f16e4300c567ec7f42a000abce4c674dc848227 2011-01-06T09:30:54Z 2011-01-06T09:30:54Z include md5sum and added wc Anselm R Garbe anselm@garbe.us commit 6f16e4300c567ec7f42a000abce4c674dc848227 parent ea58929c86383da9bb19f8449f48f26f25cbc3c6 Author: Anselm R Garbe <anselm@garbe.us> Date: Thu, 6 Jan 2011 09:30:54 +0000 include md5sum and added wc ea58929c86383da9bb19f8449f48f26f25cbc3c6 2011-01-05T16:21:08Z 2011-01-05T16:21:08Z added TODO Anselm R Garbe anselm@garbe.us commit ea58929c86383da9bb19f8449f48f26f25cbc3c6 parent 0ad0bc437baae7672db4a3975d5b8c716202939c Author: Anselm R Garbe <anselm@garbe.us> Date: Wed, 5 Jan 2011 16:21:08 +0000 added TODO 0ad0bc437baae7672db4a3975d5b8c716202939c 2011-01-05T08:33:42Z 2011-01-05T08:33:42Z reverted have*fork.c to erik's unlimited allocation to work better together with werc posts Anselm R Garbe anselm@garbe.us commit 0ad0bc437baae7672db4a3975d5b8c716202939c parent 38702511c5203e487776932e6ebdb1c0a9e80a67 Author: Anselm R Garbe <anselm@garbe.us> Date: Wed, 5 Jan 2011 08:33:42 +0000 reverted have*fork.c to erik's unlimited allocation to work better together with werc posts 38702511c5203e487776932e6ebdb1c0a9e80a67 2010-07-19T17:11:30Z 2010-07-19T17:11:30Z Sync lib9 with plan9port. Kris Maglione maglione.k@gmail.com commit 38702511c5203e487776932e6ebdb1c0a9e80a67 parent 65f285bad8c2fe136ce4c4a99f12cfc1cb2d0f68 Author: Kris Maglione <maglione.k@gmail.com> Date: Mon, 19 Jul 2010 13:11:30 -0400 Sync lib9 with plan9port. 65f285bad8c2fe136ce4c4a99f12cfc1cb2d0f68 2010-07-19T15:50:26Z 2010-07-19T15:50:26Z Sync lib9 with plan9port. Fix build with bsdmake. Kris Maglione maglione.k@gmail.com commit 65f285bad8c2fe136ce4c4a99f12cfc1cb2d0f68 parent a3b65ffcdcc4450db02e999e89d126201852813f Author: Kris Maglione <maglione.k@gmail.com> Date: Mon, 19 Jul 2010 11:50:26 -0400 Sync lib9 with plan9port. Fix build with bsdmake. a3b65ffcdcc4450db02e999e89d126201852813f 2010-07-19T06:49:13Z 2010-07-19T06:49:13Z applied Sebastian Liem's OpenBSD patch, thanks! anselm@garbe.us unknown commit a3b65ffcdcc4450db02e999e89d126201852813f parent 5abaddc5f0212bf8d035638327cb0b30ee8cb843 Author: anselm@garbe.us <unknown> Date: Mon, 19 Jul 2010 07:49:13 +0100 applied Sebastian Liem's OpenBSD patch, thanks! 5abaddc5f0212bf8d035638327cb0b30ee8cb843 2010-06-04T10:44:25Z 2010-06-04T10:44:25Z Added tag 6 for changeset 31578905a059 anselm@garbe.us unknown commit 5abaddc5f0212bf8d035638327cb0b30ee8cb843 parent 44ec7df86c30fdb6b7ccba018b0bc5a05551ca18 Author: anselm@garbe.us <unknown> Date: Fri, 4 Jun 2010 11:44:25 +0100 Added tag 6 for changeset 31578905a059 44ec7df86c30fdb6b7ccba018b0bc5a05551ca18 2010-05-29T18:23:23Z 2010-05-29T18:23:23Z applied dibbs patch, slightly modified though Anselm R Garbe anselm@garbe.us commit 44ec7df86c30fdb6b7ccba018b0bc5a05551ca18 parent 9765fabf4d48cc6af2f8870fae4dde5c975ac86c Author: Anselm R Garbe <anselm@garbe.us> Date: Sat, 29 May 2010 19:23:23 +0100 applied dibbs patch, slightly modified though 9765fabf4d48cc6af2f8870fae4dde5c975ac86c 2010-05-29T13:33:38Z 2010-05-29T13:33:38Z added sam Anselm R Garbe anselm@garbe.us commit 9765fabf4d48cc6af2f8870fae4dde5c975ac86c parent 631633fb8f9afdeaf4c7002680ae4913d0c36397 Author: Anselm R Garbe <anselm@garbe.us> Date: Sat, 29 May 2010 14:33:38 +0100 added sam 631633fb8f9afdeaf4c7002680ae4913d0c36397 2010-05-29T10:58:52Z 2010-05-29T10:58:52Z renamed ed's internal mktemp Anselm R Garbe anselm@garbe.us commit 631633fb8f9afdeaf4c7002680ae4913d0c36397 parent baa580c2a2190234f86224d627eeac9d29f6e7d7 Author: Anselm R Garbe <anselm@garbe.us> Date: Sat, 29 May 2010 11:58:52 +0100 renamed ed's internal mktemp baa580c2a2190234f86224d627eeac9d29f6e7d7 2010-05-28T10:32:00Z 2010-05-28T10:32:00Z added factor.1 and primes.1 stub Anselm R Garbe anselm@garbe.us commit baa580c2a2190234f86224d627eeac9d29f6e7d7 parent fa62640154da08c5fd229af50efde0d33871a0aa Author: Anselm R Garbe <anselm@garbe.us> Date: Fri, 28 May 2010 11:32:00 +0100 added factor.1 and primes.1 stub fa62640154da08c5fd229af50efde0d33871a0aa 2010-05-28T10:30:17Z 2010-05-28T10:30:17Z added commands as discussed with Uriel yesterday Anselm R Garbe anselm@garbe.us commit fa62640154da08c5fd229af50efde0d33871a0aa parent 85bacddf7706d2c89c30c2433fb8c43cd794cdb5 Author: Anselm R Garbe <anselm@garbe.us> Date: Fri, 28 May 2010 11:30:17 +0100 added commands as discussed with Uriel yesterday 85bacddf7706d2c89c30c2433fb8c43cd794cdb5 2010-05-27T12:32:03Z 2010-05-27T12:32:03Z added TODO anselm@garbe.us unknown commit 85bacddf7706d2c89c30c2433fb8c43cd794cdb5 parent d37eb1034e3bab754a24c9629fc369545f7c9b67 Author: anselm@garbe.us <unknown> Date: Thu, 27 May 2010 13:32:03 +0100 added TODO d37eb1034e3bab754a24c9629fc369545f7c9b67 2010-05-27T12:31:50Z 2010-05-27T12:31:50Z added md5sum anselm@garbe.us unknown commit d37eb1034e3bab754a24c9629fc369545f7c9b67 parent 78a6c092e93295e60ed4cba344117a34b586d7da Author: anselm@garbe.us <unknown> Date: Thu, 27 May 2010 13:31:50 +0100 added md5sum 78a6c092e93295e60ed4cba344117a34b586d7da 2010-05-27T12:02:29Z 2010-05-27T12:02:29Z added fmt as well anselm@garbe.us unknown commit 78a6c092e93295e60ed4cba344117a34b586d7da parent e70375948b9e9afebde07fb294abf5f039f19d44 Author: anselm@garbe.us <unknown> Date: Thu, 27 May 2010 13:02:29 +0100 added fmt as well e70375948b9e9afebde07fb294abf5f039f19d44 2010-05-27T09:26:43Z 2010-05-27T09:26:43Z added sha1sum and ed, enabled factor and primes, increases version to 6, remaining work is syncing with most recent code and applying some patches to rc anselm@garbe.us unknown commit e70375948b9e9afebde07fb294abf5f039f19d44 parent 7dce804fe658181cb8cbb102a525ca34b4fb0006 Author: anselm@garbe.us <unknown> Date: Thu, 27 May 2010 10:26:43 +0100 added sha1sum and ed, enabled factor and primes, increases version to 6, remaining work is syncing with most recent code and applying some patches to rc 7dce804fe658181cb8cbb102a525ca34b4fb0006 2010-04-27T14:48:07Z 2010-04-27T14:48:07Z merge Anselm R Garbe anselm@garbe.us commit 7dce804fe658181cb8cbb102a525ca34b4fb0006 parent a7102135eff7e934b6616a59dcb83c09bf188f06 Author: Anselm R Garbe <anselm@garbe.us> Date: Tue, 27 Apr 2010 14:48:07 +0000 merge a7102135eff7e934b6616a59dcb83c09bf188f06 2010-04-27T14:47:43Z 2010-04-27T14:47:43Z added missing man pages, thanks to pmarin for his digging Anselm R Garbe anselm@garbe.us commit a7102135eff7e934b6616a59dcb83c09bf188f06 parent 942791ab23de64d2580e3143ba3866ad85fa8ab3 Author: Anselm R Garbe <anselm@garbe.us> Date: Tue, 27 Apr 2010 14:47:43 +0000 added missing man pages, thanks to pmarin for his digging 07785c2b7ed7c1c38a9cd2e782acf0fc347392f2 2010-04-27T07:50:05Z 2010-04-27T07:50:05Z updated some man pages that I could find anselm@garbe.us unknown commit 07785c2b7ed7c1c38a9cd2e782acf0fc347392f2 parent 3510aaba60ec5a1e1d9db66cb8a898c2a06389e2 Author: anselm@garbe.us <unknown> Date: Tue, 27 Apr 2010 08:50:05 +0100 updated some man pages that I could find 3510aaba60ec5a1e1d9db66cb8a898c2a06389e2 2010-04-25T11:10:19Z 2010-04-25T11:10:19Z Added tag 5 for changeset 5f3d19e583ff Anselm R Garbe anselm@garbe.us commit 3510aaba60ec5a1e1d9db66cb8a898c2a06389e2 parent b4d70c74a47b2b92751a661f74a2b2247362cae6 Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 25 Apr 2010 12:10:19 +0100 Added tag 5 for changeset 5f3d19e583ff b4d70c74a47b2b92751a661f74a2b2247362cae6 2010-04-25T11:10:12Z 2010-04-25T11:10:12Z prepared 9base-5 release Anselm R Garbe anselm@garbe.us commit b4d70c74a47b2b92751a661f74a2b2247362cae6 parent b760594c08c602c775f585b105108e710cf7e811 Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 25 Apr 2010 12:10:12 +0100 prepared 9base-5 release b760594c08c602c775f585b105108e710cf7e811 2010-04-13T15:30:34Z 2010-04-13T15:30:34Z another fix anselm@garbe.us unknown commit b760594c08c602c775f585b105108e710cf7e811 parent 78cf15c824fb149d0a8a1f2f751efb8477c3168b Author: anselm@garbe.us <unknown> Date: Tue, 13 Apr 2010 16:30:34 +0100 another fix 78cf15c824fb149d0a8a1f2f751efb8477c3168b 2010-04-13T15:19:01Z 2010-04-13T15:19:01Z update anselm@garbe.us unknown commit 78cf15c824fb149d0a8a1f2f751efb8477c3168b parent a6b5f13ce8d4c644d0ea555804aadcb194da667e Author: anselm@garbe.us <unknown> Date: Tue, 13 Apr 2010 16:19:01 +0100 update a6b5f13ce8d4c644d0ea555804aadcb194da667e 2010-04-11T18:15:05Z 2010-04-11T18:15:05Z extend copyright Anselm R Garbe anselm@garbe.us commit a6b5f13ce8d4c644d0ea555804aadcb194da667e parent 45ac8c8bd851ba5081939a63dd8a57421abec09a Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 11 Apr 2010 19:15:05 +0100 extend copyright 45ac8c8bd851ba5081939a63dd8a57421abec09a 2010-04-11T18:13:01Z 2010-04-11T18:13:01Z removed tac, added tail from p9 instead (tac == tail -r) Anselm R Garbe anselm@garbe.us commit 45ac8c8bd851ba5081939a63dd8a57421abec09a parent 942791ab23de64d2580e3143ba3866ad85fa8ab3 Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 11 Apr 2010 19:13:01 +0100 removed tac, added tail from p9 instead (tac == tail -r) 942791ab23de64d2580e3143ba3866ad85fa8ab3 2010-04-01T14:03:15Z 2010-04-01T14:03:15Z implemented 'tac' in a suckless way remove mtime binary from the repository pancake nopcode.org commit 942791ab23de64d2580e3143ba3866ad85fa8ab3 parent 3bdea00b978d1f91addcee5a8afd01acd7db3ea4 Author: pancake <nopcode.org> Date: Thu, 1 Apr 2010 16:03:15 +0200 implemented 'tac' in a suckless way remove mtime binary from the repository 3bdea00b978d1f91addcee5a8afd01acd7db3ea4 2010-03-27T23:23:08Z 2010-03-27T23:23:08Z several fixes anselm@garbe unknown commit 3bdea00b978d1f91addcee5a8afd01acd7db3ea4 parent 291717bfdcda5bf5c12c037d7c4bbcc79e12bb94 Author: anselm@garbe <unknown> Date: Sat, 27 Mar 2010 23:23:08 +0000 several fixes 291717bfdcda5bf5c12c037d7c4bbcc79e12bb94 2010-03-22T08:27:23Z 2010-03-22T08:27:23Z disabled two programs anselm@garbe.us unknown commit 291717bfdcda5bf5c12c037d7c4bbcc79e12bb94 parent 6d511bc7ba2f3e6ded8e7429776c6df29ed82300 Author: anselm@garbe.us <unknown> Date: Mon, 22 Mar 2010 08:27:23 +0000 disabled two programs 6d511bc7ba2f3e6ded8e7429776c6df29ed82300 2010-03-22T08:13:36Z 2010-03-22T08:13:36Z added freq, factor, fortune and primes as well, now is good anselm@garbe.us unknown commit 6d511bc7ba2f3e6ded8e7429776c6df29ed82300 parent de8d58acf8db7718da376c928cbde0c3a24869a2 Author: anselm@garbe.us <unknown> Date: Mon, 22 Mar 2010 08:13:36 +0000 added freq, factor, fortune and primes as well, now is good de8d58acf8db7718da376c928cbde0c3a24869a2 2010-03-22T08:08:16Z 2010-03-22T08:08:16Z missing bit of getflags anselm@garbe.us unknown commit de8d58acf8db7718da376c928cbde0c3a24869a2 parent a5e01b5d6c03c220712198ce23f4b7fc25d43dfa Author: anselm@garbe.us <unknown> Date: Mon, 22 Mar 2010 08:08:16 +0000 missing bit of getflags a5e01b5d6c03c220712198ce23f4b7fc25d43dfa 2010-03-22T08:08:01Z 2010-03-22T08:08:01Z added getflags anselm@garbe.us unknown commit a5e01b5d6c03c220712198ce23f4b7fc25d43dfa parent 9659cd5b37e1f0a6539a0ec5cf145d0e649fc973 Author: anselm@garbe.us <unknown> Date: Mon, 22 Mar 2010 08:08:01 +0000 added getflags 9659cd5b37e1f0a6539a0ec5cf145d0e649fc973 2010-03-22T08:07:02Z 2010-03-22T08:07:02Z added mkdir as well anselm@garbe.us unknown commit 9659cd5b37e1f0a6539a0ec5cf145d0e649fc973 parent 07cf44e6452f7928fe20cc2849c249b28d19344f Author: anselm@garbe.us <unknown> Date: Mon, 22 Mar 2010 08:07:02 +0000 added mkdir as well 07cf44e6452f7928fe20cc2849c249b28d19344f 2010-03-22T08:04:31Z 2010-03-22T08:04:31Z added mtime, next version will be 5 anselm@garbe.us unknown commit 07cf44e6452f7928fe20cc2849c249b28d19344f parent 244b935e44cbdc4d361135bf83c083688b943eb4 Author: anselm@garbe.us <unknown> Date: Mon, 22 Mar 2010 08:04:31 +0000 added mtime, next version will be 5 244b935e44cbdc4d361135bf83c083688b943eb4 2009-10-15T20:35:28Z 2009-10-15T20:35:28Z Don't allow clobbering of troff's CFLAGS by config.mk Kris Maglione jg@suckless.org commit 244b935e44cbdc4d361135bf83c083688b943eb4 parent f71961be90faae365d90c29f96c0c1dd309953d2 Author: Kris Maglione <jg@suckless.org> Date: Thu, 15 Oct 2009 16:35:28 -0400 Don't allow clobbering of troff's CFLAGS by config.mk f71961be90faae365d90c29f96c0c1dd309953d2 2009-10-15T08:12:19Z 2009-10-15T08:12:19Z Fix possible troff crash with misconfigured build Kris Maglione maglione.k@gmail.com commit f71961be90faae365d90c29f96c0c1dd309953d2 parent decec5092e45992cd0ae406d7c9ffb4ccd079bdf Author: Kris Maglione <maglione.k@gmail.com> Date: Thu, 15 Oct 2009 04:12:19 -0400 Fix possible troff crash with misconfigured build decec5092e45992cd0ae406d7c9ffb4ccd079bdf 2009-09-13T20:34:44Z 2009-09-13T20:34:44Z better patch Anselm R Garbe anselm@garbe.us commit decec5092e45992cd0ae406d7c9ffb4ccd079bdf parent 025a6f5b514bbcccf6471d6e29d6197f5c2166e8 Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 13 Sep 2009 21:34:44 +0100 better patch 025a6f5b514bbcccf6471d6e29d6197f5c2166e8 2009-09-13T20:28:18Z 2009-09-13T20:28:18Z prefixing mbwc.c funcs with p9 Anselm R Garbe anselm@garbe.us commit 025a6f5b514bbcccf6471d6e29d6197f5c2166e8 parent 3e61fa6987d4845b253cdd844aa52b32b065c357 Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 13 Sep 2009 21:28:18 +0100 prefixing mbwc.c funcs with p9 3e61fa6987d4845b253cdd844aa52b32b065c357 2009-08-27T17:54:00Z 2009-08-27T17:54:00Z Added tag 4 for changeset 25d1757fba6b Anselm R Garbe anselm@garbe.us commit 3e61fa6987d4845b253cdd844aa52b32b065c357 parent 03259d69b6fd02e0fccd2444fb36b8aae998deb1 Author: Anselm R Garbe <anselm@garbe.us> Date: Thu, 27 Aug 2009 18:54:00 +0100 Added tag 4 for changeset 25d1757fba6b 03259d69b6fd02e0fccd2444fb36b8aae998deb1 2009-08-27T17:51:52Z 2009-08-27T17:51:52Z update Anselm R Garbe anselm@garbe.us commit 03259d69b6fd02e0fccd2444fb36b8aae998deb1 parent 8d32bc598c90490fc0a9243b2c0f723958be604c Author: Anselm R Garbe <anselm@garbe.us> Date: Thu, 27 Aug 2009 18:51:52 +0100 update 8d32bc598c90490fc0a9243b2c0f723958be604c 2009-08-27T13:15:56Z 2009-08-27T13:15:56Z final preparation for 9base-4 Anselm R Garbe garbeam@gmail.com commit 8d32bc598c90490fc0a9243b2c0f723958be604c parent 1c45d63ec3ac9a4a0e63129f1c7e587bff757dc3 Author: Anselm R Garbe <garbeam@gmail.com> Date: Thu, 27 Aug 2009 14:15:56 +0100 final preparation for 9base-4 1c45d63ec3ac9a4a0e63129f1c7e587bff757dc3 2009-08-25T19:05:27Z 2009-08-25T19:05:27Z added troff and made it working Anselm R Garbe anselm@garbe.us commit 1c45d63ec3ac9a4a0e63129f1c7e587bff757dc3 parent a08a2a9000cf4cb01ac165f410dbe99a64191edd Author: Anselm R Garbe <anselm@garbe.us> Date: Tue, 25 Aug 2009 20:05:27 +0100 added troff and made it working a08a2a9000cf4cb01ac165f410dbe99a64191edd 2009-08-24T18:23:45Z 2009-08-24T18:23:45Z added mk and troff to 9base (unfinished yet, DO NOT USE) Anselm R Garbe anselm@garbe.us commit a08a2a9000cf4cb01ac165f410dbe99a64191edd parent c0a69251c8988bdbabf4f3d3e20f40e363990c6c Author: Anselm R Garbe <anselm@garbe.us> Date: Mon, 24 Aug 2009 19:23:45 +0100 added mk and troff to 9base (unfinished yet, DO NOT USE) c0a69251c8988bdbabf4f3d3e20f40e363990c6c 2009-08-10T14:08:41Z 2009-08-10T14:08:41Z applied another patch from olegfink, thx, re-enabled du in build chain Anselm R Garbe garbeam@gmail.com commit c0a69251c8988bdbabf4f3d3e20f40e363990c6c parent 56196e76fd80ff6fdd6365d8fa028d8b4675ff4b Author: Anselm R Garbe <garbeam@gmail.com> Date: Mon, 10 Aug 2009 15:08:41 +0100 applied another patch from olegfink, thx, re-enabled du in build chain 56196e76fd80ff6fdd6365d8fa028d8b4675ff4b 2009-08-10T14:05:01Z 2009-08-10T14:05:01Z update Anselm R Garbe garbeam@gmail.com commit 56196e76fd80ff6fdd6365d8fa028d8b4675ff4b parent f61f650899ccc18561eb21fce96e4770508adb71 Author: Anselm R Garbe <garbeam@gmail.com> Date: Mon, 10 Aug 2009 15:05:01 +0100 update f61f650899ccc18561eb21fce96e4770508adb71 2009-08-10T14:04:03Z 2009-08-10T14:04:03Z added olegfink's patches for adding cal and hoc Anselm R Garbe garbeam@gmail.com commit f61f650899ccc18561eb21fce96e4770508adb71 parent a34055fb4b74b06c01e0e0f9623eba002bda6ef1 Author: Anselm R Garbe <garbeam@gmail.com> Date: Mon, 10 Aug 2009 15:04:03 +0100 added olegfink's patches for adding cal and hoc 9b9335d3850d001b8bdd069b8d021f025b0554a4 2009-08-08T08:57:36Z 2009-08-08T08:57:36Z added stub man page for du Anselm R Garbe anselm@garbe.us commit 9b9335d3850d001b8bdd069b8d021f025b0554a4 parent 426af479a7d51773b00c96dba01817715f02408c Author: Anselm R Garbe <anselm@garbe.us> Date: Sat, 8 Aug 2009 09:57:36 +0100 added stub man page for du 426af479a7d51773b00c96dba01817715f02408c 2009-08-08T08:54:20Z 2009-08-08T08:54:20Z merge Anselm R Garbe anselm@garbe.us commit 426af479a7d51773b00c96dba01817715f02408c parent 37674df46f5c1753ca39e274d8489edb54d90166 Author: Anselm R Garbe <anselm@garbe.us> Date: Sat, 8 Aug 2009 09:54:20 +0100 merge 37674df46f5c1753ca39e274d8489edb54d90166 2009-08-08T08:53:34Z 2009-08-08T08:53:34Z added du from plan9port Anselm R Garbe anselm@garbe.us commit 37674df46f5c1753ca39e274d8489edb54d90166 parent 059dcd31c983441d637d17f521ef6dd144215694 Author: Anselm R Garbe <anselm@garbe.us> Date: Sat, 8 Aug 2009 09:53:34 +0100 added du from plan9port a34055fb4b74b06c01e0e0f9623eba002bda6ef1 2009-08-03T09:15:07Z 2009-08-03T09:15:07Z Added tag 3 for changeset 7c1decda5b50 Anselm R Garbe garbeam@gmail.com commit a34055fb4b74b06c01e0e0f9623eba002bda6ef1 parent 4e0debbdf6662c3b7449b725e9fd1b26c4e0ec60 Author: Anselm R Garbe <garbeam@gmail.com> Date: Mon, 3 Aug 2009 10:15:07 +0100 Added tag 3 for changeset 7c1decda5b50 4e0debbdf6662c3b7449b725e9fd1b26c4e0ec60 2009-08-03T09:14:59Z 2009-08-03T09:14:59Z unused Anselm R Garbe garbeam@gmail.com commit 4e0debbdf6662c3b7449b725e9fd1b26c4e0ec60 parent 63069fc74a8ca095331d8b8a4bed51a6bb85edd8 Author: Anselm R Garbe <garbeam@gmail.com> Date: Mon, 3 Aug 2009 10:14:59 +0100 unused 63069fc74a8ca095331d8b8a4bed51a6bb85edd8 2009-08-03T09:13:59Z 2009-08-03T09:13:59Z update Anselm R Garbe garbeam@gmail.com commit 63069fc74a8ca095331d8b8a4bed51a6bb85edd8 parent 059dcd31c983441d637d17f521ef6dd144215694 Author: Anselm R Garbe <garbeam@gmail.com> Date: Mon, 3 Aug 2009 10:13:59 +0100 update 059dcd31c983441d637d17f521ef6dd144215694 2009-08-02T09:31:02Z 2009-08-02T09:31:02Z some sanity fixes arg@localhost.localdomain unknown commit 059dcd31c983441d637d17f521ef6dd144215694 parent c5ba8cfeb807114e3cd9fd5ba7c3bc0884e1abad Author: arg@localhost.localdomain <unknown> Date: Sun, 2 Aug 2009 09:31:02 +0000 some sanity fixes c5ba8cfeb807114e3cd9fd5ba7c3bc0884e1abad 2009-08-02T09:24:29Z 2009-08-02T09:24:29Z added some tweaks Anselm R Garbe anselm@garbe.us commit c5ba8cfeb807114e3cd9fd5ba7c3bc0884e1abad parent 4e6a3f7520886923dc03eb96764fc0b09c52733e Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 2 Aug 2009 10:24:29 +0100 added some tweaks 4e6a3f7520886923dc03eb96764fc0b09c52733e 2009-08-02T09:07:10Z 2009-08-02T09:07:10Z some tweaks, install into /usr/local/plan9 to provide better compatibility with p9p and apps written on top of p9p such as werc Anselm R Garbe anselm@garbe.us commit 4e6a3f7520886923dc03eb96764fc0b09c52733e parent abc072187111c9098f80518e9c8d0b81ae1577d0 Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 2 Aug 2009 10:07:10 +0100 some tweaks, install into /usr/local/plan9 to provide better compatibility with p9p and apps written on top of p9p such as werc abc072187111c9098f80518e9c8d0b81ae1577d0 2009-07-31T20:02:58Z 2009-07-31T20:02:58Z upgraded 9base to p9p 20090731 Anselm R Garbe anselm@garbe.us commit abc072187111c9098f80518e9c8d0b81ae1577d0 parent 89cb321008eab13102fa98bd1b28caadc2c5218e Author: Anselm R Garbe <anselm@garbe.us> Date: Fri, 31 Jul 2009 21:02:58 +0100 upgraded 9base to p9p 20090731 89cb321008eab13102fa98bd1b28caadc2c5218e 2006-02-09T12:39:50Z 2006-02-09T12:39:50Z Added tag snap for changeset 8ab76db4077c67fe71a34f8f287b69a3adf9de03 Anselm R. Garbe garbeam@wmii.de commit 89cb321008eab13102fa98bd1b28caadc2c5218e parent 662bc6335485c482df0b618cc85fe758197e0c0b Author: Anselm R. Garbe <garbeam@wmii.de> Date: Thu, 9 Feb 2006 13:39:50 +0100 Added tag snap for changeset 8ab76db4077c67fe71a34f8f287b69a3adf9de03 662bc6335485c482df0b618cc85fe758197e0c0b 2006-02-09T12:37:57Z 2006-02-09T12:37:57Z prepared snap Anselm R. Garbe garbeam@wmii.de commit 662bc6335485c482df0b618cc85fe758197e0c0b parent cf77a035ab614eec460ac6ba1c92412bd549569d Author: Anselm R. Garbe <garbeam@wmii.de> Date: Thu, 9 Feb 2006 13:37:57 +0100 prepared snap cf77a035ab614eec460ac6ba1c92412bd549569d 2006-02-09T12:15:45Z 2006-02-09T12:15:45Z we need getcallerpc crap to prevent several coredumps, though rc is not threaded, oh dear! Anselm R. Garbe garbeam@wmii.de commit cf77a035ab614eec460ac6ba1c92412bd549569d parent 6ccdc8cffd953f6dae2692e687d19ac6e58a7e2b Author: Anselm R. Garbe <garbeam@wmii.de> Date: Thu, 9 Feb 2006 13:15:45 +0100 we need getcallerpc crap to prevent several coredumps, though rc is not threaded, oh dear! 6ccdc8cffd953f6dae2692e687d19ac6e58a7e2b 2006-01-31T18:37:59Z 2006-01-31T18:37:59Z added ls Anselm R. Garbe garbeam@wmii.de commit 6ccdc8cffd953f6dae2692e687d19ac6e58a7e2b parent b7abc7dd08640a98b0af92b05bb0a57e614f3160 Author: Anselm R. Garbe <garbeam@wmii.de> Date: Tue, 31 Jan 2006 20:37:59 +0200 added ls b7abc7dd08640a98b0af92b05bb0a57e614f3160 2006-01-29T20:20:00Z 2006-01-29T20:20:00Z Added tag snap for changeset 664144b8c1a4e0aae3535eb49ee0bc2d3679da5a Anselm R. Garbe garbeam@wmii.de commit b7abc7dd08640a98b0af92b05bb0a57e614f3160 parent 08aaa60fa84ea14afed7c7b0ead4307263cc118f Author: Anselm R. Garbe <garbeam@wmii.de> Date: Sun, 29 Jan 2006 22:20:00 +0200 Added tag snap for changeset 664144b8c1a4e0aae3535eb49ee0bc2d3679da5a 08aaa60fa84ea14afed7c7b0ead4307263cc118f 2006-01-29T20:17:04Z 2006-01-29T20:17:04Z added read to 9base Anselm R. Garbe garbeam@wmii.de commit 08aaa60fa84ea14afed7c7b0ead4307263cc118f parent 2b4ad5ac67349aef64970f40d871b16b6f0262f3 Author: Anselm R. Garbe <garbeam@wmii.de> Date: Sun, 29 Jan 2006 22:17:04 +0200 added read to 9base 2b4ad5ac67349aef64970f40d871b16b6f0262f3 2006-01-25T14:20:35Z 2006-01-25T14:20:35Z Added tag 2 for changeset 538338114742f2e81f6c52a5a323bdf7ca0d5d86 Anselm R. Garbe garbeam@wmii.de commit 2b4ad5ac67349aef64970f40d871b16b6f0262f3 parent 47503caffc3e64dc14f358068326c4e1b1e818b8 Author: Anselm R. Garbe <garbeam@wmii.de> Date: Wed, 25 Jan 2006 16:20:35 +0200 Added tag 2 for changeset 538338114742f2e81f6c52a5a323bdf7ca0d5d86 47503caffc3e64dc14f358068326c4e1b1e818b8 2006-01-25T14:20:21Z 2006-01-25T14:20:21Z prepared 9base-2 Anselm R. Garbe garbeam@wmii.de commit 47503caffc3e64dc14f358068326c4e1b1e818b8 parent fbd05cbd195a12683bcc05dfb6d54955c18fef19 Author: Anselm R. Garbe <garbeam@wmii.de> Date: Wed, 25 Jan 2006 16:20:21 +0200 prepared 9base-2 fbd05cbd195a12683bcc05dfb6d54955c18fef19 2006-01-24T14:23:07Z 2006-01-24T14:23:07Z added dc to 9base as requested Anselm R. Garbe garbeam@wmii.de commit fbd05cbd195a12683bcc05dfb6d54955c18fef19 parent 877adeba5fbe1704ba41961099e452eb8e88ebd7 Author: Anselm R. Garbe <garbeam@wmii.de> Date: Tue, 24 Jan 2006 16:23:07 +0200 added dc to 9base as requested 877adeba5fbe1704ba41961099e452eb8e88ebd7 2006-01-23T15:39:06Z 2006-01-23T15:39:06Z prepared new snap Anselm R. Garbe garbeam@wmii.de commit 877adeba5fbe1704ba41961099e452eb8e88ebd7 parent bebc443496e27d1eebfdbabc7bed4257b23dbcea Author: Anselm R. Garbe <garbeam@wmii.de> Date: Mon, 23 Jan 2006 17:39:06 +0200 prepared new snap bebc443496e27d1eebfdbabc7bed4257b23dbcea 2006-01-23T15:36:21Z 2006-01-23T15:36:21Z removed getcallerpc dependency, we have no threads, thus no locking needed Anselm R. Garbe garbeam@wmii.de commit bebc443496e27d1eebfdbabc7bed4257b23dbcea parent a106699167c3750d8d61f5200b923b62de6906c9 Author: Anselm R. Garbe <garbeam@wmii.de> Date: Mon, 23 Jan 2006 17:36:21 +0200 removed getcallerpc dependency, we have no threads, thus no locking needed