summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* 9l: silence the 'ignoring duplicate libraries' warning on macOSIgor Burago2023-12-181-0/+2
|
* 9l: refactor the warning-silencing mechanics to match that of 9cIgor Burago2023-12-182-21/+26
|
* web: fix plumbing with Firefoxmmnmnnmnmm2022-09-061-1/+1
| | | | | | | Default builds of Firefox remove the previous X remote interface, now causing the use of -remote to silently exit and do nothing. https://hg.mozilla.org/mozilla-central/rev/ef22d8cbf4ef
* 9l: without arguments, exit instead of failing to link nothingmmnmnnmnmm2022-08-181-0/+2
| | | | | Found in Arch Linux but never reported upstream: https://bugs.archlinux.org/task/55640
* bin/9c, bin/9l: Re-enable optimization on AIX.Ben Huntsman2021-08-302-3/+3
|
* mount: find kext with MacFUSE >=4 and macOS >=11Connor Taffe2021-01-311-0/+3
|
* 9c: drop PLAN9PORT_ASANRuss Cox2020-12-301-9/+0
| | | | It is no longer special.
* all: remove $OBJTYPE from buildRuss Cox2020-12-303-42/+5
| | | | | | | Now that we assume pthreads, the only assembly left is in libmp and libsec. We only ever added assembly for 386. The portable C code is fine for plan9port.
* wintext: use rc not bashRuss Cox2020-12-301-14/+9
|
* 9c: use -fcommon for clangRuss Cox2020-12-301-0/+1
| | | | Fixes #469.
* 9c, 9l: updates for macOS arm64.Anthony Sorace2020-09-272-0/+7
|
* osxvers: use swvers -productVersion to skip one awk callRuss Cox2020-05-301-1/+1
| | | | Fixes #406. Suggested by nms42.
* 9c: fix tabRuss Cox2020-05-181-1/+1
|
* 9l: xlc_r automatically adds -lpthread.Ben Huntsman2020-05-181-1/+0
|
* 9c, 9l: accept CC9FLAGS from configRuss Cox2020-05-172-18/+30
| | | | | | | | | | Also, if CC9FLAGS includes -fsanitize=address (ASAN), predefine PLAN9PORT_ASAN for use by programs that need to know (mainly libthread). The 9c script used to have a variable called ngflags, which was ccflags except -g (ng stood for "no g"), but nothing needs it split out anymore, so simplify to just ccflags.
* all: update build scripts to fix AIX XL/C compatibilityBen Huntsman2020-05-072-7/+25
|
* 9c: added explicit -fcommon to gcc defaults.sean2020-04-301-0/+1
| | | | | | | Version 10 of gcc enforces -fno-common which breaks a lot of things. This fix reverts to the pre-10 behaviour. The real fix is to clean up stray redefinitions which should be declarations.
* all: remove Linux 2.4 vs 2.6 detectionRuss Cox2020-01-192-22/+9
| | | | | Linux 2.4 is dead. (The libthread code hasn't worked for Linux 2.4 for a long time.)
* 9fs: remove tip (dead?), redirect sources to 9p.ioDan Cross2020-01-161-3/+1
| | | | | | Fixes #195. Signed-off-by: Dan Cross <cross@gajendra.net>
* soelim: import from Plan9sean2020-01-151-0/+16
| | | | | Add entry in lib/moveplan9.files to trigger relocation during INSTALL.
* wintext: add tmux support, use in ", ""Russ Cox2020-01-133-12/+9
| | | | Fixes #223.
* all: fix or silence various gcc warningsRuss Cox2020-01-121-0/+4
| | | | | As usual, gcc finds some real problems but also reports a ton of noise. Fix the problems and quiet the noise.
* 9c: Fix case patterns for DragonFly and other BSDsMartin Kühl2020-01-071-2/+2
| | | | | | | | | | | | | POSIX does not support grouping in case item patterns. Installing with a strict POSIX shell fails with: /usr/local/plan9/bin/9c: line 82: syntax error near unexpected token `(' /usr/local/plan9/bin/9c: line 82: `*(DragonFly|BSD)*gcc*) usegcc ;;' This change expands the patterns to work around the limitation. See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_10 (and search for case_clause)
* INSTALL, 9c, 9l: improve handling of *BSD (#302)Leonid Bobrov2020-01-072-16/+2
|
* 9c, 9l: use $TMPDIR if available (#272)Jason Felice2019-11-112-2/+2
| | | | NixOS sandboxed builds (at least on Mac) don't have access to /tmp, and this should be better POSIX.
* Teach 9l about FreeBSD ≥ 12; address issue #247. (#249)Francis Conti2019-09-191-1/+1
|
* 9l: support Linux version 5.0+ (#274)Günther Noack2019-09-191-1/+1
| | | Update 9l to support Linux 5.x.
* web: allow any $BROWSERRuss Cox2018-11-141-1/+1
| | | | Fixes #118.
* 9l: drop xcode text-based stub warningRuss Cox2018-11-121-1/+1
|
* mount, 9pfuse: detect macports installed osxfuseXiao-Yong Jin2018-03-271-0/+1
| | | | MacPorts installs osxfuse under /opt/local.
* mount: check current osxfuse kext locationMartin Kühl2018-03-231-0/+2
| | | | | | | | | | | | | Current versions of osxfuse ship with multiple versions of its kernel extension (kext) for differend versions of macOS. Running mount(1) on macOS with a current version of osxfuse fails with `don't know how to mount (no fuse)' since it fails to find the kext. Running 9pfuse(4) directly works fine. This change adds a check to mount(1) that determines: 1) which version of macOS we're running on 2) if there is an osxfuse kext available for this version of macOS
* web: *chrome* matches google-chromeGleydson Soares2017-10-161-1/+1
|
* 9l: accept Linux kernel version 4.xkeks2017-10-131-1/+1
| | | | Fixes #114.
* web: add Chromium support on FreeBSDDavid du Colombier2017-10-011-1/+1
| | | | | | On FreeBSD, the Chromium executable is called chrome. Fixes #108.
* 9l: support FreeBSD 10 and 11 (thanks Ori Bernstein)David du Colombier2017-09-141-1/+1
|
* all: remove .cvsignore filesKare Nuorteva2017-09-148-281/+0
| | | | | | | | | | 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
* codereview: delete, now using GitHub pull requestsRuss Cox2017-09-011-147/+0
|
* codereview.py: removeRuss Cox2017-07-161-1448/+0
| | | | | | Change-Id: Ie548b7f45f4b3aa9897bcba19d343cff2dd5afd4 Reviewed-on: https://plan9port-review.googlesource.com/2961 Reviewed-by: Russ Cox <rsc@swtch.com>
* all: fix or silence all INSTALL warnings on macOSRuss Cox2017-01-061-3/+3
| | | | | | | | Should be a clean build now. Change-Id: Id3460371cb5e8d4071f8faa9c2aec870d213a067 Reviewed-on: https://plan9port-review.googlesource.com/2781 Reviewed-by: Russ Cox <rsc@swtch.com>
* devdraw: plumb drag-n-dropped filesmarius a. eriksen2015-06-031-0/+17
| | | | | | Change-Id: I7585870aee57c7482ebdd19c117be7982123ce79 Reviewed-on: https://plan9port-review.googlesource.com/1130 Reviewed-by: Russ Cox <rsc@google.com>
* codereview: use 'git branch -v' for pendingRuss Cox2014-11-171-1/+1
| | | | Change-Id: Ib80b19cf69a15860315b2d7a38baf3b05d693acc
* codereview: make commit -a the default; warn about uncommitted changes at uploadRuss Cox2014-11-161-2/+6
| | | | | | also update README.md for github Change-Id: I7d578a902ffed7f6d69780721e29a1972b6f6992
* codereview: fix a few bugsRuss Cox2014-11-161-8/+9
| | | | Change-Id: Ifd9fda05e15c9e1e106ffd4e30e1dafe8423cdf4
* all: update for GitRuss Cox2014-11-161-2/+142
| | | | | | | | | | - rewrite .gitignore to use git patterns - mv hg(1) to git(1) and rewrite - add lib/git/commit-msg.hook - add skeleton codereview script - update codereview(1) Change-Id: I061cd8e4de77ebbd6037a7c5d1582cd1d986f62f
* fix clang 3.4 warnings and ignore uninteresting onesDavid du Colombier2014-10-211-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | fixed warnings: src/cmd/fossil/disk.c:37:14: warning: use of GNU 'missing =' extension in designator [-Wgnu-designator] src/cmd/fossil/disk.c:38:14: warning: use of GNU 'missing =' extension in designator [-Wgnu-designator] src/cmd/fossil/disk.c:39:14: warning: use of GNU 'missing =' extension in designator [-Wgnu-designator] src/cmd/fossil/disk.c:40:13: warning: use of GNU 'missing =' extension in designator [-Wgnu-designator] src/cmd/fossil/disk.c:41:14: warning: use of GNU 'missing =' extension in designator [-Wgnu-designator] src/libndb/ndbreorder.c:41:55: warning: for loop has empty body [-Wempty-body] ignored warnings: src/cmd/acid/dbg.y:393:9: warning: array index -1 is before the beginning of the array [-Warray-bounds] src/cmd/bc.y:1327:9: warning: array index -1 is before the beginning of the array [-Warray-bounds] src/cmd/bc.y:1327:9: warning: array index -1 is before the beginning of the array [-Warray-bounds] src/cmd/grep/grep.y:420:9: warning: array index -1 is before the beginning of the array [-Warray-bounds] src/cmd/grep/grep.y:420:9: warning: array index -1 is before the beginning of the array [-Warray-bounds] src/cmd/hoc/hoc.y:692:9: warning: array index -1 is before the beginning of the array [-Warray-bounds] src/cmd/hoc/hoc.y:692:9: warning: array index -1 is before the beginning of the array [-Warray-bounds] src/cmd/lex/parser.y:886:9: warning: array index -1 is before the beginning of the array [-Warray-bounds] src/cmd/rc/syn.y:303:9: warning: array index -1 is before the beginning of the array [-Warray-bounds] src/cmd/units.y:1003:9: warning: array index -1 is before the beginning of the array [-Warray-bounds] src/libregexp/regcomp.c:19:16: warning: variable 'reprog' is not needed and will not be emitted [-Wunneeded-internal-declaration] LGTM=rsc R=rsc https://codereview.appspot.com/158250043
* 9l: link with -lresolv on LinuxDavid du Colombier2014-10-201-1/+1
| | | | | | LGTM=rsc R=rsc https://codereview.appspot.com/136520044
* g: search in *.s filesAram Hăvărneanu2014-08-061-1/+1
| | | | | | | LGTM=rsc R=rsc CC=plan9port-dev https://codereview.appspot.com/115100043
* build: rename " and "" to quote1 and quote2 for hgRuss Cox2014-06-032-0/+0
| | | | | | | | | They'll be copied back during installation but then hg doesn't have to create those files on systems that have trouble with them. TBR=rsc https://codereview.appspot.com/105800043
* all: DragonFly port.Shenghou Ma2014-02-272-2/+2
| | | | | | | | Fix compilation problems, libdraw still doesn't work right yet. LGTM=rsc R=rsc https://codereview.appspot.com/67820046
* fossil: create directoryDavid du Colombier2013-09-261-0/+0
| | | | | R=rsc https://codereview.appspot.com/13984043