From 21b2063a6fec9394a71e99509847627b63bda839 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Wed, 13 Jul 2011 14:26:38 +0200 Subject: [PATCH] Retry on permanent DNS error by default --- configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index cb49808..dd50dfb 100755 --- a/configure +++ b/configure @@ -102,7 +102,7 @@ For better control, use the options below. --disable-pps Disable PPS API support --disable-rtc Don't include RTC even on Linux --disable-linuxcaps Disable Linux capabilities support - --enable-forcednsretry Force retry on DNS failure + --disable-forcednsretry Don't retry on permanent DNS error --with-sendmail=PATH Path to sendmail binary [/usr/lib/sendmail] Fine tuning of the installation directories: @@ -173,7 +173,7 @@ feat_ipv6=1 feat_pps=1 try_setsched=0 try_lockmem=0 -feat_forcednsretry=0 +feat_forcednsretry=1 mail_program="/usr/lib/sendmail" for option @@ -239,8 +239,8 @@ do --disable-linuxcaps) feat_linuxcaps=0 ;; - --enable-forcednsretry) - feat_forcednsretry=1 + --disable-forcednsretry) + feat_forcednsretry=0 ;; --with-sendmail=* ) mail_program=`echo $option | sed -e 's/^.*=//;'`