gpsd: Only build qt support if qt-network is enabled

Signed-off-by: Frederik Pasch <fpasch@googlemail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Frederik Pasch 2010-11-15 15:32:03 -03:00 committed by Peter Korsgaard
parent 9c69033480
commit 5a8f4d7828
2 changed files with 10 additions and 1 deletions

View File

@ -2,7 +2,7 @@
Fixes all over the tree.
Updated/fixed packages: bash, bind, busybox, libglib2,
Updated/fixed packages: bash, bind, busybox, gpsd, libglib2,
libcurl, libmad, lrzsz, midori, module-init-tools, mtd-utils,
openssh, openssl, pciutils, qt, sqlite, sysstat, webkit, zlib

View File

@ -18,6 +18,15 @@ else
GPSD_CONF_OPT += --disable-libgpsmm
endif
# Enable or disable Qt binding
ifeq ($(BR2_PACKAGE_QT_NETWORK),y)
GPSD_CONF_ENV += QMAKE="$(QT_QMAKE)"
GPSD_CONF_OPT += --enable-libQgpsmm
GPSD_DEPENDENCIES += qt
else
GPSD_CONF_OPT += --disable-libQgpsmm
endif
# If libusb is available build it before so the package can use it
ifeq ($(BR2_PACKAGE_LIBUSB),y)
GPSD_DEPENDENCIES += libusb