r7345 - in /vdr/vdr-plugin-lastfm/trunk/debian: changelog patches/00list patches/02_gcc43.dpatch

tiber-guest at users.alioth.debian.org tiber-guest at users.alioth.debian.org
Sun Jul 27 12:03:18 UTC 2008


Author: tiber-guest
Date: Sun Jul 27 12:03:18 2008
New Revision: 7345

URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/?sc=1&rev=7345
Log:
Added 02_gcc43.dpatch

Added:
    vdr/vdr-plugin-lastfm/trunk/debian/patches/02_gcc43.dpatch
Modified:
    vdr/vdr-plugin-lastfm/trunk/debian/changelog
    vdr/vdr-plugin-lastfm/trunk/debian/patches/00list

Modified: vdr/vdr-plugin-lastfm/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-lastfm/trunk/debian/changelog?rev=7345&op=diff
==============================================================================
--- vdr/vdr-plugin-lastfm/trunk/debian/changelog (original)
+++ vdr/vdr-plugin-lastfm/trunk/debian/changelog Sun Jul 27 12:03:18 2008
@@ -3,6 +3,7 @@
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (>=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
+  * Added 02_gcc43.dpatch
 
  -- Tobias Grimm <tg at e-tobi.net>  Fri, 25 Jul 2008 19:25:27 +0200
 

Modified: vdr/vdr-plugin-lastfm/trunk/debian/patches/00list
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-lastfm/trunk/debian/patches/00list?rev=7345&op=diff
==============================================================================
--- vdr/vdr-plugin-lastfm/trunk/debian/patches/00list (original)
+++ vdr/vdr-plugin-lastfm/trunk/debian/patches/00list Sun Jul 27 12:03:18 2008
@@ -1,1 +1,2 @@
 01_fPIC
+02_gcc43

Added: vdr/vdr-plugin-lastfm/trunk/debian/patches/02_gcc43.dpatch
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-lastfm/trunk/debian/patches/02_gcc43.dpatch?rev=7345&op=file
==============================================================================
--- vdr/vdr-plugin-lastfm/trunk/debian/patches/02_gcc43.dpatch (added)
+++ vdr/vdr-plugin-lastfm/trunk/debian/patches/02_gcc43.dpatch Sun Jul 27 12:03:18 2008
@@ -1,0 +1,113 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 02_gcc43.dpatch by Tobias Grimm <tg at e-tobi.net>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+ at DPATCH@
+diff -urNad vdr-plugin-lastfm-0.2.1~/audio_decoder_mp3.h vdr-plugin-lastfm-0.2.1/audio_decoder_mp3.h
+--- vdr-plugin-lastfm-0.2.1~/audio_decoder_mp3.h	2008-07-27 13:59:07.000000000 +0200
++++ vdr-plugin-lastfm-0.2.1/audio_decoder_mp3.h	2008-07-27 13:59:15.000000000 +0200
+@@ -9,6 +9,7 @@
+ #ifndef AUDIO_DECODER_MP3_H_
+ #define AUDIO_DECODER_MP3_H_
+ 
++#include <string.h>
+ #include <stdint.h>
+ #include <mad.h>
+ #include "config.h"
+diff -urNad vdr-plugin-lastfm-0.2.1~/audio_decoder_mp3_http.h vdr-plugin-lastfm-0.2.1/audio_decoder_mp3_http.h
+--- vdr-plugin-lastfm-0.2.1~/audio_decoder_mp3_http.h	2007-10-22 12:46:53.000000000 +0200
++++ vdr-plugin-lastfm-0.2.1/audio_decoder_mp3_http.h	2008-07-27 13:59:53.000000000 +0200
+@@ -9,6 +9,8 @@
+ #ifndef AUDIO_DECODER_MP3_HTTP_H_
+ #define AUDIO_DECODER_MP3_HTTP_H_
+ 
++#include <string.h>
++#include <stdlib.h>
+ #include "audio_decoder_mp3.h"
+ #include <Sockets/SocketHandler.h>
+ #include <Sockets/HttpGetSocket.h>
+diff -urNad vdr-plugin-lastfm-0.2.1~/utils.c vdr-plugin-lastfm-0.2.1/utils.c
+--- vdr-plugin-lastfm-0.2.1~/utils.c	2008-07-27 13:59:07.000000000 +0200
++++ vdr-plugin-lastfm-0.2.1/utils.c	2008-07-27 13:59:15.000000000 +0200
+@@ -6,6 +6,8 @@
+  * Author: Matthias Feistel <hitman_47 at users.sourceforge.net>, (C) 2007
+  */
+ 
++#include <string.h>
++#include <stdlib.h>
+ #include "utils.h"
+ #include "md5.h"
+ 
+diff -urNad vdr-plugin-lastfm-0.2.1~/web_networkcontroller.c vdr-plugin-lastfm-0.2.1/web_networkcontroller.c
+--- vdr-plugin-lastfm-0.2.1~/web_networkcontroller.c	2008-07-27 13:59:07.000000000 +0200
++++ vdr-plugin-lastfm-0.2.1/web_networkcontroller.c	2008-07-27 13:59:15.000000000 +0200
+@@ -6,6 +6,7 @@
+  * Author: Matthias Feistel <hitman_47 at users.sourceforge.net>, (C) 2007
+  */
+ 
++#include <string.h>
+ #include "web_networkcontroller.h"
+ #include "web_networkcontroller_httpget.h"
+ #include "web_networkcontroller_httppost.h"
+diff -urNad vdr-plugin-lastfm-0.2.1~/web_networkcontroller.h vdr-plugin-lastfm-0.2.1/web_networkcontroller.h
+--- vdr-plugin-lastfm-0.2.1~/web_networkcontroller.h	2007-10-22 12:46:53.000000000 +0200
++++ vdr-plugin-lastfm-0.2.1/web_networkcontroller.h	2008-07-27 14:00:09.000000000 +0200
+@@ -9,6 +9,8 @@
+ #ifndef WEB_NETWORKCONTROLLER_H_
+ #define WEB_NETWORKCONTROLLER_H_
+ 
++#include <string.h>
++#include <stdlib.h>
+ #include <Sockets/SocketHandler.h>
+ 
+ class cNetworkController
+diff -urNad vdr-plugin-lastfm-0.2.1~/web_networkcontroller_httpget.h vdr-plugin-lastfm-0.2.1/web_networkcontroller_httpget.h
+--- vdr-plugin-lastfm-0.2.1~/web_networkcontroller_httpget.h	2008-07-27 13:59:07.000000000 +0200
++++ vdr-plugin-lastfm-0.2.1/web_networkcontroller_httpget.h	2008-07-27 13:59:15.000000000 +0200
+@@ -9,6 +9,8 @@
+ #ifndef WEB_NETWORKCONTROLLER_HTTPGET_H_
+ #define WEB_NETWORKCONTROLLER_HTTPGET_H_
+ 
++#include <string.h>
++#include <stdlib.h>
+ #include <Sockets/HttpGetSocket.h>
+ 
+ class My_Web_HttpGetSocket : public HttpGetSocket
+diff -urNad vdr-plugin-lastfm-0.2.1~/web_networkcontroller_httppost.h vdr-plugin-lastfm-0.2.1/web_networkcontroller_httppost.h
+--- vdr-plugin-lastfm-0.2.1~/web_networkcontroller_httppost.h	2007-10-22 12:46:53.000000000 +0200
++++ vdr-plugin-lastfm-0.2.1/web_networkcontroller_httppost.h	2008-07-27 14:00:27.000000000 +0200
+@@ -9,6 +9,8 @@
+ #ifndef WEB_NETWORKCONTROLLER_HTTPPOST_H_
+ #define WEB_NETWORKCONTROLLER_HTTPPOST_H_
+ 
++#include <string.h>
++#include <stdlib.h>
+ #include <Sockets/HttpPostSocket.h>
+ 
+ class My_Web_HttpPostSocket : public HttpPostSocket
+diff -urNad vdr-plugin-lastfm-0.2.1~/web_networkcontroller_httppostxml.c vdr-plugin-lastfm-0.2.1/web_networkcontroller_httppostxml.c
+--- vdr-plugin-lastfm-0.2.1~/web_networkcontroller_httppostxml.c	2007-10-22 12:46:53.000000000 +0200
++++ vdr-plugin-lastfm-0.2.1/web_networkcontroller_httppostxml.c	2008-07-27 14:00:03.000000000 +0200
+@@ -6,6 +6,8 @@
+  * Author: Matthias Feistel <hitman_47 at users.sourceforge.net>, (C) 2007
+  */
+ 
++#include <string.h>
++#include <stdlib.h>
+ #include <sstream>
+ #include "web_networkcontroller_httppostxml.h"
+ #include "config.h" // PLUGIN_NAME PLUGIN_VERSION
+diff -urNad vdr-plugin-lastfm-0.2.1~/web_networkcontroller_httppostxml.h vdr-plugin-lastfm-0.2.1/web_networkcontroller_httppostxml.h
+--- vdr-plugin-lastfm-0.2.1~/web_networkcontroller_httppostxml.h	2007-10-22 12:46:53.000000000 +0200
++++ vdr-plugin-lastfm-0.2.1/web_networkcontroller_httppostxml.h	2008-07-27 14:00:18.000000000 +0200
+@@ -9,6 +9,8 @@
+ #ifndef WEB_NETWORKCONTROLLER_HTTPPOSTXML_H_
+ #define WEB_NETWORKCONTROLLER_HTTPPOSTXML_H_
+ 
++#include <string.h>
++#include <stdlib.h>
+ #include <Sockets/HttpPostSocket.h>
+ 
+ class My_Web_HttpPostXmlSocket : public HttpPostSocket




More information about the pkg-vdr-dvb-changes mailing list