You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/m4/bitcoin_qt.m4
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -47,9 +47,9 @@ dnl input variables are set correctly.
47
47
dnl CAUTION: Do not use this inside of a conditional.
48
48
AC_DEFUN([BITCOIN_QT_INIT],[
49
49
dnl enable qt support
50
-
AC_ARG_WITH([qt],
51
-
[AS_HELP_STRING([--with-qt],
52
-
[with qt (no|qt4|qt5|auto. default is auto, qt4 tried first.)])],
50
+
AC_ARG_WITH([gui],
51
+
[AS_HELP_STRING([--with-gui],
52
+
[with GUI (no|qt4|qt5|auto. default is auto, qt4 tried first.)])],
53
53
[
54
54
bitcoin_qt_want_version=$withval
55
55
if test x$bitcoin_qt_want_version = xyes; then
@@ -59,10 +59,10 @@ AC_DEFUN([BITCOIN_QT_INIT],[
59
59
],
60
60
[bitcoin_qt_want_version=auto])
61
61
62
-
AC_ARG_WITH([qt-incdir],[AS_HELP_STRING([--with-qt-incdir=INC_DIR],[specify qt include path (overridden by pkgconfig)])], [qt_include_path=$withval], [])
63
-
AC_ARG_WITH([qt-libdir],[AS_HELP_STRING([--with-qt-libdir=LIB_DIR],[specify qt lib path (overridden by pkgconfig)])], [qt_lib_path=$withval], [])
64
-
AC_ARG_WITH([qt-plugindir],[AS_HELP_STRING([--with-qt-plugindir=PLUGIN_DIR],[specify qt plugin path (overridden by pkgconfig)])], [qt_plugin_path=$withval], [])
65
-
AC_ARG_WITH([qt-bindir],[AS_HELP_STRING([--with-qt-bindir=BIN_DIR],[specify qt bin path])], [qt_bin_path=$withval], [])
62
+
AC_ARG_WITH([qt-incdir],[AS_HELP_STRING([--with-gui-incdir=INC_DIR],[specify qt include path (overridden by pkgconfig)])], [qt_include_path=$withval], [])
63
+
AC_ARG_WITH([qt-libdir],[AS_HELP_STRING([--with-gui-libdir=LIB_DIR],[specify qt lib path (overridden by pkgconfig)])], [qt_lib_path=$withval], [])
64
+
AC_ARG_WITH([qt-plugindir],[AS_HELP_STRING([--with-gui-plugindir=PLUGIN_DIR],[specify qt plugin path (overridden by pkgconfig)])], [qt_plugin_path=$withval], [])
65
+
AC_ARG_WITH([qt-bindir],[AS_HELP_STRING([--with-gui-bindir=BIN_DIR],[specify qt bin path])], [qt_bin_path=$withval], [])
66
66
67
67
AC_ARG_WITH([qtdbus],
68
68
[AS_HELP_STRING([--with-qtdbus],
@@ -73,7 +73,7 @@ AC_DEFUN([BITCOIN_QT_INIT],[
73
73
74
74
dnl Find the appropriate version of Qt libraries and includes.
75
75
dnl Inputs: $1: Whether or not pkg-config should be used. yes|no. Default: yes.
76
-
dnl Inputs: $2: If $1 is "yes" and --with-qt=auto, which qt version should be
76
+
dnl Inputs: $2: If $1 is "yes" and --with-gui=auto, which qt version should be
77
77
dnl tried first.
78
78
dnl Outputs: See _BITCOIN_QT_FIND_LIBS_*
79
79
dnl Outputs: Sets variables for all qt-related tools.
0 commit comments