# HG changeset patch # User js # Date 1158677634 25200 # Node ID 3643db656a4fc2f68e03876e0b8e70e960a4bea2 # Parent e0a8ee3543d3633b3edc2af62a35c7f7f0e6f12a [svn] Removed the check for socklen_t. This fixes building on NetBSD. curl defined socklen_t anyway, so no need for this. This *MIGHT* break something on some systems (I haven't found one yet, though), so PLEASE report all bugs to me. diff -r e0a8ee3543d3 -r 3643db656a4f ChangeLog --- a/ChangeLog Mon Sep 18 13:43:46 2006 -0700 +++ b/ChangeLog Tue Sep 19 07:53:54 2006 -0700 @@ -1,3 +1,12 @@ +2006-09-18 20:43:46 +0000 William Pitcock + revision [76] + - version bump to 1.2.1 + + + Changes: Modified: + +1 -1 trunk/configure.ac + + 2006-09-18 20:24:39 +0000 William Pitcock revision [74] - require audacious 1.1.99 instead of 1.2.0 diff -r e0a8ee3543d3 -r 3643db656a4f configure.ac --- a/configure.ac Mon Sep 18 13:43:46 2006 -0700 +++ b/configure.ac Tue Sep 19 07:53:54 2006 -0700 @@ -123,23 +123,6 @@ AC_SUBST(TAGLIB_CFLAGS) AC_SUBST(TAGLIB_LIBS) -# Check if socklen_t is defined - -AC_CACHE_CHECK(for socklen_t, beep_cv_type_socklen_t, - [AC_TRY_COMPILE( - [#include - #include ], - [socklen_t s;], - [beep_cv_type_socklen_t=yes], - [beep_cv_type_socklen_t=no] - ) - ] -) - -if test "$beep_cv_type_socklen_t" = "no"; then - AC_DEFINE(socklen_t, int, [Define to int if the socklen_t type is missing]) -fi - dnl IPv6 support dnl ======================== AC_ARG_ENABLE(ipv6,