Hi! Arch Linux now has the updated texlive files (new libsynctex and texlive-bin 2018.47465-2). However, when I try to build qpdfview-bzr from the AUR, I get the following error: ``` g++ -c -pipe -flto -O2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -Wall -W -D_REENTRANT -fPIC -DAPPLICATION_VERSION=\"0.4.17.99\" -DWITH_SVG -DWITH_SQL -DWITH_DBUS -DPLUGIN_INSTALL_PATH=\"/usr/lib/qpdfview\" -DWITH_IMAGE -DIMAGE_PLUGIN_NAME=\"libqpdfview_image.so\" -DWITH_CUPS -DCUPS_VERSION=\"2.2.7\" -DWITH_SYNCTEX -DWITH_SIGNALS -DDATA_INSTALL_PATH=\"/usr/share/qpdfview\" -DQT_NO_DEBUG -DQT_PRINTSUPPORT_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CONCURRENT_LIB -DQT_SQL_LIB -DQT_DBUS_LIB -DQT_CORE_LIB -I. -Iicons -isystem /usr/include/synctex -isystem /usr/include/qt -isystem /usr/include/qt/QtPrintSupport -isystem /usr/include/qt/QtSvg -isystem /usr/include/qt/QtWidgets -isystem /usr/include/qt/QtGui -isystem /usr/include/qt/QtConcurrent -isystem /usr/include/qt/QtSql -isystem /usr/include/qt/QtDBus -isystem /usr/include/qt/QtCore -Imoc -isystem /usr/include/libdrm -I/usr/lib/qt/mkspecs/linux-g++ -o objects/fontsdialog.o sources/fontsdialog.cpp sources/documentview.cpp:61:27: error: conflicting declaration ‘typedef struct synctex_scanner_t synctex_scanner_p’ typedef synctex_scanner_t synctex_scanner_p; ^~~~~~~~~~~~~~~~~ In file included from sources/documentview.cpp:57: /usr/include/synctex/synctex_parser.h:69:33: note: previous declaration as ‘typedef synctex_scanner_s* synctex_scanner_p’ typedef synctex_scanner_s * synctex_scanner_p; ^~~~~~~~~~~~~~~~~ sources/documentview.cpp:62:24: error: conflicting declaration ‘typedef struct synctex_node_t synctex_node_p’ typedef synctex_node_t synctex_node_p; ^~~~~~~~~~~~~~ In file included from sources/documentview.cpp:57: /usr/include/synctex/synctex_parser.h:145:30: note: previous declaration as ‘typedef synctex_node_s* synctex_node_p’ typedef synctex_node_s * synctex_node_p; ^~~~~~~~~~~~~~ sources/documentview.cpp: In function ‘qpdfview::DocumentView::SourceLink {anonymous}::scanForSourceLink(const QString&, int, QPointF)’: sources/documentview.cpp:64:46: error: ‘synctex_next_result’ was not declared in this scope #define synctex_scanner_next_result(scanner) synctex_next_result(scanner) ^~~~~~~~~~~~~~~~~~~ sources/documentview.cpp:261:39: note: in expansion of macro ‘synctex_scanner_next_result’ for(synctex_node_p node = synctex_scanner_next_result(scanner); node != 0; node = synctex_scanner_next_result(scanner)) ^~~~~~~~~~~~~~~~~~~~~~~~~~~ g++ -c -pipe -flto -O2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -Wall -W -D_REENTRANT -fPIC -DAPPLICATION_VERSION=\"0.4.17.99\" -DWITH_SVG -DWITH_SQL -DWITH_DBUS -DPLUGIN_INSTALL_PATH=\"/usr/lib/qpdfview\" -DWITH_IMAGE -DIMAGE_PLUGIN_NAME=\"libqpdfview_image.so\" -DWITH_CUPS -DCUPS_VERSION=\"2.2.7\" -DWITH_SYNCTEX -DWITH_SIGNALS -DDATA_INSTALL_PATH=\"/usr/share/qpdfview\" -DQT_NO_DEBUG -DQT_PRINTSUPPORT_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CONCURRENT_LIB -DQT_SQL_LIB -DQT_DBUS_LIB -DQT_CORE_LIB -I. -Iicons -isystem /usr/include/synctex -isystem /usr/include/qt -isystem /usr/include/qt/QtPrintSupport -isystem /usr/include/qt/QtSvg -isystem /usr/include/qt/QtWidgets -isystem /usr/include/qt/QtGui -isystem /usr/include/qt/QtConcurrent -isystem /usr/include/qt/QtSql -isystem /usr/include/qt/QtDBus -isystem /usr/include/qt/QtCore -Imoc -isystem /usr/include/libdrm -I/usr/lib/qt/mkspecs/linux-g++ -o objects/helpdialog.o sources/helpdialog.cpp sources/documentview.cpp:64:46: note: suggested alternative: ‘synctex_node_height’ #define synctex_scanner_next_result(scanner) synctex_next_result(scanner) ^~~~~~~~~~~~~~~~~~~ sources/documentview.cpp:261:39: note: in expansion of macro ‘synctex_scanner_next_result’ for(synctex_node_p node = synctex_scanner_next_result(scanner); node != 0; node = synctex_scanner_next_result(scanner)) ^~~~~~~~~~~~~~~~~~~~~~~~~~~ make[1]: *** [Makefile.application:935: objects/documentview.o] Error 1 make[1]: *** Waiting for unfinished jobs.... make[1]: Leaving directory '/home/gmend/.cache/pikaur/build/qpdfview-bzr/src/qpdfview' make: *** [Makefile:72: sub-application-pro-make_first-ordered] Error 2 ```