summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8337d67)
raw | patch | inline | side by side (parent: 8337d67)
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sat, 27 May 2017 12:54:22 +0000 (14:54 +0200) | ||
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sat, 27 May 2017 12:54:22 +0000 (14:54 +0200) |
AS_IF is slightly more portable, but slightly less readable.
configure.ac | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index d3187b557ec907d3b4c494fe6bb30c4ea8c47504..90acfb8dfda997059a3dc70480276c1fd692b708 100644 (file)
--- a/configure.ac
+++ b/configure.ac
AC_MSG_ERROR([bison is missing and you do not have ${srcdir}/src/liboconfig/parser.c. Please install bison])
fi
-AS_IF([test "x$lt_cv_dlopen" = "xno"],
- [AC_MSG_ERROR([Your system does not support dlopen])]
-)
+if test "x$lt_cv_dlopen" = "xno"; then
+ AC_MSG_ERROR([Your system does not support dlopen])
+fi
AC_SUBST([DLOPEN_LIBS], [$lt_cv_dlopen_libs])