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/sparc/stand/libsa/Makefile | |
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/sparc/stand/libsa/Makefile')
-rw-r--r-- | sys/arch/sparc/stand/libsa/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/stand/libsa/Makefile b/sys/arch/sparc/stand/libsa/Makefile index 0002c987e1a..cc9a3519bd3 100644 --- a/sys/arch/sparc/stand/libsa/Makefile +++ b/sys/arch/sparc/stand/libsa/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.2 2003/06/01 17:00:39 deraadt Exp $ +# $OpenBSD: Makefile,v 1.3 2004/07/13 21:03:39 marc Exp $ LIB= sa .PATH: ${.CURDIR}/../../../../lib/libsa -CFLAGS= -O2 -D__INTERNAL_LIBSA_CREAD \ +CFLAGS= -O2 -D__INTERNAL_LIBSA_CREAD -Derrno=errno \ -I${.CURDIR} -I${.CURDIR}/../include -I${.CURDIR}/../.. \ -I${.CURDIR}/../../.. -I${.CURDIR}/../../../.. \ -I${.CURDIR}/../../../../lib/libsa |