aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/chkey
Commit message (Collapse)AuthorAgeFilesLines
* Convert to usr.bin/ to LIBADDBaptiste Daroussin2014-11-251-2/+1
| | | | | | | Reduce overlinking Notes: svn path=/head/; revision=275042
* Use src.opts.mk in preference to bsd.own.mk except where we need stuffWarner Losh2014-05-061-1/+1
| | | | | | | from the latter. Notes: svn path=/head/; revision=265420
* Handle NULL return from crypt(3). Mostly from DragonFlyKevin Lo2012-02-221-1/+5
| | | | Notes: svn path=/head/; revision=231994
* Fix fd leakKevin Lo2010-11-191-0/+1
| | | | | | | MFC after: 3 days Notes: svn path=/head/; revision=215519
* Build usr.bin/ with WARNS=6 by default.Ed Schouten2010-01-021-2/+0
| | | | | | | Also add some missing $FreeBSD$ to keep svn happy. Notes: svn path=/head/; revision=201386
* Rename all symbols in libmp(3) to mp_*, just like Solaris.Ed Schouten2009-02-261-0/+2
| | | | | | | | | | | | | | | The function pow() in libmp(3) clashes with pow(3) in libm. We could rename this single function, but we can just take the same approach as the Solaris folks did, which is to prefix all function names with mp_. libmp(3) isn't really popular nowadays. I suspect not a single application in ports depends on it. There's still a chance, so I've increased the SHLIB_MAJOR and __FreeBSD_version. Reviewed by: deischen, rdivacky Notes: svn path=/head/; revision=189092
* Reimplementation of world/kernel build options. For details, see:Ruslan Ermilov2006-03-171-1/+3
| | | | | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine) Notes: svn path=/head/; revision=156813
* Add knob NO_NIS (fka NO_YP_LIBC) and make world compileable when set.Bjoern A. Zeeb2004-11-131-1/+4
| | | | | | | | | | | | | | If turned on no NIS support and related programs will be built. Lost parts rediscovered by: Danny Braniss <danny at cs.huji.ac.il> PR: bin/68303 No objections: des, gshapiro, nectar Reviewed by: ru Approved by: rwatson (mentor) MFC after: 2 weeks Notes: svn path=/head/; revision=137675
* Join the 21st century: Cryptography is no longer an optional componentColin Percival2004-08-061-1/+0
| | | | | | | | | | | | | of releases. The -DNOCRYPT build option still exists for anyone who really wants to build non-cryptographic binaries, but the "crypto" release distribution is now part of "base", and anyone installing from a release will get cryptographic binaries. Approved by: re (scottl), markm Discussed on: freebsd-current, in late April 2004 Notes: svn path=/head/; revision=133196
* Put chkey(1), newkey(8), and keyserv(8) into the crypto distribution.Ruslan Ermilov2004-01-181-0/+1
| | | | Notes: svn path=/head/; revision=124664
* Use strchr() instead of index(). Use getopt(). Use err().Philippe Charnier2002-08-271-68/+41
| | | | Notes: svn path=/head/; revision=102497
* ANSIify function definitions to avoid some warnings.David Malone2002-07-281-11/+5
| | | | | | | Include stdlib.h for exit. Notes: svn path=/head/; revision=100814
* Use `The .Nm utility'Philippe Charnier2002-04-191-2/+3
| | | | Notes: svn path=/head/; revision=95083
* Remove leaf node WARNS?=2 (that mainly I added). This shouldMark Murray2002-02-081-1/+0
| | | | | | | help the GCC3 transition and CURRENT in general. Notes: svn path=/head/; revision=90415
* Style improvements recommended by Bruce as a follow up to someDavid Malone2001-12-101-5/+6
| | | | | | | | | | | of the recent WARNS commits. The idea is: 1) FreeBSD id tags should follow vendor tags. 2) Vendor tags should not be compiled (though copyrights probably should). 3) There should be no blank line between including cdefs and __FBSDIF. Notes: svn path=/head/; revision=87628
* WARNS=2 fixes. Also, use __FBSDID(), and sort includes.Mark Murray2001-12-022-7/+21
| | | | Notes: svn path=/head/; revision=87240
* Fixed bitrot in DPADD in previous commit.Bruce Evans2001-07-301-5/+3
| | | | | | | Fixed some style bugs (mainly disorder). Notes: svn path=/head/; revision=80628
* Enable the new libmp in the build, and disable libgmp and itsDima Dorfman2001-07-291-1/+1
| | | | | | | henchmen. Notes: svn path=/head/; revision=80530
* mdoc(7) police: added missing .Os call.Ruslan Ermilov2000-12-141-0/+1
| | | | Notes: svn path=/head/; revision=70022
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-1/+1
| | | | Notes: svn path=/head/; revision=68963
* $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
* Fixed missing DPADD.Bruce Evans1997-12-161-7/+6
| | | | | | | | Fixed some style bugs while I'm here (don't override the (correct) default for MAN1). Notes: svn path=/head/; revision=31772
* Mdoc'ify man page.Philippe Charnier1997-11-031-14/+15
| | | | Notes: svn path=/head/; revision=30908
* Import chkey.Bill Paul1997-05-283-0/+323
This program is used to change a user's existing public and secret key pair. Notes: svn path=/cvs2svn/branches/WPAUL/dist/; revision=26240