Skip to content
Snippets Groups Projects
Commit 7d9497b6 authored by Thomas Holder's avatar Thomas Holder
Browse files

Fix compiling with -DENABLE_POPPLER=OFF

parent 4321270c
No related branches found
No related tags found
Loading
Pipeline #299528425 canceled
......@@ -21,7 +21,10 @@
#include <gtkmm.h>
#include <libxml2/libxml/xmlversion.h>
#include <libxslt/xsltconfig.h>
#ifdef HAVE_POPPLER
#include <poppler-config.h>
#endif
#include "inkscape-version.h" // Inkscape version
......@@ -91,7 +94,9 @@ std::string debug_info() {
ss << " Cairo version: " << cairo_version_string() << std::endl;
ss << " Pango version: " << pango_version_string() << std::endl;
ss << " HarfBuzz version: " << hb_version_string() << std::endl;
#ifdef HAVE_POPPLER
ss << " Poppler version: " << POPPLER_VERSION << std::endl;
#endif
ss << std::endl;
ss << " OS version: " << os_version();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment