mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
package/stellarium: fix qt5serialport dependency
qt5serialport is only needed when GPS support is enabled:
https://github.com/Stellarium/stellarium/blob/v25.4/CMakeLists.txt#L623,
so having qt5serialport without gpsd doesn't bring anything.
Please note that we disable telescope support by default so only gpsd
enables the usage of qt5serialport.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 8e2238ccce)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
committed by
Thomas Perale
parent
d2910d1322
commit
641ae239a7
@@ -32,11 +32,8 @@ else
|
||||
STELLARIUM_CONF_OPTS += -DENABLE_SCRIPTING=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT5SERIALPORT),y)
|
||||
STELLARIUM_DEPENDENCIES += qt5serialport
|
||||
ifeq ($(BR2_PACKAGE_GPSD),y)
|
||||
STELLARIUM_DEPENDENCIES += gpsd
|
||||
endif
|
||||
ifeq ($(BR2_PACKAGE_GPSD)$(BR2_PACKAGE_QT5SERIALPORT),yy)
|
||||
STELLARIUM_DEPENDENCIES += gpsd qt5serialport
|
||||
STELLARIUM_CONF_OPTS += -DENABLE_GPS=ON
|
||||
else
|
||||
STELLARIUM_CONF_OPTS += -DENABLE_GPS=OFF
|
||||
|
||||
Reference in New Issue
Block a user