update libodfgen
Change-Id: I9466c07f18b4befaba662386d69426dd6687d2dd Reviewed-on: https://gerrit.libreoffice.org/6487 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
This commit is contained in:
parent
08ca3e40b0
commit
0aa668e853
@ -81,6 +81,7 @@ $(WORKDIR)/download: $(BUILDDIR)/config_host.mk $(SRCDIR)/download.lst $(SRCDIR)
|
||||
$(call fetch_Optional,HARFBUZZ,HARFBUZZ_TARBALL) \
|
||||
$(call fetch_Optional,MSPUB,MSPUB_TARBALL) \
|
||||
$(call fetch_Optional,MWAW,MWAW_TARBALL) \
|
||||
$(call fetch_Optional,ODFGEN,ODFGEN_TARBALL) \
|
||||
$(call fetch_Optional,VISIO,VISIO_TARBALL) \
|
||||
,$(call fetch_Download_item_special,http://dev-www.libreoffice.org/src,$(item)))
|
||||
$(foreach item, \
|
||||
@ -146,7 +147,6 @@ $(WORKDIR)/download: $(BUILDDIR)/config_host.mk $(SRCDIR)/download.lst $(SRCDIR)
|
||||
$(call fetch_Optional,NEON,$(NEON_TARBALL)) \
|
||||
$(call fetch_Optional,NSS,$(NSS_TARBALL)) \
|
||||
$(NUMBERTEXT_EXTENSION_PACK) \
|
||||
$(call fetch_Optional,ODFGEN,$(ODFGEN_TARBALL)) \
|
||||
$(call fetch_Optional,OPENLDAP,$(OPENLDAP_TARBALL)) \
|
||||
$(call fetch_Optional,OPENSSL,$(OPENSSL_TARBALL)) \
|
||||
$(call fetch_Optional,ORCUS,$(ORCUS_TARBALL)) \
|
||||
|
@ -6,6 +6,8 @@ MSPUB_MD5SUM := 1120705cd0f0d9bd5506360bf57b6c2e
|
||||
export MSPUB_TARBALL := libmspub-0.0.6.tar.bz2
|
||||
MWAW_MD5SUM := 828dd03510791fbe037081a2b4a1a8ff
|
||||
export MWAW_TARBALL := libmwaw-0.1.11.tar.bz2
|
||||
ODFGEN_MD5SUM := 9cafe7f50a3b2c5ebd2dc9c6c509d2b4
|
||||
ODFGEN_TARBALL := libodfgen-0.0.3.tar.bz2
|
||||
VISIO_MD5SUM := 82628333418f101a20cd21f980cf9f40
|
||||
export VISIO_TARBALL := libvisio-0.0.31.tar.bz2
|
||||
FIREBIRD_MD5SUM := 21154d2004e025c8a3666625b0357bb5
|
||||
@ -78,7 +80,6 @@ export MYSQLCPPCONN_TARBALL := 0981bda6548a8c8233ffce2b6e4b2a23-mysql-connector-
|
||||
export MYTHES_TARBALL := 46e92b68e31e858512b680b3b61dc4c1-mythes-1.2.3.tar.gz
|
||||
export NEON_TARBALL := ff369e69ef0f0143beb5626164e87ae2-neon-0.29.5.tar.gz
|
||||
export NSS_TARBALL := a0a861f539f0e7a91d05e6b9457e4db1-nss-3.13.5-with-nspr-4.9.1.tar.gz
|
||||
export ODFGEN_TARBALL := 8473296c671b6e3dd8197f4145e0854b-libodfgen-0.0.2.tar.bz2
|
||||
export OPENLDAP_TARBALL := 804c6cb5698db30b75ad0ff1c25baefd-openldap-2.4.31.tgz
|
||||
export OPENSSL_TARBALL := 66bf6f10f060d561929de96f9dfe5b8c-openssl-1.0.1e.tar.gz
|
||||
export ORCUS_TARBALL := ea2acaf140ae40a87a952caa75184f4d-liborcus-0.5.1.tar.bz2
|
||||
|
26
external/libodfgen/0001-use-correct-header-for-std-swap.patch
vendored
Normal file
26
external/libodfgen/0001-use-correct-header-for-std-swap.patch
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
From 9008d84be1eb0b3def0df39b069a309d54aa73ab Mon Sep 17 00:00:00 2001
|
||||
From: David Tardon <dtardon@redhat.com>
|
||||
Date: Wed, 30 Oct 2013 19:30:30 +0100
|
||||
Subject: [PATCH] use correct header for std::swap
|
||||
|
||||
---
|
||||
src/GraphicFunctions.cxx | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/GraphicFunctions.cxx b/src/GraphicFunctions.cxx
|
||||
index d8809f9..606c640 100644
|
||||
--- a/src/GraphicFunctions.cxx
|
||||
+++ b/src/GraphicFunctions.cxx
|
||||
@@ -24,8 +24,8 @@
|
||||
* Corel Corporation or Corel Corporation Limited."
|
||||
*/
|
||||
|
||||
+#include <algorithm>
|
||||
#include <math.h>
|
||||
-#include <utility>
|
||||
|
||||
#include "GraphicFunctions.hxx"
|
||||
|
||||
--
|
||||
1.8.3.1
|
||||
|
@ -17,6 +17,7 @@ $(eval $(call gb_ExternalProject_register_targets,libodfgen,\
|
||||
|
||||
$(eval $(call gb_ExternalProject_use_externals,libodfgen,\
|
||||
boost_headers \
|
||||
etonyek \
|
||||
wpd \
|
||||
wpg \
|
||||
))
|
||||
|
@ -11,4 +11,10 @@ $(eval $(call gb_UnpackedTarball_UnpackedTarball,libodfgen))
|
||||
|
||||
$(eval $(call gb_UnpackedTarball_set_tarball,libodfgen,$(ODFGEN_TARBALL)))
|
||||
|
||||
$(eval $(call gb_UnpackedTarball_set_patchlevel,libodfgen,1))
|
||||
|
||||
$(eval $(call gb_UnpackedTarball_add_patches,libodfgen,\
|
||||
external/libodfgen/0001-use-correct-header-for-std-swap.patch \
|
||||
))
|
||||
|
||||
# vim: set noet sw=4 ts=4:
|
||||
|
@ -46,6 +46,7 @@ $(eval $(call gb_Library_use_static_libraries,wpftdraw,\
|
||||
|
||||
$(eval $(call gb_Library_use_externals,wpftdraw,\
|
||||
cdr \
|
||||
etonyek \
|
||||
mspub \
|
||||
odfgen \
|
||||
visio \
|
||||
|
@ -49,6 +49,7 @@ $(eval $(call gb_Library_use_static_libraries,wpftwriter,\
|
||||
|
||||
$(eval $(call gb_Library_use_externals,wpftwriter,\
|
||||
boost_headers \
|
||||
etonyek \
|
||||
mwaw \
|
||||
odfgen \
|
||||
wps \
|
||||
|
@ -26,6 +26,7 @@ $(eval $(call gb_StaticLibrary_set_include,writerperfect,\
|
||||
|
||||
$(eval $(call gb_StaticLibrary_use_externals,writerperfect,\
|
||||
boost_headers \
|
||||
etonyek \
|
||||
odfgen \
|
||||
wpd \
|
||||
wpg \
|
||||
|
Loading…
x
Reference in New Issue
Block a user