summaryrefslogtreecommitdiffstats
path: root/include/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* 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)
* Hook autofs to the build.alfred2004-09-021-1/+1
|
* Connect RAID3 GEOM class to the build.pjd2004-08-161-1/+2
|
* Sort in dictionary order.tjr2004-08-121-1/+1
| | | | Suggested by: ru
* Move some internal macros and inlines from ctype.h to a new file, _ctype.h,tjr2004-08-121-1/+2
| | | | | | which has been repo-copied from ctype.h. This will allow us to remove namespace pollution from <wctype.h> and to make wcwidth() an inline function without introducing more pollution.
* Implement C99's standard header <tgmath.h>. It provides type-generic macrosstefanf2004-08-081-1/+2
| | | | | | | for the <math.h> and <complex.h> functions that have float, double and long double implementations. Such type-generic macros expand to an actual function, depending on the types of the macro arguments, eg. if <tgmath.h> is included, the invocation cos(1.0f) calls the function cosf().
* Connect GEOM_MIRROR class to the build.pjd2004-07-301-1/+1
|
* Add proc_service.h, the common file both debugger and libthread_db willdavidxu2004-07-151-1/+1
| | | | | use, program wants to load libthread_db.so should provid proc service interface.
* Add implementations of ftw(3) and nftw(3) and the corresponding headerdas2004-07-051-1/+2
| | | | | | | | ftw.h. This is the implementation written by Joel Baker <fenton@debian.org> for inclusion in NetBSD, but with several bugfixes. Obtained from: Debian
* Introduce GEOM_LABEL class.pjd2004-07-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | This class is used for detecting volume labels on file systems: UFS, MSDOSFS (FAT12, FAT16, FAT32) and ISO9660. It also provide native labelization (there is no need for file system). g_label_ufs.c is based on geom_vol_ffs from Gordon Tetlow. g_label_msdos.c and g_label_iso9660.c are probably hacks, I just found where volume labels are stored and I use those offsets here, but with this class it should be easy to do it as it should be done by someone who know how. Implementing volume labels detection for other file systems also should be trivial. New providers are created in those directories: /dev/ufs/ (UFS1, UFS2) /dev/msdosfs/ (FAT12, FAT16, FAT32) /dev/iso9660/ (ISO9660) /dev/label/ (native labels, configured with glabel(8)) Manual page cleanups and some comments inside were submitted by Simon L. Nielsen, who was, as always, very helpful. Thanks!
* Link ALTQ to the build and break with ABI for struct ifnet. Please recompilemlaier2004-06-131-0/+8
| | | | | | | | | | | | your (network) modules as well as any userland that might make sense of sizeof(struct ifnet). This does not change the queueing yet. These changes will follow in a seperate commit. Same with the driver changes, which need case by case evaluation. __FreeBSD_version bump will follow. Tested-by: (i386)LINT
* - Install includes used by STRIPE and NOP GEOM classes.pjd2004-05-201-1/+1
| | | | | | - Create needed directories. Supported by: Wheel - Open Technologies - http://www.wheel.pl
* - Look into geom/gate/ and geom/concat/ for includes.pjd2004-04-301-2/+3
| | | | | - Put geom/ subdirectories into separate line, while there are more to come.
* Add skeleton build dirs for pf userland:mlaier2004-02-281-0/+8
| | | | | | | | | | | | | | | | | | libexec/ftp-proxy - ftp proxy for pf sbin/pfctl - equivalent to sbin/ipf sbin/pflogd - deamon logging packets via if_pflog in pcap format usr.sbin/authpf - authentification shell to modify pf rulesets Bring along some altq headers used to satisfy pfctl/authpf compile. This helps to keep the diff down and will make it easy to have a altq-patchset use the full powers of pf. Also make sure that the pf headers are installed. This does not link anything to the build. There will be a NO_PF switch for make.conf once pf userland is linked. Approved by: bms(mentor)
* Add NO_BLUETOOTH knob to the build processemax2004-01-281-0/+2
| | | | | Requested by: phk Reviewed by: imp (mentor), ru
* Move the bktr(4) <arch>/include/ioctl_{bt848,meteor}.h files to dev/bktrobrien2003-12-081-3/+6
| | | | | | as these ioctl's aren't MD. This also means they are installed in /usr/include/dev/bktr now. Also provide compatability wrappers for where these headers lived in 4.x.
* Fix sort order.obrien2003-12-081-1/+1
|
* Install UDF header files to unbreak /sbin building when /sys is not present.scottl2003-11-221-1/+1
| | | | Submitted by: imura@ryu16.org
* *blush*. stdhash.h != strhash.hpeter2003-10-291-1/+1
| | | | Sorry folks.
* Add a new machine independent varargs.h and use it as a central placekan2003-09-011-3/+3
| | | | | | | to announce the demise of varargs support in GCC versions 3.3+ and to direct users to stdarg.h instead. Fall back to machine/varargs.h for older GCC versions.
* Don't be so chatty about osreldate.h creation steps when make(1)ru2003-07-041-1/+1
| | | | is run in non-compat mode (-j without -B).
* enable installation of sys/net80211sam2003-06-281-2/+2
|
* back out install of net80211 include files until I can remove the old codesam2003-06-251-2/+2
|
* install new 802.11 headerssam2003-06-251-2/+2
|
* Install the include file for the netgraph ATM node.harti2003-06-251-2/+3
|
* Bring back IPFilter headers to /usr/include, now that SHARED=symlinksru2003-06-231-2/+10
| | | | | | installs the per-header symlinks. Prodded by: many
* This is a driver for the physical layer chips used in ATM interfaces.harti2003-06-121-1/+1
| | | | | | | It currently supports the PMC Sierra Lite, Ultra and 622 chips and the IDT 77105. The driver handles media options and state in a consistent manner for ATM drivers. The next commit to the midway driver will make it use utopia.
* Install symlinks to individual headers instead of symlinks to directoriesbde2003-05-051-39/+67
| | | | | | | | | | | in the SHARED=symlinks case. Symlinks to directories only work if all the the necessary headers are in 1 directory, but the necessary headers are scattered for at least ipfilter headers in <netinet>. This change also avoids polluting /usr/include with non-headers; the /usr/include hierarchy is now independent of the setting of SHARED. Submitted by: ru (edited to fix netgraph/bluetooth/include and machine/pc) PR: 44148
* = Implement name service switch modules (NSS modules). NSS modulesnectar2003-04-171-1/+2
| | | | | | | | | | | | | | | | | | | | | may be built into libc (`static NSS modules') or dynamically loaded via dlopen (`dynamic NSS modules'). Modules are loaded/initialized at configuration time (i.e. when nsdispatch is called and nsswitch.conf is read or re-read). = Make the nsdispatch(3) core thread-safe. = New status code for nsdispatch(3) `NS_RETURN', currently used to signal ERANGE-type issues. = syslog(3) problems, don't warn/err/abort. = Try harder to avoid namespace pollution. = Implement some shims to assist in porting NSS modules written for the GNU C Library nsswitch interface. Sponsored by: DARPA, Network Associates Laboratories
* Drop netns from include file installationpeter2003-03-051-1/+1
|
* Install geom include files.phk2003-02-081-1/+1
|
* Install /sys/dev/firewire/*.h under /usr/include/dev/firewiresimokawa2002-12-301-2/+2
| | | | for userland utilities.
* Add the POSIX <wordexp.h> header file.tjr2002-12-261-1/+2
| | | | PR: 13420
* Don't install old LOMAC include files; do install new mac_lomacrwatson2002-12-031-1/+1
| | | | | | | | include files. Approved by: re (jhb) Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Align the comment with functionality changes from previous revision.ru2002-11-251-4/+3
| | | | Approved by: re
* Re-enable installing of Bluetooth include filesjulian2002-11-211-2/+2
| | | | Hopefully this time it works right.. Who understands this stuff?
* Temporarily remove the install of bluetooth include files..julian2002-11-211-1/+2
| | | | | something "VERY WIERD" happens to them during buildworld.. The sources get replaced by symlinks to themselves (!?)
* Populate with bluetooth includesjulian2002-11-211-0/+1
|
* libc header files are normally in src/include. Therefore, uuid.h hasmarcel2002-11-181-14/+10
| | | | | | | | | | been repo-copied from src/lib/libc/uuid to src/include. Update the makefiles. While in src/include/Makefile, reformat and resort INCS. Reverting the functional change only involves removing uuid.h. Pompted by: ru
* Install mac_partition include files.rwatson2002-10-241-1/+1
| | | | | Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Install the include files in sys/dev/ofw.tmm2002-10-181-1/+1
|
* install "fast ipsec" include filessam2002-10-181-1/+1
|
* Remove duplicate uninstalled aio.h header.mike2002-10-071-2/+1
|
* install sys/opencrypto include files in /usr/include/cryptosam2002-10-041-1/+6
|
* test -h is deprecated; use -L instead.ru2002-10-011-1/+1
| | | | PR: bin/40846
OpenPOWER on IntegriCloud