summaryrefslogtreecommitdiff
path: root/scp2
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-20 00:51:21 +0200
committerMichael Stahl <mstahl@redhat.com>2013-04-21 15:00:51 +0200
commit849f87db1da8659bcc79b472c9411d7ceae26ede (patch)
tree812c7b96a2816904cf73ad60f4e796b14c956dcc /scp2
parenta12d25ac87fa01aa05b8cd4fe8606e066a4c1d03 (diff)
pyuno.pyd must be called pyuno_d.pyd with MSVC debug runtimes
Change-Id: I8ed937739d94bfc6316d9cb158870362a0b8b996
Diffstat (limited to 'scp2')
-rw-r--r--scp2/source/python/file_python.scp4
1 files changed, 4 insertions, 0 deletions
diff --git a/scp2/source/python/file_python.scp b/scp2/source/python/file_python.scp
index c5029863f1fa..5dba2c7db5e3 100644
--- a/scp2/source/python/file_python.scp
+++ b/scp2/source/python/file_python.scp
@@ -48,7 +48,11 @@ File gid_File_Lib_Pyuno
#ifdef UNX
Name = STRING(CONCAT2(libpyuno,UNXSUFFIX));
#else
+ #ifdef MSVC_PKG_DEBUG_RUNTIME
+ Name = "pyuno_d.pyd";
+ #else
Name = "pyuno.pyd";
+ #endif // MSVC_PKG_DEBUG_RUNTIME
#endif
Dir = gid_Brand_Dir_Program;
Styles = (PACKED);