blob: 8beb07c55d9ebae0c051169fa1842da6a1db52cc [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001--- a/configure.in
2+++ b/configure.in
3@@ -60,7 +60,7 @@ AC_PROG_CPP
4 AC_PROG_CXX
5
6 dnl check for gcc 2.95.x
7-AC_TRY_RUN([
8+AC_RUN_IFELSE([
9 #include <unistd.h>
10 main()
11 {
12@@ -72,7 +72,8 @@ main()
13 }
14 ],,
15 [echo "need at least gcc 2.95 to compile correctly"
16-exit 1])
17+exit 1],
18+[echo "checking if at least gcc 2.95 is available... cross-compiling (assuming yes)"])
19
20 dnl check for alloca
21 AC_FUNC_ALLOCA