summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix typo, s/transmitts/transmits/johan2004-02-041-1/+1
| | | | | PR: 62346 Submitted by: Gavin Atkinson (gavin at ury.york.ac.uk)
* Removed unnecessary dependencies on librpcsvc.ru2004-02-042-4/+4
| | | | Prodded by: des
* Put libdevstat before libkvm, because the former depends on the latter.ru2004-02-041-2/+2
|
* Drop unused dependencies.ru2004-02-041-3/+0
|
* Move the checks for whether or not to build pppctl todeischen2004-01-311-8/+15
| | | | | | the architecture-dependent sections of the Makefile. Submitted by: ru
* Use strtol to parse the <%d> tags in printline() and printsys().iedowse2004-01-311-18/+18
| | | | | | Sort local variables declarations in these functions. Submitted by: bde
* Apply s/LIBC_R/LIBPTHREAD/ to the DPADD variable. The LDADD variablemarcel2004-01-311-1/+1
| | | | already had s/libc_r/libpthread/ applied to it.
* Add some logic so that pppctl isn't built if the correct threading librarydeischen2004-01-311-1/+5
| | | | | | is not present. Noticed by: ru
* s/-lc_r/-lpthread/deischen2004-01-301-1/+1
|
* In checkLabels(), deal with the fact that on ia64 we do not have amarcel2004-01-302-0/+24
| | | | disklabel.
* Add NO_BLUETOOTH knob to the build processemax2004-01-281-0/+2
| | | | | Requested by: phk Reviewed by: imp (mentor), ru
* Get rid of all (but one in write.c) static size buffers.ru2004-01-276-37/+56
|
* Some Windows .INF files are deliberately sabotaged to prevent them fromwpaul2004-01-271-1/+22
| | | | | | | | | | | | | | | | | | | | | | | loading on a particular version of Windows. For example, a .INF file for a Windows 2000 driver may have an empty [foo.NT.5.1] section which will be ingored on Win2K (whose .INF parser won't look for sections decorated with .NT.5.1) in favor of a [foo] section. Likewise, a WinXP file will have an empty [foo] section which will be ignored in favor of [foo.NT.5.1]. The problem is, we can handle both Win2K and WinXP drivers, and we don't want to exclude either one. As a workaround, we try to pretend we are WinXP by default and search for sections decorated with .NT.5.1, but if we don't turn up any records, we assume that maybe we're being fooled by a sabotaged .INF file and make one more pass looking for undecorated sections instead. This allows us to parse the .INF files for both the Win2K and the WinXP Centrino wireless drivers. I'd give anything for 5 minutes alone in a room with whoever wrote Microsoft's .INF file parser. Just 5 minutes. That's all.
* Make a message less scary (based on user feedback)eivind2004-01-261-1/+1
|
* Make this WARNS=3 clean.ru2004-01-2613-19/+28
|
* Use malloc() instead of alloca() to allocate a (potentially) large buffermckay2004-01-261-1/+2
| | | | | | | for storing the "diff -n" output. Some files (eg ports/INDEX,v) are too big nowadays to fit on the stack. Submitted by: Stephen Montgomery-Smith <stephen@math.missouri.edu>
* The log file is more useful when line buffered.mckay2004-01-261-0/+1
| | | | Submitted by: Stephen Montgomery-Smith <stephen@math.missouri.edu>
* Be much more strict about parsing tagged log messages from /dev/klog;iedowse2004-01-261-10/+20
| | | | | | | | | | | | if the line doesn't match ^<%d>, then treat it as a regular kernel printf line. Previously if a kernel printf message started with "<" it would be interpreted as a log message, often with LOG_EMERG level. This was triggered by some printfs in sys/dev/aic7xxx/, and can also happen with the partial lines that result if syslogd cannot keep up with the rate of arrival of kernel messages. Reviewed by: dwmalone MFC after: 1 week
* Cleanup CFLAGS in libsdp(3) Makefileemax2004-01-252-1/+15
| | | | | | Connect sdpd(8) to the build Reviewed by: ru, imp (mentor)
* I don't normally use my middle name, so remove it from attributions indes2004-01-253-4/+4
| | | | | man pages (though not from copyright notices). While I'm here, add email addresses where appropriate.
* Rename the makefile variable MIBS to BMIBS so that it does notharti2004-01-241-3/+3
| | | | conflict with the environment variable MIBS that is used by net-snmp.
* Rename the MIBS makefile variable to BMIBS so that it does not conflictharti2004-01-242-4/+4
| | | | with the environment variable MIBS that is used by net-snmp.
* Instead of bogusly complaining about odd file names, handle them properlydes2004-01-241-11/+27
| | | | | | by escaping all suspicious characters. MFC after: 3 days
* Try to apply consistent indentation.des2004-01-241-20/+19
|
* Deal with keys with descriptions that have empty fields in some ofwpaul2004-01-231-4/+12
| | | | | | | | their lines. Properly discard PCMCIA device declarations. I plan to support PCMCIA cards, but they don't work yet, and it appears some .INF files declare both PCI and PCMCIA device instances.
* Create the OID and tree files while building the modules and the daemonharti2004-01-238-187/+32
| | | | | | | | instead of creating them by hand and storing them in the CVS tree. Add gensnmptree to the bootstrap tools (it is used to generated these files). This simplifies the update procedure. Submitted by: ru
* Update generated files.harti2004-01-233-3/+21
|
* Catch up with import of version 1.5a of bsnmp.harti2004-01-231-1/+2
|
* Catch up with the import of version 1.5a of bsnmp.harti2004-01-231-2/+4
| | | | | Fix the script to insert $FreeBSD$ into the generated file instead of the script's FreeBSD id.
* Style: remove an empty line.harti2004-01-231-1/+0
|
* Userland signed char fixes for PPC build. Problems were using a chargrehan2004-01-228-15/+14
| | | | | | | | | return for getopt() and comparing to -1, ditto with fgetc() and EOF, and using the kg_nice value from <sys/user.h> Submitted by: Stefan Farfeleder <stefan@fafoe.narf.at> Reviewed by: obrien, bde (a while back) Tested lightly on: ppc, i386, make universe
* Use the length of the interface name, not the length of its address whenbrooks2004-01-211-1/+1
| | | | | | printing the name. Approved by: brian
* Disable constant merging in isdnd and isdnmonitor. This is a "make mycperciva2004-01-212-0/+8
| | | | | | | | life easier" patch: I doubt this will affect anyone else, but the FreeBSD Update build code was getting very confused by this. Approved by: rwatson (mentor) PR: bin/61087
* This is Sparc64-only.ru2004-01-212-1/+2
|
* This is i386-only.ru2004-01-212-1/+2
|
* Mark APM manpages as i386-only.ru2004-01-214-2/+4
|
* Import sdpd(8) sources. This is Bluetooth Service Discovery Protocol daemon.emax2004-01-2026-0/+4284
| | | | | | | | Extend libsdp(3) API to allow service registration and removal. Fix uninitialized variable bug in sdpcontrol(8). Reviewed by: imp (mentor) No objection: ru
* Also sort ignoring case -- makes finding things by browsing easier.ru2004-01-201-2/+2
|
* Clean up makefiles.ru2004-01-193-15/+11
| | | | Reviewed by: harti
* add missing setusershell() calls.charnier2004-01-181-0/+1
| | | | | PR: bin/2442 Reviewed by: Friedemann Becker <zxmxy33@mail.uni-tuebingen.de>
* Put chkey(1), newkey(8), and keyserv(8) into the crypto distribution.ru2004-01-181-0/+1
|
* Do not install SYMLINKS if both NO_MAILWRAPPER andjohan2004-01-171-0/+2
| | | | | | | | | | NO_SENDMAIL is defined. PR: 57058 Reported by: Henri Hennebert <hlh@cocoon.cercle.be> Melvyn Sopacua on current@ Submitted by: ru@ MFC after: 2 weeks
* - Properly build both crypto and non-crypto versions of theru2004-01-178-28/+10
| | | | | | | package management tools. - Drop redundant dependency of pkg_create(1) and pkg_delete(1) on crypto libraries now that they do not link with libfetch.
* Replaced black magic with white magic.ru2004-01-171-5/+2
|
* Fixed the fatal bug: CFLAGS should be added to, not overridden.ru2004-01-171-1/+1
| | | | This prevented CPU and optimization flags to be added here.
* - Build things in pure dictionary order (see sort(1)).ru2004-01-161-91/+144
| | | | | | | | | | - Unify the conditional assignments section so that architectural exclusions come first, then options and !options, sorted by the option name, also in directory order, then architecture specific sections, sorted by the architecture name, with i386 being a traditional exception. Prodded by: bde
* o Document -s flag.maxim2004-01-151-0/+7
| | | | | No objections from: ume MFC after: 2 weeks
* -DSMALL will remove the need of dump.c (for rtsol)ume2004-01-141-0/+14
| | | | Obtained from: KAME
* add -F flag, which configures sysctl(8) setting by rtsoldume2004-01-144-15/+53
| | | | | | itself (rather than warn about the current setting). Obtained from: KAME
* ansify.ume2004-01-146-31/+20
| | | | Obtained from: KAME
OpenPOWER on IntegriCloud