public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-analyzer/nepenthes/files: nepenthes-0.2.2-gcc44.patch
@ 2009-07-25  2:18 Mark Loeser (halcy0n)
  0 siblings, 0 replies; 3+ messages in thread
From: Mark Loeser (halcy0n) @ 2009-07-25  2:18 UTC (permalink / raw
  To: gentoo-commits

halcy0n     09/07/25 02:18:44

  Added:                nepenthes-0.2.2-gcc44.patch
  Log:
  Fix compilation with gcc-4.4.  Thanks to Victor Ostorga <vostorga AT gentoo DOT org>; bug #273845
  (Portage version: 2.2_rc33-r1/cvs/Linux i686)

Revision  Changes    Path
1.1                  net-analyzer/nepenthes/files/nepenthes-0.2.2-gcc44.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/nepenthes/files/nepenthes-0.2.2-gcc44.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/nepenthes/files/nepenthes-0.2.2-gcc44.patch?rev=1.1&content-type=text/plain

Index: nepenthes-0.2.2-gcc44.patch
===================================================================
diff -NrU5 nepenthes-0.2.2.orig/modules/download-creceive/CReceiveDialogue.cpp nepenthes-0.2.2/modules/download-creceive/CReceiveDialogue.cpp
--- nepenthes-0.2.2.orig/modules/download-creceive/CReceiveDialogue.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/download-creceive/CReceiveDialogue.cpp	2009-06-13 15:44:07.000000000 -0600
@@ -51,10 +51,12 @@
 #include "DownloadUrl.cpp"
 #include "DownloadBuffer.cpp"
 
 #include "SubmitManager.hpp"
 
+#include <cstdio>
+
 #ifdef STDTAGS 
 #undef STDTAGS 
 #endif
 #define STDTAGS l_dl | l_dia | l_hlr
 
diff -NrU5 nepenthes-0.2.2.orig/modules/download-http/HTTPDialogue.cpp nepenthes-0.2.2/modules/download-http/HTTPDialogue.cpp
--- nepenthes-0.2.2.orig/modules/download-http/HTTPDialogue.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/download-http/HTTPDialogue.cpp	2009-06-13 15:44:52.000000000 -0600
@@ -27,10 +27,11 @@
 
  /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
 
 #include "HTTPDialogue.hpp"
 
+#include <cstdio>
 
 #include "Message.hpp"
 #include "Nepenthes.hpp"
 #include "LogManager.hpp"
 
diff -NrU5 nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_connect_trans.cpp nepenthes-0.2.2/modules/shellcode-generic/sch_generic_connect_trans.cpp
--- nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_connect_trans.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellcode-generic/sch_generic_connect_trans.cpp	2009-06-13 15:34:15.000000000 -0600
@@ -29,10 +29,11 @@
 
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
+#include <cstdio>
 
 #include "LogManager.hpp"
 #include "Message.hpp"
 #include "sch_generic_connect_trans.hpp"
 #include "Socket.hpp"
diff -NrU5 nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_createprocess.cpp nepenthes-0.2.2/modules/shellcode-generic/sch_generic_createprocess.cpp
--- nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_createprocess.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellcode-generic/sch_generic_createprocess.cpp	2009-06-13 15:36:08.000000000 -0600
@@ -36,11 +36,11 @@
  *
  */
 
 /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
 
-
+#include <cstdio>
 
 #include "sch_generic_createprocess.hpp"
 
 #include "Nepenthes.hpp"
 #include "Message.hpp"
diff -NrU5 nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_link_bind_trans.cpp nepenthes-0.2.2/modules/shellcode-generic/sch_generic_link_bind_trans.cpp
--- nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_link_bind_trans.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellcode-generic/sch_generic_link_bind_trans.cpp	2009-06-13 15:37:03.000000000 -0600
@@ -25,10 +25,12 @@
  *
  *******************************************************************************/
 
  /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
 
+#include <cstdio>
+
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
 
diff -NrU5 nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_link_trans.cpp nepenthes-0.2.2/modules/shellcode-generic/sch_generic_link_trans.cpp
--- nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_link_trans.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellcode-generic/sch_generic_link_trans.cpp	2009-06-13 15:37:47.000000000 -0600
@@ -25,10 +25,11 @@
  *
  *******************************************************************************/
 
  /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
 
+#include <cstdio>
 
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
diff -NrU5 nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_stuttgart.cpp nepenthes-0.2.2/modules/shellcode-generic/sch_generic_stuttgart.cpp
--- nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_stuttgart.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellcode-generic/sch_generic_stuttgart.cpp	2009-06-13 15:39:10.000000000 -0600
@@ -24,11 +24,13 @@
  *             contact nepenthesdev@users.sourceforge.net  
  *
  *******************************************************************************/
 
  /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
- 
+
+#include <cstdio>
+
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
 
diff -NrU5 nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_url.cpp nepenthes-0.2.2/modules/shellcode-generic/sch_generic_url.cpp
--- nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_url.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellcode-generic/sch_generic_url.cpp	2009-06-13 15:40:23.000000000 -0600
@@ -36,11 +36,11 @@
  * wikipedia states bsd code can be relicensed on to gpl, but we got no information what has to be done
  * 
  *
  */
 
-
+#include <cstdio>
  
 #include "sch_generic_url.hpp"
 #include "LogManager.hpp"
 #include "Message.hpp"
 #include "DownloadManager.hpp"
diff -NrU5 nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_wuerzburg.cpp nepenthes-0.2.2/modules/shellcode-generic/sch_generic_wuerzburg.cpp
--- nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_wuerzburg.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellcode-generic/sch_generic_wuerzburg.cpp	2009-06-13 15:41:02.000000000 -0600
@@ -25,10 +25,12 @@
  *
  *******************************************************************************/
 
  /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
 
+#include <cstdio>
+
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
 
diff -NrU5 nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_xor.cpp nepenthes-0.2.2/modules/shellcode-generic/sch_generic_xor.cpp
--- nepenthes-0.2.2.orig/modules/shellcode-generic/sch_generic_xor.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellcode-generic/sch_generic_xor.cpp	2009-06-13 15:41:47.000000000 -0600
@@ -40,10 +40,12 @@
 
 
 
 #include "sch_generic_xor.hpp"
 
+#include <cstdio>
+
 #include "Nepenthes.hpp"
 #include "Message.hpp"
 #include "Message.cpp"
 #include "LogManager.hpp"
 #include "Utilities.hpp"
diff -NrU5 nepenthes-0.2.2.orig/modules/shellcode-signatures/sch_namespace_bindfiletransfer.cpp nepenthes-0.2.2/modules/shellcode-signatures/sch_namespace_bindfiletransfer.cpp
--- nepenthes-0.2.2.orig/modules/shellcode-signatures/sch_namespace_bindfiletransfer.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellcode-signatures/sch_namespace_bindfiletransfer.cpp	2009-06-13 15:42:56.000000000 -0600
@@ -25,10 +25,12 @@
  *
  *******************************************************************************/
 
 /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
 
+#include <cstdio>
+
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
 
diff -NrU5 nepenthes-0.2.2.orig/modules/shellcode-signatures/sch_namespace_connectbackfiletransfer.cpp nepenthes-0.2.2/modules/shellcode-signatures/sch_namespace_connectbackfiletransfer.cpp
--- nepenthes-0.2.2.orig/modules/shellcode-signatures/sch_namespace_connectbackfiletransfer.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellcode-signatures/sch_namespace_connectbackfiletransfer.cpp	2009-06-13 15:42:24.000000000 -0600
@@ -25,10 +25,12 @@
  *
  *******************************************************************************/
 
 /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
 
+#include <cstdio>
+
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
 
diff -NrU5 nepenthes-0.2.2.orig/modules/shellemu-winnt/VFS.cpp nepenthes-0.2.2/modules/shellemu-winnt/VFS.cpp
--- nepenthes-0.2.2.orig/modules/shellemu-winnt/VFS.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellemu-winnt/VFS.cpp	2009-06-13 15:45:28.000000000 -0600
@@ -20,10 +20,11 @@
  *
  *******************************************************************************/
 
 
 #include <ctype.h>
+#include <cstdio>
 
 #include "VFS.hpp"
 #include "VFSNode.hpp"
 #include "VFSDir.hpp"
 #include "VFSFile.hpp"
diff -NrU5 nepenthes-0.2.2.orig/modules/shellemu-winnt/VFSCommand.hpp nepenthes-0.2.2/modules/shellemu-winnt/VFSCommand.hpp
--- nepenthes-0.2.2.orig/modules/shellemu-winnt/VFSCommand.hpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellemu-winnt/VFSCommand.hpp	2009-06-13 15:46:21.000000000 -0600
@@ -28,10 +28,11 @@
  /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
 
 #ifndef HAVE_VFSCOMMANDECHO
 #define HAVE_VFSCOMMANDECHO
 
+#include <stdint.h>
 #include <list>
 #include <string>
 #include <vector>
 
 #include "VFSNode.hpp"
diff -NrU5 nepenthes-0.2.2.orig/modules/shellemu-winnt/VFSCommandRCP.cpp nepenthes-0.2.2/modules/shellemu-winnt/VFSCommandRCP.cpp
--- nepenthes-0.2.2.orig/modules/shellemu-winnt/VFSCommandRCP.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/shellemu-winnt/VFSCommandRCP.cpp	2009-06-13 15:46:53.000000000 -0600
@@ -24,11 +24,13 @@
  *             contact nepenthesdev@users.sourceforge.net  
  *
  *******************************************************************************/
 
 /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
- 
+
+#include <cstdio>
+
 #include "VFSCommandRCP.hpp"
 #include "VFSNode.hpp"
 #include "VFSDir.hpp"
 #include "VFSFile.hpp"
 #include "Nepenthes.hpp"
diff -NrU5 nepenthes-0.2.2.orig/modules/submit-file/submit-file.cpp nepenthes-0.2.2/modules/submit-file/submit-file.cpp
--- nepenthes-0.2.2.orig/modules/submit-file/submit-file.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/submit-file/submit-file.cpp	2009-06-13 15:43:26.000000000 -0600
@@ -28,10 +28,11 @@
  /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <unistd.h>
 #include <errno.h>
+#include <cstdio>
 
 #include "submit-file.hpp"
 #include "Download.hpp"
 #include "DownloadBuffer.hpp"
 #include "Utilities.hpp"
diff -NrU5 nepenthes-0.2.2.orig/modules/submit-postgres/PGDownloadContext.cpp nepenthes-0.2.2/modules/submit-postgres/PGDownloadContext.cpp
--- nepenthes-0.2.2.orig/modules/submit-postgres/PGDownloadContext.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/modules/submit-postgres/PGDownloadContext.cpp	2009-06-13 16:33:01.000000000 -0600
@@ -25,10 +25,11 @@
  *
  *******************************************************************************/
 
 /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
 
+#include <cstdio> 
 
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
diff -NrU5 nepenthes-0.2.2.orig/nepenthes-core/src/DownloadManager.cpp nepenthes-0.2.2/nepenthes-core/src/DownloadManager.cpp
--- nepenthes-0.2.2.orig/nepenthes-core/src/DownloadManager.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/nepenthes-core/src/DownloadManager.cpp	2009-06-13 15:47:38.000000000 -0600
@@ -40,10 +40,12 @@
 #include "Config.hpp"
 
 #include "SubmitEvent.hpp"
 #include "EventManager.hpp"
 
+#include <cstdio>
+
 using namespace std;
 using namespace nepenthes;
 
 #ifdef STDTAGS 
 #undef STDTAGS 
diff -NrU5 nepenthes-0.2.2.orig/nepenthes-core/src/ModuleManager.cpp nepenthes-0.2.2/nepenthes-core/src/ModuleManager.cpp
--- nepenthes-0.2.2.orig/nepenthes-core/src/ModuleManager.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/nepenthes-core/src/ModuleManager.cpp	2009-06-13 15:48:19.000000000 -0600
@@ -33,10 +33,12 @@
 #include "Module.hpp"
 #include "Config.hpp"
 #include "Nepenthes.hpp"
 #include "LogManager.hpp"
 
+#include <cstdio>
+
 using namespace nepenthes;
 using namespace std;
 
 #ifdef STDTAGS 
 #undef STDTAGS 
diff -NrU5 nepenthes-0.2.2.orig/nepenthes-core/src/ShellcodeManager.cpp nepenthes-0.2.2/nepenthes-core/src/ShellcodeManager.cpp
--- nepenthes-0.2.2.orig/nepenthes-core/src/ShellcodeManager.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/nepenthes-core/src/ShellcodeManager.cpp	2009-06-13 16:00:35.000000000 -0600
@@ -33,10 +33,12 @@
 #include "LogManager.hpp"
 #include "Message.hpp"
 #include "SocketEvent.hpp"
 #include "EventManager.hpp"
 
+#include <cstdio>
+
 using namespace nepenthes;
 
 #ifdef STDTAGS 
 #undef STDTAGS 
 #endif
diff -NrU5 nepenthes-0.2.2.orig/nepenthes-core/src/Socket.cpp nepenthes-0.2.2/nepenthes-core/src/Socket.cpp
--- nepenthes-0.2.2.orig/nepenthes-core/src/Socket.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/nepenthes-core/src/Socket.cpp	2009-06-13 15:49:04.000000000 -0600
@@ -27,10 +27,11 @@
 
 /* $Id: nepenthes-0.2.2-gcc44.patch,v 1.1 2009/07/25 02:18:43 halcy0n Exp $ */
 
 #include <string>
 #include <sstream>
+#include <cstdio>
 
 #include <time.h>
 
 #include <sys/types.h>
 #include <sys/socket.h>
diff -NrU5 nepenthes-0.2.2.orig/nepenthes-core/src/Utilities.cpp nepenthes-0.2.2/nepenthes-core/src/Utilities.cpp
--- nepenthes-0.2.2.orig/nepenthes-core/src/Utilities.cpp	2009-06-13 15:32:10.000000000 -0600
+++ nepenthes-0.2.2/nepenthes-core/src/Utilities.cpp	2009-06-13 16:01:09.000000000 -0600
@@ -36,10 +36,12 @@
 #include <string.h>
 #include <sys/types.h>
 #include <inttypes.h>
 #include <ctype.h>
 
+#include <cstdio>
+
 #include "Utilities.hpp"
 #include "LogManager.hpp"
 #include "Config.hpp"
 
 using namespace nepenthes;






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nepenthes/files: nepenthes-0.2.2-gcc44.patch
@ 2009-08-07 14:02 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-08-07 14:02 UTC (permalink / raw
  To: gentoo-commits

ssuominen    09/08/07 14:02:49

  Removed:              nepenthes-0.2.2-gcc44.patch
  Log:
  Move patch to mirrors because CVS commit breaks it wrt #273845.
  (Portage version: 2.2_rc36/cvs/Linux x86_64)



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/nepenthes/files: nepenthes-0.2.2-gcc44.patch
@ 2014-10-25 12:09 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2014-10-25 12:09 UTC (permalink / raw
  To: gentoo-commits

jer         14/10/25 12:09:09

  Removed:              nepenthes-0.2.2-gcc44.patch
  Log:
  Use a remote patch to work around CVS header changes.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-10-25 12:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-07 14:02 [gentoo-commits] gentoo-x86 commit in net-analyzer/nepenthes/files: nepenthes-0.2.2-gcc44.patch Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2014-10-25 12:09 Jeroen Roovers (jer)
2009-07-25  2:18 Mark Loeser (halcy0n)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox