| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-02 | Use OBJECT_FMTS from <bsd.own.mk> to determine elf32/elf64 needs | matt | |
| 2014-03-02 | Use OBJECT_FMTS from <bsd.own.mk> | matt | |
| 2014-02-27 | AF_MAX isn't an address family so don't include it in the generated table. | ginsbach | |
| 2014-02-27 | struct member can't be null, if the pointer itself is valid. | joerg | |
| 2014-02-24 | Rename NetBSD/hp700 to NetBSD/hppa. | skrll | |
| Unfortunately our VCS isn't very helpful here. | |||
| 2014-02-23 | skip unparseable addresses. | mlelstv | |
| 2014-02-19 | Remove some pointless inclusions os sys/user.h | dsl | |
| 2014-02-18 | add __extension__ and typeof | christos | |
| 2014-02-18 | __real__ and __imag__ produce lvalues | christos | |
| 2014-02-17 | config() in manconf.c now verifies _build (and _crunch) command | uwe | |
| templates with fmtcheck(3) so annotate the printf that uses these commands as safe with a __format_arg wrapper and drop -Wno-format-nonliteral. XXX: Using local wrapper for now, solving this in general would be nice, but it raises namespace pollution issues. XXX^2: catman(8) also uses manconf.c and uses _build and _crunch so it can also benefit from this (but see above). | |||
| 2014-02-17 | Check _build and _crunch commands with fmtcheck(3), warn about and | uwe | |
| ignore bad ones. | |||
| 2014-02-15 | Put .INCLUDEDFROM* in the right section | sjg | |
| 2014-02-15 | delete the correct variables on eof | christos | |
| fix typo in comment (from sjg) | |||
| 2014-02-14 | fix protocol printing order. | christos | |
| 2014-02-13 | Fix some typos found by Rich Neswold and reported in PR 48597. | wiz | |
| 2014-02-12 | Reduce the calls to realloc from brk_string by basing initial argmax guess | sjg | |
| on length of input. Reviewed by: christos | |||
| 2014-02-07 | Use Var_Value() instead of getenv() to obtain MAKEOBJDIR{,PREFIX}. | pooka | |
| Fixes "make -X MAKEOBJDIR=foo". Purely uncoincidentally, build.sh creates the nbmake wrapper with MAKEFLAGS -X on FreeBSD. | |||
| 2014-02-04 | Correct number of output files in example. | wiz | |
| From Jason McIntyre <jmc@OpenBSD>. While here, also explain about the extra file in the example and put .Ex into its own section in the correct place. Bump date. | |||
| 2014-02-04 | Handle another declaration after statement case for lint in c99 mode. | njoly | |
| Add the corresponding testcase. | |||
| 2014-02-03 | From Igor Sobrado in private email (based on his OpenBSD commit): | wiz | |
| improve POSIX compliance by continuing to process the remaining file operands after not finding an input file. from the IEEE Std 1003.1-2008 (``POSIX.1'') rationale: "Unlike other utilities, some historical implementations of cut exit after not finding an input file, rather than continuing to process the remaining file operands. This behavior is prohibited by this volume of POSIX.1-2008, where only the exit status is affected by this problem." joint work with jmc@, who identified the compliance issue, and millert@ ok millert@, jmc@ | |||
| 2014-01-28 | Clarify that -l params must be given after options. | pooka | |
| 2014-01-28 | * make -h actually work | pooka | |
| * give usage for invalid usage | |||
| 2014-01-28 | rcs id police *uuu-aaa, uuu-aaa* | pooka | |
| 2014-01-27 | add today's releases: 5.1.4, 5.2.2, 6.0.4, and 6.1.3 | jnemeth | |
| 2014-01-26 | Recognize coldfire | matt | |
| 2014-01-25 | Get SIZE_MAX and OFF_MAX straight... | riastradh | |
| 2014-01-25 | Factor out an offtab_compute_window_position routine. | riastradh | |
| 2014-01-25 | Fix some more integer overflow/truncation issues. | riastradh | |
| Arithmetic in C is hard. Let's go shopping! | |||
| 2014-01-24 | CID 1164169: integer overflow | christos | |
| 2014-01-24 | Checking _LP64 to determine the size of the built binary is just wrong. We | christos | |
| build n32 by default on mips64 now, we don't handle the compat build which is n64. This is the same case for sparc64/sparc and amd64/i386 (lint does not run in compat) | |||
| 2014-01-23 | Mark offtab_bug[x] as dead. | joerg | |
| 2014-01-22 | Fix $NetBSD$ tag. | riastradh | |
| 2014-01-22 | Bump date on vndcompress(1) man page. | riastradh | |
| 2014-01-22 | Fix vndcompress man page to reflect default window size. | riastradh | |
| 2014-01-22 | Change vndcompress to use a default window size of 512. | riastradh | |
| For vnduncompress on nonseekable input, the window size is as large as it needs to be by default, as before. Not clear that this is the right choice -- by default vnduncompress on nonseekable input will just use unbounded memory unsolicited. | |||
| 2014-01-22 | Document the new vndcompress -w option and nuke BUGS section. | riastradh | |
| Perhaps vndcompress and vnduncompress ought by default to choose a limited window size (say, 8192 entries, i.e. 64k bytes, the default MAXPHYS), and vnduncompress should fall back to an unlimited window only if the input is nonseekable. | |||
| 2014-01-22 | Reflect rename of `-s' to `-b' in the vndcompress man page. | riastradh | |
| 2014-01-22 | Move err1 & errx1 to the end of vnduncompress.c; add __printflike. | riastradh | |
| 2014-01-22 | Rename block size option from `-s' to `-b'. | riastradh | |
| Makes more sense and makes it consistent with other utilities such as pax and pigz. This vndcompress has never gone out in a release, so changing the name of the option shouldn't cause too many problems... | |||
| 2014-01-22 | Simplify vndcompress offtab_compute_window_size. | riastradh | |
| 2014-01-22 | Fix typo in comment. | riastradh | |
| 2014-01-22 | Fix up ulimited vndcompress tests and explain what's up with them. | riastradh | |
| 2014-01-22 | Add some simple automatic tests for window sizes. | riastradh | |
| 2014-01-22 | Remove silly comment in offtab_reset_write. | riastradh | |
| 2014-01-22 | Window size is now an option; remove XXX comment to the contrary. | riastradh | |
| 2014-01-22 | Add comment explaining why piperestart.cl2part is allowed to fail. | riastradh | |
| 2014-01-22 | Split guard in offtab_write_window into offtab_maybe_write_window. | riastradh | |
| 2014-01-22 | Seek if necessary at end of offtab_reset_read. | riastradh | |
| Fixes vnduncompress with a small window, and makes offtab_reset_read symmetric with offtab_reset_write. | |||
| 2014-01-22 | Add option -w to vnd(un)compress to specify the window size. | riastradh | |
| 2014-01-22 | Add some leading zero digits to the flags. Cosmetic change only. | riastradh | |
