summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Hood <squinky86@gentoo.org>2004-07-15 08:20:33 +0000
committerJon Hood <squinky86@gentoo.org>2004-07-15 08:20:33 +0000
commite8dffe0a07ccc1d48d9ede756e1fa009db8e3caa (patch)
tree798018b537778ec14d489a81d2b92f5756b93653 /net-libs/libbt/files
parentfix broken package. (diff)
downloadhistorical-e8dffe0a07ccc1d48d9ede756e1fa009db8e3caa.tar.gz
historical-e8dffe0a07ccc1d48d9ede756e1fa009db8e3caa.tar.bz2
historical-e8dffe0a07ccc1d48d9ede756e1fa009db8e3caa.zip
version bump, closes #52484
Diffstat (limited to 'net-libs/libbt/files')
-rw-r--r--net-libs/libbt/files/digest-libbt-1.031
-rw-r--r--net-libs/libbt/files/libbt-headerfix.patch58
2 files changed, 59 insertions, 0 deletions
diff --git a/net-libs/libbt/files/digest-libbt-1.03 b/net-libs/libbt/files/digest-libbt-1.03
new file mode 100644
index 000000000000..ea14a664cc88
--- /dev/null
+++ b/net-libs/libbt/files/digest-libbt-1.03
@@ -0,0 +1 @@
+MD5 f5fdd7f4b641d5da08d678130b4d6bff libbt-1.03.tar.gz 307473
diff --git a/net-libs/libbt/files/libbt-headerfix.patch b/net-libs/libbt/files/libbt-headerfix.patch
new file mode 100644
index 000000000000..293566af4427
--- /dev/null
+++ b/net-libs/libbt/files/libbt-headerfix.patch
@@ -0,0 +1,58 @@
+diff -Naur libbt-1.03.vanilla/src/btget.c libbt-1.03/src/btget.c
+--- libbt-1.03.vanilla/src/btget.c 2004-04-19 17:11:28.000000000 -0500
++++ libbt-1.03/src/btget.c 2004-07-15 03:11:51.926606992 -0500
+@@ -1,6 +1,7 @@
+ /* btget.c */
+ #include "config.h"
+
++#include "util.h"
+ #include <curl/curl.h>
+ #include <curl/easy.h>
+ #include <openssl/sha.h>
+@@ -39,15 +40,14 @@
+
+ /* libbt */
+ #include "bts.h"
+-#include "types.h"
+ #include "benc.h"
+ #include "random.h"
+ #include "peer.h"
+ #include "stream.h"
+-#include "util.h"
+ #include "segmenter.h"
+ #include "context.h"
+ #include "bterror.h"
++#include "types.h"
+
+ #if WIN32
+ #define close(cs) closesocket(cs)
+diff -Naur libbt-1.03.vanilla/src/segmenter.c libbt-1.03/src/segmenter.c
+--- libbt-1.03.vanilla/src/segmenter.c 2004-04-16 00:28:42.000000000 -0500
++++ libbt-1.03/src/segmenter.c 2004-07-15 03:11:51.946603952 -0500
+@@ -1,5 +1,6 @@
+ #include "config.h"
+
++#include "util.h"
+ #include <stdlib.h>
+ #include <openssl/sha.h>
+ #include <string.h>
+@@ -18,8 +19,8 @@
+ # include <fcntl.h>
+ #endif
+ #include <stdio.h>
++#include "types.h"
+
+-#include "util.h"
+ #include "segmenter.h"
+ #include "bitset.h"
+ #undef min
+diff -Naur libbt-1.03.vanilla/src/types.c libbt-1.03/src/types.c
+--- libbt-1.03.vanilla/src/types.c 2004-04-16 01:19:41.000000000 -0500
++++ libbt-1.03/src/types.c 2004-07-15 03:11:51.947603800 -0500
+@@ -1,5 +1,6 @@
+ #include "config.h"
+
++#include "util.h"
+ #include <stdlib.h>
+ #include <string.h>
+ #ifdef HAVE_STRINGS_H