summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Implement pthread read/write locks as defined by Version 2 of the Singlealex1998-09-079-0/+783
| | | | | | | UNIX Specification. As with our standard mutexes, process shared locks are not supported at this time.
* Add a man section 1aout for the legacy man files to avoid them beingjb1998-09-072-4/+5
| | | | installed over the ones from binutils.
* Add manpages for the new device framework.dfr1998-09-0337-1/+2252
|
* Add -aout to CFLAGS and LDFLAGS in bsd.kmod.mk, not inbde1998-09-021-1/+5
| | | | | | src/lkm/Makefile.inc. This fixes broken builds of the syscons LKMs when OBJFORMAT=elf. Removed src/lkm/Makefile.inc since it became empty and is worse than useless.
* Nuked setting of crt here too.bde1998-09-022-9/+2
| | | | Obtained from: src/etc/root/dot.profile rev.1.17.
* Add Id keywordsbrian1998-09-022-0/+4
|
* Oops, I missed the update from /etc/objectformat to /etc/objformatjb1998-08-311-3/+3
| | | | which caused a port-ELF upgrade to continue to build aout.
* Sort cross references.wosch1998-08-3121-53/+53
|
* Remove BINFORMAT which is only set when building tools that need to havejb1998-08-301-8/+11
| | | | | | | a default format. Include /etc/objformat to get the installed object type if it exists and if OBJFORMAT is not already defined.
* BINFORMAT -> OBJFORMAT ready for E-day.jb1998-08-303-16/+16
|
* Make a local build tool static to avoid trying to use shared librariesjb1998-08-301-2/+2
| | | | before rtld is installed.
* bsd.docb.mk handles installing SGML/docbook documents.wosch1998-08-292-1/+58
|
* fix a typophk1998-08-291-1/+1
|
* add support for /etc/make.conf.localdillon1998-08-291-1/+6
|
* make.conf.local test/include removed from make.conf, to be put in sys.mkdillon1998-08-291-4/+1
| | | | instead.
* Introduce PERL5 variable.dima1998-08-281-1/+2
| | | | | | It's gonna be used in all p5- ports. Reviewed by: asami
* Hope I haven't missed anything or forgotten to credit anybody. (Byasami1998-08-271-189/+351
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the way, most of the things below are "Reviewed by: hoek" as well.) The changes are (roughly in order of appearance): (1) Revamp comments at beginning of file. Major rewrites. Reorder them into more relevant sections. Make clear which ones are user variables and not to be set in ports' Makefiles. Reviewed by: hoek (well, he's the only one who sent any comments) (2) Include ${.CURDIR}/Makefile.local if it exists. This is a local configuration file (ala rc.conf.local and make.conf.local) so please do not commit a file with this name to the repository. Suggested by: dillon (3) MANCOMPRESSED now takes three possible values: "yes", "no" and "maybe". (It used to be a binary variable -- the old behavior is now accomplished by "MANCOMPRESSED=yes". Ports that defined this variable to other values have been corrected.) "yes" means the manpages are installed compressed, "no" means they are not, and "maybe" means the port already respects the value of NOMANCOMPRESS. The default is "yes" for USE_IMAKE ports without NO_INSTALL_MANPAGES, and "no" otherwise. Add "compress-man" target and move manpage {,de}compression there. Reviewed by: hoek etc. and a full build of the ports tree (4) Add LIBDIR="${LIBDIR}" to MAKE_ENV. Makes easier to "fix" ports for /usr/lib/aout mess. Submitted by: ohashi@mickey.ai.kyutech.ac.jp (Takeshi Ohashi) (5) Change ${TMPPLIST} from ${WRKDIR}/PLIST.mktmp to ${WRKDIR}/.PLIST.mktmp. Suggested by: hoek Strongly seconded by: steve (6) Change a couple more relative pathnames to absolute ones. Submitted by: hoek (7) Move checksum into real-extract. (8) Change way rules are chained. Instead of: build: configure ${BUILD_COOKIE} ${BUILD_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-build we now have build: ${BUILD_COOKIE} ${BUILD_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} configure @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-build Other than being more PC (pmake clean), this really speeds up skipping ports already built. For instance, "make package" on a fully packaged games subtree used to take 269 seconds on average, now it's 45 seconds on average. The flip side of this is that it will create more processes when the targets actually chain, but when you're actually compiling things, your make is creating half a bazzilion processes anyway so I don't think it matters. (9) ${TMPPLIST} is now a real dependency. Create "generate-plist" target to generate ${TMPPLIST}. Make sure it's called when needed (usually between do-install and post-install), and that the required files exist. (10) Change some messages so we can tell where "make index" failed. (11) Check if LIB_DEPENDS really generated the required shared lib or not. Seconded by: "Brent J. Nordquist" <bjn@visi.com>
* Add "deinstall" to list of targets. This is only fair since "install" andasami1998-08-261-3/+4
| | | | "reinstall" are already here. :)
* Reviewed by: asami@freebsd.org (Satoshi Asami)dillon1998-08-261-1/+6
| | | | | Give make.conf a make.conf.local capability similar to rc.conf's rc.conf.local capability. Eases large-site administration.
* Remove identity crisis in ispcvt(8) man page. Include reference tojkoshy1998-08-262-4/+6
| | | | | | | ispcvt(8) in pcvt(4). PR: docs/7743 Submitted by: <k-horik@yk.rim.or.jp>
* Adjust family tree to list some freebsd dates as well.jkh1998-08-191-4/+18
|
* Add "pcm.4" to Makefile.jkoshy1998-08-191-2/+3
| | | | | PR: 7636 Submitted by: <Janick.Taillandier@ratp.fr>
* Add default OBJFORMAT so that the build process can test for thisjb1998-08-181-2/+7
| | | | without having to run objformat to determine it.
* Fixed order and formatting.bde1998-08-171-10/+10
|
* Ack! I edited the MLINKS entry but forgot to add xl.4 to the MAN$=wpaul1998-08-161-2/+2
| | | | line. *hangs head in shame*
* Whoops... really add the man page and update the Makefile thiswpaul1998-08-163-1/+357
| | | | time.
* Bump version number for latest perlmarkm1998-08-151-2/+2
|
* I have added the support for BIG5 encoding into libc/libxpg4/mklocale.phk1998-08-151-2/+3
| | | | | | | | | | | the diff is attached below. This is done on the 3.0 source-tree. I have test this on 2.2-stable before, but I don't have a 3.0 machine right now. This patch is mainly to make libc support BIG5 encoding, thus add zh_TW.BIG5 locale to 3.0. Submitted by: Chen Hsiung Chan <frankch@waru.life.nthu.edu.tw>
* Remove half the file, somehow it got doubled...phk1998-08-155-573/+5
|
* PR: 7613thepish1998-08-141-2/+4
| | | | | Submitted by: Sheldon Hearn <axl@iafrica.com> set crt='' so that mail(1) will page according to stty(1) setting
* Update URL of BSD Hypertext Man Pages.wosch1998-08-131-2/+2
|
* Merge 1.227.2.45 (perl version substitution in PLIST).asami1998-08-121-3/+8
|
* Merge 1.227.2.44.asami1998-08-121-28/+55
|
* I have been running with these locale data for a while now andphk1998-08-108-6/+1144
| | | | | | | | | I hope some other people might find them useful. They are for zh_CN.EUC (GB) only. I'm not familiar with the BIG5 encoding, so I could only hope someone else would fill the gap. PR: 7310 Submitted by: Luoqi Chen <luoqi@chen.ml.org>
* Use us rather than ns, pre recent commitsimp1998-08-101-2/+2
|
* Add an emacs enhanced keyboard layout.imp1998-08-103-4/+119
| | | | Submitted by: Rob Austein <sra@epilogue.com>
* I presume Satoshi wanted ``uname -r'' for OSREL not ``uname -s''obrien1998-08-101-2/+2
| | | | Found by: gcc28 port
* Oops, forgot my source tree is at RELENG_2_2...MF22. (Add newasami1998-08-092-2/+14
| | | | categories ports-deskutils, ports-x11-{clocks,fm,fonts,toolkits,wm}.)
* New man page for pcm(4) driver. Me, I think this is more likelyjkh1998-08-092-0/+414
| | | | | | | generic and should go one level up, but it can keep the sb(4) man page company for now until somebody moves all the no-longer-x86-specific driver man pages up some day. Submitted by: luigi
* Typo fix. The PR suggested that "save are for old callslot entry" shouldalex1998-08-081-1/+1
| | | | | | | be "slot area for old callslot entry", but I think "save area for old callslot entry" is what was intended. PR: 7526
* cince --> sincealex1998-08-081-1/+1
| | | | | PR: 7525 Submitted by: ziggy@ryan.org
* Clean up all temporaries that we can generate.peter1998-08-081-9/+6
|
* Use more standard ld commands when stripping symbols out; ld -O is apeter1998-08-081-19/+37
| | | | | | freebsd-aout extension. The binutils ld doesn't understand it. Essentially this is backing out rev 1.33 for elf and other toolchain support..
* Make ../Makefile.inc handling more consistant to prevent multiple includespeter1998-08-088-8/+39
| | | | | | when certain .mk files include other .mk files. This will remove the need for multiple include protection in some other makefiles around the tree (and helps some elf conditionals).
* Remove the alpha specific __NETBSD_SYSCALLS from CFLAGS. This can stilljb1998-08-081-6/+1
| | | | | be added in /etc/make.conf. Yes folks, the alpha kernel is coming to a screen (and hopefully a disk) near you. Thanks to Doug.
* add Hungarian clooateache1998-08-071-2/+2
|
* add Hungarian ctypeache1998-08-071-2/+2
|
* add Hungarian keyboardache1998-08-073-3/+117
| | | | Submitted by: Zahemszky Gabor <zgabor@zg.CoDe.hu>
* Add Hungarian defsache1998-08-074-1/+233
| | | | Submitted by: Gabor Zahemszky <zgabor@CoDe.hu>
* Update for Perl 5.005_01markm1998-08-061-3/+3
|
OpenPOWER on IntegriCloud