diff options
author | 2014-11-18 12:41:16 +0000 | |
---|---|---|
committer | 2014-11-18 12:41:16 +0000 | |
commit | 961d826b51298e6eaf6d0fd2169a2f5603f8d011 (patch) | |
tree | 013e7dedead2ecda923f6dfe12f8f8fc225c72f9 /lib/libkvm/kvm_udf.c | |
parent | sync (diff) | |
download | wireguard-openbsd-961d826b51298e6eaf6d0fd2169a2f5603f8d011.tar.xz wireguard-openbsd-961d826b51298e6eaf6d0fd2169a2f5603f8d011.zip |
udf needs siphash to build.
i dont know if this is the right fix, but the tree needs to build.
Diffstat (limited to 'lib/libkvm/kvm_udf.c')
-rw-r--r-- | lib/libkvm/kvm_udf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libkvm/kvm_udf.c b/lib/libkvm/kvm_udf.c index 94ce9b9c427..5496c0d64b4 100644 --- a/lib/libkvm/kvm_udf.c +++ b/lib/libkvm/kvm_udf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kvm_udf.c,v 1.7 2013/11/16 00:37:11 guenther Exp $ */ +/* $OpenBSD: kvm_udf.c,v 1.8 2014/11/18 12:41:16 dlg Exp $ */ /* * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org> @@ -35,6 +35,8 @@ #include <sys/sysctl.h> #include <sys/specdev.h> +#include <crypto/siphash.h> + #include <isofs/udf/ecma167-udf.h> #include <isofs/udf/udf.h> |