diff options
author | 2001-05-31 14:03:04 +0000 | |
---|---|---|
committer | 2001-05-31 14:03:04 +0000 | |
commit | 0e3efe972c61e3ec5a44498be4912f593b01340e (patch) | |
tree | 402898ffb3518e0ac06af3a01a17ab972b0a6c56 | |
parent | If we can't find atexit (because we linked against libc.a), (diff) | |
download | wireguard-openbsd-0e3efe972c61e3ec5a44498be4912f593b01340e.tar.xz wireguard-openbsd-0e3efe972c61e3ec5a44498be4912f593b01340e.zip |
Install link.h and dlfcn.h on alpha.
-rw-r--r-- | include/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/Makefile b/include/Makefile index 700ef39ea8f..548d3345fc1 100644 --- a/include/Makefile +++ b/include/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.91 2001/05/14 12:34:27 espie Exp $ +# $OpenBSD: Makefile,v 1.92 2001/05/31 14:03:04 art Exp $ # $NetBSD: Makefile,v 1.59 1996/05/15 21:36:43 jtc Exp $ # @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91 @@ -35,6 +35,9 @@ LFILES= errno.h fcntl.h syslog.h termios.h .if (${MACHINE_ARCH} == "mips" || ${MACHINE_ARCH} == "powerpc") MFILES+= link.h dlfcn.h .endif +.if (${MACHINE_ARCH} == "alpha") +FILES+=link.h dlfcn.h +.endif DIRS= arpa protocols rpc rpcsvc LDIRS= crypto ddb dev isofs miscfs net netatalk netccitt netinet \ |