#
d90963f5 |
| 20-Aug-1994 |
Paul Richards <paul@FreeBSD.org> |
Added skey.h to Makefile and reformatted the list a bit. Reviewed by: Submitted by:
|
#
9ae15916 |
| 10-Aug-1994 |
Garrett Wollman <wollman@FreeBSD.org> |
Make it easier for programs to figure out what revision of FreeBSD they are running under. Here's how to bootstrap (order is important):
1) Re-compile gcc (just the driver is all you need). 2) Re-c
Make it easier for programs to figure out what revision of FreeBSD they are running under. Here's how to bootstrap (order is important):
1) Re-compile gcc (just the driver is all you need). 2) Re-compile libc. 3) Re-compile your kernel. Reboot. 4) cd /usr/src/include; make install
You can now detect the compilation environment with the following code:
#if !defined(__FreeBSD__) #define __FreeBSD_version 199401 #elif __FreeBSD__ == 1 #define __FreeBSD_version 199405 #else #include <osreldate.h> #endif
You can determine the run-time environment by calling the new C library function getosreldate(), or by examining the MIB variable kern.osreldate.
For the time being, the release date is defined as 199409, which we have already established as our target.
show more ...
|
#
437c3dee |
| 08-Aug-1994 |
Garrett Wollman <wollman@FreeBSD.org> |
Make sure that rpcsvc headers actually get installed.
|
#
02474d67 |
| 04-Aug-1994 |
Garrett Wollman <wollman@FreeBSD.org> |
histedit.h is now installed from here, not from libedit.
|
#
dba7a33e |
| 04-Aug-1994 |
Garrett Wollman <wollman@FreeBSD.org> |
Install RPC headers from include, like they always should have been.
|
#
a68c32c7 |
| 04-Aug-1994 |
Garrett Wollman <wollman@FreeBSD.org> |
Added glueo build rpcsvc stuff, and install floatingpoint.h.
|
Revision tags: release/1.1.5.1_cvs |
|
#
ee9183fa |
| 28-May-1994 |
Rodney W. Grimes <rgrimes@FreeBSD.org> |
Add link.h to list of headers to install.
|
#
3a7b365f |
| 28-May-1994 |
Rodney W. Grimes <rgrimes@FreeBSD.org> |
Make comments about what is missing the same as in other makefiles. Remove the commented out stuff about X11 as the system sources should not be doing anything with X11.
|
#
fb502a37 |
| 26-May-1994 |
Rodney W. Grimes <rgrimes@FreeBSD.org> |
Update the Makefile to work correctly when copying and/or symlinking /usr/include.
Make comment about mp.h missing and remove it from the list of files. Fix installation of ufs include files as this
Update the Makefile to work correctly when copying and/or symlinking /usr/include.
Make comment about mp.h missing and remove it from the list of files. Fix installation of ufs include files as this is now a tree ufs/{ffs,lfs, mfs,ufs}.
Make setting of SHARED optional by makeing it SHARED?=.
Comment out installation of X11 includes since it does not work for XFree86 until we get XFree86 to install as /usr/X11.
Update _PATH_UNIX to be /kernel. Remove /usr/{contrib,old}/bin from _PATH_STDPATH.
show more ...
|
#
59deaec5 |
| 24-May-1994 |
Rodney W. Grimes <rgrimes@FreeBSD.org> |
BSD 4.4 Lite Include Sources
|