From b44b3799ca9fa6c744fc079b96a9c062e4bdd077 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 1 Jun 2009 22:16:31 +0200 Subject: remove unused $Id$ - $id$ substitution is not apropriate for git scm --- package/ctorrent/Makefile | 2 -- 1 file changed, 2 deletions(-) (limited to 'package/ctorrent') diff --git a/package/ctorrent/Makefile b/package/ctorrent/Makefile index 5c6221b08..23ba6ac71 100755 --- a/package/ctorrent/Makefile +++ b/package/ctorrent/Makefile @@ -1,5 +1,3 @@ -# $Id$ -#- # This file is part of the OpenADK project. OpenADK is copyrighted # material, please see the LICENCE file in the top-level directory. -- cgit v1.2.3 From 7c520cd3ad42f5d94a9888bb9b3db7c79b6fd94f Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Tue, 2 Jun 2009 22:09:53 +0200 Subject: fix regressions for allconfig alix1c glibc target --- package/ctorrent/patches/patch-bencode_cpp | 16 ++++++++++++++++ package/ctorrent/patches/patch-bencode_h | 11 +++++++++++ 2 files changed, 27 insertions(+) create mode 100644 package/ctorrent/patches/patch-bencode_cpp create mode 100644 package/ctorrent/patches/patch-bencode_h (limited to 'package/ctorrent') diff --git a/package/ctorrent/patches/patch-bencode_cpp b/package/ctorrent/patches/patch-bencode_cpp new file mode 100644 index 000000000..9f2a4381e --- /dev/null +++ b/package/ctorrent/patches/patch-bencode_cpp @@ -0,0 +1,16 @@ +$Id: update-patches 24 2008-08-31 14:56:13Z wbx $ +--- ctorrent-dnh2.orig/bencode.cpp 2006-01-02 03:38:01.000000000 +0100 ++++ ctorrent-dnh2/bencode.cpp 2009-06-01 19:10:05.000000000 +0200 +@@ -213,10 +213,10 @@ size_t bencode_end_dict_list(FILE *fp) + return (EOF == fputc('e',fp)) ? 0 : 1; + } + +-size_t bencode_path2list(const char *pathname, FILE *fp) ++size_t bencode_path2list(char *pathname, FILE *fp) + { + char *pn; +- const char *p = pathname; ++ char *p = pathname; + + if( bencode_begin_list(fp) != 1 ) return 0; + diff --git a/package/ctorrent/patches/patch-bencode_h b/package/ctorrent/patches/patch-bencode_h new file mode 100644 index 000000000..594fa668a --- /dev/null +++ b/package/ctorrent/patches/patch-bencode_h @@ -0,0 +1,11 @@ +$Id: update-patches 24 2008-08-31 14:56:13Z wbx $ +--- ctorrent-dnh2.orig/bencode.h 2005-08-27 05:43:00.000000000 +0200 ++++ ctorrent-dnh2/bencode.h 2009-06-01 19:11:29.000000000 +0200 +@@ -31,6 +31,6 @@ size_t bencode_int(const int integer, FI + size_t bencode_begin_dict(FILE *fp); + size_t bencode_begin_list(FILE *fp); + size_t bencode_end_dict_list(FILE *fp); +-size_t bencode_path2list(const char *pathname, FILE *fp); ++size_t bencode_path2list(char *pathname, FILE *fp); + + #endif -- cgit v1.2.3