diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2013-12-11 16:27:56 -0500 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2013-12-11 16:27:56 -0500 |
commit | b878b763cb2898e83851353383e5de5bc2d0cc94 (patch) | |
tree | 72a2e16a2a8a3b1031f1656a89f7379dc36d8790 /configure.ac | |
parent | 5e47c2b70a4cffa2de60d578ddd6b7767879c83f (diff) |
build: fix syntax error on older m4/autoconf.
Fixes #3358. This affects preinstalled autotools on osx 10.6.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 34509993a0..af230c355d 100644 --- a/configure.ac +++ b/configure.ac @@ -531,10 +531,9 @@ else CPPFLAGS="$CPPFLAGS $QT_INCLUDES" fi ]) - - BITCOIN_QT_CHECK(AC_CHECK_HEADER([QtPlugin],,BITCOIN_QT_FAIL(QtCore headers missing),)) - BITCOIN_QT_CHECK(AC_CHECK_HEADER([QApplication],, BITCOIN_QT_FAIL(QtGui headers missing),)) - BITCOIN_QT_CHECK(AC_CHECK_HEADER([QLocalSocket],, BITCOIN_QT_FAIL(QtNetwork headers missing),)) + BITCOIN_QT_CHECK([AC_CHECK_HEADER([QtPlugin],,BITCOIN_QT_FAIL(QtCore headers missing))]) + BITCOIN_QT_CHECK([AC_CHECK_HEADER([QApplication],, BITCOIN_QT_FAIL(QtGui headers missing))]) + BITCOIN_QT_CHECK([AC_CHECK_HEADER([QLocalSocket],, BITCOIN_QT_FAIL(QtNetwork headers missing))]) BITCOIN_QT_CHECK([ if test x$use_tests = xyes; then |