9base, branch HEADrevived minimalist port of Plan 9 userland to Unix
63916da7bd6d73d9a405ce83fc4ca34845667cce2019-09-11T22:46:27Z2019-09-13T15:56:15Zhoc: Don't nest calls to follow() when lexing ++/+= and --/-=Evan Gatesevan@gnarbox.comcommit 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.
09e95a2d6f8dbafc6601147b2f5f150355813be62017-08-06T07:30:30Z2017-08-06T07:30:30Zreplaced sbrk() uses with malloc()Anselm R Garbeanselm@garbe.uscommit 09e95a2d6f8dbafc6601147b2f5f150355813be6
parent bdca47727a2618c3cbb85a43fadcf9298ebec424
Author: Anselm R Garbe <anselm@garbe.us>
Date: Sun, 6 Aug 2017 09:30:30 +0200
replaced sbrk() uses with malloc()
bdca47727a2618c3cbb85a43fadcf9298ebec4242017-06-07T15:58:04Z2017-06-30T08:56:44Zed: avoid name collision with libc's getline.Christopher Brannonchris@the-brannons.comcommit 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.
1583c9239d968bbc571190d2cf563146a97045282017-05-19T23:06:03Z2017-06-30T08:54:10Zapply changes from https://github.com/9fans/plan9port on rc/havefork.cpranomostropranomestro@gmail.comcommit 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}').
de27e3fba58c3dd467c29ea9a1aea6f9e65a52992016-09-09T19:36:57Z2016-09-12T12:29:38Zcheck for _LARGEFILE64_SOURCE instead of __USE_LARGEFILE64Evan Gatesevan.gates@gmail.comcommit 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.
5673fdd72fae4823ba67e2c216bbfd724bc9e01c2016-08-17T18:45:57Z2016-08-18T06:49:11Zadd bclib from plan 9 sourcesEvan Gatesevan.gates@gmail.comcommit 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
c074f6d0c7ad9ee13cfa65900e1789cfe4eb693c2016-08-17T18:40:29Z2016-08-18T06:49:04Zfix DESTDIRK typo in yacc/MakefileEvan Gatesevan.gates@gmail.comcommit 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
7a0d18922b67c0e21c415e0865a1cfdb0646f0202016-06-16T08:02:58Z2016-06-16T08:02:58Zapplied Alexander Clouter's 9base sha1sum patchAnselm R Garbegarbeam@gmail.comcommit 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
c5aeaf9ec5e393061e87fe5d41d002ef5d4428e92015-06-27T19:53:02Z2015-06-27T19:53:02Zapplied emg's cal fixAnselm R Garbegarbeam@gmail.comcommit c5aeaf9ec5e393061e87fe5d41d002ef5d4428e9
parent 4fe8994317557febe21758a92fe26edbce6d517d
Author: Anselm R Garbe <garbeam@gmail.com>
Date: Sat, 27 Jun 2015 21:53:02 +0200
applied emg's cal fix
4fe8994317557febe21758a92fe26edbce6d517d2014-10-09T10:34:03Z2014-10-09T10:34:03Zinstall lib9.asinsin@2f30.orgcommit 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.
9108d8bdacd655aed0b6a9a79a035dd24a99ff242014-10-07T23:24:23Z2014-10-07T23:25:01ZInstall yaccpar and yaccparssinsin@2f30.orgcommit 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.
27d866c6ab4a2349a23cb21dada9a1136f76bfc02014-03-03T13:57:30Z2014-03-07T15:04:28ZFix building on OpenBSD 5.5sinsin@2f30.orgcommit 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().
a71862d4fff6274e7b59e5d6381a05d8a1db579b2014-03-03T10:59:34Z2014-03-07T15:03:58ZSimplify preprocessor conditions to enable building on musl-libcsinsin@2f30.orgcommit 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.
45d1314a1bd1886c42c1bdaac4a0128f23f50e322013-04-27T19:07:51Z2013-04-27T19:07:51Zapplied David Galos musl compile patch, thanksAnselm R Garbeanselm@garbe.uscommit 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
51cdf1141edd627428ecf0b8bd643142dd5c37732012-11-01T17:42:41Z2012-11-01T17:42:41Zadded missing urlencode, thanks sl for checking thisanselm@garbe.usunknowncommit 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
19a07111123964b50fff2644882430398fded9042012-11-01T17:07:57Z2012-11-01T17:07:57Zapplied sl's 9front patchanselm@garbe.usunknowncommit 19a07111123964b50fff2644882430398fded904
parent 21195c3217d3a4a69848735cb7cab5e669fad8de
Author: anselm@garbe.us <unknown>
Date: Thu, 1 Nov 2012 18:07:57 +0100
applied sl's 9front patch
21195c3217d3a4a69848735cb7cab5e669fad8de2012-07-02T19:52:15Z2012-07-02T19:52:15Zapplied sl's read patchanselm@garbe.usunknowncommit 21195c3217d3a4a69848735cb7cab5e669fad8de
parent b7ce8129de5defa275d14b7656101ddcfb06cb77
Author: anselm@garbe.us <unknown>
Date: Mon, 2 Jul 2012 21:52:15 +0200
applied sl's read patch
b7ce8129de5defa275d14b7656101ddcfb06cb772012-04-19T17:17:26Z2012-04-19T17:17:26Zremove useless filesConnor Lane Smithcls@lubutu.comcommit b7ce8129de5defa275d14b7656101ddcfb06cb77
parent 8528f7e3faac54de1b61ddc1443431543a1c1ce9
Author: Connor Lane Smith <cls@lubutu.com>
Date: Thu, 19 Apr 2012 18:17:26 +0100
remove useless files
8528f7e3faac54de1b61ddc1443431543a1c1ce92012-04-05T18:27:40Z2012-04-05T18:27:40Zapplied cls's OSX troff fix patch, thanksanselm@garbe.usunknowncommit 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
5fcbf100201b93235b43cff403080a049a3a482d2012-03-19T21:42:11Z2012-03-19T21:42:11Zadded PLAN9PORT flag as outlined by Chris Brannon, thanks!anselm@garbe.usunknowncommit 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!
d2a6d3b9d5cc69cfb0fe09604217280d4093f21c2012-03-07T20:34:14Z2012-03-07T20:34:14Zapplied Matthew's dirread patch, thanksanselm@garbe.usunknowncommit d2a6d3b9d5cc69cfb0fe09604217280d4093f21c
parent 0ebf0433351f6e6fd61c5bfc25d5d4bd685f7b3a
Author: anselm@garbe.us <unknown>
Date: Wed, 7 Mar 2012 21:34:14 +0100
applied Matthew's dirread patch, thanks
0ebf0433351f6e6fd61c5bfc25d5d4bd685f7b3a2012-03-07T20:29:55Z2012-03-07T20:29:55Zapplied Paul's final uClibc patches, thanksanselm@garbe.usunknowncommit 0ebf0433351f6e6fd61c5bfc25d5d4bd685f7b3a
parent 4644257fec39484e3dedb9dc9688105bc2605b98
Author: anselm@garbe.us <unknown>
Date: Wed, 7 Mar 2012 21:29:55 +0100
applied Paul's final uClibc patches, thanks
4644257fec39484e3dedb9dc9688105bc2605b982012-02-29T19:52:27Z2012-02-29T19:52:27Zapplied Paul Onyschuk's remarksanselm@garbe.usunknowncommit 4644257fec39484e3dedb9dc9688105bc2605b98
parent 422c761c28840f03071ac83a3edbfc6ae04d1921
Author: anselm@garbe.us <unknown>
Date: Wed, 29 Feb 2012 20:52:27 +0100
applied Paul Onyschuk's remarks
422c761c28840f03071ac83a3edbfc6ae04d19212012-02-28T17:50:48Z2012-02-28T17:50:48Zapplied Anthony's fix for yacc.mkanselm@garbe.usunknowncommit 422c761c28840f03071ac83a3edbfc6ae04d1921
parent 629f22258ad7db15ecccd9e38baa6456a5153e9e
Author: anselm@garbe.us <unknown>
Date: Tue, 28 Feb 2012 18:50:48 +0100
applied Anthony's fix for yacc.mk
629f22258ad7db15ecccd9e38baa6456a5153e9e2012-02-12T22:13:17Z2012-02-12T22:13:17Zapplied Juliens 9base fixes on OBSDanselm@garbe.usunknowncommit 629f22258ad7db15ecccd9e38baa6456a5153e9e
parent 3ba816cd672688bda5c8657e3499e734c28f24c3
Author: anselm@garbe.us <unknown>
Date: Sun, 12 Feb 2012 23:13:17 +0100
applied Juliens 9base fixes on OBSD
3ba816cd672688bda5c8657e3499e734c28f24c32011-07-05T18:25:18Z2011-07-05T18:25:18Zadded missing rules, thanks pethgarbeam@gmail.comunknowncommit 3ba816cd672688bda5c8657e3499e734c28f24c3
parent 7e8dfaf921d135e0c8b2cea4d231c3a509059f7d
Author: garbeam@gmail.com <unknown>
Date: Tue, 5 Jul 2011 19:25:18 +0100
added missing rules, thanks peth
7e8dfaf921d135e0c8b2cea4d231c3a509059f7d2011-05-22T07:11:50Z2011-05-22T07:11:50Zapplied nsz's makefile cleanup, thanks Szabolcs!Anselm R Garbeanselm@garbe.uscommit 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!
443de6b2ff7295c63811275a5e97659a11a5d5c02011-05-08T08:26:38Z2011-05-08T08:26:38Zapplied sl's patch, thanks Stanley!Anselm R Garbeanselm@garbe.uscommit 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!
6d2a7da4aae588f1bb970dbe40d66a8585d4c0bb2011-05-02T14:17:55Z2011-05-02T14:17:55ZUpdate TODO.Urielu@berlinblue.orgcommit 6d2a7da4aae588f1bb970dbe40d66a8585d4c0bb
parent 616bc8fa86909ff44a2cda817ad43fb29a33db93
Author: Uriel <u@berlinblue.org>
Date: Mon, 2 May 2011 14:17:55 +0000
Update TODO.
616bc8fa86909ff44a2cda817ad43fb29a33db932011-02-25T13:45:57Z2011-02-25T13:45:57Zapplied the right man page from p9p, thanks Evil_BobAnselm R Garbeanselm@garbe.uscommit 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
8afe866336de73ae7b81b601b13673cb820b8c902011-02-25T12:58:56Z2011-02-25T12:58:56Zadded listen.1 placeholder, is there a man page in p9 source somewhere?Anselm R Garbeanselm@garbe.uscommit 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?
4f7cd11b8b5e6b5b69cf29a11a85c876795da8812011-02-23T21:56:46Z2011-02-23T21:56:46Zadded missing filesAnselm R Garbeanselm@garbe.uscommit 4f7cd11b8b5e6b5b69cf29a11a85c876795da881
parent 60bd5888062ba341609f89bb9788fbf31123b060
Author: Anselm R Garbe <anselm@garbe.us>
Date: Wed, 23 Feb 2011 21:56:46 +0000
added missing files
60bd5888062ba341609f89bb9788fbf31123b0602011-02-23T21:49:39Z2011-02-23T21:49:39Zapplied Stanley's listen1 patch, thanks Stanley!Anselm R Garbeanselm@garbe.uscommit 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!
5eee7b5bb7e801a2ab1f88d327aff192fd8fd3342011-01-06T09:50:05Z2011-01-06T09:50:05Zadded sun4u OBJTYPEAnselm R Garbeanselm@garbe.uscommit 5eee7b5bb7e801a2ab1f88d327aff192fd8fd334
parent 6f16e4300c567ec7f42a000abce4c674dc848227
Author: Anselm R Garbe <anselm@garbe.us>
Date: Thu, 6 Jan 2011 09:50:05 +0000
added sun4u OBJTYPE
6f16e4300c567ec7f42a000abce4c674dc8482272011-01-06T09:30:54Z2011-01-06T09:30:54Zinclude md5sum and added wcAnselm R Garbeanselm@garbe.uscommit 6f16e4300c567ec7f42a000abce4c674dc848227
parent ea58929c86383da9bb19f8449f48f26f25cbc3c6
Author: Anselm R Garbe <anselm@garbe.us>
Date: Thu, 6 Jan 2011 09:30:54 +0000
include md5sum and added wc
ea58929c86383da9bb19f8449f48f26f25cbc3c62011-01-05T16:21:08Z2011-01-05T16:21:08Zadded TODOAnselm R Garbeanselm@garbe.uscommit ea58929c86383da9bb19f8449f48f26f25cbc3c6
parent 0ad0bc437baae7672db4a3975d5b8c716202939c
Author: Anselm R Garbe <anselm@garbe.us>
Date: Wed, 5 Jan 2011 16:21:08 +0000
added TODO
0ad0bc437baae7672db4a3975d5b8c716202939c2011-01-05T08:33:42Z2011-01-05T08:33:42Zreverted have*fork.c to erik's unlimited allocation to work better together with werc postsAnselm R Garbeanselm@garbe.uscommit 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
38702511c5203e487776932e6ebdb1c0a9e80a672010-07-19T17:11:30Z2010-07-19T17:11:30ZSync lib9 with plan9port.Kris Maglionemaglione.k@gmail.comcommit 38702511c5203e487776932e6ebdb1c0a9e80a67
parent 65f285bad8c2fe136ce4c4a99f12cfc1cb2d0f68
Author: Kris Maglione <maglione.k@gmail.com>
Date: Mon, 19 Jul 2010 13:11:30 -0400
Sync lib9 with plan9port.
65f285bad8c2fe136ce4c4a99f12cfc1cb2d0f682010-07-19T15:50:26Z2010-07-19T15:50:26ZSync lib9 with plan9port. Fix build with bsdmake.Kris Maglionemaglione.k@gmail.comcommit 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.
a3b65ffcdcc4450db02e999e89d126201852813f2010-07-19T06:49:13Z2010-07-19T06:49:13Zapplied Sebastian Liem's OpenBSD patch, thanks!anselm@garbe.usunknowncommit a3b65ffcdcc4450db02e999e89d126201852813f
parent 5abaddc5f0212bf8d035638327cb0b30ee8cb843
Author: anselm@garbe.us <unknown>
Date: Mon, 19 Jul 2010 07:49:13 +0100
applied Sebastian Liem's OpenBSD patch, thanks!
5abaddc5f0212bf8d035638327cb0b30ee8cb8432010-06-04T10:44:25Z2010-06-04T10:44:25ZAdded tag 6 for changeset 31578905a059anselm@garbe.usunknowncommit 5abaddc5f0212bf8d035638327cb0b30ee8cb843
parent 44ec7df86c30fdb6b7ccba018b0bc5a05551ca18
Author: anselm@garbe.us <unknown>
Date: Fri, 4 Jun 2010 11:44:25 +0100
Added tag 6 for changeset 31578905a059
44ec7df86c30fdb6b7ccba018b0bc5a05551ca182010-05-29T18:23:23Z2010-05-29T18:23:23Zapplied dibbs patch, slightly modified thoughAnselm R Garbeanselm@garbe.uscommit 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
9765fabf4d48cc6af2f8870fae4dde5c975ac86c2010-05-29T13:33:38Z2010-05-29T13:33:38Zadded samAnselm R Garbeanselm@garbe.uscommit 9765fabf4d48cc6af2f8870fae4dde5c975ac86c
parent 631633fb8f9afdeaf4c7002680ae4913d0c36397
Author: Anselm R Garbe <anselm@garbe.us>
Date: Sat, 29 May 2010 14:33:38 +0100
added sam
631633fb8f9afdeaf4c7002680ae4913d0c363972010-05-29T10:58:52Z2010-05-29T10:58:52Zrenamed ed's internal mktempAnselm R Garbeanselm@garbe.uscommit 631633fb8f9afdeaf4c7002680ae4913d0c36397
parent baa580c2a2190234f86224d627eeac9d29f6e7d7
Author: Anselm R Garbe <anselm@garbe.us>
Date: Sat, 29 May 2010 11:58:52 +0100
renamed ed's internal mktemp
baa580c2a2190234f86224d627eeac9d29f6e7d72010-05-28T10:32:00Z2010-05-28T10:32:00Zadded factor.1 and primes.1 stubAnselm R Garbeanselm@garbe.uscommit 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
fa62640154da08c5fd229af50efde0d33871a0aa2010-05-28T10:30:17Z2010-05-28T10:30:17Zadded commands as discussed with Uriel yesterdayAnselm R Garbeanselm@garbe.uscommit 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
85bacddf7706d2c89c30c2433fb8c43cd794cdb52010-05-27T12:32:03Z2010-05-27T12:32:03Zadded TODOanselm@garbe.usunknowncommit 85bacddf7706d2c89c30c2433fb8c43cd794cdb5
parent d37eb1034e3bab754a24c9629fc369545f7c9b67
Author: anselm@garbe.us <unknown>
Date: Thu, 27 May 2010 13:32:03 +0100
added TODO
d37eb1034e3bab754a24c9629fc369545f7c9b672010-05-27T12:31:50Z2010-05-27T12:31:50Zadded md5sumanselm@garbe.usunknowncommit d37eb1034e3bab754a24c9629fc369545f7c9b67
parent 78a6c092e93295e60ed4cba344117a34b586d7da
Author: anselm@garbe.us <unknown>
Date: Thu, 27 May 2010 13:31:50 +0100
added md5sum
78a6c092e93295e60ed4cba344117a34b586d7da2010-05-27T12:02:29Z2010-05-27T12:02:29Zadded fmt as wellanselm@garbe.usunknowncommit 78a6c092e93295e60ed4cba344117a34b586d7da
parent e70375948b9e9afebde07fb294abf5f039f19d44
Author: anselm@garbe.us <unknown>
Date: Thu, 27 May 2010 13:02:29 +0100
added fmt as well
e70375948b9e9afebde07fb294abf5f039f19d442010-05-27T09:26:43Z2010-05-27T09:26:43Zadded sha1sum and ed, enabled factor and primes, increases version to 6, remaining work is syncing with most recent code and applying some patches to rcanselm@garbe.usunknowncommit 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
7dce804fe658181cb8cbb102a525ca34b4fb00062010-04-27T14:48:07Z2010-04-27T14:48:07ZmergeAnselm R Garbeanselm@garbe.uscommit 7dce804fe658181cb8cbb102a525ca34b4fb0006
parent a7102135eff7e934b6616a59dcb83c09bf188f06
Author: Anselm R Garbe <anselm@garbe.us>
Date: Tue, 27 Apr 2010 14:48:07 +0000
merge
a7102135eff7e934b6616a59dcb83c09bf188f062010-04-27T14:47:43Z2010-04-27T14:47:43Zadded missing man pages, thanks to pmarin for his diggingAnselm R Garbeanselm@garbe.uscommit 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
07785c2b7ed7c1c38a9cd2e782acf0fc347392f22010-04-27T07:50:05Z2010-04-27T07:50:05Zupdated some man pages that I could findanselm@garbe.usunknowncommit 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
3510aaba60ec5a1e1d9db66cb8a898c2a06389e22010-04-25T11:10:19Z2010-04-25T11:10:19ZAdded tag 5 for changeset 5f3d19e583ffAnselm R Garbeanselm@garbe.uscommit 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
b4d70c74a47b2b92751a661f74a2b2247362cae62010-04-25T11:10:12Z2010-04-25T11:10:12Zprepared 9base-5 releaseAnselm R Garbeanselm@garbe.uscommit b4d70c74a47b2b92751a661f74a2b2247362cae6
parent b760594c08c602c775f585b105108e710cf7e811
Author: Anselm R Garbe <anselm@garbe.us>
Date: Sun, 25 Apr 2010 12:10:12 +0100
prepared 9base-5 release
b760594c08c602c775f585b105108e710cf7e8112010-04-13T15:30:34Z2010-04-13T15:30:34Zanother fixanselm@garbe.usunknowncommit b760594c08c602c775f585b105108e710cf7e811
parent 78cf15c824fb149d0a8a1f2f751efb8477c3168b
Author: anselm@garbe.us <unknown>
Date: Tue, 13 Apr 2010 16:30:34 +0100
another fix
78cf15c824fb149d0a8a1f2f751efb8477c3168b2010-04-13T15:19:01Z2010-04-13T15:19:01Zupdateanselm@garbe.usunknowncommit 78cf15c824fb149d0a8a1f2f751efb8477c3168b
parent a6b5f13ce8d4c644d0ea555804aadcb194da667e
Author: anselm@garbe.us <unknown>
Date: Tue, 13 Apr 2010 16:19:01 +0100
update
a6b5f13ce8d4c644d0ea555804aadcb194da667e2010-04-11T18:15:05Z2010-04-11T18:15:05Zextend copyrightAnselm R Garbeanselm@garbe.uscommit a6b5f13ce8d4c644d0ea555804aadcb194da667e
parent 45ac8c8bd851ba5081939a63dd8a57421abec09a
Author: Anselm R Garbe <anselm@garbe.us>
Date: Sun, 11 Apr 2010 19:15:05 +0100
extend copyright
45ac8c8bd851ba5081939a63dd8a57421abec09a2010-04-11T18:13:01Z2010-04-11T18:13:01Zremoved tac, added tail from p9 instead (tac == tail -r)Anselm R Garbeanselm@garbe.uscommit 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)
942791ab23de64d2580e3143ba3866ad85fa8ab32010-04-01T14:03:15Z2010-04-01T14:03:15Zimplemented 'tac' in a suckless way remove mtime binary from the repositorypancakenopcode.orgcommit 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
3bdea00b978d1f91addcee5a8afd01acd7db3ea42010-03-27T23:23:08Z2010-03-27T23:23:08Zseveral fixesanselm@garbeunknowncommit 3bdea00b978d1f91addcee5a8afd01acd7db3ea4
parent 291717bfdcda5bf5c12c037d7c4bbcc79e12bb94
Author: anselm@garbe <unknown>
Date: Sat, 27 Mar 2010 23:23:08 +0000
several fixes
291717bfdcda5bf5c12c037d7c4bbcc79e12bb942010-03-22T08:27:23Z2010-03-22T08:27:23Zdisabled two programsanselm@garbe.usunknowncommit 291717bfdcda5bf5c12c037d7c4bbcc79e12bb94
parent 6d511bc7ba2f3e6ded8e7429776c6df29ed82300
Author: anselm@garbe.us <unknown>
Date: Mon, 22 Mar 2010 08:27:23 +0000
disabled two programs
6d511bc7ba2f3e6ded8e7429776c6df29ed823002010-03-22T08:13:36Z2010-03-22T08:13:36Zadded freq, factor, fortune and primes as well, now is goodanselm@garbe.usunknowncommit 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
de8d58acf8db7718da376c928cbde0c3a24869a22010-03-22T08:08:16Z2010-03-22T08:08:16Zmissing bit of getflagsanselm@garbe.usunknowncommit de8d58acf8db7718da376c928cbde0c3a24869a2
parent a5e01b5d6c03c220712198ce23f4b7fc25d43dfa
Author: anselm@garbe.us <unknown>
Date: Mon, 22 Mar 2010 08:08:16 +0000
missing bit of getflags
a5e01b5d6c03c220712198ce23f4b7fc25d43dfa2010-03-22T08:08:01Z2010-03-22T08:08:01Zadded getflagsanselm@garbe.usunknowncommit a5e01b5d6c03c220712198ce23f4b7fc25d43dfa
parent 9659cd5b37e1f0a6539a0ec5cf145d0e649fc973
Author: anselm@garbe.us <unknown>
Date: Mon, 22 Mar 2010 08:08:01 +0000
added getflags
9659cd5b37e1f0a6539a0ec5cf145d0e649fc9732010-03-22T08:07:02Z2010-03-22T08:07:02Zadded mkdir as wellanselm@garbe.usunknowncommit 9659cd5b37e1f0a6539a0ec5cf145d0e649fc973
parent 07cf44e6452f7928fe20cc2849c249b28d19344f
Author: anselm@garbe.us <unknown>
Date: Mon, 22 Mar 2010 08:07:02 +0000
added mkdir as well
07cf44e6452f7928fe20cc2849c249b28d19344f2010-03-22T08:04:31Z2010-03-22T08:04:31Zadded mtime, next version will be 5anselm@garbe.usunknowncommit 07cf44e6452f7928fe20cc2849c249b28d19344f
parent 244b935e44cbdc4d361135bf83c083688b943eb4
Author: anselm@garbe.us <unknown>
Date: Mon, 22 Mar 2010 08:04:31 +0000
added mtime, next version will be 5
244b935e44cbdc4d361135bf83c083688b943eb42009-10-15T20:35:28Z2009-10-15T20:35:28ZDon't allow clobbering of troff's CFLAGS by config.mkKris Maglionejg@suckless.orgcommit 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
f71961be90faae365d90c29f96c0c1dd309953d22009-10-15T08:12:19Z2009-10-15T08:12:19ZFix possible troff crash with misconfigured buildKris Maglionemaglione.k@gmail.comcommit 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
decec5092e45992cd0ae406d7c9ffb4ccd079bdf2009-09-13T20:34:44Z2009-09-13T20:34:44Zbetter patchAnselm R Garbeanselm@garbe.uscommit decec5092e45992cd0ae406d7c9ffb4ccd079bdf
parent 025a6f5b514bbcccf6471d6e29d6197f5c2166e8
Author: Anselm R Garbe <anselm@garbe.us>
Date: Sun, 13 Sep 2009 21:34:44 +0100
better patch
025a6f5b514bbcccf6471d6e29d6197f5c2166e82009-09-13T20:28:18Z2009-09-13T20:28:18Zprefixing mbwc.c funcs with p9Anselm R Garbeanselm@garbe.uscommit 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
3e61fa6987d4845b253cdd844aa52b32b065c3572009-08-27T17:54:00Z2009-08-27T17:54:00ZAdded tag 4 for changeset 25d1757fba6bAnselm R Garbeanselm@garbe.uscommit 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
03259d69b6fd02e0fccd2444fb36b8aae998deb12009-08-27T17:51:52Z2009-08-27T17:51:52ZupdateAnselm R Garbeanselm@garbe.uscommit 03259d69b6fd02e0fccd2444fb36b8aae998deb1
parent 8d32bc598c90490fc0a9243b2c0f723958be604c
Author: Anselm R Garbe <anselm@garbe.us>
Date: Thu, 27 Aug 2009 18:51:52 +0100
update
8d32bc598c90490fc0a9243b2c0f723958be604c2009-08-27T13:15:56Z2009-08-27T13:15:56Zfinal preparation for 9base-4Anselm R Garbegarbeam@gmail.comcommit 8d32bc598c90490fc0a9243b2c0f723958be604c
parent 1c45d63ec3ac9a4a0e63129f1c7e587bff757dc3
Author: Anselm R Garbe <garbeam@gmail.com>
Date: Thu, 27 Aug 2009 14:15:56 +0100
final preparation for 9base-4
1c45d63ec3ac9a4a0e63129f1c7e587bff757dc32009-08-25T19:05:27Z2009-08-25T19:05:27Zadded troff and made it workingAnselm R Garbeanselm@garbe.uscommit 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
a08a2a9000cf4cb01ac165f410dbe99a64191edd2009-08-24T18:23:45Z2009-08-24T18:23:45Zadded mk and troff to 9base (unfinished yet, DO NOT USE)Anselm R Garbeanselm@garbe.uscommit 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)
c0a69251c8988bdbabf4f3d3e20f40e363990c6c2009-08-10T14:08:41Z2009-08-10T14:08:41Zapplied another patch from olegfink, thx, re-enabled du in build chainAnselm R Garbegarbeam@gmail.comcommit 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
56196e76fd80ff6fdd6365d8fa028d8b4675ff4b2009-08-10T14:05:01Z2009-08-10T14:05:01ZupdateAnselm R Garbegarbeam@gmail.comcommit 56196e76fd80ff6fdd6365d8fa028d8b4675ff4b
parent f61f650899ccc18561eb21fce96e4770508adb71
Author: Anselm R Garbe <garbeam@gmail.com>
Date: Mon, 10 Aug 2009 15:05:01 +0100
update
f61f650899ccc18561eb21fce96e4770508adb712009-08-10T14:04:03Z2009-08-10T14:04:03Zadded olegfink's patches for adding cal and hocAnselm R Garbegarbeam@gmail.comcommit 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
9b9335d3850d001b8bdd069b8d021f025b0554a42009-08-08T08:57:36Z2009-08-08T08:57:36Zadded stub man page for duAnselm R Garbeanselm@garbe.uscommit 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
426af479a7d51773b00c96dba01817715f02408c2009-08-08T08:54:20Z2009-08-08T08:54:20ZmergeAnselm R Garbeanselm@garbe.uscommit 426af479a7d51773b00c96dba01817715f02408c
parent 37674df46f5c1753ca39e274d8489edb54d90166
Author: Anselm R Garbe <anselm@garbe.us>
Date: Sat, 8 Aug 2009 09:54:20 +0100
merge
37674df46f5c1753ca39e274d8489edb54d901662009-08-08T08:53:34Z2009-08-08T08:53:34Zadded du from plan9portAnselm R Garbeanselm@garbe.uscommit 37674df46f5c1753ca39e274d8489edb54d90166
parent 059dcd31c983441d637d17f521ef6dd144215694
Author: Anselm R Garbe <anselm@garbe.us>
Date: Sat, 8 Aug 2009 09:53:34 +0100
added du from plan9port
a34055fb4b74b06c01e0e0f9623eba002bda6ef12009-08-03T09:15:07Z2009-08-03T09:15:07ZAdded tag 3 for changeset 7c1decda5b50Anselm R Garbegarbeam@gmail.comcommit 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
4e0debbdf6662c3b7449b725e9fd1b26c4e0ec602009-08-03T09:14:59Z2009-08-03T09:14:59ZunusedAnselm R Garbegarbeam@gmail.comcommit 4e0debbdf6662c3b7449b725e9fd1b26c4e0ec60
parent 63069fc74a8ca095331d8b8a4bed51a6bb85edd8
Author: Anselm R Garbe <garbeam@gmail.com>
Date: Mon, 3 Aug 2009 10:14:59 +0100
unused
63069fc74a8ca095331d8b8a4bed51a6bb85edd82009-08-03T09:13:59Z2009-08-03T09:13:59ZupdateAnselm R Garbegarbeam@gmail.comcommit 63069fc74a8ca095331d8b8a4bed51a6bb85edd8
parent 059dcd31c983441d637d17f521ef6dd144215694
Author: Anselm R Garbe <garbeam@gmail.com>
Date: Mon, 3 Aug 2009 10:13:59 +0100
update
059dcd31c983441d637d17f521ef6dd1442156942009-08-02T09:31:02Z2009-08-02T09:31:02Zsome sanity fixesarg@localhost.localdomainunknowncommit 059dcd31c983441d637d17f521ef6dd144215694
parent c5ba8cfeb807114e3cd9fd5ba7c3bc0884e1abad
Author: arg@localhost.localdomain <unknown>
Date: Sun, 2 Aug 2009 09:31:02 +0000
some sanity fixes
c5ba8cfeb807114e3cd9fd5ba7c3bc0884e1abad2009-08-02T09:24:29Z2009-08-02T09:24:29Zadded some tweaksAnselm R Garbeanselm@garbe.uscommit c5ba8cfeb807114e3cd9fd5ba7c3bc0884e1abad
parent 4e6a3f7520886923dc03eb96764fc0b09c52733e
Author: Anselm R Garbe <anselm@garbe.us>
Date: Sun, 2 Aug 2009 10:24:29 +0100
added some tweaks
4e6a3f7520886923dc03eb96764fc0b09c52733e2009-08-02T09:07:10Z2009-08-02T09:07:10Zsome tweaks, install into /usr/local/plan9 to provide better compatibility with p9p and apps written on top of p9p such as wercAnselm R Garbeanselm@garbe.uscommit 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
abc072187111c9098f80518e9c8d0b81ae1577d02009-07-31T20:02:58Z2009-07-31T20:02:58Zupgraded 9base to p9p 20090731Anselm R Garbeanselm@garbe.uscommit abc072187111c9098f80518e9c8d0b81ae1577d0
parent 89cb321008eab13102fa98bd1b28caadc2c5218e
Author: Anselm R Garbe <anselm@garbe.us>
Date: Fri, 31 Jul 2009 21:02:58 +0100
upgraded 9base to p9p 20090731
89cb321008eab13102fa98bd1b28caadc2c5218e2006-02-09T12:39:50Z2006-02-09T12:39:50ZAdded tag snap for changeset 8ab76db4077c67fe71a34f8f287b69a3adf9de03Anselm R. Garbegarbeam@wmii.decommit 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
662bc6335485c482df0b618cc85fe758197e0c0b2006-02-09T12:37:57Z2006-02-09T12:37:57Zprepared snapAnselm R. Garbegarbeam@wmii.decommit 662bc6335485c482df0b618cc85fe758197e0c0b
parent cf77a035ab614eec460ac6ba1c92412bd549569d
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Thu, 9 Feb 2006 13:37:57 +0100
prepared snap
cf77a035ab614eec460ac6ba1c92412bd549569d2006-02-09T12:15:45Z2006-02-09T12:15:45Zwe need getcallerpc crap to prevent several coredumps, though rc is not threaded, oh dear!Anselm R. Garbegarbeam@wmii.decommit 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!
6ccdc8cffd953f6dae2692e687d19ac6e58a7e2b2006-01-31T18:37:59Z2006-01-31T18:37:59Zadded lsAnselm R. Garbegarbeam@wmii.decommit 6ccdc8cffd953f6dae2692e687d19ac6e58a7e2b
parent b7abc7dd08640a98b0af92b05bb0a57e614f3160
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Tue, 31 Jan 2006 20:37:59 +0200
added ls
b7abc7dd08640a98b0af92b05bb0a57e614f31602006-01-29T20:20:00Z2006-01-29T20:20:00ZAdded tag snap for changeset 664144b8c1a4e0aae3535eb49ee0bc2d3679da5aAnselm R. Garbegarbeam@wmii.decommit 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
08aaa60fa84ea14afed7c7b0ead4307263cc118f2006-01-29T20:17:04Z2006-01-29T20:17:04Zadded read to 9baseAnselm R. Garbegarbeam@wmii.decommit 08aaa60fa84ea14afed7c7b0ead4307263cc118f
parent 2b4ad5ac67349aef64970f40d871b16b6f0262f3
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Sun, 29 Jan 2006 22:17:04 +0200
added read to 9base
2b4ad5ac67349aef64970f40d871b16b6f0262f32006-01-25T14:20:35Z2006-01-25T14:20:35ZAdded tag 2 for changeset 538338114742f2e81f6c52a5a323bdf7ca0d5d86Anselm R. Garbegarbeam@wmii.decommit 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
47503caffc3e64dc14f358068326c4e1b1e818b82006-01-25T14:20:21Z2006-01-25T14:20:21Zprepared 9base-2Anselm R. Garbegarbeam@wmii.decommit 47503caffc3e64dc14f358068326c4e1b1e818b8
parent fbd05cbd195a12683bcc05dfb6d54955c18fef19
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Wed, 25 Jan 2006 16:20:21 +0200
prepared 9base-2
fbd05cbd195a12683bcc05dfb6d54955c18fef192006-01-24T14:23:07Z2006-01-24T14:23:07Zadded dc to 9base as requestedAnselm R. Garbegarbeam@wmii.decommit 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
877adeba5fbe1704ba41961099e452eb8e88ebd72006-01-23T15:39:06Z2006-01-23T15:39:06Zprepared new snapAnselm R. Garbegarbeam@wmii.decommit 877adeba5fbe1704ba41961099e452eb8e88ebd7
parent bebc443496e27d1eebfdbabc7bed4257b23dbcea
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Mon, 23 Jan 2006 17:39:06 +0200
prepared new snap
bebc443496e27d1eebfdbabc7bed4257b23dbcea2006-01-23T15:36:21Z2006-01-23T15:36:21Zremoved getcallerpc dependency, we have no threads, thus no locking neededAnselm R. Garbegarbeam@wmii.decommit 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