Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
13467e6c
Commit
13467e6c
authored
Apr 19, 2021
by
Farid Abdelnour
🎥
Browse files
Remove unnecessary exiv2 patch
parent
c9ff53e1
Pipeline
#58866
canceled with stage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
packaging/flatpak/org.kde.kdenlive-nightly.json
View file @
13467e6c
...
...
@@ -302,10 +302,6 @@
"url"
:
"https://www.exiv2.org/builds/exiv2-0.27.3-Source.tar.gz"
,
"sha256"
:
"a79f5613812aa21755d578a297874fb59a85101e793edc64ec2c6bd994e3e778"
},
{
"type"
:
"patch"
,
"path"
:
"patches/exiv2-fcf-protection-only-on-x86.patch"
}
]
},
{
...
...
packaging/flatpak/patches/exiv2-fcf-protection-only-on-x86.patch
deleted
100644 → 0
View file @
c9ff53e1
Author: Pino Toscano <pino@debian.org>
Description: Use -fcf-protection only on x86 architectures
It does not exist elsewhere.
Forwarded: no
Last-Update: 2020-08-09
--- a/cmake/compilerFlags.cmake
+++ b/cmake/compilerFlags.cmake
@@ -26,7 +26,10 @@
if ( MINGW OR UNIX OR MSYS ) # MINGW, Li
# This fails under Fedora, MinGW GCC 8.3.0 and CYGWIN/MSYS 9.3.0
if (NOT (MINGW OR CMAKE_HOST_SOLARIS OR CYGWIN OR MSYS) )
if (COMPILER_IS_GCC AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 8.0)
- add_compile_options(-fstack-clash-protection -fcf-protection)
+ add_compile_options(-fstack-clash-protection)
+ if (CMAKE_SYSTEM_PROCESSOR MATCHES "i686|x86_64")
+ add_compile_options(-fcf-protection)
+ endif()
endif()
if( (COMPILER_IS_GCC AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 5.0) # Not in GCC 4.8
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