pkgsrc/comms/plptools/patches/patch-at
joerg caa939db59 Add DragonFly support.
Fix C++ RTL usage: c_str is how to get the representation, not getCStr.
Attempt to fix declaration of static template members. Be conditional
for GCC 3.4+ for now, it conflicts with the constructor in GCC 3.3.
Attempt to fix timezone usage as found in other packages.
Use PTHREAD_* variables instead of hard-coded -lpthread.
Don't look for _nl_domain_bindings in -lintl, libintl uses a different
prefix.
Remove harmfull class keywords in friend declarations.
2006-02-02 15:03:19 +00:00

13 lines
457 B
Text

$NetBSD: patch-at,v 1.1 2006/02/02 15:03:19 joerg Exp $
--- lib/psiprocess.h.orig 2006-01-27 18:56:50.000000000 +0000
+++ lib/psiprocess.h
@@ -105,7 +105,7 @@ public:
* The output is in human readable similar to the
* output of a "ls" command.
*/
- friend class std::ostream &operator<<(std::ostream &o, const PsiProcess &p);
+ friend std::ostream &operator<<(std::ostream &o, const PsiProcess &p);
private:
friend class rpcs;