summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Only remove ${CLEANFILES} in the default clean rule. In particular,bde1997-12-191-18/+16
| | | | | | | | | | | | | | | | | | don't remove a.out explicitly. a.out should only be generated for libraries and is removed in the non-default rule in bsd.lib.mk. Removed undocumented cleanfiles target. It was the same as the default clean target except it didn't descend into subdirs. It was different from special clean targets in other ways. This feature hasn't been missed for more important targets. Removed unused default cleandepend target. bsd.dep.mk has a better version which is always used. Use a better rule for checkdpadd in the BINFORMAT=aout case. This mainly checks that ld -f is working correctly. The old rule is still available via `make BINFORMAT=foo checkdpadd' and should be used to check for regressions under 2.2 where ld -f is not available.
* Oops, the previous patch was botched.bde1997-12-181-2/+1
|
* <bsd.doc.mk> now includes ../Makefile.inc, so don't include it here.bde1997-12-177-14/+7
|
* Oops, rm -f can't handle empty lists.bde1997-12-171-1/+5
|
* Oops, rm -f can't handle empty lists.bde1997-12-171-1/+3
|
* Don't clean files that we don't create.bde1997-12-171-4/+4
| | | | | | | Fixed style of empty test. Include <bsd.libnames.mk> if `checkdpadd' is being made, so that it can :e checked until it goes away.
* Normally don't include <bsd.libnames.mk>. Include it in the !aout casebde1997-12-171-6/+8
| | | | | | | | | (as in bsd.prog.mk). Include it if `checkdpadd' is being made, so that it can be checked until it goes away. Don't clean files that we don't create. Fixed style of empty test.
* Removed gross dir file bootstrap rule again. It would break buildingbde1997-12-161-19/+12
| | | | | | | | | | | | | | | | when there is no /usr/src/share/info if it were actually used. Added comments to explain duplicated tex commands. Use substitution in IFILENS to simplify some things. Removed /g from many substitutions. It is bogus for anchored matches. Don't echo nothing. Don't add things that wouldn't be built with the current options to CLEANFILES (except for some cases involving tex). Reviewed by: wosch
* Remove the UK phone codes from inter.phone and createbrian1997-12-163-37/+9681
| | | | | | | | | | | uk.phone (in line with na.phone). This is a more detailed list than the one in inter.phone. Add uk.postcodes. I've prefixed it with `uk' to leave room for (maybe) au.postcodes etc. (if someone feels so inclined). Obtained from: http://www.brainstorm.co.uk/public/utils Ok'd to use by: steve@brainstorm.co.uk (Steve Crook)
* Add libcalendarhelbig1997-12-151-1/+2
|
* Optimize rm(1) usage.wosch1997-12-141-3/+2
|
* Sync with original source: add FreeBSD 2.2.5, NetBSD 1.3, and OpenBSD 2.2wosch1997-12-091-8/+13
|
* Add LIBZwosch1997-12-091-1/+2
|
* excuse me, adding alog.4 man page now forgot to commit previouslyjamil1997-12-091-0/+146
|
* Added alog.4 man page to /usr/src/share/man/man4/man4.i386/ directoryjamil1997-12-091-5/+6
| | | | Altered Makefile in that directory so that make builds the alog.4 man page
* Correct a path.charnier1997-12-081-2/+2
|
* oops, remove a dangling predicate left over after a sentence was rewritten.wollman1997-12-071-2/+2
|
* Add some more macro advice and correct spelling of ``parentheses''.wollman1997-12-071-6/+16
|
* Added some advice to avoid typedef'ing structures, as this breakswollman1997-12-071-2/+25
| | | | | | information-hiding. Also recommended against naming typedefs to end in _t unless POSIX or ANSI requires it, and in favor of using queue(3) macros to generate lists rather than rolling one's own.
* Added mouse.4.bde1997-12-071-2/+4
|
* Document recent mouse code changes.yokota1997-12-077-497/+2733
|
* Add some extra flags in the caching page.tegge1997-12-051-1/+5
| | | | | | Some firmware versions becomes unreliable when these bits are not preserved, e.g. ST15150N-0017 breaks if the DISC bit is cleared in the caching page. This happened by default when editing the page.
* Now that it's built at the same time as its source, disable building 07.lprwollman1997-12-022-13/+5
| | | | | here. Hopefully this will set a trend. (What was I thinking when I set this up the first time?)
* Document the new long names for printcap capabilities.wollman1997-12-021-1/+44
|
* Fixed spelling of EACCES.bde1997-11-231-3/+3
|
* Define MASTER_SITE_SUBDIR and PATCH_SITE_SUBDIR to default to "." soasami1997-11-201-1/+11
| | | | | | | | | | we won't have double-slashes. Add support for new port variable MANUAL_PACKAGE_BUILD. If this is defined as well as the user variable PACKAGE_BUILDING, the port will be ignored. This is used to mark ports that can be built normally except on a machine that has a lot of conflicting ports (i.e., our package building machine).
* Add new target "checksubdirs". It will warn about any subdirectories thatasami1997-11-201-1/+29
| | | | | are not in the SUBDIR list. It also knows about the "standard" directories that are to be ignored ("CVS", "distfiles", etc.).
* Add `writeable'wosch1997-11-171-0/+1
|
* Document the new clear_tmp_enable option in the manpage.steve1997-11-161-1/+7
| | | | Prodded by: max
* target(__target) -> target(${__target})wosch1997-11-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | PR: bin/4736 Submitted by: Martin Kammerhofer <dada@sbox.tu-graz.ac.at> Index: bsd.subdir.mk =================================================================== RCS file: /usr/cvs/src/share/mk/bsd.subdir.mk,v retrieving revision 1.18 diff -u -r1.18 bsd.subdir.mk --- bsd.subdir.mk 1997/06/21 15:40:34 1.18 +++ bsd.subdir.mk 1997/11/09 18:04:33 @@ -59,7 +59,7 @@ .for __target in all checkdpadd clean cleandir depend lint \ maninstall obj objlink -.if !target(__target) +.if !target(${__target}) ${__target}: _SUBDIRUSE .endif .endfor
* Upgrade perl to perl5.004_04markm1997-11-121-3/+3
|
* state that "kernel includes" ==> sys/*.hobrien1997-11-121-2/+3
|
* Documented PSM_HOOKAPM and PSM_RESETAFTERSUSPEND options.yokota1997-11-112-2/+48
|
* target(__target) -> target(${__target})wosch1997-11-101-2/+2
| | | | | PR: bin/4736 Submitted by: Martin Kammerhofer <dada@sbox.tu-graz.ac.at>
* Remove the comments hat just list the nested includes.wosch1997-11-095-14/+6
| | | | | | The lists don't provide significantly more information than grep '\.include', and grep gives lists that are actually correct. Submitted by: Bruce
* target(__target) -> target(${__target})wosch1997-11-091-2/+2
| | | | | PR: bin/4736 Submitted by: Martin Kammerhofer <dada@sbox.tu-graz.ac.at>
* Add an introductory manpage for the ports system.obrien1997-11-092-2/+84
|
* Make fix for PR 4883 consistent with other similar cases.jraynard1997-11-092-2/+2
|
* Back-out previous change. A better fix is to follow.jraynard1997-11-081-1/+1
| | | | Requested-by: bde
* Update the LOOP AVOIDANCE section to reflect reality.brian1997-11-081-14/+15
| | | | Requested by: Archie Cobbs <archie@whistle.com>
* Allow the system to be configured to pass "-n" to kerberos andsef1997-11-071-1/+21
| | | | | | | kadmind or not; also, only run kadmind on a non-slave server. Man page for rc.conf is also updated. Reviewed by: Mark Murray
* Add Slovenian keyboardache1997-11-072-1/+116
| | | | Submitted by: Blaz Zupan <blaz@amis.net>
* Add Slovenian dataache1997-11-074-2/+237
| | | | Submitted by: Blaz Zupan <blaz@amis.net>
* Add Slovene linkache1997-11-072-4/+4
|
* Add link to Polish localeache1997-11-071-2/+2
|
* Add Polish linkache1997-11-071-2/+2
| | | | Submitted by: Andrzej Bialecki <abial@warman.org.pl>
* Add Polish dataache1997-11-074-1/+224
| | | | Submitted by: Andrzej Bialecki <abial@warman.org.pl>
* Fix the SYNOPSIS Lnie so the entry will actually work.joerg1997-11-071-5/+5
| | | | Submitted by: Ulli Linzen <ulli@perceval.camelot.de>
* Convert <, > and & into &lt;, &gt; and &amp; in port names, COMMENT andfenner1997-11-061-7/+14
| | | | | | | | DESCR files when building README.html . Don't use control characters in sed statement. Problems reported by "Chris G. Demetriou" <cgd@pa.dec.com> in NetBSD PR pkg/4341.
* Update the man page to reflect that libc_r is built as partsteve1997-11-051-20/+4
| | | | | | | of make world unless the '-DNOLIBC_R' option is given to make(1). PR: 4710 Submitted by: Magnus Enbom <dot@tinto.campus.luth.se
OpenPOWER on IntegriCloud