diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 2004-07-13 21:03:40 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 2004-07-13 21:03:40 +0000 |
commit | 79acdfbd39f0127e25ba7aad63839b6455171e08 (patch) | |
tree | 62825670c1162f70105c724d279ff92420ba893c /sys/arch/alpha/stand | |
parent | 4d292eec5452f2145e7e2e8155ad77db73a23a7d (diff) |
errno changes, lib major version bumps, and general flag day
To build you must:
cd /usr/src && make obj && make includes
cd lib/libc && make depend && make && NOMAN=1 sudo make install
cd /usr/src && make build
Diffstat (limited to 'sys/arch/alpha/stand')
-rw-r--r-- | sys/arch/alpha/stand/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/alpha/stand/Makefile.inc b/sys/arch/alpha/stand/Makefile.inc index d71f2ca141c..5c1e5d62d1a 100644 --- a/sys/arch/alpha/stand/Makefile.inc +++ b/sys/arch/alpha/stand/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.7 2002/12/02 09:00:22 miod Exp $ +# $OpenBSD: Makefile.inc,v 1.8 2004/07/13 21:03:36 marc Exp $ # $NetBSD: Makefile.inc,v 1.8 1997/04/06 08:39:38 cgd Exp $ .include <bsd.own.mk> # for ELF_TOOLCHAIN definition @@ -17,6 +17,7 @@ CPPFLAGS+= -DPRIMARY_LOAD_ADDRESS="0x${PRIMARY_LOAD_ADDRESS}" CPPFLAGS+= -DSECONDARY_LOAD_ADDRESS="0x${SECONDARY_LOAD_ADDRESS}" CPPFLAGS+= -D_STANDALONE +CPPFLAGS+= -Derrno=errno XCPPFLAGS+= -DHEAP_LIMIT="0x${HEAP_LIMIT}" |