diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-22 03:05:09 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-22 03:05:09 -0600 |
commit | 99d9097f5e112ca8605e28ae36fd748c19d3e9b0 (patch) | |
tree | 32ce7c84a30012bc8890e911a4a4097b54f2e7de /ubuntu/maverick/dependencies/sip4-tqt/debian/sipconfig.py | |
parent | a4a5eb7bc74f7aaf5a093ddb4a73a17101a1f42e (diff) | |
download | tde-packaging-99d9097f5e112ca8605e28ae36fd748c19d3e9b0.tar.gz tde-packaging-99d9097f5e112ca8605e28ae36fd748c19d3e9b0.zip |
Initial import of sip4-tqt packaging for Ubuntu
Diffstat (limited to 'ubuntu/maverick/dependencies/sip4-tqt/debian/sipconfig.py')
-rw-r--r-- | ubuntu/maverick/dependencies/sip4-tqt/debian/sipconfig.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ubuntu/maverick/dependencies/sip4-tqt/debian/sipconfig.py b/ubuntu/maverick/dependencies/sip4-tqt/debian/sipconfig.py new file mode 100644 index 000000000..f23b5427a --- /dev/null +++ b/ubuntu/maverick/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 |