Ticket #1213 (closed defect: fixed)
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 {
