Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 250922 | Differences between
and this patch

Collapse All | Expand All

(-)dbg-cli-2.15.5-src.orig/dbgbase/dbgbase_classes.h (+1 lines)
Lines 17-22 Link Here
17
17
18
#include "dbgbase_globals.h"
18
#include "dbgbase_globals.h"
19
#include <string>
19
#include <string>
20
#include <cstring>
20
#include <vector>
21
#include <vector>
21
#include <list>
22
#include <list>
22
#include <vector>
23
#include <vector>
(-)dbg-cli-2.15.5-src.orig/dbgbase/dbgbase_globals.cpp (+1 lines)
Lines 56-61 Link Here
56
#include <ctype.h>
56
#include <ctype.h>
57
#include "dbgbase/dbgbase_globals.h"
57
#include "dbgbase/dbgbase_globals.h"
58
58
59
#include <cstdlib>
59
60
60
#ifdef _TRACE
61
#ifdef _TRACE
61
62
(-)dbg-cli-2.15.5-src.orig/dbgbase/DbgSess.cpp (+1 lines)
Lines 59-64 Link Here
59
#include "StrTable.h"
59
#include "StrTable.h"
60
#include "DbgSpawn.h"
60
#include "DbgSpawn.h"
61
61
62
#include <cstring>
62
63
63
void GenerateSessionID(std::string& sessid) {
64
void GenerateSessionID(std::string& sessid) {
64
	char buf[256];
65
	char buf[256];
(-)dbg-cli-2.15.5-src.orig/dbgbase/DbgSpawn.cpp (+2 lines)
Lines 43-48 Link Here
43
#include <signal.h>
43
#include <signal.h>
44
#include "dbgbase/dbgbase_globals.h"
44
#include "dbgbase/dbgbase_globals.h"
45
45
46
#include <cstdlib>
47
#include <cstring>
46
48
47
pid_t spawn_process(const char *filename, char ** env,
49
pid_t spawn_process(const char *filename, char ** env,
48
	pipe_t *hpipeINPUT, pipe_t *hpipeOUTPUT, pipe_t *hpipeERROR) {
50
	pipe_t *hpipeINPUT, pipe_t *hpipeOUTPUT, pipe_t *hpipeERROR) {
(-)dbg-cli-2.15.5-src.orig/dbgbase/ParseEval.cpp (+1 lines)
Lines 20-25 Link Here
20
#include <string>
20
#include <string>
21
#include <vector>
21
#include <vector>
22
#include "dbgbase/dbgbase_globals.h"
22
#include "dbgbase/dbgbase_globals.h"
23
#include <cstdlib>
23
24
24
char *valtypes[10] = {"undefined","long","double","string","array","object","bool","resource","reference","soft reference"};
25
char *valtypes[10] = {"undefined","long","double","string","array","object","bool","resource","reference","soft reference"};
25
26
(-)dbg-cli-2.15.5-src.orig/dbgbase/StrTable.h (+1 lines)
Lines 23-28 Link Here
23
#include <list>
23
#include <list>
24
#include <vector>
24
#include <vector>
25
#include <string>
25
#include <string>
26
#include <cstring>
26
#include <algorithm>
27
#include <algorithm>
27
28
28
#if HAVE_IOSTREAM
29
#if HAVE_IOSTREAM
(-)dbg-cli-2.15.5-src.orig/dbgbase/UrlParse.cpp (+2 lines)
Lines 60-65 Link Here
60
		v = src.substr(match[idx].rm_so, match[idx].rm_eo - match[idx].rm_so);	\
60
		v = src.substr(match[idx].rm_so, match[idx].rm_eo - match[idx].rm_so);	\
61
	}
61
	}
62
62
63
#include <cstdlib>
64
63
UrlParse::UrlParse(const std::string& url) : ferr(0), fport(0) {
65
UrlParse::UrlParse(const std::string& url) : ferr(0), fport(0) {
64
	regex_t re;
66
	regex_t re;
65
	regmatch_t match[11];
67
	regmatch_t match[11];

Return to bug 250922