]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
configure: Removed special casing from tcpwrap settings.
authorTimo Sirainen <tss@iki.fi>
Sat, 27 Mar 2010 02:58:49 +0000 (04:58 +0200)
committerTimo Sirainen <tss@iki.fi>
Sat, 27 Mar 2010 02:58:49 +0000 (04:58 +0200)
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

index 5967e64fd3dc71bad96dbb9f7f833e3638e14de5..847f2f90977347dcb89a5a0ddf0b1f187425a4ed 100644 (file)
@@ -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)