Hello community,

here is the log from the commit of package unshield for openSUSE:Factory 
checked in at 2016-06-09 16:13:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/unshield (Old)
 and      /work/SRC/openSUSE:Factory/.unshield.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "unshield"

Changes:
--------
--- /work/SRC/openSUSE:Factory/unshield/unshield.changes        2015-07-08 
06:59:50.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.unshield.new/unshield.changes   2016-06-09 
16:16:57.000000000 +0200
@@ -1,0 +2,8 @@
+Tue Jun  7 10:19:27 UTC 2016 - [email protected]
+
+- Add armv7l-fpic.patch: fix armv7l build issue:
+  convert_utf/libconvert_utf.a(ConvertUTF.c.o):
+  relocation R_ARM_MOVW_ABS_NC against `a local symbol' can not be
+  used when making a shared object
+
+-------------------------------------------------------------------

New:
----
  armv7l-fpic.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ unshield.spec ++++++
--- /var/tmp/diff_new_pack.IJBHPL/_old  2016-06-09 16:16:59.000000000 +0200
+++ /var/tmp/diff_new_pack.IJBHPL/_new  2016-06-09 16:16:59.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package unshield
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,6 +27,8 @@
 Url:            https://github.com/twogood/unshield
 Source0:        https://github.com/twogood/unshield/archive/%{version}.tar.gz
 Patch0:         libconvert_utf_static.patch
+# PATCH-FIX-UPSTREAM armv7l-fpic.patch [email protected] -- fix armv7l 
build
+Patch1:         armv7l-fpic.patch
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  pkg-config
@@ -67,6 +69,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 %cmake

++++++ armv7l-fpic.patch ++++++
Index: unshield-1.3/CMakeLists.txt
===================================================================
--- unshield-1.3.orig/CMakeLists.txt
+++ unshield-1.3/CMakeLists.txt
@@ -63,6 +63,9 @@ configure_file(${CMAKE_CURRENT_SOURCE_DI
 if("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64")
     add_definitions(-fPIC)
 endif()
+if("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "armv7l")
+    add_definitions(-fPIC)
+endif()
 
 add_subdirectory(lib)
 add_subdirectory(src)

Reply via email to