| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Dont use/link ARCMT, StaticAnalyzer and Rewriter to clang when the user
specifies not to. Dont build ASTMatchers with Rewriter disabled and
StaticAnalyzer when it's disabled.
Without all those three, the clang binary shrinks (x86_64) from ~36MB
to ~32MB (unstripped).
To disable these clang components, and get a smaller clang binary built
and installed, set WITHOUT_CLANG_FULL in src.conf(5). During the
initial stages of buildworld, those extra components are already
disabled automatically, to save some build time.
MFC after: 1 week
|
|
|
|
|
|
|
|
|
| |
names, unnecessary casts)
- Change type of boolean variable from char to bool
Suggested by: jhb, zont, jmallett
Reviewed by: cognet
Approved by: cognet
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
with the user's namespace.
- Correct size and position variables type from long to size_t.
- Do not set errno to ENOMEM on malloc failure, as malloc already does so.
- Implement the concept of "buffer data length", which mandates what SEEK_END
refers to and the allowed extent for a read.
- Use NULL as read-callback if the buffer is opened in write-only mode.
Conversely, use NULL as write-callback when opened in read-only mode.
- Implement the handling of the ``b'' character in the mode argument. A binary
buffer differs from a text buffer (default mode if ``b'' is omitted) in that
NULL bytes are never appended to writes and that the "buffer data length"
equals to the size of the buffer.
- Remove shall from the man page. Use indicative instead. Also, specify that
the ``b'' flag does not conform with POSIX but is supported by glibc.
- Update the regression test so that the ``b'' functionality and the "buffer
data length" concepts are tested.
- Minor style(9) corrections.
Suggested by: jilles
Reviewed by: cognet
Approved by: cognet
|
|
|
|
|
|
|
|
| |
with the respective regression test.
See http://pubs.opengroup.org/onlinepubs/9699919799/functions/fmemopen.html
Reviewed by: cognet
Approved by: cognet
|
|
|
|
|
|
|
|
|
| |
trivial handler for SIGCHLD is installed, and SIGCHLD is blocked, to
not abandon our zombies to init(8). This way, the zombies are around
slightly longer, allowing to actually exercise the logic for p_pwait
use by the test.
MFC after: 1 week
|
|
|
|
|
|
|
|
| |
DragonflyBSD and install it as bsdpatch. WITH_BSD_PATCH makes it
default and installs GNU patch as gnupatch.
Submitted by: pfg
Obtained from: The DragonflyBSD Project
|
|
|
|
| |
Submitted by: Christoph Mallon <christoph.mallon@gmx.de>
|
|
|
|
|
|
|
|
| |
SVN r245536 ported this to Python 3. The major change was the use of the
print function. Unfortunately this is incompatible with Python 2, which
is still the default version in the ports tree.
Use a __future__ import to make this compatible with Python 2.6 and later.
|
|
|
|
|
|
|
|
| |
Ignore the new options -D, -h, -T, and -U. Adjust -M support to ignore
an argument.
Sponsored by: DARPA, AFRL
Reviewed by: ian, ray, rpaulo
|
|
|
|
| |
Approved by: cperciva
|
| |
|
|
|
|
|
|
| |
ARM EABI support is disabled by default and can be enabled by setting
WITH_ARM_EABI when building, however only the kernel-toolchain target will
work with this flag until the rest of the support is added.
|
|
|
|
| |
Approved by: cperciva
|
|
|
|
|
|
|
|
|
| |
which, only after authentication, disables crypto, and only for sessions
without a terminal.
Submitted by: Jeremy Chadwick (freebsd jdc.parodius.com)
PR: bin/163095
MFC after: 10 days
|
|
|
|
|
|
|
|
| |
specifying match criteria. "vlan" continues to be valid here, and it
continues to be valid when deleting, rewriting, inserting, or stacking
an 802.1q tag to a matching packet.
MFC after: 3 days
|
|
|
|
| |
Reported by: joeld
|
|
|
|
|
| |
Example:
false; echo $(echo $?; :)
|
|
|
|
|
| |
The test builtins/trap6.0 already uses this but having it separate eases
diagnosis if this would break.
|
|
|
|
|
| |
These failed in earlier attempts to execute more subshells without forking.
The patches are uncommitted.
|
|
|
|
| |
MFC after: 1 week
|
|
|
|
|
|
|
|
|
| |
An empty simple command was added and overwrote the exit status with 0.
This affects `...` but not $(...).
Example:
v=`false;`; echo $?
|
|
|
|
|
|
| |
dependency on them.
Sponsored by: DARPA, AFRL
|
|
|
|
|
|
|
| |
/usr/sbin/mtree by default.
Add a src.conf option WITH_NMTREE that causes NetBSD's mtree to be linked
as /usr/sbin/mtree as well as /usr/sbin/nmtree.
|
|
|
|
| |
a channel change/reset.
|
|
|
|
|
|
| |
Correct r226271 which should have used WITHOUT_BZIP2_SUPPORT per r166255.
Obtained from: Juniper Networks
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
This still triggers a bug in clang..
|
|
|
|
| |
Thanks to: clang
|
|
|
|
|
|
| |
* Fix up a printf() type mismatch.
Thanks to: clang
|
|
|
|
|
|
|
| |
* add missing exit(0)
* Fix some operator evaluation complaints.
Thanks to: clang
|
|
|
|
| |
Found by: clang
|
| |
|
|
|
|
|
| |
The main use for this is to manually trigger spectral scan operations
(athspectral -i athX start) whilst doing debugging.
|
|
|
|
| |
is called at most every 100 packets.
|
| |
|
|
|
|
| |
threads on each socket.
|
| |
|
|
|
|
| |
get fixed by accident.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
zero argument were supplied.
Add a regression test to catch this case as well.
PR: bin/174521
Submitted by: Daniel Shahaf <danielsh@elego.de> (pr)
Submitted by: Mark Johnston <markjdb@gmail.com> (initial patch)
Reviewed by: jilles
Approved by: cperciva (implicit)
MFC after: 3 weeks
|
| |
|
|
|
|
|
|
|
| |
If there is a write error on stdout, a message will be printed (to stderr)
and the exit status will be changed to 2 if it would have been 0 or 1.
PR: bin/158206
|
|
|
|
|
|
|
|
|
|
|
| |
sio(4) was deprecated by uart(4).
s/cuad/cuau/g/
PR: docs/171533
Reviewed by: imp
Approved by: cperciva (implicit)
MFC after: 3 weeks
|
|
|
|
| |
Usage of dup(), mkstemp() and unlink() needs <unistd.h>.
|
|\ \
| | |
| | |
| | |
| | | |
branch. This is effectively llvm/clang 3.2 RC2; the 3.2 release is
coming soon.
|
| | |
| | |
| | |
| | | |
http://llvm.org/svn/llvm-project/cfe/branches/release_32@168974
|
| | |
| | |
| | |
| | | |
http://llvm.org/svn/llvm-project/llvm/branches/release_32@168974
|