pdf-tools
pdf-tools copied to clipboard
epdfinfo server repeatedly quitting on macos ventura poppler v 23.03.0
Describe the bug Upon installation of the pdf-tools package on my intel macOS ventura, when I try to open a PDF file, the message "epdfinfo server quit, restart it (y/n)?". If I say "yes", I get the same result time and time again.
Steps to Reproduce the behaviour Steps to reproduce the behaviour:
brew install poppler
─➛ brew info poppler 10:54AM 06-04-2023
==> poppler: stable 23.03.0 (bottled), HEAD
- fresh install pdf-tool
- `(pdf-tools-install)`
- start emacs
**What is the expected behaviour?**
epdfinfo should not crash when started
**Desktop**
Please complete the following information:
- OS: [MacOS Ventura]
- Emacs Version: [GNU Emacs 28.2 (build 1, x86_64-apple-darwin18.7.0, NS appkit-1671.60 Version 10.14.6 (Build 18G95)) of 2023-02-23]
- Poppler Version: ╰─➛ brew info poppler 9:08PM 06-04-2023
==> poppler: stable 23.03.0 (bottled), HEAD
**Your pdf-tools install**
Please complete the following information:
- `pdf-tools` Version:
Status: Installed in ‘pdf-tools-20230404.327/’ (unsigned). Delete
Version: 20230404.327
Commit: 7ff6293a25baaae65651b3e1c54b61208279a7ef
Summary: Support library for PDF documents
Requires: emacs-26.3, tablist-1.0, let-alist-1.0.4 Website: https://github.com/vedang/pdf-tools/ Keywords: files multimedia Maintainer: Vedang Manerikar [email protected] Author: Andreas Politz [email protected]
- `pdf-tools` customization / configuration that you use
- If you are reporting a crash, please try and add the Backtrace / Stacktrace of the crash.
- If you are reporting a bug, please try and attach an example PDF file where I can reproduce the bug.
- If you can attach screenshots or recordings, that is a great help
- Please try reproducing the bug yourself on Vanilla Emacs before reporting the problem.
- workaround with poppler 22.09 compile as followed
wget "https://poppler.freedesktop.org/poppler-22.09.0.tar.xz"
tar xvf poppler-22.09.0.tar.xz
cd poppler-22.09.0
mkdir build
cmake .. -DENABLE_UNSTABLE_API_ABI_HEADERS=ON -DENABLE_DCTDECODER=unmaintained
# do below you don't have GNU sed as default edit `CMakeCache.txt` to point to `gsed`
emacs -nw CMakeCache.txt
make && make install
(pdf-tools-install)
I am also experiencing the same issue on poppler 23.04.0 Not sure why epdfinfo server is quitting.
I am extremely busy at work until the end of this month, and won't be able to look into this problem. I would appreciate it immensely if someone else has the time to debug this issue.
Thank you @vxe for providing the workaround steps.
I think we should fix on the version of poppler to reduce this kind of compatibility issue.
I once have the issue that emacs fails to compile the epdfinfo program after upgrading to macos13.
Here's what I did to solve the problem:
- reinstall emacs
xcode-select --install: that is, reinstall the xcode command line tools.- recompile the epdfinfo, and success.
Besides, I am using popper 23.04 from homebrew
I was doing with the recipe of @milanglacier with no success and compilation of poppler22.09 ended with errors:
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.h:58:7: error: redefinition of 'DCTStream'
class DCTStream : public FilterStream
^
/Users/enricopirani/poppler-22.09.0/poppler/Stream.h:1049:7: note: previous definition is here
class DCTStream : public FilterStream
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:66:9: error: use of undeclared identifier 'err'
err.width = (obj.isInt() && obj.getInt() <= JPEG_MAX_DIMENSION) ? obj.getInt() : 0;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:68:9: error: use of undeclared identifier 'err'
err.height = (obj.isInt() && obj.getInt() <= JPEG_MAX_DIMENSION) ? obj.getInt() : 0;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:70:9: error: use of undeclared identifier 'err'
err.height = err.width = 0;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:70:22: error: use of undeclared identifier 'err'
err.height = err.width = 0;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:72:5: error: use of undeclared identifier 'init'
init();
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:77:30: error: use of undeclared identifier 'cinfo'
jpeg_destroy_decompress(&cinfo);
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:93:17: error: out-of-line definition of 'init' does not match any declaration in 'DCTStream'
void DCTStream::init()
^~~~
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:95:21: error: use of undeclared identifier 'err'
jpeg_std_error(&err.pub);
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:96:5: error: use of undeclared identifier 'err'
err.pub.error_exit = &exitErrorHandler;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:97:5: error: use of undeclared identifier 'src'
src.pub.init_source = str_init_source;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:98:5: error: use of undeclared identifier 'src'
src.pub.fill_input_buffer = str_fill_input_buffer;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:99:5: error: use of undeclared identifier 'src'
src.pub.skip_input_data = str_skip_input_data;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:100:5: error: use of undeclared identifier 'src'
src.pub.resync_to_restart = jpeg_resync_to_restart;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:101:5: error: use of undeclared identifier 'src'
src.pub.term_source = str_term_source;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:102:5: error: use of undeclared identifier 'src'
src.pub.bytes_in_buffer = 0;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:103:5: error: use of undeclared identifier 'src'
src.pub.next_input_byte = nullptr;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:104:5: error: use of undeclared identifier 'src'
src.str = str;
^
/Users/enricopirani/poppler-22.09.0/poppler/DCTStream.cc:105:5: error: use of undeclared identifier 'src'
src.index = 0;
^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
make[2]: *** [CMakeFiles/poppler.dir/poppler/DCTStream.cc.o] Error 1
make[1]: *** [CMakeFiles/poppler.dir/all] Error 2
make: *** [all] Error 2
I have the same error
Please upgrade your System + libraries to the versions mentioned in https://github.com/vedang/pdf-tools/issues/269 . After that, please update to the latest version of pdf-tools from Melpa (check a few hours after this comment's timestamp) and try installing again.