Ticket #1213 (closed defect: fixed)

Opened 2 years ago

Last modified 2 years ago

Compile errors in rev 1030, needed to patch src/rpc/parse.h and src/utils/directory.h

Reported by: VesselinK Owned by: rakshasa
Priority: normal Milestone:
Component: rtorrent Version: HEAD
Severity: normal Keywords:
Cc:

Description

src/rpc/parse.h: std::isspace() required #include <cctype> src/utils/directory.h: uint32_t and uint8_t required #include <stdint.h>

Here is the patch:

$ svn diff Index: src/rpc/parse.h =================================================================== --- src/rpc/parse.h (revision 1031) +++ src/rpc/parse.h (working copy) @@ -38,6 +38,7 @@

#define RTORRENT_RPC_PARSE_H

#include <string>

+#include <cctype>

#include <torrent/object.h>

namespace rpc {

Index: src/utils/directory.h =================================================================== --- src/utils/directory.h (revision 1031) +++ src/utils/directory.h (working copy) @@ -39,6 +39,7 @@

#include <string> #include <vector>

+#include <stdint.h>

namespace utils {

Attachments

diff1 (0.6 KB) - added by VesselinK 2 years ago.
Patch

Change History

Changed 2 years ago by VesselinK

Patch

Changed 2 years ago by anonymous

I compiled 1030 and 1031 on the NSLU2 with Debian distrib, no compile errors for me.

Changed 2 years ago by rakshasa

  • status changed from new to closed
  • resolution set to fixed

Fixed next commit.

Add/Change #1213 (Compile errors in rev 1030, needed to patch src/rpc/parse.h and src/utils/directory.h)

Author


E-mail address and user name can be saved in the Preferences.


Action
as closed
Next status will be 'reopened'
 
Note: See TracTickets for help on using tickets.