Changes of Revision 6

x265.changes Changed
x
 
1
@@ -1,4 +1,9 @@
2
 -------------------------------------------------------------------
3
+Sat Oct  4 15:24:23 UTC 2014 - aloisio@gmx.com
4
+
5
+- Bumped to version hg20140928
6
+
7
+-------------------------------------------------------------------
8
 Thu Jun  5 14:55:45 UTC 2014 - guillaume@opensuse.org
9
 
10
 - Fix ARM build with arm.patch from Arch Linux:
11
x265.spec Changed
23
 
1
@@ -1,10 +1,10 @@
2
 # based on the spec file from https://build.opensuse.org/package/view_file/home:Simmphonie/libx265/
3
 
4
 Name:           x265
5
-%define soname  10
6
+%define soname  32
7
 %define libname lib%{name}
8
 %define libsoname %{libname}-%{soname}
9
-%define hgdate  20140324
10
+%define hgdate  20140928
11
 Version:        0.%{soname}hg%{hgdate}
12
 Release:        1
13
 License:        GPL-2.0+
14
@@ -46,7 +46,7 @@
15
 %prep
16
 %setup -q -n "%{name}/build/linux"
17
 cd ../..
18
-%patch0 -p1
19
+%patch0
20
 cd -
21
 %define FAKE_BUILDDATE %(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e %%Y')
22
 sed -i -e "s/0.0/%{soname}.0/g" ../../source/cmake/version.cmake
23
arm.patch Changed
53
 
1
@@ -1,18 +1,18 @@
2
-diff -urN a/source/CMakeLists.txt b/source/CMakeLists.txt
3
---- a/source/CMakeLists.txt    2014-04-03 00:00:44.000000000 -0600
4
-+++ b/source/CMakeLists.txt    2014-04-10 07:32:36.022010974 -0600
5
-@@ -39,10 +39,18 @@
6
+--- source/CMakeLists.txt.orig 2014-10-04 17:02:08.482815493 +0200
7
++++ source/CMakeLists.txt  2014-10-04 17:11:52.536865262 +0200
8
+@@ -46,10 +46,18 @@
9
          set(X64 1)
10
          add_definitions(-DX86_64=1)
11
      endif()
12
+-elseif(${SYSPROC} STREQUAL "armv6l")
13
+-    message(STATUS "Detected ARM target processor")
14
+-    set(ARM 1)
15
+-    add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=1)
16
 +elseif(${SYSPROC} MATCHES "armv5.*")
17
 +    message(STATUS "Detected ARMV5 system processor")
18
 +    set(ARMV5 1)
19
 +    add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=0 -DHAVE_NEON=0)
20
- elseif(${SYSPROC} STREQUAL "armv6l")
21
--    message(STATUS "Detected ARM system processor")
22
--    set(ARM 1)
23
--    add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=1)
24
++  elseif(${SYSPROC} STREQUAL "armv6l")
25
 +    message(STATUS "Detected ARMV6 system processor")
26
 +    set(ARMV6 1)
27
 +    add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=1 -DHAVE_NEON=0)
28
@@ -23,7 +23,7 @@
29
  else()
30
      message(STATUS "CMAKE_SYSTEM_PROCESSOR value `${CMAKE_SYSTEM_PROCESSOR}` is unknown")
31
      message(STATUS "Please add this value near ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE}")
32
-@@ -122,8 +130,8 @@
33
+@@ -127,8 +135,8 @@
34
      if(X86 AND NOT X64)
35
          add_definitions(-march=i686)
36
      endif()
37
@@ -32,11 +32,10 @@
38
 +    if(ARMV7)
39
 +        add_definitions(-fPIC)
40
      endif()
41
- endif(GCC)
42
- 
43
-diff -urN a/source/common/cpu.cpp b/source/common/cpu.cpp
44
---- a/source/common/cpu.cpp    2014-04-03 00:00:44.000000000 -0600
45
-+++ b/source/common/cpu.cpp    2014-04-10 07:28:51.937129997 -0600
46
+     check_cxx_compiler_flag(-Wno-narrowing CC_HAS_NO_NARROWING) 
47
+     check_cxx_compiler_flag(-ffast-math CC_HAS_FAST_MATH) 
48
+--- source/common/cpu.cpp.orig 2014-10-04 17:13:58.507875996 +0200
49
++++ source/common/cpu.cpp  2014-10-04 17:21:11.170912864 +0200
50
 @@ -37,7 +37,7 @@
51
  #include <machine/cpu.h>
52
  #endif
53
x265-hg20140324.tar.bz2 -> x265-hg20140928.tar.bz2 Changed