1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
--- a/debuginfod/debuginfod-client.c
+++ b/debuginfod/debuginfod-client.c
@@ -58,6 +58,10 @@
typedef enum {ignore, enforcing, undefined} ima_policy_t;
+#ifndef PATH_MAX
+#define PATH_MAX 1024
+#endif
+
/* We might be building a bootstrap dummy library, which is really simple. */
#ifdef DUMMY_LIBDEBUGINFOD
--- a/debuginfod/debuginfod.cxx
+++ b/debuginfod/debuginfod.cxx
@@ -58,7 +58,6 @@ extern "C" {
#include "debuginfod.h"
#include <dwarf.h>
-#include <argp.h>
#ifdef __GNUC__
#undef __attribute__ /* glibc bug - rhbz 1763325 */
#endif
@@ -150,6 +149,8 @@ using namespace std;
#define tid() pthread_self()
#endif
+#include <argp.h>
+
extern "C" {
#include "printversion.h"
#include "system.h"
@@ -769,10 +770,10 @@ parse_opt (int key, char *arg,
addr_info = arg;
break;
// case 'h': argp_state_help (state, stderr, ARGP_HELP_LONG|ARGP_HELP_EXIT_OK);
- default: return ARGP_ERR_UNKNOWN;
+ default: return (error_t) ARGP_ERR_UNKNOWN;
}
- return 0;
+ return (error_t)0;
}
--- a/tests/backtrace.c
+++ b/tests/backtrace.c
@@ -40,6 +40,10 @@
#endif
#include "system.h"
+#ifndef PATH_MAX
+#define PATH_MAX 1024
+#endif
+
#ifndef __linux__
int
|