summaryrefslogtreecommitdiffstats
path: root/share/examples
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: markup overhaul.ru2002-12-121-40/+45
| | | | Approved by: re
* mdoc(7) police: Added the missing .Os call; it's not strictlyru2002-12-111-0/+1
| | | | | | | necessary nowadays, but is documented as "required", and may become so again in the future. Approved by: re
* Add finance, hungarian, multimedia [1] and portuguese collectionslioux2002-12-091-0/+4
| | | | | | | PR: 45835 [1] Submitted by: Morten Rodal <morten@rodal.no> [1] Approved by: re (murray) MFC after: 1 week
* As warned on freebsd-current@, remove the perl wrapper from /usr/src.obrien2002-11-271-1/+0
| | | | | | | | | The /usr/bin/perl wrapper isn't solving many of the problems it was imported to deal with. There are limitations to it that don't have a clear "fix". Reviewed by: markm, kris Extorted approval from: re(jhb)
* Removed the vestiges of modems(5).ru2002-11-271-1/+0
| | | | Approved by: re
* Add a DPADD section to fix 'make checkdpadd'njl2002-11-251-0/+1
| | | | | Submitted by: ru Approved by: re (previously)
* Install new files from examples dir.njl2002-11-241-0/+3
| | | | Approved by: re (previously)
* New SCSI target emulator codenjl2002-11-225-238/+1692
| | | | | | | | | | | | | | | | | | | | | This code allows a user program to enable target mode on a SIM and then emulate any number of devices (disks, tape drives, etc.) All decisions about device behavior (UA, CA, inquiry response) are left to the usermode program and the kernel driver is merely a conduit for CCBs. This enables multiple concurrent target emulators, each using its own backing store and IO model. Also included is a user program that emulates a disk (RBC) using a file as a backing store. This provides functionality similar to md(4) at the CAM layer. Code has been tested on ahc(4) and should also work on isp(4) (and other SIMs that gain target mode support). It is a complete rewrite of /sys/cam/scsi_target* and /usr/share/examples/scsi_target. Design, comments from: gibbs Supported by: Cryptography Research Approved by: re
* Backout "compatibility hack" for __sF.alfred2002-11-041-8/+0
| | | | Requested by: Steve Kargl <sgk@troutmask.apl.washington.edu> (submitter)
* Provide a hook to make __sF visible outside of libc for commercial appsalfred2002-11-021-0/+8
| | | | | | if WANT_COMPAT4_STDIO is defined when compiling libc. Submitted by: Steve Kargl <sgk@troutmask.apl.washington.edu>
* Change to match NO_MAKEDEV* -> MAKEDEV*.phk2002-10-221-5/+4
|
* test -h is deprecated; use -L instead.ru2002-10-011-1/+1
| | | | PR: bin/40846
* Allow the shell preference for make(1) to be set in make.conf(5), and hopefullyjmallett2002-09-291-0/+7
| | | | | trick a few people into setting MAKE_SHELL to csh, although that can still rebuild itself to allow them to heal the wound in their foot.
* Mention about how to build sendmail with SASLv2.ume2002-09-241-0/+6
|
* Add support for ev67 and ev45 CPUTYPEs (new in gcc3)kris2002-09-071-1/+1
|
* List the new athlon CPUs supported by the CPUTYPE make variable.mux2002-09-071-1/+2
| | | | Submitted by: kris
* add support properly displaying and logging incoming telephone numbers (MSNs)hm2002-08-124-8/+19
| | | | | | | by looking at the "type of number" field and providing configurable hooks to correct the numbers accordingly. See keywords add-prefix, prefix-national and prefix-international in isdnd.rc(5). This feature was implemented by Christian Ullrich <chris@chrullrich.de>
* add experimental support for Data over Voice (DoV) outgoing calls.hm2002-08-113-2/+14
| | | | | based on patches received from Guy Ellis (guy@traverse.com.au), Chris Collins (xfire@xware.cx) and Phillip Musumeci (phillip@cs.jcu.edu.au).
* TARGET_CPUTYPE should exist solely in Makefile.inc1, similar toru2002-08-021-1/+3
| | | | | | | | | | | | | | | | TARGET_ARCH and TARGET. This is problematic when one has the = (unconditional) type of assigment for CPUTYPE in /etc/make.conf. (This would override what was set on the command line to "make buildworld".) Add a (horrible) kludge to Makefile.inc1 to check the type of assignment for CPUTYPE (only for those who attempts to set it to a different value). Fix an example make.conf. Fix the kernel's build-tools target (aicasm only at the moment) to catch up with bsd.cpu.mk,v 1.15 (BOOTSTRAPPING replaced with NO_CPU_CFLAGS in Makefile.inc1's BMAKE). Reviewed by: jhb
* There is no more UUCP in the base system, so there is no need tomarkm2002-08-021-1/+0
| | | | prevent its building.
* Modernise and tidy up.markm2002-08-022-162/+131
|
* include file of SASLv1 was changed to /usr/local/include/sasl1.ume2002-07-311-1/+1
|
* Correct URLs to Handbook & FAQ's pagesblackend2002-07-301-2/+2
| | | | MFC after: 1 week
* Correct links to Handbook's pages:blackend2002-07-308-16/+16
| | | | | | | http://www.freebsd.org/handbook/mirrors.html is not working anymore, http://www.freebsd.org/doc/handbook/mirrors.html is the new link MFC after: 1 week
* Drop support for COPY, -c has been the default mode of install(1)ru2002-07-292-2/+2
| | | | | | for a long time now. Approved by: bde
* Ignore -C, -p, and -S options of install(1) when used with the -dru2002-07-291-1/+1
| | | | | | | option. Warn about COPY being phased out. Restore the old method of always comparing before installing: INSTALL="install -C". Requested by: bde
* Fix Makefiles to actually work.mjacob2002-07-294-0/+4
|
* Don't install any old cruft present in the tree, includingru2002-07-191-19/+263
| | | | | | | editor backups, .orig or .rej files, etc. Make transition from SHARED=symlinks to SHARED=copies and vice versa work. Submitted by: des, ru
* To force install(1) to always compare files before installing, oneru2002-07-181-1/+1
| | | | | | | | now needs to set COPY=-C as -C is no longer compatible with the -d option. It is also likely to be renamed to INSTALL_COPY soon. Update documentation to reflect this change. PR: bin/40724
* s/${INSTALL} -c/${INSTALL} ${COPY}/ru2002-07-182-2/+2
|
* The .Nm utilitycharnier2002-07-141-1/+3
|
* Update the SUBDIR hacks to work with the current bsd.subdir.mk.ru2002-07-112-73/+4
|
* 's/rather then/rather than/'johan2002-07-021-5/+5
| | | | | | | | | | PR: 38096 Submitted by: Chris Pepper <pepper@rockefeller.edu> While I'm here correct some typos pointed out by ispell. Approved by: sheldonh (mentor) MFC after: 1 week
* Include 'sshd' to the lists of forbidden users.maxim2002-06-281-0/+1
| | | | Reviewed by: cvs-committers
* Add a warning regarding the SENDMAIL_*_MC make.conf variable values.gshapiro2002-06-201-0/+9
| | | | | | | | Using /etc/mail/sendmail.mc will create /etc/mail/sendmail.cf during a buildworld. PR: misc/39397 MFC after: 3 days
* Per previous discussion, and with Mark's blessing, update the valuedougb2002-06-091-0/+1
| | | | of this knob to reflect (-)current reality.
* Fix typo in the BSD copyright: s/withough/without/schweikh2002-06-021-1/+1
| | | | | Spotted and suggested by: des MFC after: 3 weeks
* Document the ENABLE_SUID_NEWGRP variable.tjr2002-05-281-0/+4
| | | | | Requested by: mike PR: 36190
* Add a new make.conf knob, SENDMAIL_MAP_PERMS, which specifies thegshapiro2002-05-241-0/+5
| | | | | | | | | permissions to use for alias and map database files built by /etc/mail/Makefile. The default is 0640 to assist users in avoiding a file locking local denial of service. MFC after: 1 day pending RE approval
* Remove perl hooks.markm2002-05-161-5/+0
| | | | Pointed out by: des
* Turn on the set-user-ID bit for k5su if ENABLE_SUID_K5SU is defined.nectar2002-05-121-0/+5
|
* sysctl -w -> sysctldd2002-05-111-1/+1
|
* sysctl -w -> sysctldd2002-05-111-1/+1
| | | | Approved by: ume
* Put 'ftp' back.maxim2002-05-081-0/+1
| | | | Requested by: bmah, jhb
* Sync with master.passwd.maxim2002-05-071-2/+0
| | | | | | PR: conf/37796 Submitted by: David Siebo"rger <drs@rucus.ru.ac.za> MFC after: 3 days
* Add smmsp, mailnull and wwwbrian2002-05-071-0/+3
| | | | | | | | | | PR: 37796 Submitted by: drs@rucus.ru.ac.za MFC after: 1 week Note, I don't usually look after pppd (just ppp), so I haven't removed the ftp and ingres users as I guess they're there for a reason....
* Add the Dynalink IS64PPH+ as a supported card.gj2002-04-281-0/+1
| | | | Reported by: znerd
* Back out the NO_RCMNDS knob.obrien2002-04-231-1/+0
| | | | | | | 1. The committer refused to respond to questions over the commit. 2. The servers rlogind, rshd, rexecd were not wrapped. 3. "rcmnds" as an abbreviation gets an order of magnitude less hits on Google than the much more well known "rcmds".
* Usage style sweep: spell "usage" with a small 'u'.des2002-04-223-3/+3
| | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/.
* s/nwserv/nwfs/bp2002-04-201-1/+1
| | | | | Submitted by: Victor Sudakov <sudakov@sibptus.tomsk.ru> MFC after: 1 week
OpenPOWER on IntegriCloud