summaryrefslogtreecommitdiffstats
path: root/debian/wheezy/dependencies/sip4-tqt/debian/sipconfig.py
diff options
context:
space:
mode:
Diffstat (limited to 'debian/wheezy/dependencies/sip4-tqt/debian/sipconfig.py')
-rw-r--r--debian/wheezy/dependencies/sip4-tqt/debian/sipconfig.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/wheezy/dependencies/sip4-tqt/debian/sipconfig.py b/debian/wheezy/dependencies/sip4-tqt/debian/sipconfig.py
new file mode 100644
index 000000000..f23b5427a
--- /dev/null
+++ b/debian/wheezy/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-sip4-dbg not installed'
+else:
+ from sipconfig_nd import *
+ from sipconfig_nd import _pkg_config, _default_macros