summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* `all-man' now creates manpages in the -DNOMANCOMPRESS case too.ru2002-05-152-2/+0
|
* Stub out _kvm_mdopen, we don't the same constants as NetBSDobrien2002-05-151-0/+2
|
* Add a PowerPC machdep for kvm.obrien2002-05-151-0/+101
| | | | Obtained from: NetBSD (rev 1.4, pre-UVM)
* Undo namespace pollution by prefixing the globals pthread_guard_default andalfred2002-05-1512-78/+87
| | | | | | | | pthread_page_size. Fix a bunch line wrapping. Pointed out by: deischen
* Use .rodata section for $FreeBSD$.obrien2002-05-156-12/+20
|
* I somehow managed to forgot to commit this in my INCS sweep.ru2002-05-141-4/+0
| | | | We don't need the `beforeinstall' here, INCS handles this.
* New cpp(1) doesn't like -I${DESTDIR}/usr/include.ru2002-05-141-1/+1
|
* Document Q_GETQUOTA returning EINVAL when quotas are not enabledroam2002-05-141-0/+4
| | | | | | | | | on the filesystem. PR: doc/37839 Submitted by: "Michael R. Wayne" <wayne@staff.msen.com> Approved by: silence on -doc MFC after: 3 days
* string cleanup:ken2002-05-141-14/+12
| | | | | | | | | | | - fix a potential overrun made worse by rev 1.5 of camlib.h - change strncpy() and strcpy() calls to strlcpy() - use sizeof(string[]) instead of STRING_LEN to avoid future problems - get rid of an unused variable Thanks to BDE for pointing out some of the problems. MFC after: 2 weeks
* Use the right byte order for unaligned stores. <blush>.jake2002-05-131-1/+1
|
* Fixed CLEANFILES after bsd.lib.mk sweep.ru2002-05-136-0/+12
|
* Add __divdi3() and __moddi3() to libstand. We will need them for UFS2.phk2002-05-131-0/+48
| | | | Sponsored by: DARPA & NAI Labs.
* MAN[1-9] -> MAN.ru2002-05-132-3/+2
|
* NOSHARED is meaningless in the bsd.lib.mk context.ru2002-05-131-1/+0
|
* SOBJS are not used here for a long time, and were justru2002-05-136-24/+12
| | | | pessimising the `install'.
* Removed now unused INTERNALSTATICLIB.ru2002-05-135-10/+0
| | | | | INTERNALLIB now implies NOPIC and NOPROFILE. Removed gratuitous NOMAN.
* Major cleanup of bsd.lib.mk.ru2002-05-137-29/+2
| | | | | | | Get rid of the INTERNALSTATICLIB knob and just use plain INTERNALLIB. INTERNALLIB now means to build static library only and don't install anything. Added a NOINSTALLLIB knob for libpam/modules. To not build any library at all, just do not set LIB.
* Removed the a.out compatibility cruft.ru2002-05-135-97/+2
| | | | | libgnumalloc.so.2 and libresolv.so.2 should be put under lib/compat/compat2?/ but I don't have the 2.x releases.
* Don't use PAGE_SIZE in userland, instead use getpagesize(), this is toalfred2002-05-1312-63/+108
| | | | | | | allow running on other arches when the instructions are supported but the page size granularity is not. Glanced at by: peter
* Handle alignment fault fixups in libc rather than in the kernel.jake2002-05-135-2/+120
|
* #include <sys/disklabel.h> to get BBSIZE.phk2002-05-121-0/+1
|
* Retire the bogus uses of the disklabel field d_sbsize and begin tophk2002-05-122-4/+2
| | | | | | | initialize it to zero so we don't have to have everbody and their aunt including FFS specific header files. Sponsored by: DARPA & NAI Labs.
* Revert the last change. The corresponding bsd.lib.mk changes wereru2002-05-126-6/+25
| | | | already backed out.
* Added new bsd.incs.mk which handles installing of header filesru2002-05-1210-62/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | via INCS. Implemented INCSLINKS (equivalent to SYMLINKS) to handle symlinking include files. Allow for multiple groups of include files to be installed, with the powerful INCSGROUPS knob. Documentation to follow. Added standard `includes' and `incsinstall' targets, use them in Makefile.inc1. Headers from the following makefiles were not installed before (during `includes' in Makefile.inc1): kerberos5/lib/libtelnet/Makefile lib/libbz2/Makefile lib/libdevinfo/Makefile lib/libform/Makefile lib/libisc/Makefile lib/libmenu/Makefile lib/libmilter/Makefile lib/libpanel/Makefile Replaced all `beforeinstall' targets for installing includes with the INCS stuff. Renamed INCDIR to INCSDIR, for consistency with FILES and SCRIPTS, and for compatibility with NetBSD. Similarly for INCOWN, INCGRP, and INCMODE. Consistently use INCLUDEDIR instead of /usr/include. gnu/lib/libstdc++/Makefile and gnu/lib/libsupc++/Makefile changes were only lightly tested due to the missing contrib/libstdc++-v3. I fully tested the pre-WIP_GCC31 version of this patch with the contrib/libstdc++.295 stuff. These changes have been tested on i386 with the -DNO_WERROR "make world" and "make release".
* Add a prototype for rad_get_vendor_attr().brian2002-05-121-8/+6
| | | | Forgotten by: brian
* Don't declare krb5_mcc_ops, it's already declared in <krb5.h>des2002-05-121-2/+0
|
* s/demon/daemon/dd2002-05-121-1/+1
|
* Document that <netinet/in.h> can also provide prototypes. Changemike2002-05-111-2/+6
| | | | wording related to standards conformance.
* Add a support macro to convert the 5-bit packed register field ofjake2002-05-113-66/+90
| | | | | | | | | | | | | | a floating point instruction into a 6-bit register number for double and quad arguments. Make use of the new INSFPdq_RN macro where apporpriate; this is required for correctly handling the "high" fp registers (>= %f32). Fix a number of bugs related to the handling of the high registers which were caused by using __fpu_[gs]etreg() where __fpu_[gs]etreg64() should be used (the former can only access the low, single-precision, registers). Submitted by: tmm
* We don't need libgnumalloc or libresolv on ELF systems.obrien2002-05-111-1/+1
|
* Use the simpler NOMAN rather than NOMAN, NOPIC, NOPROFILE, INTERNALLIB.obrien2002-05-116-25/+6
|
* Use GCC's __attribute__ ((constructor)) mechanism to invoke the pthreadalfred2002-05-116-38/+132
| | | | | | | startup code rather than a static C++ object since c++ seems to be broken. This doesn't seem to work for staticically linked program just yet, I'll give that some more work when I get a chance.
* Mention the other RAS_PORT_TYPEs from rfc2865brian2002-05-111-0/+14
| | | | Suggested by: "lsz8425" <lsz8425@mail.cd.hn.cn>
* Avoid casting a different sized integer to a pointer on LP64 systems.peter2002-05-101-1/+1
|
* Add rad_get_vendor_attr() for deciphering vendor attributes receivedbrian2002-05-102-1/+34
| | | | from the RADIUS server.
* Use the compiler's crt{begin,end}.obrien2002-05-101-2/+1
|
* Replace /kernel with /boot/kernel/kernel.joe2002-05-091-1/+1
| | | | | PR: docs/37757 Submitted by: Hiten Pandya <hiten@uk.FreeBSD.org>
* Some updates to mention accept filters and howsilby2002-05-082-2/+33
| | | | | | listen queues work in a syncache world. MFC after: 3 days
* If no old_pw was passed to pw_copy, compare just the name.des2002-05-081-1/+2
| | | | Sponsored by: DARPA, NAI Labs
* Use libutil and libypclnt for all passwd manipulation and NIS needs.des2002-05-082-22/+41
| | | | Sponsored by: DARPA, NAI Labs
* Add passwd manipulation code based on parts of vipw and chpass.des2002-05-083-86/+438
| | | | Sponsored by: DARPA, NAI Labs
* Add ypclnt_havepasswd(), and guard against a possible segfault.des2002-05-082-12/+33
| | | | Sponsored by: DARPA, NAI Labs
* Add a no_fail option.des2002-05-082-6/+20
| | | | Sponsored by: DARPA, NAI Labs
* Add pam_ftpusers(8), which enforces /etc/ftpusers.des2002-05-084-0/+222
| | | | Sponsored by: DARPA, NAI Labs
* Fix bug that causes passwd and friends to fail when the user has a '+' indes2002-05-071-0/+3
| | | | | | their passwd file for NIS because _PWF_SOURCE is not set. Submitted by: amigus (perforce change 10969)
* Fix the copyright dates.obrien2002-05-071-1/+1
|
* Add support for vendor specific RADIUS extensions.brian2002-05-075-1/+158
| | | | Only the extensions from rfc2548 are specified for now.
* Use __FBSDIDobrien2002-05-061-2/+3
|
* We typically don't add trailing /'s.obrien2002-05-061-1/+1
|
* Document the lchflags(2) syscall.mux2002-05-052-1/+14
|
OpenPOWER on IntegriCloud