The NetBSD Project

CVS log for src/include/Makefile

[BACK] Up to [cvs.NetBSD.org] / src / include

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.144.4.1 / (download) - annotate - [select for diffs], Mon Jun 10 22:05:12 2019 UTC (4 years, 9 months ago) by christos
Branch: phil-wifi
Changes since 1.144: +6 -4 lines
Diff to previous 1.144 (colored) next main 1.145 (colored) to selected 1.22 (colored)

Sync with HEAD

Revision 1.146 / (download) - annotate - [select for diffs], Tue Jun 4 15:07:55 2019 UTC (4 years, 9 months ago) by hannken
Branch: MAIN
CVS Tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, phil-wifi-20190609, netbsd-9-base, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, netbsd-10-base, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10, is-mlppp-base, is-mlppp, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x, HEAD
Changes since 1.145: +2 -1 lines
Diff to previous 1.145 (colored) to selected 1.22 (colored)

Move the basic part of XDR to common/include/rpc and common/lib/libc/rpc.

No functional change intended.

Revision 1.145 / (download) - annotate - [select for diffs], Wed Apr 24 10:26:08 2019 UTC (4 years, 11 months ago) by roy
Branch: MAIN
Changes since 1.144: +5 -4 lines
Diff to previous 1.144 (colored) to selected 1.22 (colored)

Don't install YP headers when MKYP=no

Revision 1.143.6.1 / (download) - annotate - [select for diffs], Mon Dec 4 19:48:55 2017 UTC (6 years, 3 months ago) by snj
Branch: netbsd-8
CVS Tags: netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1
Changes since 1.143: +3 -3 lines
Diff to previous 1.143 (colored) next main 1.144 (colored) to selected 1.22 (colored)

Pull up following revision(s) (requested by maya in ticket #416):
	distrib/sets/lists/comp/mi: revision 1.2152
	include/Makefile: revision 1.144
	include/endian.h: revision 1.1
Add endian.h header.  Simply includes sys/endian.h
<endian.h> has been accepted by the austin group.

Revision 1.144 / (download) - annotate - [select for diffs], Mon Oct 16 11:38:25 2017 UTC (6 years, 5 months ago) by maya
Branch: MAIN
CVS Tags: phil-wifi-base, pgoyette-compat-merge-20190127, pgoyette-compat-base, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, pgoyette-compat
Branch point for: phil-wifi
Changes since 1.143: +3 -3 lines
Diff to previous 1.143 (colored) to selected 1.22 (colored)

Add endian.h header.  Simply includes sys/endian.h

<endian.h> has been accepted by the austin group.

Revision 1.141.2.1 / (download) - annotate - [select for diffs], Fri Nov 4 14:48:51 2016 UTC (7 years, 4 months ago) by pgoyette
Branch: pgoyette-localcount
Changes since 1.141: +6 -5 lines
Diff to previous 1.141 (colored) next main 1.142 (colored) to selected 1.22 (colored)

Sync with HEAD

Revision 1.143 / (download) - annotate - [select for diffs], Sun Oct 2 17:19:00 2016 UTC (7 years, 5 months ago) by kamil
Branch: MAIN
CVS Tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-8-base, matt-nb8-mediatek-base, matt-nb8-mediatek, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Branch point for: netbsd-8
Changes since 1.142: +1 -1 lines
Diff to previous 1.142 (colored) to selected 1.22 (colored)

Import <stdalign.h>

This header conforms to the C11 standard
Reference: ISO/IEC 9899:201x 7.15 Alignment <stdalign.h>

According to ISO/IEC 9899:201x (draft) 7.15 Alignment <stdalign.h> defines
four macros:
 - alignas which expands to _Alignas
 - alignof which expands to _Alignof
 - __alignas_is_defined and __alignof_is_defined which both expand to 1

The _Alignas declaration appears as one of the type specifiers to modify
the alignment requirement of the object being declared.

The _Alignof operator is used to query the alignment requirement of its
operand type.

ISO/IEC N3242=11-0012 (C++1x) and ISO/IEC N3797 (C++1y) both note a header
<cstdalign> which defines only __alignas_is_defined and shall not define
the alignas macro. It misses the alignof case as it's probably based on an
older C1x draft, which defined only alignas. Assume that this is a bug in
the standard and treat alignof the same way as alignas in C++11.

Allow to define alignas and alignof in C++ prior the C++11 standard. It
might be broken but a nonstandard C++ compiler might support C11-like
_Alignas and _Alignof. Note that it's fatal for g++(1) v.5.4.

Revision 1.142 / (download) - annotate - [select for diffs], Sun Oct 2 13:09:24 2016 UTC (7 years, 5 months ago) by kamil
Branch: MAIN
Changes since 1.141: +5 -4 lines
Diff to previous 1.141 (colored) to selected 1.22 (colored)

Import <stdnoreturn.h>

This header conforms to the C11 standard
Reference: ISO/IEC 9899:201x 7.23 _Noreturn <stdnoreturn.h>

According to ISO/IEC 9899:201x (draft) <stdnoreturn.> defines the
noreturn macro which expands to _Noreturn.

The _Noreturn keyword appears in a function declaration and specifies
that the function does not return by reaching the end of the function
body.

Design choices:
 - don't implicitly break C++ code including this header with #error
   C++11 offers [[noreturn]] which conflicts with C11 _Noreturn

 - don't check for __STDC_VERSION__, everybody is free to reuse it with
   a nonstandard compiler not conforming to C11 but supporting _Noreturn

   gcc(1) and clang(1) support _Noreturn in -std=c99 and older standards

   this follows <stdbool.h> choice for not checking for C99

 - follow <stdbool.h> and declare the __noreturn_is_defined guard

 - use a standard header guard (_STDNORETURN_H_), similar to <stdbool.h>

Reviewed by <pgoyette> and <joerg>

Revision 1.141 / (download) - annotate - [select for diffs], Wed Jul 29 00:10:26 2015 UTC (8 years, 8 months ago) by christos
Branch: MAIN
CVS Tags: pgoyette-localcount-base, pgoyette-localcount-20160806, pgoyette-localcount-20160726, localcount-20160914
Branch point for: pgoyette-localcount
Changes since 1.140: +2 -2 lines
Diff to previous 1.140 (colored) to selected 1.22 (colored)

move stdbool.h to sys, reuire pool.h to include <sys/stdbool.h> for bool,
centralize definitions of bool, true, false, to <sys/stdbool.h>

Revision 1.139.6.1 / (download) - annotate - [select for diffs], Wed Aug 20 00:02:05 2014 UTC (9 years, 7 months ago) by tls
Branch: tls-maxphys
Changes since 1.139: +2 -2 lines
Diff to previous 1.139 (colored) next main 1.140 (colored) to selected 1.22 (colored)

Rebase to HEAD as of a few days ago.

Revision 1.136.2.2 / (download) - annotate - [select for diffs], Thu May 22 11:36:35 2014 UTC (9 years, 10 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.136.2.1: +2 -2 lines
Diff to previous 1.136.2.1 (colored) to branchpoint 1.136 (colored) next main 1.137 (colored) to selected 1.22 (colored)

sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

Revision 1.140 / (download) - annotate - [select for diffs], Wed Dec 11 01:24:08 2013 UTC (10 years, 3 months ago) by joerg
Branch: MAIN
CVS Tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7
Changes since 1.139: +2 -2 lines
Diff to previous 1.139 (colored) to selected 1.22 (colored)

Allow kernel code to access constant databases by moving cdbr(3) and the
required mi_vector_hash(3) into src/common.

Revision 1.136.2.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:05:10 2012 UTC (11 years, 11 months ago) by yamt
Branch: yamt-pagecache
CVS Tags: yamt-pagecache-tag8
Changes since 1.136: +4 -5 lines
Diff to previous 1.136 (colored) to selected 1.22 (colored)

sync with head

Revision 1.139 / (download) - annotate - [select for diffs], Sat Feb 11 23:31:24 2012 UTC (12 years, 1 month ago) by martin
Branch: MAIN
CVS Tags: yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, yamt-pagecache-base4, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, agc-symver-base, agc-symver
Branch point for: tls-maxphys
Changes since 1.138: +3 -3 lines
Diff to previous 1.138 (colored) to selected 1.22 (colored)

Add userland part of posix_spawn. Libc functions imported from FreeBSD.
Based on Charles Zhang's summer of code project.

Revision 1.138 / (download) - annotate - [select for diffs], Sun Feb 5 14:19:02 2012 UTC (12 years, 1 month ago) by dholland
Branch: MAIN
Changes since 1.137: +1 -2 lines
Diff to previous 1.137 (colored) to selected 1.22 (colored)

Migrate one last leftover bit (used only by the kernel now) to
sys/ufs/ufs and remove the old quota headers and no-longer-used shared
code. Ok by releng.

Revision 1.137 / (download) - annotate - [select for diffs], Mon Jan 9 15:19:45 2012 UTC (12 years, 2 months ago) by dholland
Branch: MAIN
Changes since 1.136: +2 -2 lines
Diff to previous 1.136 (colored) to selected 1.22 (colored)

Add <quota.h> with the new libquota API.

This is the user/application API and does not include the kernel
interface. Definitions shared with the kernel are found in
<sys/quota.h>.

Since I've been working on a local branch I have taken the liberty of
moving the latest-so-far version of <quota.h> to the front of the
patch queue. This loses (a small amount of) history but has the
advantage of avoiding unnecessary version bumps of libquota.so.

Revision 1.136 / (download) - annotate - [select for diffs], Fri Aug 26 21:22:10 2011 UTC (12 years, 7 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base
Branch point for: yamt-pagecache
Changes since 1.135: +2 -1 lines
Diff to previous 1.135 (colored) to selected 1.22 (colored)

Build and install ppath(3), property-list paths library.

Revision 1.135 / (download) - annotate - [select for diffs], Sun Jul 17 20:54:34 2011 UTC (12 years, 8 months ago) by joerg
Branch: MAIN
Changes since 1.134: +2 -2 lines
Diff to previous 1.134 (colored) to selected 1.22 (colored)

Retire varargs.h support. Move machine/stdarg.h logic into MI
sys/stdarg.h and expect compiler to provide proper builtins, defaulting
to the GCC interface. lint still has a special fallback.
Reduce abuse of _BSD_VA_LIST_ by defining __va_list by default and
derive va_list as required by standards.

Revision 1.134 / (download) - annotate - [select for diffs], Thu Mar 24 17:05:42 2011 UTC (13 years ago) by bouyer
Branch: MAIN
CVS Tags: cherry-xenmp-base, cherry-xenmp
Changes since 1.133: +2 -1 lines
Diff to previous 1.133 (colored) to selected 1.22 (colored)

Add a new libquota library, which contains some blocks to build and/or
parse quota plists; as well as a getfsquota() function to retrieve quotas
for a single id from a single filesystem (whatever filesystem this is:
a local quota-enabled fs or NFS). This is build on functions getufsquota()
(for local filesystems with UFS-like quotas) and getnfsquota();
which are also available to userland programs.
move functions from quota2_subr.c to libquota or libprop as appropriate,
and ajust in-tree quota tools.
move some declarations from kernel headers to either sys/quota.h or
quota/quota.h as appropriate. ufs/ufs/quota.h still installed because
it's needed by other installed ufs headers.
ufs/ufs/quota1.h still installed as a quick&dirty way to get a code
using the old quotactl() to compile (just include ufs/ufs/quota1.h instead of
ufs/ufs/quota.h - old code won't compile without this change and this is
on purpose).
Discussed on tech-kern@ and tech-net@ (long thread, but not much about
libquota itself ...)

Revision 1.131.16.2 / (download) - annotate - [select for diffs], Tue Aug 17 06:40:00 2010 UTC (13 years, 7 months ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.131.16.1: +1 -1 lines
Diff to previous 1.131.16.1 (colored) to branchpoint 1.131 (colored) next main 1.132 (colored) to selected 1.22 (colored)

Sync with HEAD.

Revision 1.133 / (download) - annotate - [select for diffs], Sat Jul 31 21:47:53 2010 UTC (13 years, 8 months ago) by joerg
Branch: MAIN
CVS Tags: uebayasi-xip-base7, uebayasi-xip-base6, uebayasi-xip-base5, uebayasi-xip-base4, uebayasi-xip-base3, uebayasi-xip-base2, matt-mips64-premerge-20101231, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Changes since 1.132: +2 -2 lines
Diff to previous 1.132 (colored) to selected 1.22 (colored)

Add support for fenv.h interface for i386 and amd64.

Submitted by Stathis Kamperis as part of GSoC 2010 and ported from
FreeBSD.

Revision 1.131.16.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:36:17 2010 UTC (13 years, 11 months ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.131: +2 -2 lines
Diff to previous 1.131 (colored) to selected 1.22 (colored)

Sync with HEAD.

Revision 1.132 / (download) - annotate - [select for diffs], Sun Apr 25 00:54:45 2010 UTC (13 years, 11 months ago) by joerg
Branch: MAIN
CVS Tags: uebayasi-xip-base1
Changes since 1.131: +2 -2 lines
Diff to previous 1.131 (colored) to selected 1.22 (colored)

Add the constant database reader (cdbr(3)) and writer ((cdbw(3)).
They implement a space efficent write-once database with fast access
path. Switch the services(5) database to use cdb. The size of the
database file decreases from 2.1MB disk space to 307KB. Access
performance is about the same if setservent(0) is used and about an
order of magnitude faster otherwise. services_mkdb defaults to the new
format, but can optionally create the old db(3) format as well for
statically linked legacy applications.

Revision 1.130.8.1 / (download) - annotate - [select for diffs], Mon Jun 23 04:29:29 2008 UTC (15 years, 9 months ago) by wrstuden
Branch: wrstuden-revivesa
Changes since 1.130: +3 -2 lines
Diff to previous 1.130 (colored) next main 1.131 (colored) to selected 1.22 (colored)

Sync w/ -current. 34 merge conflicts to follow.

Revision 1.130.6.1 / (download) - annotate - [select for diffs], Wed Jun 4 02:04:33 2008 UTC (15 years, 9 months ago) by yamt
Branch: yamt-pf42
Changes since 1.130: +3 -2 lines
Diff to previous 1.130 (colored) next main 1.131 (colored) to selected 1.22 (colored)

sync with head

Revision 1.131.8.2 / (download) - annotate - [select for diffs], Wed May 28 12:28:13 2008 UTC (15 years, 10 months ago) by ad
Branch: christos-time_t
Changes since 1.131.8.1: +49 -0 lines
Diff to previous 1.131.8.1 (colored) to branchpoint 1.131 (colored) next main 1.132 (colored) to selected 1.22 (colored)

/usr/include/atomic.h, for Solaris source compat.

Revision 1.131.8.1, Wed May 28 12:28:12 2008 UTC (15 years, 10 months ago) by ad
Branch: christos-time_t
Changes since 1.131: +0 -49 lines
FILE REMOVED

file Makefile was added on branch christos-time_t on 2008-05-28 12:28:13 +0000

Revision 1.131 / (download) - annotate - [select for diffs], Wed May 28 12:28:12 2008 UTC (15 years, 10 months ago) by ad
Branch: MAIN
CVS Tags: yamt-pf42-base4, yamt-pf42-base3, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, uebayasi-xip-base, simonb-wapbl-nbase, simonb-wapbl-base, simonb-wapbl, netbsd-5-base, netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, netbsd-5, matt-premerge-20091211, matt-nb5-pq3-base, matt-nb5-pq3, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, jym-xensuspend-nbase, jym-xensuspend-base, jym-xensuspend, christos-time_t-nbase, christos-time_t-base
Branch point for: uebayasi-xip, christos-time_t
Changes since 1.130: +3 -2 lines
Diff to previous 1.130 (colored) to selected 1.22 (colored)

/usr/include/atomic.h, for Solaris source compat.

Revision 1.129.2.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:11:03 2007 UTC (16 years, 4 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.129: +2 -3 lines
Diff to previous 1.129 (colored) next main 1.130 (colored) to selected 1.22 (colored)

sync with HEAD

Revision 1.130 / (download) - annotate - [select for diffs], Fri Sep 7 18:56:04 2007 UTC (16 years, 6 months ago) by rmind
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base2, yamt-pf42-base, matt-armv6-nbase, matt-armv6-base, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-nbase, hpcarm-cleanup-base, cube-autoconf-base, cube-autoconf
Branch point for: yamt-pf42, wrstuden-revivesa
Changes since 1.129: +2 -3 lines
Diff to previous 1.129 (colored) to selected 1.22 (colored)

Implementation of POSIX message queues.

Reviewed by: <ad>, <tech-kern>

Revision 1.125.4.1 / (download) - annotate - [select for diffs], Mon Sep 3 07:01:08 2007 UTC (16 years, 6 months ago) by wrstuden
Branch: wrstuden-fixsa
Changes since 1.125: +3 -1 lines
Diff to previous 1.125 (colored) next main 1.126 (colored) to selected 1.22 (colored)

Sync w/ NetBSD-4-RC_1

Revision 1.129 / (download) - annotate - [select for diffs], Mon Aug 20 16:01:29 2007 UTC (16 years, 7 months ago) by drochner
Branch: MAIN
Branch point for: matt-armv6
Changes since 1.128: +6 -6 lines
Diff to previous 1.128 (colored) to selected 1.22 (colored)

Add C99 complex support, for double and float.
Most complex function implementations are from the "c9x-complex" library,
originating from the "cephes" math library, see
http://www.netlib.org/cephes/, from Stephen L. Moshier, incorporated and
redistributed with the NetBSD license by permission of the author.

Error behaviour and other boundary conditions (branch cuts)
need to be looked at.

For namespace sanity, I've done the rename/weak alias procedure to
most of the exported functions which are also used internally.
Didn't do so for sin/cos(f) yet because assembler implementations use
them directly, and renaming functions shared between the main libm
and the machine specific "overlay" might raise binary compatibility
issues.

Revision 1.125.2.1 / (download) - annotate - [select for diffs], Sun Jul 22 18:44:37 2007 UTC (16 years, 8 months ago) by liamjfoy
Branch: netbsd-4
CVS Tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, netbsd-4-0-RC1, netbsd-4-0-1-RELEASE, netbsd-4-0
Changes since 1.125: +3 -1 lines
Diff to previous 1.125 (colored) next main 1.126 (colored) to selected 1.22 (colored)

Pull up to netbsd-4 (requested by christos in ticket #773):

Move libssp to libc.

Revision 1.128 / (download) - annotate - [select for diffs], Wed May 30 01:13:21 2007 UTC (16 years, 10 months ago) by tls
Branch: MAIN
CVS Tags: matt-mips64-base, matt-mips64, hpcarm-cleanup
Changes since 1.127: +3 -1 lines
Diff to previous 1.127 (colored) to selected 1.22 (colored)

Move FORTIFY_SOURCE implementation from the somewhat ill-named "libssp"
(what other systems keep in libssp, we already have in libc) into libc
to match what other systems with FORTIFY_SOURCE do.  Goodbye, libssp
dependency in libraries and executables.  Discussed with christos and
mrg; Christos will merge the headers to get us the rest of the way to a
FORTIFY_SOURCE implementation that works as others' code expects.

Revision 1.127 / (download) - annotate - [select for diffs], Mon Apr 30 14:44:29 2007 UTC (16 years, 11 months ago) by rmind
Branch: MAIN
Changes since 1.126: +4 -4 lines
Diff to previous 1.126 (colored) to selected 1.22 (colored)

Import of POSIX Asynchronous I/O.
Seems to be quite stable. Some work still left to do.

Please note, that syscalls are not yet MP-safe, because
of the file and vnode subsystems.

Reviewed by: <tech-kern>, <ad>

Revision 1.126 / (download) - annotate - [select for diffs], Fri Feb 9 22:13:31 2007 UTC (17 years, 1 month ago) by ad
Branch: MAIN
Changes since 1.125: +2 -2 lines
Diff to previous 1.125 (colored) to selected 1.22 (colored)

Sync with changes introduced by merging the newlock2 branch.

Revision 1.125 / (download) - annotate - [select for diffs], Mon Oct 30 20:22:54 2006 UTC (17 years, 5 months ago) by christos
Branch: MAIN
CVS Tags: netbsd-4-base
Branch point for: wrstuden-fixsa, netbsd-4
Changes since 1.124: +2 -2 lines
Diff to previous 1.124 (colored) to selected 1.22 (colored)

kill crypto/rmd160.h and crypto/sha2.h, and instead make symlinks to
/usr/include from /usr/include/sys. This makes all the one way hash
header handling identical.

Revision 1.124 / (download) - annotate - [select for diffs], Fri Jun 2 22:16:18 2006 UTC (17 years, 9 months ago) by mrg
Branch: MAIN
CVS Tags: abandoned-netbsd-4-base, abandoned-netbsd-4
Changes since 1.123: +2 -5 lines
Diff to previous 1.123 (colored) to selected 1.22 (colored)

remove support for building (with) GCC 2.95.  also:
- always install <stdbool.h>
- don't generate a fake one for vax / gettext.

Revision 1.123 / (download) - annotate - [select for diffs], Thu Apr 27 23:42:08 2006 UTC (17 years, 11 months ago) by thorpej
Branch: MAIN
Changes since 1.122: +2 -1 lines
Diff to previous 1.122 (colored) to selected 1.22 (colored)

Install proplib include files.

Revision 1.122 / (download) - annotate - [select for diffs], Fri Apr 7 19:38:58 2006 UTC (17 years, 11 months ago) by mrg
Branch: MAIN
Changes since 1.121: +2 -2 lines
Diff to previous 1.121 (colored) to selected 1.22 (colored)

retire HAVE_GCC3/HAVE_GCC4 and introduce HAVE_GCC that is set to 2, 3 or 4.

Revision 1.121 / (download) - annotate - [select for diffs], Fri Dec 30 23:07:33 2005 UTC (18 years, 3 months ago) by agc
Branch: MAIN
Changes since 1.120: +2 -2 lines
Diff to previous 1.120 (colored) to selected 1.22 (colored)

Add Todd Miller's ftw(3) and nftw(3) file-tree walking functionality,
from OpenBSD.

Bump libc minor to 136.

Revision 1.120 / (download) - annotate - [select for diffs], Sun Apr 3 20:09:29 2005 UTC (18 years, 11 months ago) by christos
Branch: MAIN
Changes since 1.119: +2 -1 lines
Diff to previous 1.119 (colored) to selected 1.22 (colored)

Add FreeBSD's strfmon(3). From Rui Paulo. No bump this time. Take advantage
of the getpwent_r bump.

Revision 1.119 / (download) - annotate - [select for diffs], Tue Dec 14 00:23:20 2004 UTC (19 years, 3 months ago) by nathanw
Branch: MAIN
CVS Tags: netbsd-3-base, netbsd-3-1-RELEASE, netbsd-3-1-RC4, netbsd-3-1-RC3, netbsd-3-1-RC2, netbsd-3-1-RC1, netbsd-3-1-1-RELEASE, netbsd-3-1, netbsd-3-0-RELEASE, netbsd-3-0-RC6, netbsd-3-0-RC5, netbsd-3-0-RC4, netbsd-3-0-RC3, netbsd-3-0-RC2, netbsd-3-0-RC1, netbsd-3-0-3-RELEASE, netbsd-3-0-2-RELEASE, netbsd-3-0-1-RELEASE, netbsd-3-0, netbsd-3
Changes since 1.118: +2 -2 lines
Diff to previous 1.118 (colored) to selected 1.22 (colored)

Nuke threadlib.h. Library defensive threading is now provided through the
normal pthread.h interface.
Move stubs for libc back into a libc-internal header.

Revision 1.118 / (download) - annotate - [select for diffs], Mon Sep 13 21:44:54 2004 UTC (19 years, 6 months ago) by thorpej
Branch: MAIN
Changes since 1.117: +2 -2 lines
Diff to previous 1.117 (colored) to selected 1.22 (colored)

DCE 1.1 RPC compatible UUID routines for libc, adapted from FreeBSD.
Encode/decode to big/little endian binary blob routines adapted from
kernel.

PR 23470.

Revision 1.117 / (download) - annotate - [select for diffs], Tue Jul 13 15:42:03 2004 UTC (19 years, 8 months ago) by seb
Branch: MAIN
Changes since 1.116: +2 -2 lines
Diff to previous 1.116 (colored) to selected 1.22 (colored)

Add wordexp(3). The wordexp function performs shell-style word expansions.
This implementation is wrapper around the undocumented wordexp sh(1)
built-in command.

From FreeBSD.
Provided in PR lib/26123.
Approved by kleink@.

Revision 1.116 / (download) - annotate - [select for diffs], Fri May 21 02:27:35 2004 UTC (19 years, 10 months ago) by christos
Branch: MAIN
Changes since 1.115: +4 -3 lines
Diff to previous 1.115 (colored) to selected 1.22 (colored)

install new files.

Revision 1.115 / (download) - annotate - [select for diffs], Tue Oct 14 12:46:44 2003 UTC (20 years, 5 months ago) by tron
Branch: MAIN
CVS Tags: netbsd-2-base, netbsd-2-1-RELEASE, netbsd-2-1-RC6, netbsd-2-1-RC5, netbsd-2-1-RC4, netbsd-2-1-RC3, netbsd-2-1-RC2, netbsd-2-1-RC1, netbsd-2-1, netbsd-2-0-base, netbsd-2-0-RELEASE, netbsd-2-0-RC5, netbsd-2-0-RC4, netbsd-2-0-RC3, netbsd-2-0-RC2, netbsd-2-0-RC1, netbsd-2-0-3-RELEASE, netbsd-2-0-2-RELEASE, netbsd-2-0-1-RELEASE, netbsd-2-0, netbsd-2
Changes since 1.114: +2 -2 lines
Diff to previous 1.114 (colored) to selected 1.22 (colored)

Replace symbolic link "/usr/include/varargs.h" (pointing to
"/usr/include/machine/varargs.h") by a stub include file which will
emit an error if GCC 3.3 or newer is used and include "machine/varargs.h"
otherwise.

Based on a suggestion by Richard Earnshaw. This fixes PR toolchain/22888
by myself.

Revision 1.114 / (download) - annotate - [select for diffs], Wed Oct 1 01:35:39 2003 UTC (20 years, 6 months ago) by christos
Branch: MAIN
Changes since 1.113: +3 -3 lines
Diff to previous 1.113 (colored) to selected 1.22 (colored)

make some files symlinks from sys.

Revision 1.113 / (download) - annotate - [select for diffs], Tue Sep 9 22:10:33 2003 UTC (20 years, 6 months ago) by itojun
Branch: MAIN
Changes since 1.112: +2 -2 lines
Diff to previous 1.112 (colored) to selected 1.22 (colored)

add randomid(3).

Revision 1.112 / (download) - annotate - [select for diffs], Wed Aug 27 16:03:18 2003 UTC (20 years, 7 months ago) by mrg
Branch: MAIN
Changes since 1.111: +2 -2 lines
Diff to previous 1.111 (colored) to selected 1.22 (colored)

introduce an additional switch to enable building GCC3 instead of GCC2:
HAVE_GCC3.  if this is set, we also set USE_TOOLS_TOOLCHAIN=no.  change
the definition of the former to be restricted to whether tools/toolchain
is used or not.

Revision 1.111 / (download) - annotate - [select for diffs], Sat Jul 26 15:27:13 2003 UTC (20 years, 8 months ago) by mrg
Branch: MAIN
Changes since 1.110: +7 -1 lines
Diff to previous 1.110 (colored) to selected 1.22 (colored)

install stdbool.h if gcc3

Revision 1.110 / (download) - annotate - [select for diffs], Fri Jun 27 05:21:56 2003 UTC (20 years, 9 months ago) by tshiozak
Branch: MAIN
Changes since 1.109: +2 -2 lines
Diff to previous 1.109 (colored) to selected 1.22 (colored)

Citrus iconv support(4)
add iconv external I/F (iconv.h - iconv_open()/iconv()/iconv_close()) and
iconv(1) utility.
TODO:
  - bump libc minor.
  - add iconv data files.
  - create manpages: iconv_open(3)/iconv(3)/iconv_close(3)/iconv(1)/
    mkesdb(1)/mkcsmapper(1).

Revision 1.109 / (download) - annotate - [select for diffs], Sat Mar 22 12:45:51 2003 UTC (21 years ago) by jdolecek
Branch: MAIN
Changes since 1.108: +3 -3 lines
Diff to previous 1.108 (colored) to selected 1.22 (colored)

install mntopts.h

Revision 1.108 / (download) - annotate - [select for diffs], Mon Jan 20 20:09:50 2003 UTC (21 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.107: +6 -6 lines
Diff to previous 1.107 (colored) to selected 1.22 (colored)

add support for p1003.1b semaphores. From FreeBSD

Revision 1.107 / (download) - annotate - [select for diffs], Sun Jan 19 19:24:39 2003 UTC (21 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.106: +4 -3 lines
Diff to previous 1.106 (colored) to selected 1.22 (colored)

Expose libc's thread stubs, which get magically turned into real pthread
calls when the pthread library is linked in.  Simplifies making other
libraries (such as X's) thread-safe.

Revision 1.106 / (download) - annotate - [select for diffs], Sat Jan 18 10:32:11 2003 UTC (21 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.105: +4 -4 lines
Diff to previous 1.105 (colored) to selected 1.22 (colored)

Merge the nathanw_sa branch.

Revision 1.95.2.12 / (download) - annotate - [select for diffs], Fri Sep 20 22:01:49 2002 UTC (21 years, 6 months ago) by thorpej
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.95.2.11: +3 -3 lines
Diff to previous 1.95.2.11 (colored) next main 1.96 (colored) to selected 1.22 (colored)

Sync with HEAD.

Revision 1.105 / (download) - annotate - [select for diffs], Wed Sep 18 06:17:38 2002 UTC (21 years, 6 months ago) by lukem
Branch: MAIN
CVS Tags: nathanw_sa_before_merge, nathanw_sa_base, fvdl_fs64_base
Changes since 1.104: +3 -3 lines
Diff to previous 1.104 (colored) to selected 1.22 (colored)

minor makefile delint

Revision 1.95.2.11 / (download) - annotate - [select for diffs], Thu Apr 25 04:07:10 2002 UTC (21 years, 11 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.95.2.10: +3 -3 lines
Diff to previous 1.95.2.10 (colored) to selected 1.22 (colored)

Catch up to -current.

Revision 1.104 / (download) - annotate - [select for diffs], Sun Mar 31 14:12:37 2002 UTC (22 years ago) by bjh21
Branch: MAIN
CVS Tags: netbsd-1-6-base, netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1, netbsd-1-6-PATCH002-RELEASE, netbsd-1-6-PATCH002-RC4, netbsd-1-6-PATCH002-RC3, netbsd-1-6-PATCH002-RC2, netbsd-1-6-PATCH002-RC1, netbsd-1-6-PATCH002, netbsd-1-6-PATCH001-RELEASE, netbsd-1-6-PATCH001-RC3, netbsd-1-6-PATCH001-RC2, netbsd-1-6-PATCH001-RC1, netbsd-1-6-PATCH001, netbsd-1-6
Changes since 1.103: +3 -3 lines
Diff to previous 1.103 (colored) to selected 1.22 (colored)

split /usr/include/sys/sha1.h and /usr/include/sha1.h completely.
future direction: nuke /usr/include/sys/sha1.h, it shouldn't be there as
we don't provide libkern to userland.

This mirrors the same change for md5.h made by itojun on 2000/12/11.

Revision 1.95.2.10 / (download) - annotate - [select for diffs], Fri Mar 22 21:10:10 2002 UTC (22 years ago) by nathanw
Branch: nathanw_sa
Changes since 1.95.2.9: +8 -6 lines
Diff to previous 1.95.2.9 (colored) to selected 1.22 (colored)

Catch up to -current.

Revision 1.103 / (download) - annotate - [select for diffs], Fri Mar 22 18:10:20 2002 UTC (22 years ago) by thorpej
Branch: MAIN
Changes since 1.102: +5 -2 lines
Diff to previous 1.102 (colored) to selected 1.22 (colored)

Split the notion of building Hesiod, Kerberos, S/key, and YP
infrastructure and using that infrastructure in programs.

	* MKHESIOD, MKKERBEROS, MKSKEY, and MKYP control building
	  of the infratsructure (libraries, support programs, etc.)

	* USE_HESIOD, USE_KERBEROS, USE_SKEY, and USE_YP control
	  building of support for using the corresponding API
	  in various libraries/programs that can use it.

As discussed on tech-toolchain.

Revision 1.95.2.9 / (download) - annotate - [select for diffs], Tue Mar 12 21:22:33 2002 UTC (22 years ago) by nathanw
Branch: nathanw_sa
Changes since 1.95.2.8: +5 -4 lines
Diff to previous 1.95.2.8 (colored) to selected 1.22 (colored)

Restore ucontext.h (missed in last merge; thanks to nick for pointing
it out).
Clean up wrap slightly.

Revision 1.95.2.8 / (download) - annotate - [select for diffs], Mon Mar 11 21:07:49 2002 UTC (22 years ago) by nathanw
Branch: nathanw_sa
Changes since 1.95.2.7: +5 -5 lines
Diff to previous 1.95.2.7 (colored) to selected 1.22 (colored)

Catch up to -current.

Revision 1.95.2.7 / (download) - annotate - [select for diffs], Sat Feb 23 23:41:40 2002 UTC (22 years, 1 month ago) by gmcgarry
Branch: nathanw_sa
Changes since 1.95.2.6: +2 -2 lines
Diff to previous 1.95.2.6 (colored) to selected 1.22 (colored)

It's back with the pthreads bits.

Revision 1.95.2.6 / (download) - annotate - [select for diffs], Sat Feb 23 23:03:25 2002 UTC (22 years, 1 month ago) by gmcgarry
Branch: nathanw_sa
Changes since 1.95.2.5: +2 -2 lines
Diff to previous 1.95.2.5 (colored) to selected 1.22 (colored)

sched.h is now part of the pthread library

Revision 1.102 / (download) - annotate - [select for diffs], Fri Feb 22 20:09:01 2002 UTC (22 years, 1 month ago) by christos
Branch: MAIN
Changes since 1.101: +2 -2 lines
Diff to previous 1.101 (colored) to selected 1.22 (colored)

A utmpx implementation.

Revision 1.101 / (download) - annotate - [select for diffs], Mon Feb 4 08:51:26 2002 UTC (22 years, 1 month ago) by thorpej
Branch: MAIN
Changes since 1.100: +2 -2 lines
Diff to previous 1.100 (colored) to selected 1.22 (colored)

Don't install <stdbool.h> for now.  Lossage resulting from me testing
with a not-in-tree compiler.

Revision 1.100 / (download) - annotate - [select for diffs], Sat Feb 2 17:31:52 2002 UTC (22 years, 1 month ago) by thorpej
Branch: MAIN
Changes since 1.99: +4 -4 lines
Diff to previous 1.99 (colored) to selected 1.22 (colored)

ISO C / SUSv3 <stdbool.h>.

Revision 1.95.2.5 / (download) - annotate - [select for diffs], Mon Jan 28 21:27:18 2002 UTC (22 years, 2 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.95.2.4: +1 -1 lines
Diff to previous 1.95.2.4 (colored) to selected 1.22 (colored)

Catch up to -current.

Revision 1.95.2.4 / (download) - annotate - [select for diffs], Mon Jan 14 21:37:09 2002 UTC (22 years, 2 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.95.2.3: +4 -4 lines
Diff to previous 1.95.2.3 (colored) to selected 1.22 (colored)

Catch up to -current.

Revision 1.99 / (download) - annotate - [select for diffs], Wed Dec 12 00:07:50 2001 UTC (22 years, 3 months ago) by tv
Branch: MAIN
Changes since 1.98: +4 -4 lines
Diff to previous 1.98 (colored) to selected 1.22 (colored)

MKfoo=no -> NOfoo=

Revision 1.95.2.3 / (download) - annotate - [select for diffs], Mon Oct 8 20:13:44 2001 UTC (22 years, 5 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.95.2.2: +6 -7 lines
Diff to previous 1.95.2.2 (colored) to selected 1.22 (colored)

Catch up to -current.

Revision 1.98 / (download) - annotate - [select for diffs], Tue Jul 17 03:04:16 2001 UTC (22 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.97: +5 -5 lines
Diff to previous 1.97 (colored) to selected 1.22 (colored)

A <sched.h> file, which provides the clone(2) prototypes, in order
to be compatible with Linux.

Revision 1.97 / (download) - annotate - [select for diffs], Sat Apr 28 15:41:28 2001 UTC (22 years, 11 months ago) by kleink
Branch: MAIN
Changes since 1.96: +2 -2 lines
Diff to previous 1.96 (colored) to selected 1.22 (colored)

* Move definitions of exact-width integer types from <machine/types.h>
  to <sys/types.h> and <sys/stdint.h>.
* Add a new C99 <stdint.h> header, which provides integer types of
  explicit width, related limits and integer constant macros.
* Extend <inttypes.h> to provide <stdint.h> definitions and format
  macros for printf() and scanf().
* Add C99 strtoimax() and strtoumax() functions.
* Use the latter within scanf().
* Add C99 %j, %t and %z printf()/scanf() conversions for
  intmax_t, pointer-type and size_t arguments.

Revision 1.95.2.2 / (download) - annotate - [select for diffs], Sun Apr 8 20:31:41 2001 UTC (22 years, 11 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.95.2.1: +2 -2 lines
Diff to previous 1.95.2.1 (colored) to selected 1.22 (colored)

Merge trunk onto branch.

Revision 1.96 / (download) - annotate - [select for diffs], Mon Mar 19 04:13:16 2001 UTC (23 years ago) by atatat
Branch: MAIN
Changes since 1.95: +2 -2 lines
Diff to previous 1.95 (colored) to selected 1.22 (colored)

Add md2 routines to libc.

Revision 1.95.2.1 / (download) - annotate - [select for diffs], Mon Mar 5 23:33:26 2001 UTC (23 years ago) by nathanw
Branch: nathanw_sa
Changes since 1.95: +4 -3 lines
Diff to previous 1.95 (colored) to selected 1.22 (colored)

User-level support for LWPs and scheduler activations.
SVR4-style ucontext code by Klaus Klein.

Revision 1.95 / (download) - annotate - [select for diffs], Sat Feb 17 12:29:45 2001 UTC (23 years, 1 month ago) by ragge
Branch: MAIN
Branch point for: nathanw_sa
Changes since 1.94: +6 -2 lines
Diff to previous 1.94 (colored) to selected 1.22 (colored)

Don't handle ieeefp.h on vax.

Revision 1.94 / (download) - annotate - [select for diffs], Thu Dec 21 05:40:56 2000 UTC (23 years, 3 months ago) by itojun
Branch: MAIN
Changes since 1.93: +2 -2 lines
Diff to previous 1.93 (colored) to selected 1.22 (colored)

have dummy wctype.h and isw*/tow*.  part of libc minor 68 -> 69 crank.
equivalent to is*/to* at this moment.  we'll put wchar_t code in the
near future.

Revision 1.93 / (download) - annotate - [select for diffs], Mon Dec 11 21:05:15 2000 UTC (23 years, 3 months ago) by itojun
Branch: MAIN
Changes since 1.92: +2 -2 lines
Diff to previous 1.92 (colored) to selected 1.22 (colored)

split /usr/include/sys/md5.h and /usr/include/md5.h completely.
future direction: nuke /usr/include/sys/md5.h, it shouldn't be there as
we don't provide libkern to userland.

Revision 1.92 / (download) - annotate - [select for diffs], Wed Jul 5 11:44:01 2000 UTC (23 years, 8 months ago) by ad
Branch: MAIN
Changes since 1.91: +5 -5 lines
Diff to previous 1.91 (colored) to selected 1.22 (colored)

Pull in RIPEMD-160 functions from OpenBSD - this has the same API as our MD4,
MD5 and SHA1 stuff.

Revision 1.85.2.2 / (download) - annotate - [select for diffs], Fri Jun 23 16:58:47 2000 UTC (23 years, 9 months ago) by minoura
Branch: minoura-xpg4dl
Changes since 1.85.2.1: +7 -13 lines
Diff to previous 1.85.2.1 (colored) to branchpoint 1.85 (colored) next main 1.86 (colored) to selected 1.22 (colored)

Import of most recent XPG4DL dated 2000.06.23.

Revision 1.91.2.2 / (download) - annotate - [select for diffs], Tue Jun 20 06:00:33 2000 UTC (23 years, 9 months ago) by thorpej
Branch: netbsd-1-5
Changes since 1.91.2.1: +33 -0 lines
Diff to previous 1.91.2.1 (colored) to branchpoint 1.91 (colored) next main 1.92 (colored) to selected 1.22 (colored)

Merge a bunch of things from crypto-us and crypto-intl into basesrc,
adding support for Heimdal/KTH Kerberos where easy to do so.  Eliminate
bsd.crypto.mk.

There is still a bunch more work to do, but crypto is now more-or-less
fully merged into the base NetBSD distribution.

Revision 1.91.2.1, Tue Jun 20 06:00:32 2000 UTC (23 years, 9 months ago) by thorpej
Branch: netbsd-1-5
Changes since 1.91: +0 -33 lines
FILE REMOVED

file Makefile was added on branch netbsd-1-5 on 2000-06-20 06:00:33 +0000

Revision 1.91 / (download) - annotate - [select for diffs], Tue Jun 20 06:00:32 2000 UTC (23 years, 9 months ago) by thorpej
Branch: MAIN
CVS Tags: netbsd-1-5-base, netbsd-1-5-RELEASE, netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA, netbsd-1-5-ALPHA2
Branch point for: netbsd-1-5
Changes since 1.90: +1 -8 lines
Diff to previous 1.90 (colored) to selected 1.22 (colored)

Merge a bunch of things from crypto-us and crypto-intl into basesrc,
adding support for Heimdal/KTH Kerberos where easy to do so.  Eliminate
bsd.crypto.mk.

There is still a bunch more work to do, but crypto is now more-or-less
fully merged into the base NetBSD distribution.

Revision 1.90 / (download) - annotate - [select for diffs], Sat Jun 3 11:23:54 2000 UTC (23 years, 10 months ago) by fvdl
Branch: MAIN
Changes since 1.89: +4 -11 lines
Diff to previous 1.89 (colored) to selected 1.22 (colored)

Use a seperate Makefile in the rpc/ subdir. Needed because it generates
a file (rpcb_prot.h).

Revision 1.89 / (download) - annotate - [select for diffs], Sat Jun 3 10:17:59 2000 UTC (23 years, 10 months ago) by fvdl
Branch: MAIN
Changes since 1.88: +5 -4 lines
Diff to previous 1.88 (colored) to selected 1.22 (colored)

Add missed include files.

Revision 1.88 / (download) - annotate - [select for diffs], Sat Jun 3 02:29:22 2000 UTC (23 years, 10 months ago) by fvdl
Branch: MAIN
Changes since 1.87: +9 -3 lines
Diff to previous 1.87 (colored) to selected 1.22 (colored)

Move rpcb_prot.x to here from libc/rpc.

Revision 1.87 / (download) - annotate - [select for diffs], Fri Jun 2 23:01:57 2000 UTC (23 years, 10 months ago) by fvdl
Branch: MAIN
Changes since 1.86: +4 -4 lines
Diff to previous 1.86 (colored) to selected 1.22 (colored)

Fix omission in previous.

Revision 1.86 / (download) - annotate - [select for diffs], Fri Jun 2 22:57:54 2000 UTC (23 years, 10 months ago) by fvdl
Branch: MAIN
Changes since 1.85: +3 -2 lines
Diff to previous 1.85 (colored) to selected 1.22 (colored)

New headers for the new RPC code (based on TI-RPC from Sun).

Revision 1.85.2.1 / (download) - annotate - [select for diffs], Sun May 28 22:41:01 2000 UTC (23 years, 10 months ago) by minoura
Branch: minoura-xpg4dl
Changes since 1.85: +3 -2 lines
Diff to previous 1.85 (colored) to selected 1.22 (colored)

Citrus Project XPG4DL, an implementation of I18N (locale) framework,
is imported.

Revision 1.85 / (download) - annotate - [select for diffs], Thu Apr 20 09:56:36 2000 UTC (23 years, 11 months ago) by kleink
Branch: MAIN
CVS Tags: minoura-xpg4dl-base
Branch point for: minoura-xpg4dl
Changes since 1.84: +2 -2 lines
Diff to previous 1.84 (colored) to selected 1.22 (colored)

* Move <wchar.h> from libcurses to include (for the missing functionality
  is to be provided by libc).
* Define wint_t and size_t in <wchar.h> as well.

Revision 1.84 / (download) - annotate - [select for diffs], Sat Apr 1 22:37:14 2000 UTC (24 years ago) by christos
Branch: MAIN
Changes since 1.83: +2 -2 lines
Diff to previous 1.83 (colored) to selected 1.22 (colored)

Add getopt.h and collect all the getopt related stuff here.
Make unistd.h include <getopt.h> to get the getopt stuff.
This adds support for getopt_long from Dieter Baron and Thomas Klausner.

Revision 1.83 / (download) - annotate - [select for diffs], Wed Feb 23 06:57:47 2000 UTC (24 years, 1 month ago) by itojun
Branch: MAIN
Changes since 1.82: +3 -2 lines
Diff to previous 1.82 (colored) to selected 1.22 (colored)

add getifaddrs(3) from bsdi4, as mentioned in tech-net (in SIOCGIFCONF
related thread).
this will save future apps from complexity of SIOCGIFCONF.

getifaddrs(3) does not use SIOCGIFCONF internally, it uses sysctl.

Revision 1.82 / (download) - annotate - [select for diffs], Wed Jan 12 05:02:11 2000 UTC (24 years, 2 months ago) by mjl
Branch: MAIN
Changes since 1.81: +3 -2 lines
Diff to previous 1.81 (colored) to selected 1.22 (colored)

Add necessary support routines for login.conf.

Revision 1.81 / (download) - annotate - [select for diffs], Mon Jan 10 16:58:37 2000 UTC (24 years, 2 months ago) by kleink
Branch: MAIN
Changes since 1.80: +2 -2 lines
Diff to previous 1.80 (colored) to selected 1.22 (colored)

Move <null.h> to <sys/null.h> for the purpose of avoiding conflicts due to
std C headers including it, and a kernel module written in C++ would benfit
as well.

Revision 1.80 / (download) - annotate - [select for diffs], Wed Dec 22 21:26:16 1999 UTC (24 years, 3 months ago) by kleink
Branch: MAIN
Changes since 1.79: +6 -5 lines
Diff to previous 1.79 (colored) to selected 1.22 (colored)

For the benefit of G++'s null pointer constant implementation, #define NULL
as __null with egcs 1.0 (GCC 2.90) and above.  As several headers are affected
by this change, move the definition into a new header file, <null.h>, to ease
maintenance.

Revision 1.79 / (download) - annotate - [select for diffs], Mon Sep 13 18:38:04 1999 UTC (24 years, 6 months ago) by kleink
Branch: MAIN
CVS Tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221, wrstuden-devbsize, comdex-fall-1999-base, comdex-fall-1999
Changes since 1.78: +2 -2 lines
Diff to previous 1.78 (colored) to selected 1.22 (colored)

Add an XSH5 ulimit()/<ulimit.h> implementation.

Revision 1.78 / (download) - annotate - [select for diffs], Sun Sep 12 19:04:30 1999 UTC (24 years, 6 months ago) by kleink
Branch: MAIN
Changes since 1.77: +9 -9 lines
Diff to previous 1.77 (colored) to selected 1.22 (colored)

Add an XSH5 fmtmsg() implementation.

Revision 1.77 / (download) - annotate - [select for diffs], Tue Jul 20 09:47:08 1999 UTC (24 years, 8 months ago) by mrg
Branch: MAIN
Changes since 1.76: +2 -2 lines
Diff to previous 1.76 (colored) to selected 1.22 (colored)

optionally include CRYPTOPATH Makefile.frag files.

Revision 1.76 / (download) - annotate - [select for diffs], Mon Jul 12 22:04:58 1999 UTC (24 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.75: +9 -1 lines
Diff to previous 1.75 (colored) to selected 1.22 (colored)

Use bsd.crypto.mk.

Revision 1.75 / (download) - annotate - [select for diffs], Fri Mar 19 22:06:36 1999 UTC (25 years ago) by thorpej
Branch: MAIN
CVS Tags: netbsd-1-4-base, netbsd-1-4-RELEASE, netbsd-1-4-PATCH003, netbsd-1-4-PATCH002, netbsd-1-4-PATCH001, netbsd-1-4
Changes since 1.74: +8 -8 lines
Diff to previous 1.74 (colored) to selected 1.22 (colored)

Move the link.h files for the different shlib formats via repository copy,
and rename them to match the executable format.  Introduce a new link.h
file which automatically picks the correct header based on the target of
the toolchain.

Revision 1.74 / (download) - annotate - [select for diffs], Sat Feb 13 02:54:29 1999 UTC (25 years, 1 month ago) by lukem
Branch: MAIN
Changes since 1.73: +2 -2 lines
Diff to previous 1.73 (colored) to selected 1.22 (colored)

convert from NOxxx= to MKxxx=no.
include <bsd.own.mk> if testing a MKxxx variable.

Revision 1.73 / (download) - annotate - [select for diffs], Fri Jan 15 12:29:16 1999 UTC (25 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.72: +7 -6 lines
Diff to previous 1.72 (colored) to selected 1.22 (colored)

merge nsswitch into main branch

Revision 1.72 / (download) - annotate - [select for diffs], Tue Jan 12 03:08:14 1999 UTC (25 years, 2 months ago) by kleink
Branch: MAIN
Changes since 1.71: +8 -8 lines
Diff to previous 1.71 (colored) to selected 1.22 (colored)

Separate the userland and libsa errno declarations from <sys/errno.h> into
their canonical places.

Revision 1.69.2.2 / (download) - annotate - [select for diffs], Sat Oct 31 12:36:34 1998 UTC (25 years, 5 months ago) by lukem
Branch: lukem-nsswitch2
Changes since 1.69.2.1: +11 -8 lines
Diff to previous 1.69.2.1 (colored) to branchpoint 1.69 (colored) next main 1.70 (colored) to selected 1.22 (colored)

update to current, fix copyrights, reimplement MAXDNSLUS (for now)

Revision 1.71 / (download) - annotate - [select for diffs], Mon Feb 2 21:07:13 1998 UTC (26 years, 2 months ago) by perry
Branch: MAIN
Changes since 1.70: +4 -2 lines
Diff to previous 1.70 (colored) to selected 1.22 (colored)

merge lite-2

Revision 1.1.1.2 / (download) - annotate - [select for diffs] (vendor branch), Mon Feb 2 07:22:51 1998 UTC (26 years, 2 months ago) by perry
Branch: WFJ-920714, CSRG
CVS Tags: lite-2
Changes since 1.1.1.1: +24 -19 lines
Diff to previous 1.1.1.1 (colored) to selected 1.22 (colored)

import lite-2

Revision 1.70 / (download) - annotate - [select for diffs], Sun Nov 2 16:34:21 1997 UTC (26 years, 5 months ago) by kleink
Branch: MAIN
Changes since 1.69: +3 -3 lines
Diff to previous 1.69 (colored) to selected 1.22 (colored)

Add <libgen.h> header, from XPG4.2.

Revision 1.69.2.1 / (download) - annotate - [select for diffs], Fri May 23 19:58:25 1997 UTC (26 years, 10 months ago) by lukem
Branch: lukem-nsswitch2
Changes since 1.69: +8 -8 lines
Diff to previous 1.69 (colored) to selected 1.22 (colored)

Add necessary files for nsswitch, take 2
Remove support for "lookup" methods in resolv.conf
Remove prototypes for _ng_sl_*; these were replaced a long time ago

Revision 1.69 / (download) - annotate - [select for diffs], Wed Apr 30 00:45:41 1997 UTC (26 years, 11 months ago) by thorpej
Branch: MAIN
CVS Tags: netbsd-1-3-base, netbsd-1-3-RELEASE, netbsd-1-3-PATCH003-CANDIDATE2, netbsd-1-3-PATCH003-CANDIDATE1, netbsd-1-3-PATCH003-CANDIDATE0, netbsd-1-3-PATCH003, netbsd-1-3-PATCH002, netbsd-1-3-PATCH001, netbsd-1-3-BETA, netbsd-1-3
Branch point for: lukem-nsswitch2
Changes since 1.68: +2 -2 lines
Diff to previous 1.68 (colored) to selected 1.22 (colored)

Move md5.h to <sys/md5.h> so that it may be included by the kernel.
A symlink is used to preserve <md5.h> compatibility.

Revision 1.68 / (download) - annotate - [select for diffs], Thu Mar 27 09:29:29 1997 UTC (27 years ago) by mycroft
Branch: MAIN
Changes since 1.67: +10 -28 lines
Diff to previous 1.67 (colored) to selected 1.22 (colored)

Install files via INCS, and GC the bogus permission fixing hack.

Revision 1.67 / (download) - annotate - [select for diffs], Thu Jan 30 01:05:58 1997 UTC (27 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.66: +7 -7 lines
Diff to previous 1.66 (colored) to selected 1.22 (colored)

Install md4.h and md5.h

Revision 1.66 / (download) - annotate - [select for diffs], Fri Jan 17 06:11:35 1997 UTC (27 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.65: +3 -3 lines
Diff to previous 1.65 (colored) to selected 1.22 (colored)

A stringlist implementation (previously ``private'' to libc netgroup code,
but christos ok-ed making public as it's useful)

Revision 1.65 / (download) - annotate - [select for diffs], Fri Dec 27 10:44:21 1996 UTC (27 years, 3 months ago) by pk
Branch: MAIN
Changes since 1.64: +1 -5 lines
Diff to previous 1.64 (colored) to selected 1.22 (colored)

link.h no longer liver here

Revision 1.64 / (download) - annotate - [select for diffs], Wed Dec 18 22:18:39 1996 UTC (27 years, 3 months ago) by cgd
Branch: MAIN
Changes since 1.63: +3 -3 lines
Diff to previous 1.63 (colored) to selected 1.22 (colored)

install dlfcn.h on the Alpha, since the Alpha (with the ELF shared library
tools) provides the dl*() interfaces.  the only remaining special-case header
is the a.out link.h, which should really be installed by the dynamic linker.

Revision 1.63.2.1 / (download) - annotate - [select for diffs], Wed Nov 6 00:14:08 1996 UTC (27 years, 4 months ago) by lukem
Branch: nsswitch
Changes since 1.63: +7 -7 lines
Diff to previous 1.63 (colored) next main 1.64 (colored) to selected 1.22 (colored)

initial nsswitch implementation

Revision 1.63 / (download) - annotate - [select for diffs], Fri Oct 18 03:09:12 1996 UTC (27 years, 5 months ago) by thorpej
Branch: MAIN
Branch point for: nsswitch
Changes since 1.62: +5 -4 lines
Diff to previous 1.62 (colored) to selected 1.22 (colored)

Use ${INSTALL}.

Revision 1.62 / (download) - annotate - [select for diffs], Sun Sep 29 23:29:16 1996 UTC (27 years, 6 months ago) by mrg
Branch: MAIN
Changes since 1.61: +2 -72 lines
Diff to previous 1.61 (colored) to selected 1.22 (colored)

install sys headers from sys/Makefile.

Revision 1.61 / (download) - annotate - [select for diffs], Sat Sep 7 17:47:50 1996 UTC (27 years, 6 months ago) by mycroft
Branch: MAIN
Changes since 1.60: +2 -2 lines
Diff to previous 1.60 (colored) to selected 1.22 (colored)

Make a symlink for poll.h.

Revision 1.60 / (download) - annotate - [select for diffs], Fri Aug 9 04:01:48 1996 UTC (27 years, 7 months ago) by jtc
Branch: MAIN
Changes since 1.59: +5 -5 lines
Diff to previous 1.59 (colored) to selected 1.22 (colored)

install rmt.h

Revision 1.59 / (download) - annotate - [select for diffs], Wed May 15 21:36:43 1996 UTC (27 years, 10 months ago) by jtc
Branch: MAIN
CVS Tags: netbsd-1-2-base, netbsd-1-2-RELEASE, netbsd-1-2-PATCH001, netbsd-1-2-BETA, netbsd-1-2
Changes since 1.58: +3 -3 lines
Diff to previous 1.58 (colored) to selected 1.22 (colored)

Added new header files for functions in libutil.
Added macro for master passwd lock file.
From Greg Hudson <ghudson@MIT.EDU>.

Revision 1.58 / (download) - annotate - [select for diffs], Fri May 10 04:51:34 1996 UTC (27 years, 10 months ago) by cgd
Branch: MAIN
Changes since 1.57: +7 -3 lines
Diff to previous 1.57 (colored) to selected 1.22 (colored)

don't install dlfcn.h or link.h on the Alpha, because they make no
sense for that architecture.  (It doesn't have dynamic linking or
shared libraries.)

Revision 1.57 / (download) - annotate - [select for diffs], Thu Apr 25 00:55:44 1996 UTC (27 years, 11 months ago) by jtc
Branch: MAIN
Changes since 1.56: +4 -7 lines
Diff to previous 1.56 (colored) to selected 1.22 (colored)

Use 'includes' instead of 'install' targets to install headers

Revision 1.56 / (download) - annotate - [select for diffs], Mon Feb 5 22:34:09 1996 UTC (28 years, 1 month ago) by jtc
Branch: MAIN
Changes since 1.55: +9 -8 lines
Diff to previous 1.55 (colored) to selected 1.22 (colored)

Add cpio.h, tar.h, and re_comp.h headers for POSIX & XPG4 conformance

Revision 1.55 / (download) - annotate - [select for diffs], Mon Jun 5 00:24:55 1995 UTC (28 years, 10 months ago) by pk
Branch: MAIN
CVS Tags: netbsd-1-1-base, netbsd-1-1-RELEASE, netbsd-1-1-PATCH001, netbsd-1-1
Changes since 1.54: +7 -8 lines
Diff to previous 1.54 (colored) to selected 1.22 (colored)

Add dlfcn.h and alphabetize.

Revision 1.54 / (download) - annotate - [select for diffs], Sun Apr 16 19:03:55 1995 UTC (28 years, 11 months ago) by mycroft
Branch: MAIN
Changes since 1.53: +3 -3 lines
Diff to previous 1.53 (colored) to selected 1.22 (colored)

Follow symlinks when copying .h files.  From Greg Hudson.

Revision 1.53 / (download) - annotate - [select for diffs], Fri Apr 7 00:59:09 1995 UTC (28 years, 11 months ago) by jtc
Branch: MAIN
Changes since 1.52: +5 -5 lines
Diff to previous 1.52 (colored) to selected 1.22 (colored)

New header file <ieeefp.h>, which provides a API for getting and setting
IEEE rounding mode, exception enable flags, and exception sticky flags.

Revision 1.52 / (download) - annotate - [select for diffs], Fri Feb 17 09:08:08 1995 UTC (29 years, 1 month ago) by jtc
Branch: MAIN
Changes since 1.51: +4 -4 lines
Diff to previous 1.51 (colored) to selected 1.22 (colored)

For Normative Addendum 1.
We have this cr*p because no one would sa "no" to the danes.

Revision 1.51 / (download) - annotate - [select for diffs], Sun Jan 15 21:58:40 1995 UTC (29 years, 2 months ago) by jtc
Branch: MAIN
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored) to selected 1.22 (colored)

fix tipo

Revision 1.50 / (download) - annotate - [select for diffs], Thu Jan 12 19:18:41 1995 UTC (29 years, 2 months ago) by jtc
Branch: MAIN
Changes since 1.49: +9 -6 lines
Diff to previous 1.49 (colored) to selected 1.22 (colored)

Use  and .

Revision 1.49 / (download) - annotate - [select for diffs], Sat Dec 3 00:00:57 1994 UTC (29 years, 4 months ago) by christos
Branch: MAIN
Changes since 1.48: +3 -3 lines
Diff to previous 1.48 (colored) to selected 1.22 (colored)

Add netgroup.h

Revision 1.48 / (download) - annotate - [select for diffs], Wed Oct 26 00:55:40 1994 UTC (29 years, 5 months ago) by cgd
Branch: MAIN
Changes since 1.47: +3 -2 lines
Diff to previous 1.47 (colored) to selected 1.22 (colored)

new RCS ID format.

Revision 1.47 / (download) - annotate - [select for diffs], Sat Oct 15 04:57:10 1994 UTC (29 years, 5 months ago) by cgd
Branch: MAIN
Changes since 1.46: +3 -3 lines
Diff to previous 1.46 (colored) to selected 1.22 (colored)

make <stdarg.h> a symlink, and clean up ports' stdarg.h and varargs.h files.

Revision 1.46.2.2 / (download) - annotate - [select for diffs], Mon Aug 29 04:59:49 1994 UTC (29 years, 7 months ago) by mycroft
Branch: netbsd-1-0
Changes since 1.46.2.1: +111 -0 lines
Diff to previous 1.46.2.1 (colored) to branchpoint 1.46 (colored) next main 1.47 (colored) to selected 1.22 (colored)

Simplify copying of sys include files.

Revision 1.46.2.1, Mon Aug 29 04:59:48 1994 UTC (29 years, 7 months ago) by mycroft
Branch: netbsd-1-0
Changes since 1.46: +0 -111 lines
FILE REMOVED

file Makefile was added on branch netbsd-1-0 on 1994-08-29 04:59:49 +0000

Revision 1.46 / (download) - annotate - [select for diffs], Mon Aug 29 04:59:48 1994 UTC (29 years, 7 months ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-0-RELEASE, netbsd-1-0-PATCH1, netbsd-1-0-PATCH06, netbsd-1-0-PATCH05, netbsd-1-0-PATCH04, netbsd-1-0-PATCH03, netbsd-1-0-PATCH02, netbsd-1-0-PATCH0
Branch point for: netbsd-1-0
Changes since 1.45: +4 -7 lines
Diff to previous 1.45 (colored) to selected 1.22 (colored)

Simplify copying of sys include files.

Revision 1.43.2.1 / (download) - annotate - [select for diffs], Thu Jul 21 07:44:23 1994 UTC (29 years, 8 months ago) by cgd
Changes since 1.43: +4 -2 lines
Diff to previous 1.43 (colored) next main 1.44 (colored) to selected 1.22 (colored)

from trunk

Revision 1.45 / (download) - annotate - [select for diffs], Thu Jul 21 07:33:11 1994 UTC (29 years, 8 months ago) by cgd
Branch: MAIN
Changes since 1.44: +4 -2 lines
Diff to previous 1.44 (colored) to selected 1.22 (colored)

get permissions right on installed directories

Revision 1.44 / (download) - annotate - [select for diffs], Fri Jul 8 06:17:23 1994 UTC (29 years, 8 months ago) by jtc
Branch: MAIN
Changes since 1.43: +10 -9 lines
Diff to previous 1.43 (colored) to selected 1.22 (colored)

Use pax instead of two tar's to install ${MACHINE} and ${MACHINE_ARCH}
header files.  It's faster, because the file data doesn't have to be
passed through a pipe; and it's cleaner, because pax's rich set of
features allows us to copy the files without changing directories, etc.

Revision 1.43 / (download) - annotate - [select for diffs], Wed Jun 22 15:09:35 1994 UTC (29 years, 9 months ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-0-base
Changes since 1.42: +6 -9 lines
Diff to previous 1.42 (colored) to selected 1.22 (colored)

Fix the install for real.  Note this uses pax(1).

Revision 1.42 / (download) - annotate - [select for diffs], Wed Jun 22 00:21:37 1994 UTC (29 years, 9 months ago) by cgd
Branch: MAIN
Changes since 1.41: +2 -2 lines
Diff to previous 1.41 (colored) to selected 1.22 (colored)

add bm header, from Bostic

Revision 1.41 / (download) - annotate - [select for diffs], Tue Jun 21 04:06:33 1994 UTC (29 years, 9 months ago) by jtc
Branch: MAIN
Changes since 1.40: +4 -4 lines
Diff to previous 1.40 (colored) to selected 1.22 (colored)

Added langinfo.h header for nl_langinfo() function

Revision 1.40 / (download) - annotate - [select for diffs], Sun Jun 12 22:49:59 1994 UTC (29 years, 9 months ago) by cgd
Branch: MAIN
Changes since 1.39: +9 -1 lines
Diff to previous 1.39 (colored) to selected 1.22 (colored)

make install work for copies, but hack it to work for symlinks

Revision 1.39 / (download) - annotate - [select for diffs], Sun May 29 21:47:12 1994 UTC (29 years, 10 months ago) by jtc
Branch: MAIN
Changes since 1.38: +3 -3 lines
Diff to previous 1.38 (colored) to selected 1.22 (colored)

Added nl_types.h for message catalog functions

Revision 1.38 / (download) - annotate - [select for diffs], Mon May 16 22:43:42 1994 UTC (29 years, 10 months ago) by cgd
Branch: MAIN
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored) to selected 1.22 (colored)

oops

Revision 1.37 / (download) - annotate - [select for diffs], Mon May 16 10:58:53 1994 UTC (29 years, 10 months ago) by cgd
Branch: MAIN
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored) to selected 1.22 (colored)

update all but ctype.h, dumprestore.h, time.h to 4.4-Lite versions.
USL copyright additions on those.  Kill varargs.h, because it can simply
be a link to the machine-dependent version.

Revision 1.36 / (download) - annotate - [select for diffs], Wed May 11 03:37:39 1994 UTC (29 years, 10 months ago) by cgd
Branch: MAIN
Changes since 1.35: +3 -3 lines
Diff to previous 1.35 (colored) to selected 1.22 (colored)

user-land signal include file

Revision 1.35 / (download) - annotate - [select for diffs], Thu Mar 31 04:06:01 1994 UTC (30 years ago) by cgd
Branch: MAIN
Changes since 1.34: +5 -3 lines
Diff to previous 1.34 (colored) to selected 1.22 (colored)

don't use MACHINE_ARCH if it's dir doesn't exist...

Revision 1.34 / (download) - annotate - [select for diffs], Thu Feb 10 03:31:19 1994 UTC (30 years, 1 month ago) by cgd
Branch: MAIN
Changes since 1.33: +11 -11 lines
Diff to previous 1.33 (colored) to selected 1.22 (colored)

clean things up some

Revision 1.33 / (download) - annotate - [select for diffs], Thu Feb 10 02:09:31 1994 UTC (30 years, 1 month ago) by cgd
Branch: MAIN
Changes since 1.32: +2 -2 lines
Diff to previous 1.32 (colored) to selected 1.22 (colored)

don't hide install -d, and make owner/group correct

Revision 1.32 / (download) - annotate - [select for diffs], Wed Jan 12 22:56:29 1994 UTC (30 years, 2 months ago) by cgd
Branch: MAIN
Changes since 1.31: +3 -2 lines
Diff to previous 1.31 (colored) to selected 1.22 (colored)

regexp.h should still be here, for things needing the compat lib.

Revision 1.31 / (download) - annotate - [select for diffs], Sat Jan 8 12:22:47 1994 UTC (30 years, 2 months ago) by cgd
Branch: MAIN
Changes since 1.30: +20 -5 lines
Diff to previous 1.30 (colored) to selected 1.22 (colored)

fix SYS_INCLUDE definition, and explicitly include bsd.own.mk.
minor cleanup, and add support for creating and/or symlinking
/usr/include/${MACHINE_ARCH} as necessary.

Revision 1.30 / (download) - annotate - [select for diffs], Wed Dec 22 06:44:10 1993 UTC (30 years, 3 months ago) by cgd
Branch: MAIN
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (colored) to selected 1.22 (colored)

add 'dev' to the list of LDIRS

Revision 1.29 / (download) - annotate - [select for diffs], Fri Nov 12 18:27:21 1993 UTC (30 years, 4 months ago) by jtc
Branch: MAIN
Changes since 1.28: +2 -2 lines
Diff to previous 1.28 (colored) to selected 1.22 (colored)

Install regex.h header.

Revision 1.28 / (download) - annotate - [select for diffs], Thu Oct 21 20:53:13 1993 UTC (30 years, 5 months ago) by jtc
Branch: MAIN
Changes since 1.27: +5 -4 lines
Diff to previous 1.27 (colored) to selected 1.22 (colored)

Added X/Open 1170's <search.h> header --- it only declares bsearch, insque,
and remque at this time.  The remainder of the functions will be added as
time allows.

Revision 1.27 / (download) - annotate - [select for diffs], Sun Oct 17 00:51:30 1993 UTC (30 years, 5 months ago) by pk
Branch: MAIN
Changes since 1.26: +2 -2 lines
Diff to previous 1.26 (colored) to selected 1.22 (colored)

Moved <link.h> here from usr.bin/ld as it is needed by other modules
and utilities (eg. crt0, libc, nm).

Revision 1.26 / (download) - annotate - [select for diffs], Sat Oct 9 23:28:14 1993 UTC (30 years, 5 months ago) by cgd
Branch: MAIN
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored) to selected 1.22 (colored)

install the 2 includes in ./rpcsvc, too.

Revision 1.25 / (download) - annotate - [select for diffs], Fri Oct 8 05:48:05 1993 UTC (30 years, 5 months ago) by cgd
Branch: MAIN
Changes since 1.24: +1 -3 lines
Diff to previous 1.24 (colored) to selected 1.22 (colored)

move rpcsvc files and include generation into src/lib/librpcsvc

Revision 1.24 / (download) - annotate - [select for diffs], Fri Oct 1 00:22:00 1993 UTC (30 years, 6 months ago) by jtc
Branch: MAIN
Changes since 1.23: +2 -2 lines
Diff to previous 1.23 (colored) to selected 1.22 (colored)

Use `:', rather than `.' to separate user and group in chown commands
in case we ever decide to remove the support for the (obsolete) `.'
separator.

Revision 1.23 / (download) - annotate - [select for diffs], Mon Aug 16 00:26:07 1993 UTC (30 years, 7 months ago) by mycroft
Branch: MAIN
Changes since 1.22: +4 -9 lines
Diff to previous 1.22 (colored)

Oops.  `copies' was getting done before making /usr/include.

Revision 1.22 / (download) - annotate - [selected], Sun Aug 15 23:31:16 1993 UTC (30 years, 7 months ago) by mycroft
Branch: MAIN
Changes since 1.21: +4 -2 lines
Diff to previous 1.21 (colored)

There would have to be just one Makefile in the entire tree which referenced
_PROGSUBDIR.  GRRRRRR.

Revision 1.21 / (download) - annotate - [select for diffs], Sun Aug 1 05:41:49 1993 UTC (30 years, 8 months ago) by mycroft
Branch: MAIN
Changes since 1.20: +3 -3 lines
Diff to previous 1.20 (colored) to selected 1.22 (colored)

Add RCS identifiers.

Revision 1.20 / (download) - annotate - [select for diffs], Sat Jul 10 03:56:10 1993 UTC (30 years, 8 months ago) by brezak
Branch: MAIN
CVS Tags: netbsd-0-9-base, netbsd-0-9-RELEASE, netbsd-0-9-BETA, netbsd-0-9-ALPHA2, netbsd-0-9-ALPHA, netbsd-0-9
Changes since 1.19: +5 -6 lines
Diff to previous 1.19 (colored) to selected 1.22 (colored)

Allow SYS_INCLUDES={copies,symlinks} choice in bsd.own.mk.

Revision 1.19 / (download) - annotate - [select for diffs], Wed Jun 16 17:53:55 1993 UTC (30 years, 9 months ago) by mycroft
Branch: MAIN
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored) to selected 1.22 (colored)

Don't forget to install fnmatch.h.

Revision 1.18 / (download) - annotate - [select for diffs], Mon Jun 7 04:28:27 1993 UTC (30 years, 9 months ago) by deraadt
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored) to selected 1.22 (colored)

install incluide files mode 644

Revision 1.17 / (download) - annotate - [select for diffs], Wed May 26 06:11:22 1993 UTC (30 years, 10 months ago) by deraadt
Branch: MAIN
Changes since 1.16: +1 -1 lines
Diff to previous 1.16 (colored) to selected 1.22 (colored)

install /usr/include/malloc.h!

Revision 1.16 / (download) - annotate - [select for diffs], Tue May 18 09:58:39 1993 UTC (30 years, 10 months ago) by cgd
Branch: MAIN
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored) to selected 1.22 (colored)

change for 'arch'

Revision 1.15 / (download) - annotate - [select for diffs], Thu May 6 13:28:41 1993 UTC (30 years, 10 months ago) by proven
Branch: MAIN
Changes since 1.14: +0 -14 lines
Diff to previous 1.14 (colored) to selected 1.22 (colored)

ftp put doesn't cleanly truncate and overwrite a file.

Revision 1.14 / (download) - annotate - [select for diffs], Thu May 6 02:22:41 1993 UTC (30 years, 11 months ago) by proven
Branch: MAIN
Changes since 1.13: +5 -3 lines
Diff to previous 1.13 (colored) to selected 1.22 (colored)

rpc directory installs now.

Revision 1.13 / (download) - annotate - [select for diffs], Wed May 5 18:45:25 1993 UTC (30 years, 11 months ago) by proven
Branch: MAIN
Changes since 1.12: +14 -10 lines
Diff to previous 1.12 (colored) to selected 1.22 (colored)

Set permissions and ownership all at once. (No more directories mode 0777)

Revision 1.12 / (download) - annotate - [select for diffs], Sat May 1 15:18:25 1993 UTC (30 years, 11 months ago) by mycroft
Branch: MAIN
Changes since 1.11: +3 -3 lines
Diff to previous 1.11 (colored) to selected 1.22 (colored)

Don't forget to install err.h.

Revision 1.11 / (download) - annotate - [select for diffs], Wed Apr 28 05:14:02 1993 UTC (30 years, 11 months ago) by cgd
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored) to selected 1.22 (colored)

changed sys.386bsd to sys

Revision 1.10 / (download) - annotate - [select for diffs], Mon Apr 26 02:10:42 1993 UTC (30 years, 11 months ago) by mycroft
Branch: MAIN
Changes since 1.9: +1 -1 lines
Diff to previous 1.9 (colored) to selected 1.22 (colored)

Install mpool.h.

Revision 1.9 / (download) - annotate - [select for diffs], Fri Apr 9 12:02:53 1993 UTC (30 years, 11 months ago) by cgd
Branch: MAIN
CVS Tags: netbsd-alpha-1, netbsd-0-8
Changes since 1.8: +1 -2 lines
Diff to previous 1.8 (colored) to selected 1.22 (colored)

added netccitt, netiso, and netns support, from (currently
alpha) patch 126

Revision 1.8 / (download) - annotate - [select for diffs], Fri Apr 9 09:39:08 1993 UTC (30 years, 11 months ago) by cgd
Branch: MAIN
Changes since 1.7: +11 -1 lines
Diff to previous 1.7 (colored) to selected 1.22 (colored)

make sure directory to install stuff exists before installing

Revision 1.7 / (download) - annotate - [select for diffs], Sun Apr 4 19:17:10 1993 UTC (31 years ago) by cgd
Branch: MAIN
Changes since 1.6: +1 -1 lines
Diff to previous 1.6 (colored) to selected 1.22 (colored)

now that we have subdirs, need to do them on install, too...

Revision 1.6 / (download) - annotate - [select for diffs], Sun Apr 4 18:59:30 1993 UTC (31 years ago) by cgd
Branch: MAIN
Changes since 1.5: +2 -1 lines
Diff to previous 1.5 (colored) to selected 1.22 (colored)

updated for addition of rpcsvc

Revision 1.5 / (download) - annotate - [select for diffs], Wed Mar 31 23:53:28 1993 UTC (31 years ago) by cgd
Branch: MAIN
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored) to selected 1.22 (colored)

install of include subdirs from sys.386bsd now done relative to current
dir, rather than from /sys.

Revision 1.4 / (download) - annotate - [select for diffs], Tue Mar 23 16:36:35 1993 UTC (31 years ago) by cgd
Branch: MAIN
Changes since 1.3: +2 -1 lines
Diff to previous 1.3 (colored) to selected 1.22 (colored)

marked dirs netimp, netiso, and netns as "missing" from LDIRS

Revision 1.3 / (download) - annotate - [select for diffs], Mon Mar 22 23:02:52 1993 UTC (31 years ago) by cgd
Branch: MAIN
Changes since 1.2: +3 -3 lines
Diff to previous 1.2 (colored) to selected 1.22 (colored)

added "vm" to list of subdirs of /usr/include, and made a minor
cleanup so /usr/include/machine is handled right w/different types
of installs (links vs. copies).

Revision 1.2 / (download) - annotate - [select for diffs], Mon Mar 22 08:07:15 1993 UTC (31 years ago) by cgd
Branch: MAIN
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored) to selected 1.22 (colored)

made install copy, rather than symlink includes

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sun Mar 21 09:45:37 1993 UTC (31 years ago) by cgd
Branch: WFJ-920714, CSRG
CVS Tags: patchkit-0-2-2, WFJ-386bsd-01
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored) to selected 1.22 (colored)

initial import of 386bsd-0.1 sources

Revision 1.1 / (download) - annotate - [select for diffs], Sun Mar 21 09:45:37 1993 UTC (31 years ago) by cgd
Branch: MAIN
Diff to selected 1.22 (colored)

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>