aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--configure.in6
-rw-r--r--tools/Makefile.am3
3 files changed, 14 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 65e7e7262c..d61c0890ec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-01-05 JP Rosevear <jpr@ximian.com>
+
+ * tools/Makefile.am: Add e-util libs
+
+ * configure.in: try compiling with sys/types for freebsd
+
+ (Joe Marcus Clarke <marcus@freebsd.org>)
+
2004-01-05 Laurent Dhima <laurenti@alblinux.net>
* configure.in: Added "sq" to ALL_LINGUAS.
diff --git a/configure.in b/configure.in
index 2f238659b4..7f7c060203 100644
--- a/configure.in
+++ b/configure.in
@@ -65,10 +65,12 @@ AC_CHECK_HEADERS(alloca.h)
dnl check for socklen_t (in Unix98)
AC_MSG_CHECKING(for socklen_t)
-AC_TRY_COMPILE([#include <sys/socket.h>
+AC_TRY_COMPILE([#include <sys/types.h>
+#include <sys/socket.h>
socklen_t x;
],[],[AC_MSG_RESULT(yes)],[
-AC_TRY_COMPILE([#include <sys/socket.h>
+AC_TRY_COMPILE([#include <sys/types.h>
+#include <sys/socket.h>
int accept (int, struct sockaddr *, size_t *);
],[],[
AC_MSG_RESULT(size_t)
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 64d194ae77..22a9f9de26 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -32,6 +32,7 @@ killev_SOURCES = \
killev.c
killev_LDADD = \
- $(top_builddir)/e-util/libeutil.la
+ $(top_builddir)/e-util/libeutil.la \
+ $(E_UTIL_LIBS)
CLEANFILES = evolution-addressbook-clean $(BUILT_SOURCES)