aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-07-07 20:53:52 +0000
committerted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-07-07 20:53:52 +0000
commit69607b678fabd81ce7e77bd50cec0fa343e73b3e (patch)
treee176c234b585aa6e8ac336e85fce6671d5584637 /configure.ac
parentAdd some unit tests for Linux WriteSymbolFile (diff)
downloadbreakpad-69607b678fabd81ce7e77bd50cec0fa343e73b3e.tar.xz
Remove NetworkSourceLine{Resolver,Server} and related code. It never wound up being useful enough to use in production, so let's drop the maintenence burden
R=jessicag at http://breakpad.appspot.com/292001/show git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@795 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 0 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac
index 58e417dc..2e08169a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -118,15 +118,6 @@ if test x$LINUX_HOST = xfalse -a x$disable_processor = xtrue -a x$disable_tools
AC_MSG_ERROR([--disable-processor and --disable-tools were specified, and not building for Linux. Nothing to build!])
fi
-AC_CHECK_MEMBER(struct sockaddr.sa_len,
- [AC_DEFINE([GET_SA_LEN(X)],[(((struct sockaddr*)&(X))->sa_len)],
- [actual length of specific struct sockaddr])],
- [AC_DEFINE([GET_SA_LEN(X)],
- [(((struct sockaddr*)&(X))->sa_family == AF_INET ? sizeof(struct sockaddr_in) : \
- ((struct sockaddr*)&(X))->sa_family == AF_INET6 ? sizeof(struct sockaddr_in6) : sizeof(struct sockaddr))],
- [actual length of specific struct sockaddr])],
- [#include <sys/socket.h>])
-
AC_ARG_ENABLE(selftest,
AS_HELP_STRING([--enable-selftest],
[Run extra tests with "make check" ]