diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2008-11-15 20:07:11 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2008-11-15 20:07:11 +0000 |
commit | d303a06e20e4f0f0a63eb0a852bbe26b2c6f40af (patch) | |
tree | 680ce6eb885867487e2f2562d0177a39abcb7e9d /net-misc/kvpnc/files | |
parent | Block dvibook for the 2008 version too, thanks Diego, bug #246957 (diff) | |
download | gentoo-2-d303a06e20e4f0f0a63eb0a852bbe26b2c6f40af.tar.gz gentoo-2-d303a06e20e4f0f0a63eb0a852bbe26b2c6f40af.tar.bz2 gentoo-2-d303a06e20e4f0f0a63eb0a852bbe26b2c6f40af.zip |
Fix compilation with gcc-4.3, thanks to J.M. Gottfried and Andreas Philipp; bug #224113
(Portage version: 2.2_rc14/cvs/Linux 2.6.27.1 x86_64)
Diffstat (limited to 'net-misc/kvpnc/files')
-rw-r--r-- | net-misc/kvpnc/files/kvpnc-0.9.0-gcc43.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net-misc/kvpnc/files/kvpnc-0.9.0-gcc43.patch b/net-misc/kvpnc/files/kvpnc-0.9.0-gcc43.patch new file mode 100644 index 000000000000..a0bad6e749e4 --- /dev/null +++ b/net-misc/kvpnc/files/kvpnc-0.9.0-gcc43.patch @@ -0,0 +1,21 @@ +--- src/kvpnc.h 2008-05-29 09:58:45.000000000 +0200 ++++ src/kvpnc.h 2008-05-29 09:59:07.000000000 +0200 +@@ -77,7 +77,7 @@ + * @param parent Parent widget + * @param name Name of the Mainwindow + */ +- KVpnc( KApplication *parent, QWidget*parent = 0, const char *name = 0 ); ++ KVpnc( KApplication *parent, QWidget*qparent = 0, const char *name = 0 ); + + /** + * Destruktor +--- src/toolinfo.cpp 2008-05-29 09:59:19.000000000 +0200 ++++ src/toolinfo.cpp 2008-05-29 09:59:37.000000000 +0200 +@@ -21,6 +21,7 @@ + #include "toolinfo.h" + #include <qfile.h> + #include <iostream> ++#include <cstdlib> + #include <klocale.h> + #include <kstandarddirs.h> + #include <kmessagebox.h> |