summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2015-02-20 18:44:37 -0500
committerEric S. Raymond <esr@thyrsus.com>2015-02-20 18:44:37 -0500
commit2a7523a667b518a9d8f0ec6dba0e344e5c641a29 (patch)
treecdd9ed34425f46f6e4798de8022b809ca03b3e37 /SConstruct
parentb8382f3d2070be51c01f1191b5c4b176faf14dac (diff)
downloadgpsd-2a7523a667b518a9d8f0ec6dba0e344e5c641a29.tar.gz
Deprecated libQgpsmm config option involved.
The backwards-compatibility code caused a bug. All regression tests pass.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 0 insertions, 5 deletions
diff --git a/SConstruct b/SConstruct
index 25d17760..6ab0a66d 100644
--- a/SConstruct
+++ b/SConstruct
@@ -147,7 +147,6 @@ boolopts = (
("clientdebug", True, "client debugging support"),
("oldstyle", True, "oldstyle (pre-JSON) protocol support"),
("libgpsmm", True, "build C++ bindings"),
- ("libQgpsmm", True, "build QT bindings (deprecated alias)"),
("qt", True, "build QT bindings"),
# Daemon options
("reconfigure", True, "allow gpsd to change device settings"),
@@ -775,10 +774,6 @@ pid_t getsid(pid_t pid);
env['BUILDERS']["HTML"] = Builder(action=htmlbuilder,
src_suffix=".xml", suffix=".html")
- # If libQgpsmm is enabled, force on qt (deprecated config support).
- if env["libQgpsmm"]:
- env["qt"] = True
-
# Determine if Qt network libraries are present, and if not, force qt to off
qt_network = config.CheckPKG('QtNetwork')
if not qt_network: