Skip to content

Commit f472990

Browse files
committed
Bugfix: Correct captitalisation of Qt
1 parent f930341 commit f472990

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ if test x$bitcoin_enable_qt != xno; then
622622
if test x$use_tests = xyes; then
623623
BUILD_TEST_QT="test"
624624
if test x$bitcoin_enable_qt_test != xyes; then
625-
AC_MSG_ERROR("QT Test lib not found. Use --disable-tests or --without-qt.")
625+
AC_MSG_ERROR("Qt Test lib not found. Use --disable-tests or --without-qt.")
626626
fi
627627
fi
628628
fi

src/m4/bitcoin_qt.m4

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ AC_DEFUN([BITCOIN_QT_CHECK],[
2222
])
2323

2424
dnl BITCOIN_QT_PATH_PROGS([FOO], [foo foo2], [/path/to/search/first], [continue if missing])
25-
dnl Helper for finding the path of programs needed for QT.
25+
dnl Helper for finding the path of programs needed for Qt.
2626
dnl Inputs: $1: Variable to be set
2727
dnl Inputs: $2: List of programs to search for
2828
dnl Inputs: $3: Look for $2 here before $PATH
@@ -113,7 +113,7 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
113113
114114
115115
dnl enable qt support
116-
AC_MSG_CHECKING(if QT should be enabled)
116+
AC_MSG_CHECKING(if Qt should be enabled)
117117
BITCOIN_QT_CHECK([
118118
bitcoin_enable_qt=yes
119119
bitcoin_enable_qt_test=yes
@@ -149,11 +149,11 @@ dnl All macros below are internal and should _not_ be used from the main
149149
dnl configure.ac.
150150
dnl ----
151151

152-
dnl Internal. Check if the included version of QT is Qt5.
152+
dnl Internal. Check if the included version of Qt is Qt5.
153153
dnl Requires: INCLUDES must be populated as necessary.
154154
dnl Output: bitcoin_cv_qt5=yes|no
155155
AC_DEFUN([_BITCOIN_QT_CHECK_QT5],[
156-
AC_CACHE_CHECK(for QT 5, bitcoin_cv_qt5,[
156+
AC_CACHE_CHECK(for Qt 5, bitcoin_cv_qt5,[
157157
AC_TRY_COMPILE(
158158
[#include <QtCore>],
159159
[
@@ -167,13 +167,13 @@ AC_DEFUN([_BITCOIN_QT_CHECK_QT5],[
167167
bitcoin_cv_qt5=no)
168168
])])
169169

170-
dnl Internal. Check if the linked version of QT was built as static libs.
170+
dnl Internal. Check if the linked version of Qt was built as static libs.
171171
dnl Requires: Qt5. This check cannot determine if Qt4 is static.
172172
dnl Requires: INCLUDES and LIBS must be populated as necessary.
173173
dnl Output: bitcoin_cv_static_qt=yes|no
174174
dnl Output: Defines QT_STATICPLUGIN if plugins are static.
175175
AC_DEFUN([_BITCOIN_QT_IS_STATIC],[
176-
AC_CACHE_CHECK(for static QT, bitcoin_cv_static_qt,[
176+
AC_CACHE_CHECK(for static Qt, bitcoin_cv_static_qt,[
177177
AC_TRY_COMPILE(
178178
[#include <QtCore>],
179179
[
@@ -187,7 +187,7 @@ AC_DEFUN([_BITCOIN_QT_IS_STATIC],[
187187
[bitcoin_cv_static_qt=no])
188188
])
189189
if test xbitcoin_cv_static_qt = xyes; then
190-
AC_DEFINE(QT_STATICPLUGIN, 1, [Define this symbol for static QT plugins])
190+
AC_DEFINE(QT_STATICPLUGIN, 1, [Define this symbol for static Qt plugins])
191191
fi
192192
])
193193

@@ -197,7 +197,7 @@ dnl Inputs: $1: A series of Q_IMPORT_PLUGIN().
197197
dnl Inputs: $2: The libraries that resolve $1.
198198
dnl Output: QT_LIBS is prepended or configure exits.
199199
AC_DEFUN([_BITCOIN_QT_CHECK_STATIC_PLUGINS],[
200-
AC_MSG_CHECKING(for static QT plugins: $2)
200+
AC_MSG_CHECKING(for static Qt plugins: $2)
201201
CHECK_STATIC_PLUGINS_TEMP_LIBS="$LIBS"
202202
LIBS="$2 $QT_LIBS $LIBS"
203203
AC_TRY_LINK([

0 commit comments

Comments
 (0)