summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrahnds <rahnds@openbsd.org>2000-10-01 03:19:04 +0000
committerrahnds <rahnds@openbsd.org>2000-10-01 03:19:04 +0000
commitb844689e2f6b8ec3ea6431cbb4340de009e25478 (patch)
treedd7ee3f5b6e7cd8068cd5cd370ffecfd4083a2dd
parentSync the cache as specified by the powerpc manuals, didn't change anything. (diff)
downloadwireguard-openbsd-b844689e2f6b8ec3ea6431cbb4340de009e25478.tar.xz
wireguard-openbsd-b844689e2f6b8ec3ea6431cbb4340de009e25478.zip
Now that powerpc has shared libraries, make certain that link.h and dlfcn.h
are created properly.
-rw-r--r--include/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Makefile b/include/Makefile
index 120b58e87d6..295b5c41fdc 100644
--- a/include/Makefile
+++ b/include/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.84 2000/09/19 20:06:55 deraadt Exp $
+# $OpenBSD: Makefile,v 1.85 2000/10/01 03:19:04 rahnds Exp $
# $NetBSD: Makefile,v 1.59 1996/05/15 21:36:43 jtc Exp $
# @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91
@@ -27,7 +27,7 @@ FILES+= dlfcn.h link.h
MFILES= float.h frame.h stdarg.h varargs.h
LFILES= errno.h fcntl.h syslog.h termios.h
-.if (${MACHINE_ARCH} == "mips")
+.if (${MACHINE_ARCH} == "mips" || ${MACHINE_ARCH} == "powerpc")
MFILES+= link.h dlfcn.h
.endif