Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Not a Bug
-
11.4.3
-
None
-
Build in a custom chroot based on Linux from Scratch.
Githug Actions Script: https://github.com/unypkg/mariadb/blob/main/unypkg-mariadb-build.sh
Github Actions Job: https://github.com/unypkg/mariadb/actions/runs/10432874673/job/28894031877
Description
Here the build error:
/sources/mariadb-11.4.3/client/mysql.cc:199:13: error: variable or field 'my_vidattr' declared void |
199 | static void my_vidattr(chtype attrs) |
| ^~~~~~~~~~
|
/sources/mariadb-11.4.3/client/mysql.cc:199:24: error: 'chtype' was not declared in this scope |
199 | static void my_vidattr(chtype attrs) |
| ^~~~~~
|
/sources/mariadb-11.4.3/client/mysql.cc: In function 'int com_status(String*, char*)': |
/sources/mariadb-11.4.3/client/mysql.cc:5164:16: error: 'A_BOLD' was not declared in this scope |
5164 | my_vidattr(A_BOLD); |
| ^~~~~~
|
/sources/mariadb-11.4.3/client/mysql.cc:5164:5: error: 'my_vidattr' was not declared in this scope |
5164 | my_vidattr(A_BOLD); |
| ^~~~~~~~~~
|
/sources/mariadb-11.4.3/client/mysql.cc:5166:16: error: 'A_NORMAL' was not declared in this scope; did you mean 'FP_NORMAL'? |
5166 | my_vidattr(A_NORMAL); |
| ^~~~~~~~
|
| FP_NORMAL
|
/sources/mariadb-11.4.3/client/mysql.cc:5236:16: error: 'A_BOLD' was not declared in this scope |
5236 | my_vidattr(A_BOLD); |
| ^~~~~~
|
/sources/mariadb-11.4.3/client/mysql.cc:5236:5: error: 'my_vidattr' was not declared in this scope |
5236 | my_vidattr(A_BOLD); |
| ^~~~~~~~~~
|
/sources/mariadb-11.4.3/client/mysql.cc:5238:16: error: 'A_NORMAL' was not declared in this scope; did you mean 'FP_NORMAL'? |
5238 | my_vidattr(A_NORMAL); |
| ^~~~~~~~
|
| FP_NORMAL
|
/sources/mariadb-11.4.3/client/mysql.cc: In function 'int put_info(const char*, INFO_TYPE, uint, const char*)': |
/sources/mariadb-11.4.3/client/mysql.cc:5332:20: error: 'setupterm' was not declared in this scope |
5332 | have_curses= setupterm((char *)0, 1, &errret) != ERR; |
| ^~~~~~~~~
|
/sources/mariadb-11.4.3/client/mysql.cc:5332:56: error: 'ERR' was not declared in this scope; did you mean 'ER'? |
5332 | have_curses= setupterm((char *)0, 1, &errret) != ERR; |
| ^~~
|
| ER
|
/sources/mariadb-11.4.3/client/mysql.cc:5346:18: error: 'A_STANDOUT' was not declared in this scope |
5346 | my_vidattr(A_STANDOUT); |
| ^~~~~~~~~~
|
/sources/mariadb-11.4.3/client/mysql.cc:5346:7: error: 'my_vidattr' was not declared in this scope |
5346 | my_vidattr(A_STANDOUT); |
| ^~~~~~~~~~
|
/sources/mariadb-11.4.3/client/mysql.cc:5365:18: error: 'A_BOLD' was not declared in this scope |
5365 | my_vidattr(A_BOLD); |
| ^~~~~~
|
/sources/mariadb-11.4.3/client/mysql.cc:5365:7: error: 'my_vidattr' was not declared in this scope |
5365 | my_vidattr(A_BOLD); |
| ^~~~~~~~~~
|
/sources/mariadb-11.4.3/client/mysql.cc:5367:16: error: 'A_NORMAL' was not declared in this scope; did you mean 'FP_NORMAL'? |
5367 | my_vidattr(A_NORMAL); |
| ^~~~~~~~
|
| FP_NORMAL
|
/sources/mariadb-11.4.3/client/mysql.cc:5367:5: error: 'my_vidattr' was not declared in this scope |
5367 | my_vidattr(A_NORMAL); |
| ^~~~~~~~~~
|
make[2]: *** [client/CMakeFiles/mariadb.dir/build.make:90: client/CMakeFiles/mariadb.dir/mysql.cc.o] Error 1 |