From 04dbef3b6086f5331a2926ef6830d53eff150b40 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sat, 27 Mar 2010 04:58:49 +0200 Subject: [PATCH] configure: Removed special casing from tcpwrap settings. ifdef check handles this now in the actual code. (And now I see that I could have avoided that change by just fixing this check to use "== yes" instead of "!= no", but what's done is done.) --HG-- branch : HEAD --- configure.in | 3 --- 1 file changed, 3 deletions(-) diff --git a/configure.in b/configure.in index 5967e64fd3..847f2f9097 100644 --- a/configure.in +++ b/configure.in @@ -2590,9 +2590,6 @@ dnl ** dnl get a list of setting .[ch] files, but list .h files first FILES1=`find $srcdir/src -name '*settings.[[ch]]'|grep "$srcdir/src/lib-" | sed 's/^\(.*\)\(.\)$/\2 \1\2/' | sort -r | sed s/^..//` FILES2=`find $srcdir/src -name '*settings.[[ch]]'|grep -v "$srcdir/src/lib-" | sed 's/^\(.*\)\(.\)$/\2 \1\2/' | grep -v all-settings | sort -r | sed s/^..//` -if test "$have_libwrap" != "yes"; then - FILES2=`echo $FILES2 | tr ' ' '\n' | grep -v tcpwrap-settings | tr '\n' ' '` -fi SETTING_FILES=`echo $FILES1 $FILES2 | sed -e s,$srcdir/src,./src,g -e 's,./src,$(top_srcdir)/src,g'` AC_SUBST(SETTING_FILES) -- 2.47.3