Commit Briefs

David du Colombier

9l: accept Linux kernel version 4.x

Fixes #114.


David du Colombier

9term: fix getpts on macOS 10.13

Since macOS 10.13, opening the /dev/ptyXX files always return ENOENT. Consequently, we changed getpts to use openpty to open a pseudoterminal, like on Linux and OpenBSD. Fixes #90. Fixes #110.


David du Colombier

upas/nfs: fix warnings

decode.c:146:8: warning: variable ‘argv’ set but not used fs.c:953:47: warning: variable ‘reset’ set but not used imap.c:348:6: warning: variable ‘prefix’ set but not used Updates #114.


Russ Cox

acme: check file content before declaring file "modified since last read"

Bad remote file systems can change mtime unexpectedly, and then there is the problem that git rebase and similar operations like to change the files and then change them back, modifying the mtimes but not the content. Avoid spurious Put errors on both of those by checking file content. (False positive "modified since last read" make the real ones difficult to notice.)


David du Colombier

devdraw: fix build on macOS < 10.12

After making the build on macOS silent on commit 310ae03, the build was broken on macOS lesser than 10.12 (Sierra). This commit conditionally checks the version the of the SDK before using the defined values for silent build. Fixes #66.


David du Colombier

xd: add -R for runewise dump

Ported from Plan 9 2013-05-21. https://github.com/0intro/plan9/commit/b377a116d132865c011a3fb3ea76528ffd32963f Closes #16.


David du Colombier

web: add Chromium support on FreeBSD

On FreeBSD, the Chromium executable is called chrome. Fixes #108.




David du Colombier

lib/moveplan9.files: add missing files


David du Colombier

all: remove .cvsignore files

Rename following .cvsignore files to .gitkeep since they are required by the build (directories must exist before build): - bin/fossil/.gitkeep - bin/fs/.gitkeep - bin/venti/.gitkeep Change-Id: I9c2865058480cffb3a4613f25e2eca1f7e5578c0


David du Colombier

README: update links

Change-Id: I060a8ce1456ad07fd62740b7a0d27256ed094d8a


David du Colombier

.travis.yml: disable osx build


David du Colombier

lib9: import frand function from Plan 9

Fixes #15.


David du Colombier

svgpic: fix warnings

plsvg.c:291:21: warning: variable ‘y2’ set but not used plsvg.c:291:17: warning: variable ‘x2’ set but not used