summaryrefslogtreecommitdiffstats
path: root/debian/_base/dependencies/sip4-tqt/debian/sipconfig.py
diff options
context:
space:
mode:
Diffstat (limited to 'debian/_base/dependencies/sip4-tqt/debian/sipconfig.py')
-rw-r--r--debian/_base/dependencies/sip4-tqt/debian/sipconfig.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/_base/dependencies/sip4-tqt/debian/sipconfig.py b/debian/_base/dependencies/sip4-tqt/debian/sipconfig.py
new file mode 100644
index 000000000..a9e761f08
--- /dev/null
+++ b/debian/_base/dependencies/sip4-tqt/debian/sipconfig.py
@@ -0,0 +1,13 @@
+# import the sipconfig.py for the normal or the debug build
+
+import sys
+
+if getattr(sys, "pydebug", False):
+ try:
+ from sipconfig_d import *
+ from sipconfig_d import _pkg_config, _default_macros
+ except ImportError, msg:
+ raise ImportError, 'No module named sipconfig; package python-sip-tqt-dbg not installed'
+else:
+ from sipconfig_nd import *
+ from sipconfig_nd import _pkg_config, _default_macros