diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2002-08-16 03:47:37 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2002-08-16 03:47:37 +0000 |
commit | ac36d29b537b4f9d7f7db437c5172f23deca71f2 (patch) | |
tree | 0dbdff488955480c8db97a643af10d8904dd3c91 /mail/spamass-milter/files/patch-spamass-milter.cpp | |
parent | Replace sh shell parameter $* with safer "${@}" (diff) |
Build fix for gcc 3.x
PR: 40664
Submitted by: tom <tom@uffner.com>
Diffstat (limited to '')
-rw-r--r-- | mail/spamass-milter/files/patch-spamass-milter.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mail/spamass-milter/files/patch-spamass-milter.cpp b/mail/spamass-milter/files/patch-spamass-milter.cpp new file mode 100644 index 000000000000..39d32e81b89c --- /dev/null +++ b/mail/spamass-milter/files/patch-spamass-milter.cpp @@ -0,0 +1,13 @@ +--- spamass-milter.cpp.orig Fri Aug 16 12:42:23 2002 ++++ spamass-milter.cpp Fri Aug 16 12:44:00 2002 +@@ -83,6 +83,10 @@ + #include <string> + #include <iostream> + #include <fstream> ++using std::string; ++using std::cout; ++using std::cerr; ++using std::endl; + + #ifdef __cplusplus + extern "C" { |