diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-04-18 20:05:36 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-04-18 21:31:44 +0200 |
commit | afa3d718b565c9abe2933af6e99fded2337f81c3 (patch) | |
tree | cab52e5034bd5d21d02828c6cf28ae5cc2657eae /dev-ruby/ffi-compiler | |
parent | dev-qt/qtwebengine: remove unused patch (diff) | |
download | gentoo-afa3d718b565c9abe2933af6e99fded2337f81c3.tar.gz gentoo-afa3d718b565c9abe2933af6e99fded2337f81c3.tar.bz2 gentoo-afa3d718b565c9abe2933af6e99fded2337f81c3.zip |
dev-ruby/ffi-compiler: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-ruby/ffi-compiler')
-rw-r--r-- | dev-ruby/ffi-compiler/files/respect-cflags.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/dev-ruby/ffi-compiler/files/respect-cflags.patch b/dev-ruby/ffi-compiler/files/respect-cflags.patch deleted file mode 100644 index 3fe68f8211cb..000000000000 --- a/dev-ruby/ffi-compiler/files/respect-cflags.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff --git a/lib/ffi-compiler/compile_task.rb b/lib/ffi-compiler/compile_task.rb -index 363c247..637fd3d 100644 ---- a/lib/ffi-compiler/compile_task.rb -+++ b/lib/ffi-compiler/compile_task.rb -@@ -26,9 +26,9 @@ module FFI - @libraries = [] - @headers = [] - @functions = [] -- @cflags = DEFAULT_CFLAGS.dup -- @cxxflags = DEFAULT_CFLAGS.dup -- @ldflags = DEFAULT_LDFLAGS.dup -+ @cflags = ENV['CFLAGS']&.split || DEFAULT_CFLAGS.dup -+ @cxxflags = ENV['CXXFLAGS']&.split || DEFAULT_CFLAGS.dup -+ @ldflags = ENV['LDFLAGS']&.split || DEFAULT_LDFLAGS.dup - @libs = [] - @platform = Platform.system - @exports = [] |