1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# Based on gtk-2.0.m4.
# $Id$
dnl AM_PATH_QT([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl Test for Qt+ and define Qt_CFLAGS and Qt_LIBS.
dnl
AC_DEFUN([AM_PATH_QT],
[
pkg_config_module="QtCore QtGui"
no_qt=""
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
if test x$PKG_CONFIG != xno ; then
if pkg-config --atleast-pkgconfig-version 0.7 ; then
:
else
echo *** pkg-config too old; version 0.7 or better required.
no_qt=yes
PKG_CONFIG=no
fi
else
no_qt=yes
fi
if test x"$no_qt" = x ; then
#
# Qt 5.1 appears not to have QtXxx modules; instead, it
# has Qt5Xxx modules.
#
if $PKG_CONFIG Qt5Core
then
pkg_config_module="Qt5Core Qt5Gui"
else
pkg_config_module="QtCore QtGui"
fi
min_qt_version=ifelse([$1], ,4.0.0,$1)
AC_MSG_CHECKING(for Qt - version >= $min_qt_version)
qt_config_major_version=`$PKG_CONFIG --modversion $pkg_config_module | \
head -1 | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
qt_config_minor_version=`$PKG_CONFIG --modversion $pkg_config_module | \
head -1 | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
qt_config_micro_version=`$PKG_CONFIG --modversion $pkg_config_module | \
head -1 | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
if $PKG_CONFIG --atleast-version $min_qt_version $pkg_config_module; then
AC_MSG_RESULT(yes (version $qt_config_major_version.$qt_config_minor_version.$qt_config_micro_version))
else
no_qt=yes
AC_MSG_RESULT(no)
fi
fi
if test x"$no_qt" = x ; then
Qt_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_module`
Qt_LIBS=`$PKG_CONFIG --libs $pkg_config_module`
#
# Qt 5.0 appears to move the widgets out of Qt GUI
# to Qt Widgets; look for Qt5Widgets and, if we find
# it, add its flags to CFLAGS and CXXFLAGS, so that
# we find the include files for the widgets. If
# we don't find Qt5Widgets, look for QtWidgets instead.
# If we don't find QtWidgets, we assume it's Qt 4.
#
if QtWidgets_CFLAGS=`$PKG_CONFIG --cflags Qt5Widgets 2>/dev/null`; then
Qt_CFLAGS="$Qt_CFLAGS $QtWidgets_CFLAGS"
Qt_LIBS="$Qt_LIBS `$PKG_CONFIG --libs Qt5Widgets 2>/dev/null`"
elif QtWidgets_CFLAGS=`$PKG_CONFIG --cflags QtWidgets 2>/dev/null`; then
Qt_CFLAGS="$Qt_CFLAGS $QtWidgets_CFLAGS"
Qt_LIBS="$Qt_LIBS `$PKG_CONFIG --libs QtWidgets 2>/dev/null`"
else
AC_MSG_NOTICE([QtWidgets not found. Assuming Qt4])
fi
#
# Qt 5.0 also appears to move the printing support into
# the QtPrintSupport module, and Qt 5.1 renamed it
# Qt5PrintSupport.
#
if QtPrintSupport_CFLAGS=`$PKG_CONFIG --cflags Qt5PrintSupport 2>/dev/null`; then
Qt_CFLAGS="$Qt_CFLAGS $QtPrintSupport_CFLAGS"
Qt_LIBS="$Qt_LIBS `$PKG_CONFIG --libs Qt5PrintSupport 2>/dev/null`"
elif QtPrintSupport_CFLAGS=`$PKG_CONFIG --cflags QtPrintSupport 2>/dev/null`; then
Qt_CFLAGS="$Qt_CFLAGS $QtPrintSupport_CFLAGS"
Qt_LIBS="$Qt_LIBS `$PKG_CONFIG --libs QtPrintSupport 2>/dev/null`"
else
AC_MSG_NOTICE([QtPrintSupport not found. Assuming Qt4])
fi
#
# While we're at it, look for QtMacExtras. (Presumably
# if we're not building for OS X, it won't be present.)
#
# XXX - is there anything in QtX11Extras or QtWinExtras
# that we should be using?
#
AC_MSG_CHECKING(for QtMacExtras)
if QtMacExtras_CFLAGS=`$PKG_CONFIG --cflags Qt5MacExtras 2>/dev/null`; then
Qt_CFLAGS="$Qt_CFLAGS $QtMacExtras_CFLAGS"
Qt_LIBS="$Qt_LIBS `$PKG_CONFIG --libs Qt5MacExtras 2>/dev/null`"
AC_DEFINE(QT_MACEXTRAS_LIB, 1, [Define if we have QtMacExtras])
AC_MSG_RESULT(yes)
elif QtMacExtras_CFLAGS=`$PKG_CONFIG --cflags QtMacExtras 2>/dev/null`; then
Qt_CFLAGS="$Qt_CFLAGS $QtMacExtras_CFLAGS -DQT_MACEXTRAS_LIB"
Qt_LIBS="$Qt_LIBS `$PKG_CONFIG --libs QtMacExtras 2>/dev/null`"
AC_DEFINE(QT_MACEXTRAS_LIB, 1, [Define if we have QtMacExtras])
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
AC_SUBST(Qt_LIBS)
# Run Action-If-Found
ifelse([$2], , :, [$2])
else
# Run Action-If-Not-Found
ifelse([$3], , :, [$3])
fi
])
|