diff options
author | mich <mich@FreeBSD.org> | 2006-12-28 00:20:50 +0800 |
---|---|---|
committer | mich <mich@FreeBSD.org> | 2006-12-28 00:20:50 +0800 |
commit | 8870009eb8ab4c20dbf75b2d7c0513832b33ae69 (patch) | |
tree | 73b99fcaa7f4f8da447ac0bf0e74a3fb0d87a924 /mail | |
parent | 56b33b75d593f7fc9818115b40965c0bf26b7e6d (diff) | |
download | freebsd-ports-gnome-8870009eb8ab4c20dbf75b2d7c0513832b33ae69.tar.gz freebsd-ports-gnome-8870009eb8ab4c20dbf75b2d7c0513832b33ae69.tar.zst freebsd-ports-gnome-8870009eb8ab4c20dbf75b2d7c0513832b33ae69.zip |
- fix build with gcc4x
Diffstat (limited to 'mail')
-rw-r--r-- | mail/gubby/files/patch-include_grep.h | 14 | ||||
-rw-r--r-- | mail/gubby/files/patch-include_guess.h | 14 | ||||
-rw-r--r-- | mail/gubby/files/patch-include_initcurs.h | 14 |
3 files changed, 42 insertions, 0 deletions
diff --git a/mail/gubby/files/patch-include_grep.h b/mail/gubby/files/patch-include_grep.h new file mode 100644 index 000000000000..45f3383cd0e2 --- /dev/null +++ b/mail/gubby/files/patch-include_grep.h @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- include/grep.h.orig ++++ include/grep.h +@@ -45,7 +45,7 @@ + trig.push_back(trigger); + } + +- inline const std::string& grep::gettrigger(const int n) const { ++ inline const std::string& gettrigger(const int n) const { + return trig[n]; + } + diff --git a/mail/gubby/files/patch-include_guess.h b/mail/gubby/files/patch-include_guess.h new file mode 100644 index 000000000000..b3724deff99d --- /dev/null +++ b/mail/gubby/files/patch-include_guess.h @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- include/guess.h.orig ++++ include/guess.h +@@ -38,7 +38,7 @@ + public: + guess(); + +- inline const std::string guess::str() const { ++ inline const std::string str() const { + return procmaillog; + } + diff --git a/mail/gubby/files/patch-include_initcurs.h b/mail/gubby/files/patch-include_initcurs.h new file mode 100644 index 000000000000..eacf85119ea9 --- /dev/null +++ b/mail/gubby/files/patch-include_initcurs.h @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- include/initcurs.h.orig ++++ include/initcurs.h +@@ -41,7 +41,7 @@ + initcurs(); + ~initcurs(); + +- inline bool initcurs::hascolors() const { ++ inline bool hascolors() const { + return colors; + } + |