mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-16 03:48:04 +02:00
2003-03-06 Michael Meeks <michael@server.home>
* configure.in: if we don't have kde-config, disable have_qt.
This commit is contained in:
parent
ee09dbf058
commit
51b46d7133
2 changed files with 11 additions and 3 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2003-03-06 Michael Meeks <michael@server.home>
|
||||
|
||||
* configure.in: if we don't have kde-config, disable have_qt.
|
||||
|
||||
2003-03-07 Anders Carlsson <andersca@codefactory.se>
|
||||
|
||||
* dbus/Makefile.am:
|
||||
|
|
|
|||
10
configure.in
10
configure.in
|
|
@ -266,11 +266,15 @@ if test -n "$QTDIR" -a -f $QTDIR/include/qglobal.h; then
|
|||
fi
|
||||
|
||||
dnl linking to kdecore will give us a bit of help from libtool
|
||||
kdelibs=`kde-config --install lib --expandvars 2>/dev/null`
|
||||
if test -z $kdelibs -a -f $kdelibs/libkdecore.la; then
|
||||
if (! kde-config >& /dev/null); then
|
||||
have_qt=no
|
||||
else
|
||||
DBUS_QT_LIBS=$kdelibs/libkdecore.la
|
||||
kdelibs=`kde-config --install lib --expandvars 2>/dev/null`
|
||||
if test -z $kdelibs -a -f $kdelibs/libkdecore.la; then
|
||||
have_qt=no
|
||||
else
|
||||
DBUS_QT_LIBS=$kdelibs/libkdecore.la
|
||||
fi
|
||||
fi
|
||||
|
||||
if test x$have_qt = xno ; then
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue