summaryrefslogtreecommitdiff
path: root/dev-ruby/charlock_holmes/files/charlock_holmes-0.7.6-gcc5.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ruby/charlock_holmes/files/charlock_holmes-0.7.6-gcc5.patch')
-rw-r--r--dev-ruby/charlock_holmes/files/charlock_holmes-0.7.6-gcc5.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-ruby/charlock_holmes/files/charlock_holmes-0.7.6-gcc5.patch b/dev-ruby/charlock_holmes/files/charlock_holmes-0.7.6-gcc5.patch
deleted file mode 100644
index 944efac19253..000000000000
--- a/dev-ruby/charlock_holmes/files/charlock_holmes-0.7.6-gcc5.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/ext/charlock_holmes/extconf.rb
-+++ b/ext/charlock_holmes/extconf.rb
-@@ -54,11 +54,8 @@
- have_library 'icuuc' or abort 'libicuuc missing'
- have_library 'icudata' or abort 'libicudata missing'
-
--# icu4c might be built in C++11 mode, but it also might not have been
--icuconfig = `which icu-config`.chomp if icuconfig.empty?
--if File.exist?(icuconfig) && `#{icuconfig} --cxxflags`.include?("c++11")
-- $CXXFLAGS << ' -std=c++11'
--end
-+# Always use C++11
-+$CXXFLAGS << ' -std=c++11'
-
- $CFLAGS << ' -Wall -funroll-loops'
- $CFLAGS << ' -Wextra -O0 -ggdb3' if ENV['DEBUG']