hc
2024-07-16 5fbd6e2385615a225453562361c4bdab3b15fda1
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
From d5d528e7562f358b9564e64cea0678020c51479a Mon Sep 17 00:00:00 2001
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Date: Sun, 15 Mar 2020 18:56:19 +0100
Subject: [PATCH] src/core/paths/paths.cpp: fix powerpc build
 
Fix the following build failure on powerpc:
 
/home/test/autobuild/run/instance-2/output-1/build/linphone-4.3.1/src/core/paths/paths.cpp:32:3: error: #error "Unsupported system."
  #error "Unsupported system."
   ^~~~~
 
Fixes:
 - http://autobuild.buildroot.org/results/d90bca02c2771df8dfbf39892d529fb5f9069656
 
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 src/core/paths/paths.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 
diff --git a/src/core/paths/paths.cpp b/src/core/paths/paths.cpp
index 0442282fe..2c6508a51 100644
--- a/src/core/paths/paths.cpp
+++ b/src/core/paths/paths.cpp
@@ -26,7 +26,7 @@
     #include "paths-android.h"
 #elif defined(_WIN32)
     #include "paths-windows.h"
-#elif defined(__linux)
+#elif defined(__linux) || defined(__linux__)
     #include "paths-linux.h"
 #else
     #error "Unsupported system."
-- 
2.25.1