summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2004-03-17 22:53:11 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2004-03-17 22:53:11 +0000
commit309e12cc7f5758bfe36dc5e378b8da6df298a7c7 (patch)
tree09ddc4106eedb5dbabee175811f2fed5aa6e83dd /devel
parentFix installation by avoiding GNU install longopts. (diff)
- Fix build on AMD64 and Alpha 5-x
Submitted by: maintainer Reported by: bento via kris
Notes
Notes: svn path=/head/; revision=104334
Diffstat (limited to 'devel')
-rw-r--r--devel/libopendaap/files/patch-mDNS-mDNSClientAPI.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/libopendaap/files/patch-mDNS-mDNSClientAPI.h b/devel/libopendaap/files/patch-mDNS-mDNSClientAPI.h
new file mode 100644
index 000000000000..23d4145fc48f
--- /dev/null
+++ b/devel/libopendaap/files/patch-mDNS-mDNSClientAPI.h
@@ -0,0 +1,13 @@
+--- mDNS/mDNSClientAPI.h.orig Wed Mar 17 23:45:20 2004
++++ mDNS/mDNSClientAPI.h Wed Mar 17 23:45:36 2004
+@@ -480,8 +480,8 @@
+ typedef unsigned char mDNSu8;
+ typedef signed short mDNSs16;
+ typedef unsigned short mDNSu16;
+-typedef signed long mDNSs32;
+-typedef unsigned long mDNSu32;
++typedef signed int mDNSs32;
++typedef unsigned int mDNSu32;
+
+ // To enforce useful type checking, we make mDNSInterfaceID be a pointer to a dummy struct
+ // This way, mDNSInterfaceIDs can be assigned, and compared with each other, but not with other types