summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Adrian Pistol [Mon, 31 Oct 2016 03:05:00 +0000 (04:05 +0100)]
Move the temporary directory base from /usr/tmp to /tmp
On many modern systems, /usr/tmp may not exist. However, /tmp almost always does.
Adrian Pistol [Mon, 31 Oct 2016 03:02:25 +0000 (04:02 +0100)]
Improve Makefile slightly.
This improves the Makefile structure a little. Shouldn't make much of a difference.
Adrian Pistol [Mon, 31 Oct 2016 02:47:04 +0000 (03:47 +0100)]
Assume APOUT_ROOT if not given.
This is optional behaviour that may not be wanted. To disable, pass -DAPOUT_DONT_ASSUME_ROOT in the CFLAGS. (Also changed timestamp format because it does not include the time zone. Using plain %c now.)
Adrian Pistol [Mon, 31 Oct 2016 02:32:31 +0000 (03:32 +0100)]
Add gitignore.
While possibly not being a complete list, hopefully this will exclude most of the unwanted stuff in commits.
Warren Toomey [Mon, 31 Oct 2016 00:46:38 +0000 (10:46 +1000)]
Merge branch 'master' of https://github.com/DoctorWkt/Apout
Separating Apout out into its own repository.
Warren [Mon, 31 Oct 2016 00:29:45 +0000 (10:29 +1000)]
Initial commit
warren.toomey [Mon, 19 May 2008 13:46:53 +0000 (13:46 +0000)]
From Russ Cox:
In v7trap.c, the case S_BREAK body is wrong:
< i=0; break;
---
> i=sarg1; break;
since (in V6 at least) the break system
call does not return anything -- it leaves r0
untouched. If break zeros r0, then db mysteriously
fails to load the symbols from binaries.
warren.toomey [Mon, 19 May 2008 13:45:10 +0000 (13:45 +0000)]
Another patch from Sergey Poznyakoff. A compile-time define allows Apout
to run V1 binaries which do not have 0407 nor 0405 headers; this includes
chmod, rm, ln.
warren.toomey [Mon, 19 May 2008 13:27:35 +0000 (13:27 +0000)]
Remove all of the Apout compile warnings on Ubuntu and FreeBSD.
warren.toomey [Sat, 17 May 2008 02:37:44 +0000 (02:37 +0000)]
Patches from Sergey Poznyakoff, way back in 2001. powf() function may not be
present. struct termios may lack c_ispeed, c_ospeed members.
warren.toomey [Thu, 15 May 2008 03:21:46 +0000 (03:21 +0000)]
I added the APOUT_UNIX_VERSION variable, so we can recompile/reassemble
V2 source code and then run it, without having to muck with the magic.c.
warren.toomey [Fri, 9 May 2008 14:05:29 +0000 (14:05 +0000)]
Add __APPLE__ for OS X. Remove -static for OS X.
warren.toomey [Tue, 6 May 2008 23:32:26 +0000 (23:32 +0000)]
Add V2 bin/strip to list.
warren.toomey [Tue, 6 May 2008 23:25:22 +0000 (23:25 +0000)]
Import of wkt's apout src tree into svn.