dak ブログ

python、rubyなどのプログラミング、MySQL、サーバーの設定などの備忘録。レゴの写真も。

emacs で undefined symbol: wl_proxy_marshal_flags エラー

2023-07-25 11:41:18 | emacs
色々なパッケージをアップデートしていたら、いつのまにか emacs を起動すると、以下のエラーが表示されるようになっていました。
emacs: symbol lookup error: /lib64/libWPEBackend-fdo-1.0.so.1: undefined symbol: wl_proxy_marshal_flags

上記の対策として、libwayland のパッケージをアップデートしました。
$ rpm -qa | grep libway
libwayland-egl-1.19.0-1.el8.x86_64
libwayland-client-1.19.0-1.el8.x86_64
libwayland-server-1.19.0-1.el8.x86_64
libwayland-cursor-1.19.0-1.el8.x86_64

$ sudo yum update libwayland-egl libwayland-client libwayland-server libwayland-cursor

libwayland をアップデートしたことで、emacs のエラーは解消されました。