diff options
author | ru <ru@FreeBSD.org> | 2003-07-02 13:27:54 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-07-02 13:27:54 +0000 |
commit | f36e9650562f41dfbb1f89ea678e5f536f36ab7a (patch) | |
tree | 1e68ebbb42ce581ed2ef622d7ef9af897c93d6a1 | |
parent | 7bd396d9121f99c03d503c36c247e05f60b614ba (diff) | |
download | FreeBSD-src-f36e9650562f41dfbb1f89ea678e5f536f36ab7a.zip FreeBSD-src-f36e9650562f41dfbb1f89ea678e5f536f36ab7a.tar.gz |
Make libc/${MACHINE_ARCH} include directory not required by Alpha.
Submitted by: bde
Tested by: beast
-rw-r--r-- | lib/libc_r/Makefile | 2 | ||||
-rw-r--r-- | lib/libc_r/arch/alpha/_atomic_lock.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc_r/Makefile b/lib/libc_r/Makefile index 3483437..f5edef9 100644 --- a/lib/libc_r/Makefile +++ b/lib/libc_r/Makefile @@ -11,7 +11,7 @@ LIB=c_r SHLIB_MAJOR= 5 CFLAGS+=-DPTHREAD_KERNEL -D_THREAD_SAFE CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/uthread \ - -I${.CURDIR}/../../include -I${.CURDIR}/../libc/${MACHINE_ARCH} + -I${.CURDIR}/../../include # Uncomment this if you want libc_r to contain debug information for # thread locking. diff --git a/lib/libc_r/arch/alpha/_atomic_lock.S b/lib/libc_r/arch/alpha/_atomic_lock.S index 1cfb52f..1ddceb0 100644 --- a/lib/libc_r/arch/alpha/_atomic_lock.S +++ b/lib/libc_r/arch/alpha/_atomic_lock.S @@ -23,7 +23,7 @@ * */ -#include "SYS.h" +#include <machine/asm.h> /* * Atomicly lock a location with an identifier provided the location |