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
|
From 879fb11c7c006a8533a092fb75b38d84cc570d83 Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex@linutronix.de>
Date: Fri, 22 Nov 2024 12:13:58 +0100
Subject: [PATCH] configure.ac: re-enable disabled printf features
This is needed for ptests to pass for one thing.
Upstream-Status: Inappropriate [needs a config option]
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index cb99ffe..5fe792f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -398,7 +398,7 @@ int main()
])],
has_f_format=yes,
has_f_format=no,
- has_f_format=no dnl Cross-compiling, assuming the worst.
+ has_f_format=yes dnl Cross-compiling in oe-core
)
if test "$has_f_format" = yes
then
@@ -427,7 +427,7 @@ int main()
])],
has_a_format=yes,
has_a_format=no,
- has_a_format=no dnl Cross-compiling, assuming the worst.
+ has_a_format=yes dnl Cross-compiling in oe-core
)
if test "$has_a_format" = yes
then
|