forked from pool/graphite2
Accepting request 257922 from LibreOffice:Factory
1 OBS-URL: https://build.opensuse.org/request/show/257922 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/graphite2?expand=0&rev=8
This commit is contained in:
commit
119d4a097d
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 21 18:51:12 UTC 2014 - dmueller@suse.com
|
||||
|
||||
- add link-gcc-shared.diff: link -lgcc_s to fix undefined symbols
|
||||
on various ARM architectures
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 29 17:57:37 UTC 2014 - tchvatal@suse.com
|
||||
|
||||
|
@ -28,6 +28,7 @@ Source0: http://downloads.sourceforge.net/silgraphite/graphite2-%{version
|
||||
Source1: baselibs.conf
|
||||
Patch0: no-specific-nunit-version.diff
|
||||
Patch1: soname.diff
|
||||
Patch2: link-gcc-shared.diff
|
||||
BuildRequires: asciidoc
|
||||
BuildRequires: cmake
|
||||
BuildRequires: fontconfig-devel
|
||||
@ -78,6 +79,7 @@ This package contains the libexttextcat development files.
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%patch2
|
||||
|
||||
%build
|
||||
%cmake \
|
||||
|
11
link-gcc-shared.diff
Normal file
11
link-gcc-shared.diff
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/CMakeLists.txt
|
||||
+++ src/CMakeLists.txt
|
||||
@@ -121,7 +121,7 @@
|
||||
if (GRAPHITE2_ASAN)
|
||||
target_link_libraries(graphite2 c gcc_s)
|
||||
else (GRAPHITE2_ASAN)
|
||||
- target_link_libraries(graphite2 c gcc)
|
||||
+ target_link_libraries(graphite2 c gcc_s)
|
||||
endif (GRAPHITE2_ASAN)
|
||||
include(Graphite)
|
||||
nolib_test(stdc++ $<TARGET_SONAME_FILE:graphite2>)
|
Loading…
Reference in New Issue
Block a user