Two small patches for FreeBSD



Hi,

Attached are two small patches against ORBit and linc HEAD, fixing their
builds on FreeBSD. Can I commit this?

-- 
Theo van Klaveren <t vanklaveren student utwente nl>
http://home.student.utwente.nl/t.vanklaveren
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/linc/ChangeLog,v
retrieving revision 1.77
diff -u -3 -p -u -r1.77 ChangeLog
--- ChangeLog	2001/11/25 23:37:50	1.77
+++ ChangeLog	2001/12/01 14:50:36
@@ -1,3 +1,8 @@
+2001-12-01  Theo van Klaveren  <t vanklaveren student utwente nl>
+
+	* src/linc-protocols.c: Add <netinet/in.h> to includes.
+	Fixes build on FreeBSD.
+
 2001-11-26  Michael Meeks  <michael ximian com>
 
 	* Version 0.1.10
Index: src/linc-protocols.c
===================================================================
RCS file: /cvs/gnome/linc/src/linc-protocols.c,v
retrieving revision 1.30
diff -u -3 -p -u -r1.30 linc-protocols.c
--- src/linc-protocols.c	2001/11/22 03:02:36	1.30
+++ src/linc-protocols.c	2001/12/01 14:50:36
@@ -23,6 +23,7 @@
 #include <utime.h>
 #include <errno.h>
 #include <string.h>
+#include <netinet/in.h>
 #include <resolv.h>
 #include <netdb.h>
 
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/ORBit2/ChangeLog,v
retrieving revision 1.266
diff -u -3 -p -u -r1.266 ChangeLog
--- ChangeLog	2001/11/29 17:04:34	1.266
+++ ChangeLog	2001/12/01 14:57:53
@@ -1,3 +1,9 @@
+2001-12-01  Theo van Klaveren  <t vanklaveren student utwente nl>
+
+	* src/orb/include/Makefile.am: make -> $(MAKE).
+	* src/orb/GIOP/giop-send-buffer.c: add <sys/types.h> to the
+	includes. Fixes the build on FreeBSD.
+
 2001-11-29  Mark McLoughlin  <mark skynet ie>
 
 	* src/orb/GIOP/giop.c: (giop_dump_recv): print the 
Index: src/orb/GIOP/giop-send-buffer.c
===================================================================
RCS file: /cvs/gnome/ORBit2/src/orb/GIOP/giop-send-buffer.c,v
retrieving revision 1.21
diff -u -3 -p -u -r1.21 giop-send-buffer.c
--- src/orb/GIOP/giop-send-buffer.c	2001/11/08 04:47:14	1.21
+++ src/orb/GIOP/giop-send-buffer.c	2001/12/01 14:57:53
@@ -1,5 +1,6 @@
 #include <config.h>
 #include <string.h>
+#include <sys/types.h>
 #include <sys/uio.h>
 #include "giop-private.h"
 #include <orbit/GIOP/giop.h>
Index: src/orb/include/Makefile.am
===================================================================
RCS file: /cvs/gnome/ORBit2/src/orb/include/Makefile.am,v
retrieving revision 1.5
diff -u -3 -p -u -r1.5 Makefile.am
--- src/orb/include/Makefile.am	2001/08/15 07:14:09	1.5
+++ src/orb/include/Makefile.am	2001/12/01 14:57:53
@@ -1,3 +1,3 @@
 
 all:
-	(cd $(top_builddir)/include; make)
+	(cd $(top_builddir)/include; $(MAKE))


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]