mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 21:51:34 +02:00
27 lines
696 B
Diff
27 lines
696 B
Diff
From f7c8e7641c584cc172eeacab4fae6b7dbe9fb376 Mon Sep 17 00:00:00 2001
|
|
From: Luca Weiss <luca@z3ntu.xyz>
|
|
Date: Wed, 21 Apr 2021 21:27:47 +0200
|
|
Subject: [PATCH] libbacktrace: include config.h
|
|
|
|
We need config.h for the HAVE_STDINT_H define.
|
|
---
|
|
thirdparty/libbacktrace/backtrace.h | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/thirdparty/libbacktrace/backtrace.h b/thirdparty/libbacktrace/backtrace.h
|
|
index 2814763f..d2943e1a 100644
|
|
--- a/thirdparty/libbacktrace/backtrace.h
|
|
+++ b/thirdparty/libbacktrace/backtrace.h
|
|
@@ -33,6 +33,8 @@ POSSIBILITY OF SUCH DAMAGE. */
|
|
#ifndef BACKTRACE_H
|
|
#define BACKTRACE_H
|
|
|
|
+#include <config.h>
|
|
+
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
|
|
--
|
|
2.31.1
|
|
|