aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* NOCRYPT -> NO_CRYPTRuslan Ermilov2004-12-213-3/+3
| | | | Notes: svn path=/head/; revision=139113
* NOSHARED -> NO_SHAREDRuslan Ermilov2004-12-211-1/+1
| | | | Notes: svn path=/head/; revision=139112
* NODOCCOMPRESS -> NO_DOCCOMPRESSRuslan Ermilov2004-12-211-2/+2
| | | | | | | | | | | NOINFO -> NO_INFO NOINFOCOMPRESS -> NO_INFOCOMPRESS NOLINT -> NO_LINT NOPIC -> NO_PIC NOPROFILE -> NO_PROFILE Notes: svn path=/head/; revision=139106
* NOATM -> NO_ATMRuslan Ermilov2004-12-211-1/+1
| | | | Notes: svn path=/head/; revision=139105
* Start the dreaded NOFOO -> NO_FOO conversion.Ruslan Ermilov2004-12-2112-12/+12
| | | | | | | OK'ed by: core Notes: svn path=/head/; revision=139103
* Fix compilation for the USE_KQUEUE case.Hartmut Brandt2004-12-201-0/+4
| | | | | | | Submitted by: Emil Mikulic <emikulic@dmr.ath.cx> Notes: svn path=/head/; revision=139064
* maxJobs is declared extern in job.h so it cannot be static in job.c.Hartmut Brandt2004-12-201-1/+1
| | | | | | | | PR: bin/75210 Submitted by: Andreas Jochens; Robert Millan <rmh@debian.org> Notes: svn path=/head/; revision=139062
* Sort by month/day/year/login.Ruslan Ermilov2004-12-201-6/+6
| | | | Notes: svn path=/head/; revision=139060
* Add myself.Mark Santcroos2004-12-191-0/+1
| | | | Notes: svn path=/head/; revision=139049
* Use the accepted abbreviation "kB" for kilobyte, rather than "kb" (whichColin Percival2004-12-191-7/+7
| | | | | | | is the common unit for a kilobit). Notes: svn path=/head/; revision=139038
* Specify the state of my birth, similar to other entries.Christian Brueffer2004-12-181-1/+1
| | | | Notes: svn path=/head/; revision=138995
* Remove all the cleanup functions. There is no reason to free memoryHartmut Brandt2004-12-1710-185/+6
| | | | | | | | just before exiting (especially given the number of memory leaks) - it just costs time. Notes: svn path=/head/; revision=138972
* Fix a long-standing bug when make(1) is passed the -V andRuslan Ermilov2004-12-161-8/+5
| | | | | | | | | | | -f options in MAKEFLAGS environment variable, and some of these options are also specified on the command line. Thanks to: marcel Reviewed by: harti Notes: svn path=/head/; revision=138920
* Instead of dynamically allocating list heads allocated them staticallyHartmut Brandt2004-12-1620-651/+530
| | | | | | | | | | | now that their size is only two pointers. This eliminates a lot of calls to Lst_Init and from there to malloc together with many calls to Lst_Destroy (in places where the list is obviously empty). This also reduces the chance to leave a list uninitilized so we can remove more NULL pointer checks and probably eliminates a couple of memory leaks. Notes: svn path=/head/; revision=138916
* Correct the event of 17 December 1770: Ludwig van Beethoven wasGreg Lehey2004-12-161-1/+1
| | | | | | | | | | | christened. We don't know whether he was born on the same or the previous day. From: Die Musik in Gecshichte und Gegenwart (Bärenreiter, Kassel, 1989), 1:1509 Notes: svn path=/head/; revision=138904
* Correct the dates and locations relating to Ludwig van Beethoven'sGreg Lehey2004-12-161-1/+1
| | | | | | | | | | | | | birth: 1. Remove anachronistic "Germany". Depending on your viewpoint, he was born in the Rheinland or Prussia. 2. Remove reference to his date of birth. It's not known, though it's possible it was 16t or 17 December. 3. Get the date of his christening right. Notes: svn path=/head/; revision=138903
* If ferror is true, we must reset the error indicator.Suleiman Souhlal2004-12-151-0/+1
| | | | | | | | Submitted by: Liam J. Foy <liamfoy@sepulcrum.org> Approved by: grehan (mentor) Notes: svn path=/head/; revision=138883
* Add myself to the committers' birthday calendarNiels Heinen2004-12-131-0/+1
| | | | | | | Approved by nectar (mentor) Notes: svn path=/head/; revision=138798
* Bump document date before ru gets me.Ceri Davies2004-12-111-1/+1
| | | | Notes: svn path=/head/; revision=138682
* Add a -k flag for querying whois.krnic.net (the National InternetCeri Davies2004-12-112-3/+13
| | | | | | | | | | Development Agency of Korea) which hold details of IP address allocations within Korea. Approved by: bms Notes: svn path=/head/; revision=138681
* Remove a list that was just used to free all variables just before exiting.Hartmut Brandt2004-12-101-12/+1
| | | | Notes: svn path=/head/; revision=138656
* Remove a list that used to hold all the GNodes just to be ableHartmut Brandt2004-12-101-39/+0
| | | | | | | to free them just before exiting. Notes: svn path=/head/; revision=138655
* Remove a useless list where just all command lines are stuffed onto, neverHartmut Brandt2004-12-101-4/+0
| | | | | | | | used and just freed at the end. The idea might have been to be able to free all the strings, but what's the point to free just before exiting? Notes: svn path=/head/; revision=138654
* Nobody actually checked the return codes from Lst_Append and Lst_InsertHartmut Brandt2004-12-094-43/+9
| | | | | | | so don't return anything. Notes: svn path=/head/; revision=138629
* If a path element directory was never opened it is not on the list ofHartmut Brandt2004-12-091-2/+2
| | | | | | | | open directories so there is no need to remove it from there. This fixes a core dump introduced by removing the run-time check from Lst_Remove. Notes: svn path=/head/; revision=138621
* Now that circular lists are gone remove stuff for them. SimplifyHartmut Brandt2004-12-081-10/+6
| | | | | | | somewhat so that we can remove a local variable. Notes: svn path=/head/; revision=138581
* No caller checks the return code from Lst_Remove, so don't return one.Hartmut Brandt2004-12-082-30/+12
| | | | | | | Simplify the algorithm now that circular lists are gone. Notes: svn path=/head/; revision=138577
* Don't check the return code from Lst_Remove. There is no wayHartmut Brandt2004-12-081-5/+2
| | | | | | | that the list's first element is not on the list. Notes: svn path=/head/; revision=138567
* Remove return value from Lst_Concat. None of the callers ever checkedHartmut Brandt2004-12-082-36/+20
| | | | | | | it. Remove stuff that was needed for circular lists. Notes: svn path=/head/; revision=138566
* Don't free the second list in Lst_Concat for LST_CONCLINK; free itHartmut Brandt2004-12-082-3/+3
| | | | | | | in the caller instead. Notes: svn path=/head/; revision=138565
* Get rid of the sequential access feature of the lists. This was usedHartmut Brandt2004-12-0815-551/+98
| | | | | | | | | | | only in a couple of places and all of them except for one were easily converted to use Lst_First/Lst_Succ. The one place is compatibility mode in job.c where the it was used to advance to the next command on each invocation of JobStart. For this case add a pointer to the node to hold the currently executed command. Notes: svn path=/head/; revision=138564
* Constify the arguments to the list compare function. This temporarilyHartmut Brandt2004-12-089-39/+50
| | | | | | | | | | | requires to make a copy of the filename in ReadMakefile and to duplicate two small functions in suff.c. This hopefully will go away when everything is constified. Submitted by: Max Okumoto <okumoto@ucsd.edu> (partly) Notes: svn path=/head/; revision=138561
* Constify some calls of Buf_AddBytes.Hartmut Brandt2004-12-081-3/+3
| | | | | | | Submitted by: Max Okumoto <okumoto@ucsd.edu> Notes: svn path=/head/; revision=138548
* Consify the arguments to str_concat. Remove the STR_DOFREE flag for thatHartmut Brandt2004-12-084-14/+9
| | | | | | | | | | purpose and explicitely free the input string in the one place that was calling str_concat with that flag. Submitted by: Max Okumoto <okumoto@ucsd.edu> Notes: svn path=/head/; revision=138547
* Typedefs of pointers to structs are evil. Make Lst and LstNode typedef ofHartmut Brandt2004-12-0731-230/+230
| | | | | | | | | the structs itself not of pointers to them. This will simplify constification. Checked by: diff on the object files Notes: svn path=/head/; revision=138512
* Constification of arguments passed to functions; no change on theHartmut Brandt2004-12-071-15/+15
| | | | | | | | | | | resulting executable. Checked by: diff on original and new objects Submitted by: Max Okumoto <okumoto@ucsd.edu> Notes: svn path=/head/; revision=138511
* Make needs no circular lists so remove them from the list code.Hartmut Brandt2004-12-0721-144/+88
| | | | Notes: svn path=/head/; revision=138510
* Fix -t option processing.Alexander Nedotsukov2004-12-061-4/+2
| | | | | | | | | Partially initialized tm structure was passed into mktime(3). Approved by: ru Notes: svn path=/head/; revision=138456
* Some constification which doesn't require code rewrites.Hartmut Brandt2004-12-064-17/+13
| | | | Notes: svn path=/head/; revision=138455
* Style: fix indentation.Hartmut Brandt2004-12-062-643/+660
| | | | Notes: svn path=/head/; revision=138441
* Unbreak sockstat(1) on systems without the divert protocol.Ruslan Ermilov2004-12-061-0/+2
| | | | Notes: svn path=/head/; revision=138437
* Remove an unused macro.Hartmut Brandt2004-12-061-5/+0
| | | | Notes: svn path=/head/; revision=138436
* Constify arguments to Hash_FindEntry and Hash_CreateEntry.Hartmut Brandt2004-12-062-6/+6
| | | | Notes: svn path=/head/; revision=138435
* Remove extra empty lines.Hartmut Brandt2004-12-061-2/+0
| | | | Notes: svn path=/head/; revision=138434
* Style: fix indentation, prototypes for functions even in comment.Hartmut Brandt2004-12-061-25/+13
| | | | Notes: svn path=/head/; revision=138433
* Show divert(4) sockets as well.Ruslan Ermilov2004-12-051-0/+6
| | | | Notes: svn path=/head/; revision=138391
* Remove an extra space.Hartmut Brandt2004-12-031-1/+1
| | | | | | | Submitted by: ru Notes: svn path=/head/; revision=138347
* Fix breakage introduced on 64-bit platforms with my last commit. NeedHartmut Brandt2004-12-0310-52/+53
| | | | | | | to change to size_t in a couple of other places too. Notes: svn path=/head/; revision=138346
* Plug a memory leak.Hartmut Brandt2004-12-031-0/+1
| | | | Notes: svn path=/head/; revision=138343
* Put macro arguments in paranthesis.Hartmut Brandt2004-12-032-2/+2
| | | | | | | Submitted by: johan Notes: svn path=/head/; revision=138342