summaryrefslogtreecommitdiff
path: root/libxml2
AgeCommit message (Collapse)AuthorFilesLines
2013-05-07gbuild: ExternalProject: remove second parameter again...Michael Stahl1-1/+1
... now that everything is consistent. Change-Id: I96c15159648815554280202eb1b6d274ead4e7b8
2013-05-07gbuild: remove gb_ExternalProject_use_unpackedMichael Stahl1-3/+1
It must always be used exactly once, so replace it with constructor parameter. Change-Id: Ifbe87065c19a5185a5705dc461656179002ece5d
2013-05-01use gb_ExternalPackage_add_runtime_library for adding libsDavid Tardon1-4/+4
Change-Id: I7be80bbef306db8f7ad585e95bfa4b6da0b30067
2013-04-15adapt all externals to build against MSVC debug runtimeMichael Stahl1-1/+2
Add patches and/or tweaks to the following modules: curl, cppunit, icu, lcms2, libxml2, libxslt, libxmlsec, lpsolve, nss, openssl, python3 lcms2 has an inconsistency where the .lib and the .dll don't agree on the .dll name. openssl gets a honorable mention because apparently it's undocumented custom build system can build with /MDd if one picks the right configuration but i couldn't figure out how to do that in an hour of trying, and just patched the release config instead. Change-Id: I7854a0fc85247e398d561b4f513d09fe2d1ebb3c
2013-04-03libxml2: remove usage of dmake remnant LIBXML2LIBMichael Stahl1-1/+1
Change-Id: I8a4f298af99f3415b0ef7a3fc5d69642b5b71f62
2013-03-22No nan() in Clang for Android, it seemsTor Lillqvist1-0/+12
Change-Id: I73fb37de0e4eeefdb08a6da48947afa1fdf02a38
2013-03-14remove legacy build.pl prj/build.lst files.Michael Meeks1-2/+0
2013-02-28remove all d.lstMichael Stahl1-0/+0
Change-Id: Icba4218c5f9fe89d183d25ea82a8eae52881f885
2013-02-23comma need to be escape in Makefile when in argument of $(callNorbert Thiebaud1-1/+1
Change-Id: I930aacad47780a085ef8eec7f3b7fc6600528afb
2013-02-22quiet external module build log unless failureNorbert Thiebaud1-25/+25
ExternalProject usually involve a configure and a make step that produce a bunch of output usually irrelevant including a large number of warning and other mess. now that everything is pretty much in tail_build these output get interleaved with useful output from the build of the product and actually drown them in a logorrhea of messy noise. This store the output of external modules in a log file and only print them as a whole if the module failed do build. on a non-verbose build. Change-Id: I3abfcccd6d16821a9e061a71e031b427cc283647 Reviewed-on: https://gerrit.libreoffice.org/2304 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
2013-02-22s/the the/the/Tor Lillqvist1-1/+1
Change-Id: Iadacffaad832c6ff06757e8567e24f929f24a4c3
2013-02-13libxml2: do not use --with-mem-debugMichael Stahl1-1/+3
it prints millions of lines of output. Change-Id: I99039f9039a7928f47d4a1d3f9bc36634240888c
2013-02-07fix libxml2 on androidPeter Foley1-1/+1
Change-Id: Ia17fe443a41cbef129a7242c5d200b471ba72f34
2013-02-07convert libxml2 to gbuild and add to tail_buildPeter Foley11-196/+162
Change-Id: Ie6ae2150e1f011e17034abcace18c5967b4dacf5 Reviewed-on: https://gerrit.libreoffice.org/2023 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Peter Foley <pefoley2@verizon.net>
2012-11-06Ignore the static and debugging libxml2 libs that get built with MSVCTor Lillqvist1-2/+2
Change-Id: I499e5136d2bad8eb2b7c78a9ae85bf337661148f
2012-09-14Adapt for DISABLE_DYNLOADING instead of just iOSTor Lillqvist1-2/+2
Change-Id: I14d8bd5473197b50457cbdc509c211bba7231802
2012-05-08Don't build against the debugging MSVC runtime in a dbgutil build eitherTor Lillqvist1-3/+0
We don't use the debugging runtime in LO's own code in dbgutil builds, so we shouldn't use it in bundled libs either. (At one point I did try to use the debugging runtime in a dbgutil build, but had to give up eventually; too many compilation errors thanks to using -D_DEBUG which brings in much more strict checks in the C++ headers. I apparently forgot to fix these makefiles then when I aborted the attempt.) Change-Id: I I Iedf765b55ba71b811d7fe3074e4c3129783108fd
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-02-29Simplify install name handling for external libraries on Mac OS XStephan Bergmann1-1/+5
...by allowing our special @___... tokens anywhere within an install name, so that external modules can configure --prefix=/@___... etc. This removes the need for the special extshl and EXTRPATH=LOADER. Also, a new OUT2BIN_NONE can be used for external modules where the generated libraries need the default EXTRPATH=OOO, but generated executables are only used during the build and such need RPATH=NONE.
2012-02-23set back rpath to ure/lib for libxml on MACPetr Mladek1-1/+1
The library is installed in ure/lib. Thanks Stefan Bergman for the pointer.
2012-02-22support using for libxml2 internal on MacOSXNorbert Thiebaud2-1/+3
2012-02-09Added and improved READMEs for modules in libs-extern-sysJosh Heidenreich1-0/+1
2012-02-01A few safe replacements of pathes->pathsJesús Corrius1-1/+1
2012-01-10build debugging libxml2 with -gCaolán McNamara1-2/+11
2011-11-10Make also the libxml2 library file name end in .so for AndroidTor Lillqvist3-0/+20
2011-10-27chmod -xTor Lillqvist3-0/+0
2011-10-27Don't build libxml2.dll against debugging runtime for --enable-debugTor Lillqvist1-1/+1
Passing the debug=yes option to libxml2's configure.js causes it to be built against the debugging runtime, which is not what we want if we just have used --enable-debug. It is with --enable-dbgutil that we want to use the debugging runtime. So look at $(dbgutil), not $(debug).
2011-09-27Make Android cross-build workingThorsten Behrens2-10/+19
In the spirit of 12759f67a36d52a345be6002d7017551e8414c59, change external lib's config.sub to eat the arm-unknown-linux-androideabi host os string. Also, permit shared libs again - seems Android can handle those. Added dictionaries to cross-build-toolset - idxdict is needed. Should build up to sfx2 - some residual static lib issues there, and in raptor.
2011-08-31Escaped non-ASCII characters from source files.Takashi Nakamoto2-1/+34
Building libxml2 with VC++ 2008 Express Edition on Windows platform where the locale is Japanese (or maybe Korean, Chinese or others) fails because some files generated by test tools in libxml2 contains non-ASCII characters. This issue is originally reported in OpenOffice.org community (issue 93433) and a patch is provided by tora, but it has not been applied yet. This modification is based on the patch and adapted to the current LibreOffice source.
2011-08-23fix build error for the moment, apply mingw patch only for mingw caseCaolán McNamara1-3/+4
2011-08-23Fix mingw cross-build of libxml2.Jan Holesovsky2-48/+22
2011-06-09Cross-compilation support for AndroidTor Lillqvist3-2/+28
2011-06-06Always compare CROSS_COMPILING explicitly to "YES"Tor Lillqvist1-1/+1
2011-06-04conditionalize libxml dependencyChristian Lohmaier1-2/+2
2011-06-03Drop %_EXT% which was always emptyTor Lillqvist1-9/+9
2011-05-30Drop unnecessary quotes around platform tripletsTor Lillqvist1-1/+1
2011-05-24TypoTor Lillqvist1-1/+1
2011-05-24Cross-compilation support and iOS in particularTor Lillqvist1-1/+12
2011-05-21Drop OS2Tor Lillqvist1-5/+0
2011-03-23Merge commit 'ooo/DEV300_m103'Jan Holesovsky2-0/+38
Conflicts: graphite/makefile.mk libxml2/makefile.mk
2011-03-09Merge commit 'ooo/DEV300_m101' into intm101Jan Holesovsky1-5/+1
Conflicts: boost/aliasing.patch boost/makefile.mk cairo/cairo/makefile.mk cairo/pixman/makefile.mk dictionaries/da_DK/README_th_da_DK.txt dictionaries/da_DK/description.xml dictionaries/da_DK/dictionaries.xcu dictionaries/da_DK/makefile.mk dictionaries/da_DK/th_da_DK.dat dictionaries/de_AT/th_de_AT_v2.idx dictionaries/de_CH/th_de_CH_v2.idx dictionaries/de_DE/COPYING dictionaries/de_DE/COPYING_GPLv2 dictionaries/de_DE/COPYING_GPLv2.txt dictionaries/de_DE/README_extension_owner.txt dictionaries/de_DE/README_th_de_DE_v2.txt dictionaries/de_DE/makefile.mk dictionaries/de_DE/th_de_DE_v2.idx icu/makefile.mk moz/makefile.mk python/makefile.mk
2011-02-24jl164 #i109096# libxml2 fails when using long paths on windowsJoachim Lingner2-0/+37
2011-02-08Merge remote branch 'origin/libreoffice-3-3'Jan Holesovsky1-5/+26
Conflicts: dictionaries/prj/build.lst dictionaries/uk_UA/makefile.mk hunspell/makefile.mk
2011-01-25#i10000# #i10000# changes from OOO330 m20Vladimir Glazunov1-5/+26
2011-01-07impress208: #164350# better xpath handlingChristian Lippka ORACLE1-5/+26
2011-01-06mingwport33: i#116329: MinGW port enhancement: configurable libstdc++ nametono1-1/+1
2011-01-03impress208: #164350# fixed a security issue in 3rd party library libxml2Christian Lippka ORACLE1-5/+26
2010-12-20Merge commit 'libreoffice-3.3.0.2'Jan Holesovsky2-0/+50
2010-12-14merge OOO330Hans-Joachim Lankenau2-0/+50
2010-12-13XPATH handling fixRene Engelhard2-0/+50
Signed off by Petr Mladek <pmladek@suse.cz>