Advertisement
Guest User

Untitled

a guest
May 2nd, 2022
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. lib.c:119:4: error: use of undeclared identifier 'rl_catch_signals'
  2. rl_catch_signals = 0;
  3. ^
  4. lib.c:121:4: error: use of undeclared identifier 'rl_input_available_hook'
  5. rl_input_available_hook = rlAvail;
  6. ^
  7. lib.c:124:4: error: use of undeclared identifier 'rl_basic_quote_characters'
  8. rl_basic_quote_characters = NULL;
  9. ^
  10. lib.c:136:56: error: use of undeclared identifier 'rl_readline_state'
  11. if (rl_readline_state & RL_STATE_INITIALIZED && !(rl_readline_state & RL_STATE_DONE)) {
  12. ^
  13. lib.c:136:76: error: use of undeclared identifier 'RL_STATE_DONE'
  14. if (rl_readline_state & RL_STATE_INITIALIZED && !(rl_readline_state & RL_STATE_DONE)) {
  15. ^
  16. lib.c:136:8: error: use of undeclared identifier 'rl_readline_state'
  17. if (rl_readline_state & RL_STATE_INITIALIZED && !(rl_readline_state & RL_STATE_DONE)) {
  18. ^
  19. lib.c:136:28: error: use of undeclared identifier 'RL_STATE_INITIALIZED'
  20. if (rl_readline_state & RL_STATE_INITIALIZED && !(rl_readline_state & RL_STATE_DONE)) {
  21. ^
  22. lib.c:143:56: error: use of undeclared identifier 'rl_readline_state'
  23. if (rl_readline_state & RL_STATE_INITIALIZED && !(rl_readline_state & RL_STATE_DONE))
  24. ^
  25. lib.c:143:76: error: use of undeclared identifier 'RL_STATE_DONE'
  26. if (rl_readline_state & RL_STATE_INITIALIZED && !(rl_readline_state & RL_STATE_DONE))
  27. ^
  28. lib.c:143:8: error: use of undeclared identifier 'rl_readline_state'
  29. if (rl_readline_state & RL_STATE_INITIALIZED && !(rl_readline_state & RL_STATE_DONE))
  30. ^
  31. lib.c:143:28: error: use of undeclared identifier 'RL_STATE_INITIALIZED'
  32. if (rl_readline_state & RL_STATE_INITIALIZED && !(rl_readline_state & RL_STATE_DONE))
  33. ^
  34. lib.c:148:8: error: use of undeclared identifier 'rl_readline_state'
  35. if (rl_readline_state & RL_STATE_INITIALIZED) {
  36. ^
  37. lib.c:148:28: error: use of undeclared identifier 'RL_STATE_INITIALIZED'
  38. if (rl_readline_state & RL_STATE_INITIALIZED) {
  39. ^
  40. lib.c:156:8: error: use of undeclared identifier 'rl_readline_state'
  41. if (rl_readline_state & RL_STATE_SIGHANDLER) {
  42. ^
  43. lib.c:156:28: error: use of undeclared identifier 'RL_STATE_SIGHANDLER'
  44. if (rl_readline_state & RL_STATE_SIGHANDLER) {
  45. ^
  46. 15 errors generated.
  47. make: *** [Makefile:47: lib.bc] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement