Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
737e2061
Kaydet (Commit)
737e2061
authored
Agu 25, 2015
tarafından
David Tardon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
upload libwps 0.4.1
Change-Id: I53dc6d358952a046a4c1f03246441742dfa3d685
üst
dea1d492
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
65 deletions
+2
-65
download.lst
download.lst
+2
-2
0001-QuattroPro-parser-correct-a-mistake-when-reading-neg.patch
...uattroPro-parser-correct-a-mistake-when-reading-neg.patch
+0
-26
0001-error-C2065-M_PI-undeclared-identifier.patch
.../libwps/0001-error-C2065-M_PI-undeclared-identifier.patch
+0
-35
UnpackedTarball_libwps.mk
external/libwps/UnpackedTarball_libwps.mk
+0
-2
No files found.
download.lst
Dosyayı görüntüle @
737e2061
...
...
@@ -151,8 +151,8 @@ export WPD_MD5SUM := 0773d79a1f240ef9f4f20242b13c5bb7
export WPD_TARBALL := libwpd-0.10.0.tar.bz2
export WPG_MD5SUM := 17da9770cb8b317b7633f9807b32b71a
export WPG_TARBALL := libwpg-0.3.0.tar.bz2
export WPS_MD5SUM :=
e9162d2566421d9d71b3ad2377a68fd
5
export WPS_VERSION_MICRO :=
0
export WPS_MD5SUM :=
b510da17dabf97864f821a71f1fe902
5
export WPS_VERSION_MICRO :=
1
export WPS_TARBALL := libwps-0.4.$(WPS_VERSION_MICRO).tar.bz2
export XSLTML_TARBALL := a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
export ZLIB_MD5SUM := 44d667c142d7cda120332623eab69f40
...
...
external/libwps/0001-QuattroPro-parser-correct-a-mistake-when-reading-neg.patch
deleted
100644 → 0
Dosyayı görüntüle @
dea1d492
From 45a3dd5393e07340d5a63d8a8735789d73a61b17 Mon Sep 17 00:00:00 2001
From: osnola <alonso@loria.fr>
Date: Mon, 18 May 2015 08:27:59 +0200
Subject: [PATCH] QuattroPro parser: correct a mistake when reading negative
cell's position
---
src/lib/QuattroSpreadsheet.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/QuattroSpreadsheet.cpp b/src/lib/QuattroSpreadsheet.cpp
index cb0f4f5..ce5e20a 100644
--- a/src/lib/QuattroSpreadsheet.cpp
+++ b/src/lib/QuattroSpreadsheet.cpp
@@ -1668,7 +1668,7 @@ bool QuattroSpreadsheet::readCell
else
{
val &= 0x3FFF;
- if (val & 0x2000) val = val - 0x4000;
+ if (val>0x1000) val = val - 0x2000;
}
if (dim==2)
val += sheetId;
--
2.3.2 (Apple Git-55)
external/libwps/0001-error-C2065-M_PI-undeclared-identifier.patch
deleted
100644 → 0
Dosyayı görüntüle @
dea1d492
From 94af34d42129bad72fd7ce50dc6901287509703e Mon Sep 17 00:00:00 2001
From: David Tardon <dtardon@redhat.com>
Date: Mon, 18 May 2015 18:50:25 +0200
Subject: [PATCH] error C2065: M_PI : undeclared identifier
---
src/lib/libwps_internal.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/lib/libwps_internal.h b/src/lib/libwps_internal.h
index fb9016d..02a87bc 100644
--- a/src/lib/libwps_internal.h
+++ b/src/lib/libwps_internal.h
@@ -28,6 +28,7 @@
#include <stdio.h>
#endif
+#include <cmath>
#include <iostream>
#include <map>
#include <string>
@@ -36,6 +37,10 @@
#include <librevenge-stream/librevenge-stream.h>
#include <librevenge/librevenge.h>
+#ifndef M_PI
+#define M_PI 3.14159265358979323846
+#endif
+
#if defined(_MSC_VER) || defined(__DJGPP__)
typedef signed char int8_t;
typedef unsigned char uint8_t;
--
2.4.0
external/libwps/UnpackedTarball_libwps.mk
Dosyayı görüntüle @
737e2061
...
...
@@ -14,8 +14,6 @@ $(eval $(call gb_UnpackedTarball_set_tarball,libwps,$(WPS_TARBALL)))
$(eval $(call gb_UnpackedTarball_set_patchlevel,libwps,1))
$(eval $(call gb_UnpackedTarball_add_patches,libwps,\
external/libwps/0001-QuattroPro-parser-correct-a-mistake-when-reading-neg.patch \
external/libwps/0001-error-C2065-M_PI-undeclared-identifier.patch \
$(if $(SYSTEM_REVENGE),,external/libwps/rpath.patch.0) \
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment