aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/strings
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-163-3/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* Update Makefile.depend filesSimon J. Gerraty2019-12-111-1/+2
| | | | | | | | | | | | | Update a bunch of Makefile.depend files as a result of adding Makefile.depend.options files Reviewed by: bdrewery MFC after: 1 week Sponsored by: Juniper Networks Differential Revision: https://reviews.freebsd.org/D22494 Notes: svn path=/head/; revision=355617
* Add Makefile.depend.optionsSimon J. Gerraty2019-12-111-0/+8
| | | | | | | | | | | | | | | | | | | | Leaf directories that have dependencies impacted by options need a Makefile.depend.options file to avoid churn in Makefile.depend DIRDEPS for cases such as OPENSSL, TCP_WRAPPERS etc can be set in local.dirdeps-options.mk which can add to those set in Makefile.depend.options See share/mk/dirdeps-options.mk Reviewed by: bdrewery MFC after: 1 week Sponsored by: Juniper Networks Differential Revision: https://reviews.freebsd.org/D22469 Notes: svn path=/head/; revision=355616
* strings: disable Casper support while building native-xtoolsMariusz Zaborski2019-04-081-1/+1
| | | | | | | | Reported by: Charlie Li Tested by: Charlie Li Notes: svn path=/head/; revision=346023
* strings: capsicumize itMariusz Zaborski2019-04-041-0/+6
| | | | | | | | | Reviewed by: cem Discussed with: emaste Differential Revision: https://reviews.freebsd.org/D18038 Notes: svn path=/head/; revision=345875
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2017-10-311-1/+0
| | | | | | | Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=325188
* elftoolchain: Use ${SRCTOP} for the top of the FreeBSD treeEd Maste2016-04-211-1/+1
| | | | | | | | | | | It's provided by sys.mk so there's no need to derive it from ${.CURDIR}. Suggested by: ngie Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D5998 Notes: svn path=/head/; revision=298401
* Replace ${CURDIR}/../.. with ${CURDIR:H:H} in elftoolchainEd Maste2016-04-181-1/+1
| | | | | | | | | | This produces a nicer path in debug info and build logs. MFC after: 1 week Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=298204
* new dependsSimon J. Gerraty2015-06-161-0/+20
| | | | Notes: svn path=/head/; revision=284481
* Build infrastructure for elftoolchain toolsEd Maste2014-12-011-0/+15
| | | | | | | | | | | | | | | | | | Set WITH_ELFTOOLCHAIN_TOOLS in src.conf to use the elftoolchain version of the following tools: * addr2line * elfcopy (strip / mcs) * nm * size * strings Reviewed by: bapt (earlier version) Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D1224 Notes: svn path=/head/; revision=275373
* Finish the deorbital burn of the i386-only a.out toolchain.David E. O'Brien2003-06-274-426/+0
| | | | Notes: svn path=/head/; revision=116903
* Use `The .Nm utility'Philippe Charnier2002-04-201-3/+6
| | | | Notes: svn path=/head/; revision=95124
* remove __PWarner Losh2002-03-221-2/+2
| | | | Notes: svn path=/head/; revision=92922
* Remove to-be-default WARNS?=2Mark Murray2001-12-121-1/+0
| | | | Notes: svn path=/head/; revision=87769
* Warns cleanups.David Malone2001-12-032-1/+2
| | | | Notes: svn path=/head/; revision=87298
* Remove whitespace at EOL.Dima Dorfman2001-07-151-1/+1
| | | | Notes: svn path=/head/; revision=79755
* mdoc(7) police: removed HISTORY info from the .Os call.Ruslan Ermilov2001-07-102-2/+3
| | | | Notes: svn path=/head/; revision=79535
* MAN[1-9] -> MAN.Ruslan Ermilov2001-03-271-1/+2
| | | | Notes: svn path=/head/; revision=74848
* getopt and friends are declared in <unistd.h>Warner Losh2000-09-041-2/+0
| | | | | | | getopt returns -1 not EOF. Notes: svn path=/head/; revision=65428
* $Id$ -> $FreeBSD$Peter Wemm1999-08-282-2/+2
| | | | Notes: svn path=/head/; revision=50477
* Add $Id$, to make it simpler for members of the translation teams toNik Clayton1999-07-121-0/+1
| | | | | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde Notes: svn path=/head/; revision=48792
* malloc(3) need to allocate one byte more.Poul-Henning Kamp1999-03-291-2/+2
| | | | | | | | PR: 10855 Submitted by: Petteri Holländer <pete@iki.fi> Notes: svn path=/head/; revision=45113
* Install the legacy man file in section 1aout.John Birrell1998-09-071-0/+1
| | | | Notes: svn path=/head/; revision=38899
* ELF preparation step 1:Søren Schmidt1998-05-251-0/+1
| | | | | | | | | | | | | | | | | | Move our old a.out utils to /usr/libexec/aout. Enable binutils and put the utils in /usr/libexec/elf Enable objformat, a little helper program that calls the right utils based on /etc/objformat and $OBJFORMAT. This will enable the ELF generating tools. Remember that this is only step one, the system is still compiled and run in a.out format ONLY. Problem left to solve: The BSD manpages wins over the GNU equivalents as the are installed last. We need to distinguish between the manpages somehow... Notes: svn path=/head/; revision=36374
* Use err(3).Philippe Charnier1997-08-113-23/+25
| | | | Notes: svn path=/head/; revision=28072
* compare return value from getopt against -1 rather than EOF, per the finalWarner Losh1997-03-291-1/+1
| | | | | | | posix standard on the topic. Notes: svn path=/head/; revision=24360
* Use more complicated printable test to remove unnecessary 8bit charsAndrey A. Chernov1995-12-281-1/+3
| | | | Notes: svn path=/head/; revision=13079
* Localize itAndrey A. Chernov1995-12-281-1/+4
| | | | Notes: svn path=/head/; revision=13076
* >Description:David Greenman1995-02-151-1/+1
| | | | | | | | | | | | | | | | | The "strings" program chokes if you try using "-n". >How-To-Repeat: Try "strings -n SOMENUMBER SOMEFILE". >Fix: Here's a "diff -u" patch that corrects the problem. Submitted by: Lon Willett <lon%softt.uucp@math.utah.edu> via NetBSD Notes: svn path=/head/; revision=6413
* BSD 4.4 Lite Usr.bin SourcesRodney W. Grimes1994-05-274-0/+413
Notes: svn path=/cvs2svn/branches/CHRISTOS/; revision=1590