summaryrefslogtreecommitdiffstats
path: root/include/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* I4B header files were repo-copied from sys/i386/include tobz2007-07-061-0/+15
| | | | | | | | | | | | sys/i4b/include/ so they will be available to all architectures once I4B compiles on those. I4B header files are now installed in include/i4b/ and no longer in include/machine/. For now we still install the headers for i386 only. Approved by: re (kensmith)
* Commit IPv6 support for FAST_IPSEC to the tree.gnn2007-07-011-1/+1
| | | | | | | | This commit includes all remaining changes for the time being including user space updates. Submitted by: bz Approved by: re
* - Remove UMAP filesystem. It was disconnected from build three years ago,rafan2007-06-251-2/+1
| | | | | | | and it is seriously broken. Discussed on: freebsd-arch@ Approved by: re (mux)
* Install only types.h from sys/rpc/.pjd2007-04-131-1/+9
| | | | | Requested by: ache Explained how by: ru
* Move rpc/types.h under sys/, as this is used by ZFS kernel module.pjd2007-04-101-1/+1
| | | | Repo-copied by: simon
* Makefile changes to reflect moving sys/isofs/cd9660 to sys/fs/cd9660.rodrigc2007-02-111-1/+8
| | | | | Continue to install userland include files in /usr/include/isofs/cd9660 so as not to break userland applications such as libstand.
* Oops, remove an objformat.h reference.peter2007-01-251-1/+1
|
* Merge posix4/* into normal kernel hierarchy.trhodes2006-11-111-2/+2
| | | | | Reviewed by: glanced at by jhb Approved by: silence on -arch@ and -standards@
* Hook up gjournal bits to the build.pjd2006-10-311-2/+2
| | | | Sponsored by: home.pl
* A GEOM cache can speed up read performance by sending fixed sizeru2006-10-061-2/+2
| | | | | | | | | | read requests to its consumer. It has been developed to address the problem of a horrible read performance of a 64k blocksize FS residing on a RAID3 array with 8 data components, where a single disk component would only get 8k read requests, thus effectively killing disk performance under high load. Documentation will be provided later. I'd like to thank Vsevolod Lobko for his bright ideas, and Pawel Jakub Dawidek for helping me fix the nasty bug.
* Prepare for upcoming bthidd(8) update. Install vkbd(4) header into dev/vkbd.emax2006-09-071-1/+1
| | | | MFC after: 1 month
* Add device to access and modify Open Firmware NVRAM settings insobomax2006-08-011-1/+5
| | | | | | | | | PowerPC-based Apple's machines and small utility to do it from userland modelled after the similar utility in Darwin/OSX. Only tested on 1.25GHz G4 Mac Mini. MFC after: 1 month
* Expose res_update and friends again. At least, ports/mail/spamilterume2006-03-301-1/+1
| | | | | | | | | uses them. Now, we have res_nupdate and res_nmkupdate as well, but they are still based on our old resolver for binary backward compatibility. So, they don't provide new features such as TSIG support. Reported by: pointyhat via kris
* Add malloc_usable_size(3).jasone2006-03-281-1/+1
| | | | Discussed with: arch@
* Extend coverage of the MK_IPX build option to the following:ru2006-03-201-2/+13
| | | | | | | | | | | | | | | | | | | | | - <netipx> headers [1] - IPX library (libipx) - IPX support in ifconfig(8) - IPXrouted(8) - new MK_NCP option New MK_NCP build option controls: - <netncp> and <fs/nwfs> headers - NCP library (libncp) - ncplist(1) and ncplogin(1) - mount_nwfs(8) - ncp and nwfs kernel modules User knobs: WITHOUT_IPX, WITHOUT_IPX_SUPPORT, WITHOUT_NCP. [1] <netsmb/netbios.h> unconditionally uses <netipx> headers so they are still installed. This needs to be dealt with.
* Merge Perforce change 93569 from TrustedBSD audit3 branch:rwatson2006-03-191-0/+1
| | | | | | | | | Do install sys/security/audit include files. It would be nice just to install audit_ioctl.h, but we seem only to support installing directories, so we get them all. The two not intended for extra- kernel use have !_KERNEL #error's, which should help. Obtained from: TrustedBSD Project
* Reimplementation of world/kernel build options. For details, see:ru2006-03-171-6/+8
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
* Hopefully fix all nearby style bugs that Bruce has mentioned.ru2006-03-101-8/+8
|
* - Fix variable assignment to be portable.ru2006-03-101-6/+6
| | | | | | - "Line up" continuations. Submitted by: bde
* Add a new extensible GSS-API layer which can support GSS-API plugins,dfr2005-12-291-2/+2
| | | | | | | | | similar the the Solaris implementation. Repackage the krb5 GSS mechanism as a plugin library for the new implementation. This also includes a comprehensive set of manpages for the GSS-API functions with text mostly taken from the RFC. Reviewed by: Love Hörnquist Åstrand <lha@it.su.se>, ru (build system), des (openssh parts)
* Add an extensible version of our *printf(3) implementation to libcphk2005-12-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on probationary terms: it may go away again if it transpires it is a bad idea. This extensible printf version will only be used if either environment variable USE_XPRINTF is defined or one of the extension functions are called. or the global variable __use_xprintf is set greater than zero. In all other cases our traditional printf implementation will be used. The extensible version is slower than the default printf, mostly because less opportunity for combining I/O operation exists when faced with extensions. The default printf on the other hand is a bad case of spaghetti code. The extension API has a GLIBC compatible part and a FreeBSD version of same. The FreeBSD version exists because the GLIBC version may run afoul of our FILE * locking in multithreaded programs and it even further eliminate the opportunities for combining I/O operations. Include three demo extensions which can be enabled if desired: time (%T), hexdump (%H) and strvis (%V). %T can format time_t (%T), struct timeval (%lT) and struct timespec (%llT) in one of two human readable duration formats: "%.3llT" -> "20349.245" "%#.3llT" -> "5h39m9.245" %H will hexdump a sequence of bytes and takes a pointer and a length argument. The width specifies number of bytes per line. "%4H" -> "65 72 20 65" "%+4H" -> "0000 65 72 20 65" "%#4H" -> "65 72 20 65 |er e|" "%+#4H" -> "0000 65 72 20 65 |er e|" %V will dump a string in strvis format. "%V" -> "Hello\tWor\377ld" (C-style) "%0V" -> "Hello\011Wor\377ld" (octal) "%+V" -> "Hello%09Wor%FFld" (http-style) Tests, comments, bugreports etc are most welcome.
* Install the mqueue.h header.ru2005-12-011-1/+2
|
* Remove commented out reference to posix4/mqueue.h. It hasn't been installedrodrigc2005-11-281-2/+1
| | | | | for 3 years, and now we have another (working) implementation of POSIX message queues elsewhere in the source tree.
* Since speaker.h now lives in sys/dev/speaker, reflect this fact here.delphij2005-11-111-1/+1
|
* Add the lmcconfig tool for controlling the lmc driver. Add man pages andscottl2005-10-031-1/+1
| | | | | | glue. Submitted by: David Boggs
* Back out 1.247. On ia64 <osreldate.h> is included from assembler source,stefanf2005-09-141-1/+0
| | | | | | the prototype broke buildword. Noticed by: marcel
* Put a getosreldate() prototype into <osreldate.h>, getosreldate(3) impliesstefanf2005-09-121-0/+1
| | | | there is one.
* Respect the YES_HESIOD build variable.phk2005-08-061-1/+5
|
* Connect GEOM_ELI class to the build.pjd2005-07-271-2/+2
| | | | MFC after: 1 week
* MFP4:jkoshy2005-06-091-1/+1
| | | | | | | | | | | | | | | | - Implement sampling modes and logging support in hwpmc(4). - Separate MI and MD parts of hwpmc(4) and allow sharing of PMC implementations across different architectures. Add support for P4 (EMT64) style PMCs to the amd64 code. - New pmcstat(8) options: -E (exit time counts) -W (counts every context switch), -R (print log file). - pmc(3) API changes, improve our ability to keep ABI compatibility in the future. Add more 'alias' names for commonly used events. - bug fixes & documentation.
* Correct mistake in previous commit: add 'bsm' to LDIRS not LSUBDIRS.rwatson2005-05-301-2/+2
| | | | Pointy hat: over here, please
* Do install BSM include files (such as they are) when installing systemrwatson2005-05-291-1/+1
| | | | | | | includes. Submitted by: wsalamon Obtained from: TrustedBSD Project
* Make <runefile.h> internal to libc.ru2005-05-161-1/+1
| | | | Suggested by: phantom
* Conditionalize the ipfilter header files on NO_IPFILTER. While normally thesescottl2005-04-261-0/+4
| | | | | | | should be harmless, the kdump(1) build does evil things with collecting system header files, and thus would unconditionally collect and process these. MFC After: 3 days
* Make sure that $_MARCH and friends existimp2005-04-031-0/+8
| | | | Submitted by: nyan@
* When $MACHINE != $MACHINE_ARCH, install $MACHINE_ARCH/include intoimp2005-04-011-10/+39
| | | | | /usr/include/$MACHINE_ARCH in addition to installing $MACHINE/include into /usr/include/machine.
* just use crypto/rijndael, and nuke opencrypto/rindael.[ch].ume2005-03-111-0/+8
| | | | | | the two became almost identical since latest KAME merge. Discussed with: sam
* Only install acpiio.h in /usr/include. That's all we want to export to users.njl2005-03-021-2/+10
| | | | | Submitted by: ru (any bugs by me) MFC after: 1 day
* Sync the list of headers visible with SHARED=symlinks with thoseru2005-03-021-1/+6
| | | | | | visible with SHARED=copies. Inspired by: njl
* Install acpi includes in dev/acpica. This should later be trimmed (the pcinjl2005-02-281-1/+2
| | | | | | | bus one is not needed) and ifdef _KERNEL added. PR: kern/74215 MFC after: 1 day
* Make the format of LC_CTYPE files architecture independent byru2005-02-261-1/+2
| | | | | | | | | | | | | introducing the disk formats for _RuneLocale and friends. The disk formats do not have (useless) pointers and have 32-bit quantities instead of rune_t and long. (htonl(3) only works with 32-bit quantities, so there's no loss). Bootstrap mklocale(1) when necessary. (Bootstrapping from 4.x would be trivial (verified), but we no longer provide pre-5.3 source upgrades and this is the first commit to actually break it.)
* Install GPIB related includefiles (unless NO_GPIB)phk2005-02-061-2/+6
|
* Fix the pbio include file installation process and thedds2005-01-141-5/+8
| | | | | | | corresponding documentation. Noticed by: ru Reviewed by: ru
* Add missing entry.pjd2005-01-111-1/+1
| | | | Reported by: sos
* Fixed transition from SHARED=symlinks to SHARED=copies.ru2004-11-171-1/+1
|
* Help Tinderbox and remove autofsmarkm2004-11-101-1/+1
|
* Remove the obsolete <rune.h> interface.tjr2004-10-171-1/+1
|
* 1. Add much finer granularity to the NO_BIND knobs with the addition of:dougb2004-09-271-0/+5
| | | | | | | | | NO_BIND_DNSSEC, NO_BIND_ETC, NO_BIND_NAMED, and NO_BIND_UTILS. 2. Make creation of directories in /usr/include that are only needed in the WITH_BIND_LIBS case conditional. Reviewed by: ru, des
* Pass the idea of the make(1) binary to use down to newvers.sh.ru2004-09-171-1/+1
| | | | | | | | | | | | | This is necessary so source upgrades use the correct binary. MFC after: 3 days For the record: Problem spotted by Scott Long, who mentioned that source upgrades from 4.7 to recent 5.x and 6.0 are broken. Detailed analysis shows that 4.7 has a broken make(1) binary. A breakage was fixed in RELENG_4 in make/main.c,v 1.35.2.7 by imp@, though the commit log erroneously stated "MFC 1.68" while in fact it should have been spelled as "MFC 1.67".
* Install netflow includes.glebius2004-09-161-2/+3
| | | | Approved by: julian (mentor)
OpenPOWER on IntegriCloud