| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2004-01-12 | - add a new flags field to the emulation vector, with one user so far | mrg | |
| EMUL_FLAG_NETBSD32. set EMUL_FLAG_NETBSD32 in any 32 bit on 64 bit kernel emulation layers. - if EMUL_FLAG_NETBSD32 is set, calculate the proper argument count. (XXX: this should use register32_t, but that's not visible to all builders of kdump...) now netbsd32_ioctl(2) actually reports sane values, and other arguments are mostly correctly printed (there are still some signed extension issues with 32 bit numbers being displayed as "0xffffffff8xxxxxxx".) | |||
| 2004-01-11 | g/c SDEAD handling | jdolecek | |
| 2004-01-11 | Reindent search loop in SuffFindCmds using 'continue' and 'break' instead | dsl | |
| of netsted ifs. No logic change. | |||
| 2004-01-11 | Change DEBUG(DIR) traces to indent subsequent filenames instead of | dsl | |
| generating very long lines (basically changes "..." into " ...\n "). | |||
| 2004-01-09 | Add unit test for ternary modifier | sjg | |
| 2004-01-08 | Fix :?: modifier so that it works again. | sjg | |
| 2004-01-06 | Find the buf_map symbol, so that the submap can be labeled properly. | atatat | |
| 2004-01-06 | typo fix. do not go suicide by mistake. from millert@openbsd | itojun | |
| 2004-01-06 | Handle more complex conditional expressions. | sjg | |
| CondCvtArg now returns NULL if it consumed all input, or a pointer to any left overs. | |||
| 2004-01-05 | Let the usage message fit in 80 columns to avoid wrapping. | jmmv | |
| 2004-01-05 | Homogenize usage messages: make the 'usage' word all lowercase, as this seems | jmmv | |
| to be the most common practice in our tree. | |||
| 2004-01-05 | KNF, from kevlo@openbsd | itojun | |
| 2004-01-05 | Generate the copyright string from sys/conf/copyright rather than | lukem | |
| replicating it here. Idea from Simon Burge. | |||
| 2004-01-04 | Bump Dd for previous. | wiz | |
| 2004-01-04 | Point people to re_format(7) instead of regex(3) for | wiz | |
| RE description; from Greg A. Woods. | |||
| 2004-01-03 | Fix typo about which mixer device is used. | augustss | |
| 2004-01-03 | Consistently check ${TOOLCHAIN_MISSING} against "no". | lukem | |
| 2004-01-03 | prepend_gzip: avoid searching beyond this string | mrg | |
| 2004-01-03 | Remove superfluous max() macro. | wiz | |
| Noted by Jeff Ito in PR 23932. | |||
| 2004-01-02 | Import of our changes to grep developed in othersrc. A very | cjep | |
| brief summary: * Add NetBSD RCS Ids. Change to use a date based version number. * Remove unused variables and functions. * Move towards NetBSD code style. * Add missing GNU options (except for --include, --exclude and --line-buffered) * Bug fixes * Bug fixes and changes from OpenBSD's src/usr.bin/grep A full list of changes can be viewed in the NetBSD CVS repository at othersrc/usr.bin/grep. A ChangeLog is also available at: ftp://ftp.NetBSD.org/pub/NetBSD/misc/cjep/grep-ChangeLog.txt If you want to help out, please let me (cjep@) know so that we can organise our efforts efficiently. | |||
| 2004-01-02 | Import of our changes to grep developed in othersrc. A very | cjep | |
| brief summary: * Add NetBSD RCS Ids. Change to use a date based version number. * Remove unused variables and functions. * Move towards NetBSD code style. * Add missing GNU options (except for --include, --exclude and --line-buffered) * Bug fixes * Bug fixes and changes from OpenBSD's src/usr.bin/grep A full list of changes can be viewed in the NetBSD CVS repository at othersrc/usr.bin/grep. A ChangeLog is also available at: ftp://ftp.NetBSD.org/pub/NetBSD/misc/cjep/grep-ChangeLog.txt If you want to help out, please let me (cjep@) know so that we can organise our efforts efficiently. | |||
| 2004-01-02 | Import of BSD-licensed grep by James Howard and Dag-Erling Coïdan | cjep | |
| Smørgrav. This import is of version 0.16. | |||
| 2004-01-02 | use snprintf, dude | itojun | |
| 2004-01-02 | Fix off-by-one error in the malloc of the new argv in prepend_gzip(). | simonb | |
| 2004-01-02 | Fix typo in comment. | wiz | |
| 2004-01-02 | Sort sections. New sentence, new line. Bump date. | wiz | |
| 2004-01-02 | implement $GZIP handling. | mrg | |
| 2004-01-02 | note that $GZIP support is missing still | mrg | |
| 2004-01-02 | allow HAVE_ZLIB_GZOPENFULL to be overriden externally | mrg | |
| 2004-01-01 | Fix incorrect date: 1.4 and 1.4.2 release. | yyamano | |
| 2004-01-01 | don't dump core in the face of unknown long options. from cjep@ | mrg | |
| 2004-01-01 | .P -> .Pp (typo fix). | wiz | |
| 2004-01-01 | add some simple -DSMALL support. reduces the size of gzip(1) itself a by | mrg | |
| nearly 2.5KB text. | |||
| 2004-01-01 | port simonb's bzip2 support. | mrg | |
| misc cleanups. | |||
| 2004-01-01 | Welcome to 2004! | mycroft | |
| 2003-12-30 | Adapt to kernel buffer cache memort allocation changes. | pk | |
| Since the buffer headers do no longer exist as an array in the kernel anymore, use the new CTL_KERN.KERN_BUF mib to fetch them from kernel space. Also look at a vnode's specinfo field to properly associate an opened block device special file with a mounted filesystem. | |||
| 2003-12-29 | Make "copy the file" (the -c option) the default behaviour. The -c option | simonb | |
| is kept for backwards compatibility but now has no effect. Patch from Bruce Nourish in PR bin/23874, with some minor changes by me. | |||
| 2003-12-28 | Add RCS Id. | wiz | |
| 2003-12-28 | Add a BSD licensed zgrep written by me. | wiz | |
| Much nicer than the old one, if I may say so. Thanks go to atatat for testing and suggestions. | |||
| 2003-12-28 | GNU gzip compatibility: don't let "gzip -dc" (zcat) operate on non-gzip | mrg | |
| files by default. -f must be used. | |||
| 2003-12-28 | fix an error in the previous | mrg | |
| 2003-12-28 | zdiff is also zcmp (from wiz) | mrg | |
| 2003-12-28 | No argument necessary after .Nm; add missing comma to enumeration. | wiz | |
| 2003-12-28 | Use more macros. | wiz | |
| 2003-12-28 | Uppercase CRT. | wiz | |
| 2003-12-28 | Add RCS Id. | wiz | |
| 2003-12-28 | install gzexe, zdiff, zforce, zmore and znew scripts and manual pages. | mrg | |
| XXX: now only missing zgrep. | |||
| 2003-12-28 | import openbsd z* scripts and manuals. | mrg | |
| 2003-12-28 | Fix PR#4980 and support common symbols correctly in crunched programs. | jmc | |
| Exclude them from renaming and expect the linker to do the right thing in resolving them all to the library copy (i.e. optarg) or locally as the case may be. Testing multiple programs crunched which reference optarg shows correct behavior now. | |||
| 2003-12-27 | Support crunch configs which specify relative srcdir's but don't use -D. For | jmc | |
| these cases, prepend getwd() onto the front of them so a full correct path is passed to the reach over make command (as it's running from at least a subdir of the current directory for each object) | |||
