blob: 80352801242e67540c55ab411eb995d982465379 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-an,v 1.1 2008/11/24 21:13:19 hasso Exp $
--- hald/freebsd/hf-ata.c.orig 2008-11-24 21:32:34 +0200
+++ hald/freebsd/hf-ata.c 2008-11-24 21:33:08 +0200
@@ -30,7 +30,11 @@
#include <unistd.h>
#include <errno.h>
#include <sys/ioctl.h>
+#ifdef __DragonFly__
+#include <sys/nata.h>
+#else
#include <sys/ata.h>
+#endif
#include "../logger.h"
|