diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-27 13:56:04 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-31 17:00:46 +0900 |
commit | f89d120a2d4982896f0b5c00cee347a010f609a9 (patch) | |
tree | 4cc40bff7f36ec77ebbece17598c89cb0799e916 | |
parent | 5afb6e8ec49253cda4285b4a0ca76a37f0d30689 (diff) | |
download | pytqt-r14.1.x.tar.gz pytqt-r14.1.x.zip |
Drop Borland compiler specific coder14.1.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit f1918cc46e3124a613c6f724562b2e903f436f43)
-rw-r--r-- | configure.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/configure.py b/configure.py index 6d0f3cf..f3733fc 100644 --- a/configure.py +++ b/configure.py @@ -1202,11 +1202,6 @@ def resolve_tqt3_library(generator): emlib = is_tqt_library(generator, "tqte") etlib = is_tqt_library(generator, "tqte-mt") - # Borland likes to be a little different. - bmtlib = is_tqt_library(generator, "tqtmt") - bedlib = is_tqt_library(generator, "tqtmtedu") - bevlib = is_tqt_library(generator, "tqtmteval") - names = [] if stlib: @@ -1233,18 +1228,6 @@ def resolve_tqt3_library(generator): opt_tqtlib = "tqte-mt" names.append(opt_tqtlib) - if bmtlib: - opt_tqtlib = "tqtmt" - names.append(opt_tqtlib) - - if bedlib: - opt_tqtlib = "tqtmtedu" - names.append(opt_tqtlib) - - if bevlib: - opt_tqtlib = "tqtmteval" - names.append(opt_tqtlib) - if not names: sip_tqt_config.error("No TQt libraries could be found in %s." % tqt_libdir) |