@@ -22,7 +22,7 @@ AC_DEFUN([BITCOIN_QT_CHECK],[
22
22
] )
23
23
24
24
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 .
26
26
dnl Inputs: $1: Variable to be set
27
27
dnl Inputs: $2: List of programs to search for
28
28
dnl Inputs: $3: Look for $2 here before $PATH
@@ -113,7 +113,7 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
113
113
114
114
115
115
dnl enable qt support
116
- AC_MSG_CHECKING ( if QT should be enabled )
116
+ AC_MSG_CHECKING ( if Qt should be enabled )
117
117
BITCOIN_QT_CHECK([
118
118
bitcoin_enable_qt=yes
119
119
bitcoin_enable_qt_test=yes
@@ -149,11 +149,11 @@ dnl All macros below are internal and should _not_ be used from the main
149
149
dnl configure.ac.
150
150
dnl ----
151
151
152
- dnl Internal. Check if the included version of QT is Qt5.
152
+ dnl Internal. Check if the included version of Qt is Qt5.
153
153
dnl Requires: INCLUDES must be populated as necessary.
154
154
dnl Output: bitcoin_cv_qt5=yes|no
155
155
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 ,[
157
157
AC_TRY_COMPILE (
158
158
[ #include <QtCore>] ,
159
159
[
@@ -167,13 +167,13 @@ AC_DEFUN([_BITCOIN_QT_CHECK_QT5],[
167
167
bitcoin_cv_qt5=no )
168
168
] ) ] )
169
169
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.
171
171
dnl Requires: Qt5. This check cannot determine if Qt4 is static.
172
172
dnl Requires: INCLUDES and LIBS must be populated as necessary.
173
173
dnl Output: bitcoin_cv_static_qt=yes|no
174
174
dnl Output: Defines QT_STATICPLUGIN if plugins are static.
175
175
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 ,[
177
177
AC_TRY_COMPILE (
178
178
[ #include <QtCore>] ,
179
179
[
@@ -187,7 +187,7 @@ AC_DEFUN([_BITCOIN_QT_IS_STATIC],[
187
187
[ bitcoin_cv_static_qt=no] )
188
188
] )
189
189
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] )
191
191
fi
192
192
] )
193
193
@@ -197,7 +197,7 @@ dnl Inputs: $1: A series of Q_IMPORT_PLUGIN().
197
197
dnl Inputs: $2: The libraries that resolve $1.
198
198
dnl Output: QT_LIBS is prepended or configure exits.
199
199
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 )
201
201
CHECK_STATIC_PLUGINS_TEMP_LIBS="$LIBS"
202
202
LIBS="$2 $QT_LIBS $LIBS"
203
203
AC_TRY_LINK ( [
0 commit comments