summaryrefslogtreecommitdiff
path: root/www/htmlcxx/files
diff options
context:
space:
mode:
authorKevin Lo <kevlo@FreeBSD.org>2017-02-16 02:31:16 +0000
committerKevin Lo <kevlo@FreeBSD.org>2017-02-16 02:31:16 +0000
commitabd2db2eac7eccfe0eef18712a077ff738e480a5 (patch)
treeab5e357949ea4b1c4b87cc659e151c8b96245975 /www/htmlcxx/files
parentReturn the ports mistakenly reset to ports@ in r433856 to John Marino. (diff)
Update to 0.86
Diffstat (limited to 'www/htmlcxx/files')
-rw-r--r--www/htmlcxx/files/patch-ci_string.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/www/htmlcxx/files/patch-ci_string.h b/www/htmlcxx/files/patch-ci_string.h
deleted file mode 100644
index bf8b8ab3cfce..000000000000
--- a/www/htmlcxx/files/patch-ci_string.h
+++ /dev/null
@@ -1,19 +0,0 @@
---- html/ci_string.h.orig 2013-09-13 10:48:21.000000000 +0800
-+++ html/ci_string.h 2013-09-13 10:48:35.000000000 +0800
-@@ -4,16 +4,7 @@
- #include <cctype>
- #include <string>
-
--#if __GNUC__ >= 3
--#include <bits/char_traits.h>
- struct ci_char_traits : public std::char_traits<char>
--#elif defined(__GNUC__)
--#include <std/straits.h>
--struct ci_char_traits : public std::string_char_traits<char>
--#else
--//Hope string already include it
--struct ci_char_traits : public std::char_traits<char>
--#endif
-
- // just inherit all the other functions
- // that we don't need to override