При запуске инсталлятора программы получаю следующее сообщение в логе.
В интернетах солюшена нет, но есть намек на существование специальной библиотеки совместимости fontconfig:i386 и fontconfig:amd64. Проблема в том что нет версии .deb пакета compat32-libraries-3.2-x86_64 или fontconfig-compat32 или аналогичного им. Ну не озабочено международное debian-сообщество проблемой совместимости при чтении x32 fontconfig конфигов в amd64 среде
В этой связи буду признателен русскому сообществу Ubuntu за помощь.
У меня Ubuntu 22.04 x86_64
Инсталлятор программы старый - года так 2013 для архитектуры i386, но запускается и в x86_64.
При разборе файла /etc/fonts/fonts.conf выдается следующая ошибка в log:
Fontconfig warning: line 5: unknown element "its:rules"
Fontconfig warning: line 6: unknown element "its:translateRule"
Fontconfig warning: line 9: unknown element "description"
Fontconfig warning: line 76: unknown element "selectfont"
Fontconfig warning: line 77: unknown element "rejectfont"
Fontconfig warning: line 78: unknown element "glob"
Fontconfig warning: line 81: unknown element "selectfont"
Fontconfig warning: line 82: unknown element "rejectfont"
Fontconfig warning: line 83: unknown element "glob"
Fontconfig error: "conf.d", line 1: no element found
Fontconfig warning: line 94: unknown element "cachedir"
Fontconfig warning: line 95: unknown element "cachedir"
Fontconfig warning: line 97: unknown element "cachedir"
При этом инсталлятор не падает в кору и корректно отрабатывает нажатие кнопки "Cancel" на диалоговой панели Qt.
Все остальные dialog item на диалоговой панели не работают. При нажатии на них мышкой ничего не происходит.
Пакет xml-core у меня установлен, вроде теги XML парсить должно. А не парсит
Файл /etc/fonts/fonts.conf:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- /etc/fonts/fonts.conf file to configure system font access -->
<fontconfig>
<its:rules xmlns:its="http://www.w3.org/2005/11/its" version="1.0">
<its:translateRule translate="no" selector="/fontconfig/*[not(self::description)]"/>
</its:rules>
<description>Default configuration file</description>
<!--
DO NOT EDIT THIS FILE.
IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED.
LOCAL CHANGES BELONG IN 'local.conf'.
The intent of this standard configuration file is to be adequate for
most environments. If you have a reasonably normal environment and
have found problems with this configuration, they are probably
things that others will also want fixed. Please submit any
problems to the fontconfig bugzilla system located at fontconfig.org
Note that the normal 'make install' procedure for fontconfig is to
replace any existing fonts.conf file with the new version. Place
any local customizations in local.conf which this file references.
Keith Packard
-->
<!-- Font directory list -->
<dir>/usr/share/fonts</dir>
<dir>/usr/local/share/fonts</dir>
<dir prefix="xdg">fonts</dir>
<!-- the following element will be removed in the future -->
<dir>~/.fonts</dir>
<!--
Accept deprecated 'mono' alias, replacing it with 'monospace'
-->
<match target="pattern">
<test qual="any" name="family">
<string>mono</string>
</test>
<edit name="family" mode="assign" binding="same">
<string>monospace</string>
</edit>
</match>
<!--
Accept alternate 'sans serif' spelling, replacing it with 'sans-serif'
-->
<match target="pattern">
<test qual="any" name="family">
<string>sans serif</string>
</test>
<edit name="family" mode="assign" binding="same">
<string>sans-serif</string>
</edit>
</match>
<!--
Accept deprecated 'sans' alias, replacing it with 'sans-serif'
-->
<match target="pattern">
<test qual="any" name="family">
<string>sans</string>
</test>
<edit name="family" mode="assign" binding="same">
<string>sans-serif</string>
</edit>
</match>
<!--
Ignore dpkg temporary files created in fonts directories
-->
<selectfont>
<rejectfont>
<glob>*.dpkg-tmp</glob>
</rejectfont>
</selectfont>
<selectfont>
<rejectfont>
<glob>*.dpkg-new</glob>
</rejectfont>
</selectfont>
<!--
Load local system customization file
-->
<include ignore_missing="yes">conf.d</include>
<!-- Font cache directory list -->
<cachedir>/var/cache/fontconfig</cachedir>
<cachedir prefix="xdg">fontconfig</cachedir>
<!-- the following element will be removed in the future -->
<cachedir>~/.fontconfig</cachedir>
<config>
<!--
Rescan configuration every 30 seconds when FcFontSetList is called
-->
<rescan>
<int>30</int>
</rescan>
</config>
</fontconfig>