summaryrefslogtreecommitdiff
path: root/scp2
AgeCommit message (Collapse)AuthorFilesLines
2012-05-12actually install nsplugin (again)Rene Engelhard1-3/+0
Change-Id: Id0dce7de72d538857cf4341bb9e1b30d2cf7e9dc
2012-05-11Actually distribute the nsplugin even without mozilla.Tomas Chvatal1-1/+1
Change-Id: I8a44a2efc120763a278b9d758580430c20e10a85
2012-05-11upgrade to icu 49Caolán McNamara2-12/+12
Change-Id: I I I I I If403ee07ef8ea654369a8faac57fa8940f90e040
2012-05-08fdo#39833 add "Support assistive technology tools" option to Windows installerAndras Timar1-0/+38
Change-Id: I52d2e0426d7f2822a05a74a82ca079fb80a87007
2012-05-07fdo#49580: Fix bean after gbuild'ificationStephan Bergmann1-1/+10
4478b739ddade09425d496cbddee1542fdfd5e9b "convert bean to gbuild and add to tail_build" broke the following: * The name of the officebean dynamic library must not be changed (by adding the "lo" extension), as code in officebean.jar uses it in NativeLibraryLoader. * With gbuild's per-default hidden visibility, JNIEXPORT functions must instead use SAL_DLLPUBLIC_EXPORT. (Windows-only code in bean/native/win32/ should be safe to continue using JNIEXPORT.) Change-Id: I I3c312dd05c90421ba0c726496b7149a26d155604
2012-05-06Allow usage of system rhino wrt fdo#42977Tomas Chvatal1-0/+4
It is done the same way the beanshell is handled. Currently it can't be enabled by default as internal version has patched-in debug interface. We can choose two paths, rewrite the code to the new rhino debug interface or just strip the current one out. Change-Id: I48af18c635816db8269f13a649b62e9c454ee1e6
2012-05-06fdo#44628 run unopkg.exe after InstallFinalizeAndras Timar1-3/+3
Change-Id: I828d6a03b2c3a7b9e9e5dcdcbe142ac6567f0046
2012-05-05Do not check for beanshell if not neededTomas Chvatal1-5/+9
Do not install the benashell/javascript stuff if they are not actually bult. Build rhino only when required by javascript extension. Change-Id: Icc378524008389af35631c64a1a0288eb4f271be
2012-05-02put VBA stuff into correct subpackagesPetr Mladek2-0/+2
move vbaobj.uno.so into -calc subpackage and vbaswobj.uno.so into -writer subpackage to fix dependencies Change-Id: Id9457d71ee38537b07456816845cb870c7b7a041
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen1-0/+0
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
2012-04-26fdo#47944 enable insertion of OLE objects into external applicationsAndras Timar5-60/+0
2012-04-25fdo#40481 run SelectLanguage custom action during silent install, tooAndras Timar1-1/+2
2012-04-24fdo#46355 sort SelectionTree control of Custom Setup with a custom actionAndras Timar1-0/+9
Although Microsoft says that SelectionTree control can publish a control event only on Windows Server 2003 and above, the custom action seems to be working under a fully patched Windows XP SP3. Maybe it fails silently on older Windows XPs, not to mention Windows 2000. I did not test those.
2012-04-19Diminish the number of writerperfect librariesFridrich Štrba4-12/+4
Instead of a pleiade of libraries, one for graphic filters (wpftdraw) and one for text document filters (wpftwriter) to diminish duplicate static linking.
2012-04-18Add missing definiton passing for system CLUCENE.Tomas Chvatal1-0/+4
Thanks to mst and rene for pointing out.
2012-04-14fix a typo (BN instead of BN_IN)Andras Timar1-1/+1
2012-04-13renaming dlls makes little sense on windowsDavid Tardon1-6/+6
2012-04-13rhbz#809466 change soname of bundled redland libsDavid Tardon1-12/+12
2012-04-09actually add gid_File_Lib_CDRImport to gid_Module_Optional_GrffltRene Engelhard1-1/+2
2012-04-05Clean up optional online update moduleStephan Bergmann5-4/+8
* The updatecheckui lib is part of that module; should its scp entry also be marked ComponentCondition="ISCHECKFORPRODUCTUPDATES=1"? * unpack_update (and other scripts as well?) need only be generated if ENABLE_ONLINE_UPDATE. * It is inconsistent that there is a distinct onlineupdate.xcd not merged into main.xcd, while the updchk and updatecheckui component files are merged into the global services.rdb. * The updchk res file should also go into (a resource sub-module of) the optional online update module.
2012-04-03fps_kde and fps_kde4 are no moreMatúš Kukan1-16/+0
2012-03-27don't install 32-bit shell extensions on 64-bit WindowsAndras Timar1-0/+3
2012-03-23.txt files don't need executable bitsMichael Stahl1-0/+0
2012-03-23Removed unused directoriesStephan Bergmann1-11/+0
2012-03-23replace OpenOffice.org to LibreOffice in registry keysAndras Timar1-1/+1
2012-03-21chmod -xTor Lillqvist2-0/+0
2012-03-20remove unused xpdinstaller moduleAndras Timar2-226/+0
2012-03-19Copy/paste typoStephan Bergmann1-1/+1
2012-03-19mingw: check for jpeg dllDavid Tardon2-0/+14
2012-03-19mingw: check for system iconv dllDavid Tardon2-0/+7
libxslt in Fedora mingw packages depends on it.
2012-03-18mingw: allow use of system zlibDavid Tardon2-0/+10
2012-03-18mingw: avoid hardcoded dll versions and depsDavid Tardon2-40/+283
The idea is to use libo_MINGW_CHECK_DLL for libs that must be available (typically that would be the "main" library, e.g., libxml2 or libcurl) and libo_MINGW_TRY_DLL for possible dependencies (that may not be the same on different systems). All further references to the dlls are exclusively through the configured variables or defines set from these variables (e.g., instead of hardcoding libxml2-2.dll, use $(MINGW_LIBXML2_DLL)). The macros are documented in m4/mingw.m4 . Files that must be changed when adding a new dll: * configure.in * config_host.mk.in * external/mingw-dlls/makefile.mk * scp2/source/ooo/makefile.mk * scp2/source/ooo/mingw_dlls.scp
2012-03-14fdo#47246: fpicker: merge fop library into fps:Michael Stahl1-11/+0
Since nobody seems to know why these are separate, merge fop into fps. In case this untested change doesn't work out it should be reverted :)
2012-03-09Define SYSTEM_LCMS2 in scp2 when appropriateFridrich Štrba1-0/+4
2012-03-09Package lcms2 if internal one is usedFridrich Štrba2-0/+27
2012-03-08Check SOLAR_JAVA for gid_Shortcut_Lib_Hsqldb_2Tor Lillqvist1-0/+4
2012-03-08Obey DISABLE_SCRIPTINGTor Lillqvist1-0/+11
2012-03-08need to remove i18npaper from install lib listCaolán McNamara2-3/+0
2012-03-07fix library nameMatúš Kukan1-1/+1
2012-03-06fdo#46508 use ISCHECKFORPRODUCTUPDATES property for online updateAndras Timar1-1/+8
ISCHECKFORPRODUCTUPDATES is a de-facto standard for enabling or disabling Online Update feature. We had this property but it was unused for a long time. Now LibreOffice can be installed with msiexec /i LibO<version>.msi ISCHECKFORPRODUCTUPDATES=0 in order to disable Online Update feature.
2012-03-06Resolves: rhbz#799525 put flat odf mimetypes in xsltfilter.desktopCaolán McNamara1-0/+10
2012-03-06Add Bengali (India) UI translationAndras Timar2-4/+16
2012-02-29add Amharic (am) UI translationAndras Timar1-0/+6
2012-02-27pack libstdc++ and libgcc_s only in the new stdlibs subpackage (fdo#46658)Petr Mladek1-2/+0
The older commit moved the gid's definition in the file list but it did not move it in the module list.
2012-02-24fdo#46377 BASISINSTALLLOCATION = INSTALLLOCATIONAndras Timar2-5/+5
2012-02-23glib and gettext are only needed when ENABLE_LIBRSVGKorrawit Pruegsanusak1-3/+2
Although 'gettext' is a 'cross_toolset' dependency, it seems irrelevant. See http://lists.freedesktop.org/archives/libreoffice/2012-February/025771.html
2012-02-23just link to HelpIndexerCaolán McNamara2-12/+0
2012-02-23use different OUString ctor for RTL_TEXTENCODING_UCS4Caolán McNamara3-0/+20
2012-02-23bootstrap replacement c++ help componentCaolán McNamara4-19/+13
2012-02-22Fix build of the optional stdlibs package on LinuxPetr Mladek8-61/+196