all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* vterm-module compile error
@ 2020-10-24  0:26 Emanuel Berg via Users list for the GNU Emacs text editor
  2020-10-24 12:23 ` Jean Louis
  0 siblings, 1 reply; 23+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-10-24  0:26 UTC (permalink / raw)
  To: help-gnu-emacs

When I do M-x vterm RET it says

  Vterm needs `vterm-module' to work.  Compile it now? (y or n) y
  Compilation of ‘emacs-libvterm’ module succeeded

but then

  -- System libvterm detected
  -- Configuring done
  -- Generating done
  -- Build files have been written to: /home/incal/.emacs.d/elpa/vterm-20201004.2057/build
  [ 25%] Building C object CMakeFiles/vterm-module.dir/vterm-module.c.o
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c: In function ‘compare_cells’:
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c:597:20: warning: implicit declaration of function ‘vterm_color_is_equal’; did you mean ‘vterm_screen_is_eol’? [-Wimplicit-function-declaration]
     equal = equal && vterm_color_is_equal(&a->fg, &b->fg);
                      ^~~~~~~~~~~~~~~~~~~~
                      vterm_screen_is_eol
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c: In function ‘cell_rgb_color’:
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c:734:7: warning: implicit declaration of function ‘VTERM_COLOR_IS_DEFAULT_FG’ [-Wimplicit-function-declaration]
     if (VTERM_COLOR_IS_DEFAULT_FG(color)) {
         ^~~~~~~~~~~~~~~~~~~~~~~~~
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c:737:7: warning: implicit declaration of function ‘VTERM_COLOR_IS_DEFAULT_BG’ [-Wimplicit-function-declaration]
     if (VTERM_COLOR_IS_DEFAULT_BG(color)) {
         ^~~~~~~~~~~~~~~~~~~~~~~~~
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c:740:7: warning: implicit declaration of function ‘VTERM_COLOR_IS_INDEXED’ [-Wimplicit-function-declaration]
     if (VTERM_COLOR_IS_INDEXED(color)) {
         ^~~~~~~~~~~~~~~~~~~~~~
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c:741:14: error: ‘VTermColor’ {aka ‘struct <anonymous>’} has no member named ‘indexed’
       if (color->indexed.idx < 16) {
                ^~
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c:742:40: error: ‘VTermColor’ {aka ‘struct <anonymous>’} has no member named ‘indexed’
         return vterm_get_color(env, color->indexed.idx);
                                          ^~
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c:745:49: error: ‘VTermColor’ {aka ‘struct <anonymous>’} has no member named ‘indexed’
         vterm_state_get_palette_color(state, color->indexed.idx, color);
                                                   ^~
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c:747:14: warning: implicit declaration of function ‘VTERM_COLOR_IS_RGB’ [-Wimplicit-function-declaration]
     } else if (VTERM_COLOR_IS_RGB(color)) {
                ^~~~~~~~~~~~~~~~~~
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c:752:45: error: ‘VTermColor’ {aka ‘struct <anonymous>’} has no member named ‘rgb’
     snprintf(buffer, 8, "#%02X%02X%02X", color->rgb.red, color->rgb.green,
                                               ^~
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c:752:61: error: ‘VTermColor’ {aka ‘struct <anonymous>’} has no member named ‘rgb’
     snprintf(buffer, 8, "#%02X%02X%02X", color->rgb.red, color->rgb.green,
                                                               ^~
  /home/incal/.emacs.d/elpa/vterm-20201004.2057/vterm-module.c:753:17: error: ‘VTermColor’ {aka ‘struct <anonymous>’} has no member named ‘rgb’
              color->rgb.blue);
                   ^~
  make[2]: *** [CMakeFiles/vterm-module.dir/build.make:63: CMakeFiles/vterm-module.dir/vterm-module.c.o] Error 1
  make[1]: *** [CMakeFiles/Makefile2:73: CMakeFiles/vterm-module.dir/all] Error 2
  make: *** [Makefile:84: all] Error 2
  /home/incal/.emacs.d/elpa/vterm-20201004.2057
  
-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2020-11-01 21:45 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-24  0:26 vterm-module compile error Emanuel Berg via Users list for the GNU Emacs text editor
2020-10-24 12:23 ` Jean Louis
2020-10-24 12:34   ` Tassilo Horn
2020-10-24 13:11     ` Jean Louis
2020-10-27  0:29   ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-10-30  2:52     ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-10-30  5:57       ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-10-30  6:11         ` Jean Louis
2020-10-30  6:30           ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-10-30  9:04             ` Jean Louis
2020-11-01  0:00               ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-11-01  0:07                 ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-11-01  6:21                 ` Jean Louis
2020-11-01 11:34                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-11-01 12:43                     ` Jean Louis
2020-11-01 13:06                       ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-11-01 13:17                         ` Jean Louis
2020-11-01 13:30                           ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-11-01 15:38                             ` Jean Louis
2020-11-01 16:18                               ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-11-01 16:24                                 ` Jean Louis
2020-11-01 18:22                                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-11-01 21:45                                     ` Jean Louis

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.