[Libreoffice-commits] core.git: Branch 'feature/firebird-sdbc2' - scp2/source
Andrzej J.R. Hunt
andrzej at ahunt.org
Thu Jul 11 03:12:14 PDT 2013
scp2/source/firebird/file_firebird.scp | 43 ++++++++++++++++++++++++++++++-
scp2/source/firebird/module_firebird.scp | 10 +++++--
2 files changed, 49 insertions(+), 4 deletions(-)
New commits:
commit caf488efb912b272698dd5193b6194468921b5fa
Author: Andrzej J.R. Hunt <andrzej at ahunt.org>
Date: Thu Jul 11 11:09:42 2013 +0100
Fix firebird lib installation location.
Change-Id: Ia7f649abbfe0793dd9389a415845fc1307206798
diff --git a/scp2/source/firebird/file_firebird.scp b/scp2/source/firebird/file_firebird.scp
index c5dba52..140d4e7 100644
--- a/scp2/source/firebird/file_firebird.scp
+++ b/scp2/source/firebird/file_firebird.scp
@@ -20,11 +20,52 @@
#ifndef SYSTEM_FIREBIRD
-File gid_File_Firebird
+/*File gid_File_Firebird
TXT_FILE_BODY;
Dir = gid_Dir_Brand_Root;
Name = "firebird.filelist";
Styles = (FILELIST,USE_INTERNAL_RIGHTS);
+End*/
+
+File gid_File_Firebird_Lib_252
+ LIB_FILE_BODY;
+ Styles = (PACKED);
+ Dir = SCP2_OOO_BIN_DIR;
+ #ifdef UNX
+ #ifdef MACOSX
+ Name = STRING(CONCAT4(libfbembed,.,2.5.2,UNXSUFFIX));
+ #else
+ Name = STRING(CONCAT4(libfbembed,UNXSUFFIX,.,2.5.2));
+ #endif
+ #endif
+End
+
+File gid_File_Firebird_Lib_25
+ LIB_FILE_BODY;
+ Styles = (PACKED);
+ Dir = SCP2_OOO_BIN_DIR;
+ #ifdef UNX
+ #ifdef MACOSX
+ Name = STRING(CONCAT4(libfbembed,.,2.5,UNXSUFFIX));
+ #else
+ Name = STRING(CONCAT4(libfbembed,UNXSUFFIX,.,2.5));
+ #endif
+ #endif
+End
+
+File gid_File_Firebird_Lib
+ LIB_FILE_BODY;
+ Styles = (PACKED);
+ Dir = SCP2_OOO_BIN_DIR;
+ #ifdef UNX
+ #ifdef MACOSX
+ Name = STRING(CONCAT3(libfbembed,.,UNXSUFFIX));
+ #else
+ Name = STRING(CONCAT2(libfbembed,UNXSUFFIX));
+ #endif
+ #else
+ Name = "ifbembed.dll";
+ #endif
End
#endif
diff --git a/scp2/source/firebird/module_firebird.scp b/scp2/source/firebird/module_firebird.scp
index 586f7df..7a37a16 100644
--- a/scp2/source/firebird/module_firebird.scp
+++ b/scp2/source/firebird/module_firebird.scp
@@ -24,10 +24,14 @@ Module gid_Module_Firebird
PackageInfo = "packinfo_office.txt";
ParentID = gid_Module_Root_Brand;
Dirs = ();
- Files = (gid_File_Lib_Firebird,
- gid_File_Firebird);
+ Files = (
+#ifdef UNX
+ File gid_File_Firebird_Lib_252,
+ File gid_File_Firebird_Lib_25,
+#endif
+ File gid_File_Firebird_Lib
+ );
Unixlinks = ();
Styles = (HIDDEN_ROOT);
End
-
#endif
\ No newline at end of file
More information about the Libreoffice-commits
mailing list