Changes between Version 8 and Version 9 of gcc14-todo
- Timestamp:
- 02/02/2024 11:53:43 AM (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
gcc14-todo
v8 v9 36 36 37 37 "107: lt_dlopen archive" skipped. Not a serious issue. 38 39 == Inetutils (2.5) 40 41 **FTBFS**: 42 43 {{{ 44 telnet.c: In function 'init_term': 45 telnet.c:767:9: error: implicit declaration of function 'tgetent'; did you mean 'getenv'? [-Wimplicit-function-declaration] 46 767 | err = tgetent (termbuf, tname); 47 | ^~~~~~~ 48 | getenv 49 }}} 50 51 Fix: `sed '/stdlib.h/a#include <termcap.h>' -i telnet/telnet.c`