* Permit multiple "-e" in radmin. * Add support for originating CoA-Request and Disconnect-Request. See raddb/sites-available/originate-coa. * Added "lifetime" and "max_queries" to raddb/sql.conf. This helps address the problem of hung SQL sockets. * Allow packets to be injected via radmin. See "inject help" in radmin. * Answer VMPS reconfirmation request. * Sample logrotate script in scripts/logrotate.freeradius * Add configurable poll interval for "detail" listeners * New "raddebug" command. This prints debugging information from a running server. * Add "require_message_authenticator" configuration to home_server configuration. This makes the server add Message-Authenticator to all outgoing Access-Request packets. * Added smsotp module. * Enabled the administration socket in the default install. See raddb/sites-available/control-socket, and "man radmin" * Handle duplicate clients, such as with replicated or load-balanced SQL servers and "readclients = yes" * Bug fixes
48 lines
1.9 KiB
Text
48 lines
1.9 KiB
Text
$NetBSD: patch-ai,v 1.3 2009/04/23 18:26:05 adam Exp $
|
|
|
|
--- configure.orig 2009-03-11 03:26:50.000000000 +0100
|
|
+++ configure
|
|
@@ -20336,13 +20336,13 @@ fi
|
|
done
|
|
|
|
|
|
- { echo "$as_me:$LINENO: checking for pthread_create in -lpthread" >&5
|
|
-echo $ECHO_N "checking for pthread_create in -lpthread... $ECHO_C" >&6; }
|
|
+ { echo "$as_me:$LINENO: checking for pthread_create in ${PTHREAD_LDFLAGS} ${PTHREAD_LIBS}" >&5
|
|
+echo $ECHO_N "checking for pthread_create in ${PTHREAD_LDFLAGS} ${PTHREAD_LIBS}... $ECHO_C" >&6; }
|
|
if test "${ac_cv_lib_pthread_pthread_create+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
-LIBS="-lpthread $LIBS"
|
|
+LIBS="${PTHREAD_LDFLAGS} ${PTHREAD_LIBS} $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
/* confdefs.h. */
|
|
_ACEOF
|
|
@@ -20399,7 +20399,7 @@ fi
|
|
echo "${ECHO_T}$ac_cv_lib_pthread_pthread_create" >&6; }
|
|
if test $ac_cv_lib_pthread_pthread_create = yes; then
|
|
CFLAGS="$CFLAGS -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS"
|
|
- LIBS="$LIBS -lpthread"
|
|
+ LIBS="$LIBS ${PTHREAD_LDFLAGS} ${PTHREAD_LIBS}"
|
|
else
|
|
{ echo "$as_me:$LINENO: checking for pthread_create in -lc_r" >&5
|
|
echo $ECHO_N "checking for pthread_create in -lc_r... $ECHO_C" >&6; }
|
|
@@ -20867,7 +20867,7 @@ if test "${ac_cv_lib_ssl_SSL_new+set}" =
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
-LIBS="-lssl $LIBS"
|
|
+LIBS="-lssl -lcrypto $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
/* confdefs.h. */
|
|
_ACEOF
|
|
@@ -24684,7 +24684,7 @@ gethostbyaddrrstyle=""
|
|
{ echo "$as_me:$LINENO: checking gethostbyaddr_r() syntax" >&5
|
|
echo $ECHO_N "checking gethostbyaddr_r() syntax... $ECHO_C" >&6; }
|
|
case "$host" in
|
|
-*-freebsd*)
|
|
+*-freebsd* | *-dragonfly*)
|
|
{ echo "$as_me:$LINENO: checking whether gethostbyaddr_r is declared" >&5
|
|
echo $ECHO_N "checking whether gethostbyaddr_r is declared... $ECHO_C" >&6; }
|
|
if test "${ac_cv_have_decl_gethostbyaddr_r+set}" = set; then
|