about summary refs log tree commit diff
path: root/configure.ng
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2013-03-18 12:45:32 +0100
committerAlexander Barton <alex@barton.de>2013-03-24 16:39:15 +0100
commita14eb495b75c8c2a2a32ddb6eecf50dc174f811c (patch)
tree3ea860de363089948a4e01026d3eeee936e9d165 /configure.ng
parent0131e1e00bc8ad35b030dfa6b8ab769b0657e174 (diff)
downloadngircd-a14eb495b75c8c2a2a32ddb6eecf50dc174f811c.tar.gz
ngircd-a14eb495b75c8c2a2a32ddb6eecf50dc174f811c.zip
Make configure[.ng] compatible with autoconf 1.10 again
The incompatibility has been introduced by commit d0c9f4a6,
"configure: search for iconv_open as well as libiconv_open".
Diffstat (limited to 'configure.ng')
-rw-r--r--configure.ng15
1 files changed, 8 insertions, 7 deletions
diff --git a/configure.ng b/configure.ng
index 6c28f39a..49fc75a9 100644
--- a/configure.ng
+++ b/configure.ng
@@ -527,14 +527,15 @@ if test "$x_ircplus_on" = "yes"; then
 				LDFLAGS="-L$withval/lib $LDFLAGS"
 			fi
 			AC_CHECK_LIB(iconv, iconv_open)
-			AC_CHECK_FUNCS(iconv_open, x_iconv_on=yes,
+			AC_CHECK_FUNCS(iconv_open, x_iconv_on=yes)
+			if test "$x_iconv_on" != "yes"; then
 				AC_CHECK_LIB(iconv, libiconv_open)
-				AC_CHECK_FUNCS(libiconv_open, x_iconv_on=yes,
-					AC_MSG_ERROR([Can't enable libiconv support!])
-				)
-			)
-		  fi
-		]
+				AC_CHECK_FUNCS(libiconv_open, x_iconv_on=yes)
+			fi
+			if test "$x_iconv_on" != "yes"; then
+				AC_MSG_ERROR([Can't enable libiconv support!])
+			fi
+		fi ]
 	)
 	if test "$x_iconv_on" = "yes"; then
 		AC_DEFINE(ICONV, 1)