diff options
author | Johannes Jost Meixner <xmj@FreeBSD.org> | 2015-03-29 21:29:29 +0000 |
---|---|---|
committer | Johannes Jost Meixner <xmj@FreeBSD.org> | 2015-03-29 21:29:29 +0000 |
commit | 5a2daa08af19f5a4635901661a5a9f67c7ad2c1f (patch) | |
tree | 8369465918ef6a19606148b6589cab55660d45db /devel/rubygem-ffi/files/patch-lib__ffi__library.rb | |
parent | devel/dcmtk: add EGD conditional to fix build with LibreSSL (diff) |
devel/rubygem-ffi: update to 1.9.8
PR: 199007
Submitted by: Michael Moll <kvedulv@kvedulv.de>
Approved by: mentors (implicit)
Notes
Notes:
svn path=/head/; revision=382627
Diffstat (limited to 'devel/rubygem-ffi/files/patch-lib__ffi__library.rb')
-rw-r--r-- | devel/rubygem-ffi/files/patch-lib__ffi__library.rb | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/devel/rubygem-ffi/files/patch-lib__ffi__library.rb b/devel/rubygem-ffi/files/patch-lib__ffi__library.rb deleted file mode 100644 index 33a8adfc2952..000000000000 --- a/devel/rubygem-ffi/files/patch-lib__ffi__library.rb +++ /dev/null @@ -1,15 +0,0 @@ ---- ./lib/ffi/library.rb.orig 2014-08-22 21:57:09.968099978 +0000 -+++ ./lib/ffi/library.rb 2014-08-22 21:57:30.351098318 +0000 -@@ -114,9 +114,9 @@ - - rescue Exception => ex - ldscript = false -- if ex.message =~ /(([^ \t()])+\.so([^ \t:()])*):([ \t])*invalid ELF header/ -- if File.read($1) =~ /GROUP *\( *([^ \)]+) *\)/ -- libname = $1 -+ if ex.message =~ /(([^ \t()])+\.so([^ \t:()])*):([ \t])*(invalid ELF header|file too short|invalid file format)/ -+ if File.read($1) =~ /(?:GROUP|INPUT) *\( *([^\)]+)/ -+ libname = $1.split(' ')[0] - ldscript = true - end - end |