1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00

Commited. Thanks!

This commit is contained in:
Daichi GOTO 2003-06-23 09:06:38 +00:00
parent 4666aa783f
commit 857fca4e68
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=83470
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
--- drivers/libdha/irq.c.orig Sat Apr 5 19:39:46 2003
+++ drivers/libdha/irq.c Sat Apr 5 19:48:37 2003
@@ -1,6 +1,7 @@
/* HW IRQ support */
#include <stdio.h>
#include <sys/ioctl.h>
+#include <sys/types.h>
#include <sys/mman.h> /* mlock */
#include <pthread.h>
#include <errno.h>

View File

@ -0,0 +1,14 @@
--- drivers/libdha/libdha.h.orig Sat Apr 5 19:39:46 2003
+++ drivers/libdha/libdha.h Sat Apr 5 19:44:20 2003
@@ -16,7 +16,11 @@
#ifndef LIBDHA_H
#define LIBDHA_H
+#ifdef HAVE_STDINT_H
#include <stdint.h>
+#else
+#include <inttypes.h> /* for int64_t */
+#endif
#ifdef __cplusplus
extern "C" {