From 46ea5d18b3a0cbb3f3a5ed1d1f16b612365be672 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Wed, 1 Feb 2023 12:22:35 +0600 Subject: [PATCH 01/31] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=B7=D0=B0=D0=BF=D0=BE=D0=BB=D0=BD=D0=B8=D1=82=D0=B5?= =?UTF-8?q?=D0=BB=D1=8C=20=D0=B8=D0=BA=D0=BE=D0=BD=D0=BE=D0=BA=20=D0=B4?= =?UTF-8?q?=D0=BB=D1=8F=20=D0=BC=D0=B5=D0=BD=D1=8E=20=D0=B2=D1=8B=D0=B1?= =?UTF-8?q?=D0=BE=D1=80=D0=B0=20=D0=BF=D1=80=D0=B8=D0=BB=D0=BE=D0=B6=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 111 ++++-- source/ublexec.h | 26 +- ublexec.glade | 861 +++++++++++++++++++++------------------------- 3 files changed, 486 insertions(+), 512 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 4bc505a..3e6b702 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -50,12 +50,16 @@ CmdArgParser::CmdArgParser(const std::string& p_name, const std::string& p_descr } MainWindow::MainWindow(BaseObjectType* obj, Glib::RefPtr const& builder) : Gtk::ApplicationWindow(obj), builder{builder} { + this->builder = builder; this->settings(); } MainWindow::MainWindow(Glib::RefPtr const& builder) { this->builder = builder; this->settings(); } + + + void MainWindow::get_builder(){ builder->get_widget("btnFilemaneg", btnFilemaneg); builder->get_widget("btnListApp", btnListApp); @@ -107,22 +111,47 @@ void MainWindow::get_builder(){ builder->get_widget("lblOther", lblOther); builder->get_widget("lblDevelopment", lblDevelopment); builder->get_widget("iconGraphics", iconGraphics); - + builder->get_widget("iconTools", iconTools); + builder->get_widget("iconInternet", iconInternet); + builder->get_widget("iconMultimedia", iconMultimedia); + builder->get_widget("iconSettings", iconSettings); + builder->get_widget("iconEducation", iconEducation); + builder->get_widget("iconOffice", iconOffice); + builder->get_widget("iconOther", iconOther); + builder->get_widget("iconDevelopment", iconDevelopment); + builder->get_widget("iconSystem", iconSystem); builder->get_widget("lblSystem", lblSystem); - - + this->template_apps_obj(iconGraphics, list_Graphics); + this->template_apps_obj(iconTools, list_Tools); + this->template_apps_obj(iconInternet, list_Internet); + this->template_apps_obj(iconMultimedia, list_Multimedia); + this->template_apps_obj(iconSettings, list_Settings); + this->template_apps_obj(iconEducation, list_Education); + this->template_apps_obj(iconOffice, list_Office); + this->template_apps_obj(iconOther, list_Other); + this->template_apps_obj(iconDevelopment, list_Development); + this->template_apps_obj(iconSystem, list_System); + + /* list_Graphics = Gtk::ListStore::create( m_Columns ); list_Graphics->set_sort_column( m_Columns.m_col_description, Gtk::SORT_ASCENDING ); - iconGraphics->set_model(list_Graphics); iconGraphics->set_markup_column(m_Columns.m_col_description); iconGraphics->set_pixbuf_column(m_Columns.m_col_pixbuf); - + */ +} +void MainWindow::template_apps_obj(Gtk::IconView *icon, Glib::RefPtr >k_list_app){ + gtk_list_app = Gtk::ListStore::create(m_Columns); + gtk_list_app->set_sort_column(m_Columns.m_col_description, Gtk::SORT_ASCENDING); + icon->set_model(gtk_list_app); + icon->set_markup_column(m_Columns.m_col_description); + icon->set_pixbuf_column(m_Columns.m_col_pixbuf); } + void MainWindow::add_CSS(){ Glib::RefPtr cssProvider = Gtk::CssProvider::create(); cssProvider->load_from_path(path_css); @@ -179,10 +208,17 @@ void MainWindow::event(){ btnMessageErrorOk->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::message_gui_close)); btnStartMenuOK->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::start_menu_entry_app)); btnStartMenuExit->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::close_start_menu)); + iconGraphics->signal_item_activated().connect(sigc::mem_fun(*this,&MainWindow::on_item_activated) ); + +} + +void MainWindow::on_item_activated(const Gtk::TreeModel::Path& path){ + } + void MainWindow::settings(){ this->pars_apps(); - this->builder = builder; + this->get_builder(); this->event(); this->localization(); @@ -238,6 +274,23 @@ void MainWindow::get_path_filemaneg(){ this->close_filemaneg(); } } + +void MainWindow::tempalte_row(string name, string path, Glib::RefPtr &dtk_list){ + Gtk::TreeModel::Row row = *(dtk_list->append()); + row[m_Columns.m_col_filename] = path; + row[m_Columns.m_col_description] = name; + if (std::ifstream(path)){ + row[m_Columns.m_col_pixbuf] = Gdk::Pixbuf::create_from_file(path); + } + else{ + path = "/usr/share/icons/Faenza/emblems/32/emblem-danger.png"; + row[m_Columns.m_col_pixbuf] = Gdk::Pixbuf::create_from_file(path); + } + + + +} + void MainWindow::open_list_app(){ @@ -245,38 +298,37 @@ void MainWindow::open_list_app(){ string path = ""; for ( const auto &str_app : list_app){ for ( const auto &str_categor : str_app.Categories){ - path = "/usr/share/applications/" + str_app.Icon + ".svg"; + path = "/usr/share/icons/hicolor/32x32/apps/" + str_app.Icon + ".png"; + cout << str_categor << endl; if (str_categor=="Graphics"){ - Gtk::TreeModel::Row row = *(list_Graphics->append()); - row[m_Columns.m_col_filename] = path; - row[m_Columns.m_col_description] = str_app.Name; + this->tempalte_row(str_app.Name, path, list_Graphics); } - else if (str_categor=="Tools"){ - + else if (str_categor=="Utility"){ + this->tempalte_row(str_app.Name, path, list_Tools); } - else if (str_categor=="Internet"){ - + else if (str_categor=="Network"){ + this->tempalte_row(str_app.Name, path, list_Internet); } - else if (str_categor=="Multimedia"){ - + else if (str_categor=="Multimedia" || str_categor== "Video" || str_categor== "Player" || str_categor== "AudioVideo"){ + this->tempalte_row(str_app.Name, path, list_Multimedia); } else if (str_categor=="Settings"){ - + this->tempalte_row(str_app.Name, path, list_Settings); } else if (str_categor=="Education"){ - + this->tempalte_row(str_app.Name, path, list_Education); } else if (str_categor=="Office"){ - + this->tempalte_row(str_app.Name, path, list_Office); } else if (str_categor=="Other"){ - + this->tempalte_row(str_app.Name, path, list_Other); } else if (str_categor=="Development"){ - cout << str_categor << endl; + this->tempalte_row(str_app.Name, path, list_Development); } else if (str_categor=="System"){ - + this->tempalte_row(str_app.Name, path, list_System); } } @@ -284,17 +336,7 @@ void MainWindow::open_list_app(){ dialogStartMenu->show_all(); } -/* -void MainWindow::tmp_desktop(string cmd_name){ - string desktop = ""; - desktop = "[Desktop Entry]\nEncoding=UTF-8\nName=test\nName[ru]=тест\nGenericName=test\nGenericName[ru]=тест\nComment=test\nComment[ru]=test\nType=Application\nExec=pkexec "+cmd_name + - "\nIcon=ublexec\nTerminal=false\nCategories=XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-SystemSettings;"; - string cmd = ""; - cmd = "touch /tmp/" + cmd_name + ".desktop; echo \"" + desktop + "\" > /tmp/"+cmd_name+".desktop; chmod +x /tmp/"+cmd_name+".desktop"; - cout << cmd << endl; - system(cmd.c_str()); -} -*/ + void MainWindow::start_cmd(){ //txtCmd->set_text(""); @@ -503,10 +545,9 @@ void MainWindow::pars_apps(){ App.Name = Name; App.Type = Type; App.Exec = Exec; - App.Icon = Name; + App.Icon = Icon; if (Mime!=NULL){ App.MimeType = Mime; - cout << App.MimeType << endl; } else{ App.MimeType = ""; diff --git a/source/ublexec.h b/source/ublexec.h index f631439..399867d 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -62,6 +62,7 @@ class MainWindow : public Gtk::ApplicationWindow { public: MainWindow(BaseObjectType* obj, Glib::RefPtr const& builder); MainWindow(Glib::RefPtr const& builder); + void template_apps_obj(Gtk::IconView *icon, Glib::RefPtr >k_list_app); void get_builder(); void add_CSS(); void localization(); @@ -86,6 +87,9 @@ public: void pars_users(); void pars_apps(); void tmp_desktop(string cmd_name); + void on_item_activated(const Gtk::TreeModel::Path& path); + void tempalte_row(string name, string path, Glib::RefPtr &dtk_list); + vector split(const std::string &s, char delim); public: @@ -134,7 +138,7 @@ public: Gtk::Button *btnStartMenuOK; Gtk::Button *btnStartMenuExit; Gtk::Box *boxlistProgramm; - Gtk::Dialog *dialogStartMenu; + Gtk::Window *dialogStartMenu; Gtk::Box *boxColor; Gtk::Label *lblInfoHead; Gtk::Label *lblinfoCmd; @@ -158,10 +162,28 @@ public: Gtk::Label *lblOther; Gtk::Label *lblDevelopment; Gtk::Label *lblSystem; - Gtk::IconView *iconGraphics; + Gtk::IconView *iconGraphics; + Gtk::IconView *iconTools; + Gtk::IconView *iconInternet; + Gtk::IconView *iconMultimedia; + Gtk::IconView *iconSettings; + Gtk::IconView *iconEducation; + Gtk::IconView *iconOffice; + Gtk::IconView *iconOther; + Gtk::IconView *iconDevelopment; + Gtk::IconView *iconSystem; Glib::RefPtr list_Graphics; + Glib::RefPtr list_Tools; + Glib::RefPtr list_Internet; + Glib::RefPtr list_Multimedia; + Glib::RefPtr list_Settings; + Glib::RefPtr list_Education; + Glib::RefPtr list_Office; + Glib::RefPtr list_Other; + Glib::RefPtr list_Development; + Glib::RefPtr list_System; diff --git a/ublexec.glade b/ublexec.glade index 5da0d4d..6cdc251 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -8,426 +8,417 @@ 1 10 - - 250 - 250 + False - dialog - + + True False vertical - 2 - - + + + True False - end - - - ОК - True - True - True - - - True - True - 0 - - + Выбор программ + + + False + True + 0 + + + + + True + True + in - - Выход + True - True - True + False + + + True + False + vertical + + + True + False + start + center + 5 + 5 + 5 + 5 + 6 + 6 + Графика + + + False + True + 0 + + + + + True + True + 6 + 75 + 1 + 1 + True + + + False + True + 1 + + + + + True + False + start + center + 5 + 5 + 5 + 5 + 6 + 6 + Инструменты + + + False + True + 2 + + + + + True + True + 1 + 1 + 1 + + + False + True + 3 + + + + + True + False + start + center + 5 + 5 + 5 + 5 + 6 + 6 + Интернет + + + False + True + 4 + + + + + True + True + 1 + 1 + 1 + + + False + True + 5 + + + + + True + False + start + center + 5 + 5 + 5 + 5 + 6 + 6 + Мультимедиа + + + False + True + 6 + + + + + True + True + 1 + 1 + 1 + + + False + True + 7 + + + + + True + False + start + center + 5 + 5 + 5 + 5 + 6 + 6 + Настройки + + + False + True + 8 + + + + + True + True + 1 + 1 + 1 + + + False + True + 9 + + + + + True + False + start + center + 5 + 5 + 5 + 5 + 6 + 6 + Образование + + + False + True + 10 + + + + + True + True + 1 + 1 + 1 + + + False + True + 11 + + + + + True + False + start + center + 5 + 5 + 5 + 5 + 6 + 6 + Офис + + + False + True + 12 + + + + + True + True + 1 + 1 + 1 + + + False + True + 13 + + + + + True + False + start + center + 5 + 5 + 5 + 5 + 6 + 6 + Прочие + + + False + True + 14 + + + + + True + True + 1 + 1 + 1 + + + False + True + 15 + + + + + True + False + start + center + 5 + 5 + 5 + 5 + 6 + 6 + Разработка + + + False + True + 16 + + + + + True + True + 1 + 1 + 1 + + + False + True + 17 + + + + + True + False + start + center + 5 + 5 + 5 + 5 + 6 + 6 + Система + + + False + True + 18 + + + + + True + True + 1 + 1 + 1 + + + False + True + 19 + + + + - - True - True - 1 - - False - False - 0 + True + True + 1 - + True False - vertical + end + start - + + ОК True - False - Выбор программ + True + True - False + True True 0 - + + Выход True True - in - - - True - False - - - True - False - vertical - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Графика - - - False - True - 0 - - - - - True - True - 6 - - - False - True - 1 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Инструменты - - - False - True - 2 - - - - - True - True - - - - - - False - True - 3 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Интернет - - - False - True - 4 - - - - - True - True - - - - - - False - True - 5 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Мультимедиа - - - False - True - 6 - - - - - True - True - - - - - - False - True - 7 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Настройки - - - False - True - 8 - - - - - True - True - - - - - - False - True - 9 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Образование - - - False - True - 10 - - - - - True - True - - - - - - False - True - 11 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Офис - - - False - True - 12 - - - - - True - True - - - - - - False - True - 13 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Прочие - - - False - True - 14 - - - - - True - True - - - - - - False - True - 15 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Разработка - - - False - True - 16 - - - - - True - True - - - - - - False - True - 17 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Система - - - False - True - 18 - - - - - True - True - - - - - - False - True - 19 - - - - - - + True True @@ -437,9 +428,9 @@ - True + False True - 1 + 2 @@ -1218,86 +1209,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - False Внимание! From 1e066c8da495279317abde15fd26b56f028cd137 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Wed, 1 Feb 2023 14:54:53 +0600 Subject: [PATCH 02/31] =?UTF-8?q?=D0=A8=D0=B0=D0=B1=D0=BB=D0=BE=D0=BD=20?= =?UTF-8?q?=D0=B2=D1=8B=D0=B1=D0=BE=D1=80=D0=B0=20=D0=B8=D0=BA=D0=BE=D0=BD?= =?UTF-8?q?=D0=BE=D0=BA=20=D0=BD=D0=B5=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=D0=B5=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- compile/CMakeCache.txt | 526 ++ .../CMakeFiles/3.23.0/CMakeCCompiler.cmake | 72 + .../CMakeFiles/3.23.0/CMakeCXXCompiler.cmake | 83 + .../3.23.0/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 15936 bytes .../3.23.0/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 15960 bytes compile/CMakeFiles/3.23.0/CMakeSystem.cmake | 15 + .../3.23.0/CompilerIdC/CMakeCCompilerId.c | 828 +++ compile/CMakeFiles/3.23.0/CompilerIdC/a.out | Bin 0 -> 16056 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 816 ++ compile/CMakeFiles/3.23.0/CompilerIdCXX/a.out | Bin 0 -> 16064 bytes .../CMakeDirectoryInformation.cmake | 16 + compile/CMakeFiles/CMakeOutput.log | 411 + compile/CMakeFiles/Makefile.cmake | 129 + compile/CMakeFiles/Makefile2 | 112 + compile/CMakeFiles/Progress/2 | 1 + compile/CMakeFiles/Progress/count.txt | 1 + compile/CMakeFiles/TargetDirectories.txt | 7 + compile/CMakeFiles/cmake.check_cache | 1 + compile/CMakeFiles/progress.marks | 1 + .../CMakeFiles/ublexec.dir/DependInfo.cmake | 20 + compile/CMakeFiles/ublexec.dir/build.make | 126 + .../CMakeFiles/ublexec.dir/cmake_clean.cmake | 13 + .../ublexec.dir/compiler_depend.internal | 3323 +++++++++ .../ublexec.dir/compiler_depend.make | 6619 +++++++++++++++++ .../CMakeFiles/ublexec.dir/compiler_depend.ts | 2 + compile/CMakeFiles/ublexec.dir/depend.make | 2 + compile/CMakeFiles/ublexec.dir/flags.make | 10 + compile/CMakeFiles/ublexec.dir/link.txt | 1 + compile/CMakeFiles/ublexec.dir/main.cc.o | Bin 0 -> 51232 bytes compile/CMakeFiles/ublexec.dir/main.cc.o.d | 1489 ++++ compile/CMakeFiles/ublexec.dir/progress.make | 4 + compile/CMakeFiles/ublexec.dir/ublexec.cc.o.d | 1490 ++++ compile/Makefile | 257 + compile/cmake_install.cmake | 70 + source/ublexec.cc | 31 +- source/ublexec.h | 4 +- 36 files changed, 16469 insertions(+), 11 deletions(-) create mode 100644 compile/CMakeCache.txt create mode 100644 compile/CMakeFiles/3.23.0/CMakeCCompiler.cmake create mode 100644 compile/CMakeFiles/3.23.0/CMakeCXXCompiler.cmake create mode 100755 compile/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_C.bin create mode 100755 compile/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_CXX.bin create mode 100644 compile/CMakeFiles/3.23.0/CMakeSystem.cmake create mode 100644 compile/CMakeFiles/3.23.0/CompilerIdC/CMakeCCompilerId.c create mode 100755 compile/CMakeFiles/3.23.0/CompilerIdC/a.out create mode 100644 compile/CMakeFiles/3.23.0/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 compile/CMakeFiles/3.23.0/CompilerIdCXX/a.out create mode 100644 compile/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 compile/CMakeFiles/CMakeOutput.log create mode 100644 compile/CMakeFiles/Makefile.cmake create mode 100644 compile/CMakeFiles/Makefile2 create mode 100644 compile/CMakeFiles/Progress/2 create mode 100644 compile/CMakeFiles/Progress/count.txt create mode 100644 compile/CMakeFiles/TargetDirectories.txt create mode 100644 compile/CMakeFiles/cmake.check_cache create mode 100644 compile/CMakeFiles/progress.marks create mode 100644 compile/CMakeFiles/ublexec.dir/DependInfo.cmake create mode 100644 compile/CMakeFiles/ublexec.dir/build.make create mode 100644 compile/CMakeFiles/ublexec.dir/cmake_clean.cmake create mode 100644 compile/CMakeFiles/ublexec.dir/compiler_depend.internal create mode 100644 compile/CMakeFiles/ublexec.dir/compiler_depend.make create mode 100644 compile/CMakeFiles/ublexec.dir/compiler_depend.ts create mode 100644 compile/CMakeFiles/ublexec.dir/depend.make create mode 100644 compile/CMakeFiles/ublexec.dir/flags.make create mode 100644 compile/CMakeFiles/ublexec.dir/link.txt create mode 100644 compile/CMakeFiles/ublexec.dir/main.cc.o create mode 100644 compile/CMakeFiles/ublexec.dir/main.cc.o.d create mode 100644 compile/CMakeFiles/ublexec.dir/progress.make create mode 100644 compile/CMakeFiles/ublexec.dir/ublexec.cc.o.d create mode 100644 compile/Makefile create mode 100644 compile/cmake_install.cmake diff --git a/compile/CMakeCache.txt b/compile/CMakeCache.txt new file mode 100644 index 0000000..256e72d --- /dev/null +++ b/compile/CMakeCache.txt @@ -0,0 +1,526 @@ +# This is the CMakeCache file. +# For build in directory: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Release + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=ublexec + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Arguments to supply to pkg-config +PKG_CONFIG_ARGN:STRING= + +//pkg-config executable +PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config + +//Path to a library. +pkgcfg_lib_GTK_atk-1.0:FILEPATH=/usr/lib/libatk-1.0.so + +//Path to a library. +pkgcfg_lib_GTK_atkmm-1.6:FILEPATH=/usr/lib/libatkmm-1.6.so + +//Path to a library. +pkgcfg_lib_GTK_cairo:FILEPATH=/usr/lib/libcairo.so + +//Path to a library. +pkgcfg_lib_GTK_cairo-gobject:FILEPATH=/usr/lib/libcairo-gobject.so + +//Path to a library. +pkgcfg_lib_GTK_cairomm-1.0:FILEPATH=/usr/lib/libcairomm-1.0.so + +//Path to a library. +pkgcfg_lib_GTK_gdk-3:FILEPATH=/usr/lib/libgdk-3.so + +//Path to a library. +pkgcfg_lib_GTK_gdk_pixbuf-2.0:FILEPATH=/usr/lib/libgdk_pixbuf-2.0.so + +//Path to a library. +pkgcfg_lib_GTK_gdkmm-3.0:FILEPATH=/usr/lib/libgdkmm-3.0.so + +//Path to a library. +pkgcfg_lib_GTK_gio-2.0:FILEPATH=/usr/lib/libgio-2.0.so + +//Path to a library. +pkgcfg_lib_GTK_giomm-2.4:FILEPATH=/usr/lib/libgiomm-2.4.so + +//Path to a library. +pkgcfg_lib_GTK_glib-2.0:FILEPATH=/usr/lib/libglib-2.0.so + +//Path to a library. +pkgcfg_lib_GTK_glibmm-2.4:FILEPATH=/usr/lib/libglibmm-2.4.so + +//Path to a library. +pkgcfg_lib_GTK_gobject-2.0:FILEPATH=/usr/lib/libgobject-2.0.so + +//Path to a library. +pkgcfg_lib_GTK_gtk-3:FILEPATH=/usr/lib/libgtk-3.so + +//Path to a library. +pkgcfg_lib_GTK_gtkmm-3.0:FILEPATH=/usr/lib/libgtkmm-3.0.so + +//Path to a library. +pkgcfg_lib_GTK_harfbuzz:FILEPATH=/usr/lib/libharfbuzz.so + +//Path to a library. +pkgcfg_lib_GTK_pango-1.0:FILEPATH=/usr/lib/libpango-1.0.so + +//Path to a library. +pkgcfg_lib_GTK_pangocairo-1.0:FILEPATH=/usr/lib/libpangocairo-1.0.so + +//Path to a library. +pkgcfg_lib_GTK_pangomm-1.4:FILEPATH=/usr/lib/libpangomm-1.4.so + +//Path to a library. +pkgcfg_lib_GTK_sigc-2.0:FILEPATH=/usr/lib/libsigc-2.0.so + +//Path to a library. +pkgcfg_lib_GTK_z:FILEPATH=/usr/lib/libz.so + +//Value Computed by CMake +ublexec_BINARY_DIR:STATIC=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile + +//Value Computed by CMake +ublexec_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +ublexec_SOURCE_DIR:STATIC=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=23 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding PkgConfig +FIND_PACKAGE_MESSAGE_DETAILS_PkgConfig:INTERNAL=[/usr/bin/pkg-config][v1.8.0()] +GTK_CFLAGS:INTERNAL=-I/usr/include/gtkmm-3.0;-I/usr/lib/gtkmm-3.0/include;-I/usr/include/giomm-2.4;-I/usr/lib/giomm-2.4/include;-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/include;-I/usr/include/sysprof-4;-I/usr/include/libmount;-I/usr/include/blkid;-I/usr/include/glibmm-2.4;-I/usr/lib/glibmm-2.4/include;-I/usr/include/sigc++-2.0;-I/usr/lib/sigc++-2.0/include;-I/usr/include/gtk-3.0;-I/usr/include/pango-1.0;-I/usr/include/harfbuzz;-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/fribidi;-I/usr/include/cairo;-I/usr/include/lzo;-I/usr/include/pixman-1;-I/usr/include/gdk-pixbuf-2.0;-I/usr/include/gio-unix-2.0;-I/usr/include/cloudproviders;-I/usr/include/atk-1.0;-I/usr/include/at-spi2-atk/2.0;-I/usr/include/dbus-1.0;-I/usr/lib/dbus-1.0/include;-I/usr/include/at-spi-2.0;-I/usr/include/cairomm-1.0;-I/usr/lib/cairomm-1.0/include;-I/usr/include/pangomm-1.4;-I/usr/lib/pangomm-1.4/include;-I/usr/include/atkmm-1.6;-I/usr/lib/atkmm-1.6/include;-I/usr/include/gtk-3.0/unix-print;-I/usr/include/gdkmm-3.0;-I/usr/lib/gdkmm-3.0/include;-pthread +GTK_CFLAGS_I:INTERNAL= +GTK_CFLAGS_OTHER:INTERNAL=-pthread +GTK_FOUND:INTERNAL=1 +GTK_INCLUDEDIR:INTERNAL=/usr/include +GTK_INCLUDE_DIRS:INTERNAL=/usr/include/gtkmm-3.0;/usr/lib/gtkmm-3.0/include;/usr/include/giomm-2.4;/usr/lib/giomm-2.4/include;/usr/include/glib-2.0;/usr/lib/glib-2.0/include;/usr/include/sysprof-4;/usr/include/libmount;/usr/include/blkid;/usr/include/glibmm-2.4;/usr/lib/glibmm-2.4/include;/usr/include/sigc++-2.0;/usr/lib/sigc++-2.0/include;/usr/include/gtk-3.0;/usr/include/pango-1.0;/usr/include/harfbuzz;/usr/include/freetype2;/usr/include/libpng16;/usr/include/fribidi;/usr/include/cairo;/usr/include/lzo;/usr/include/pixman-1;/usr/include/gdk-pixbuf-2.0;/usr/include/gio-unix-2.0;/usr/include/cloudproviders;/usr/include/atk-1.0;/usr/include/at-spi2-atk/2.0;/usr/include/dbus-1.0;/usr/lib/dbus-1.0/include;/usr/include/at-spi-2.0;/usr/include/cairomm-1.0;/usr/lib/cairomm-1.0/include;/usr/include/pangomm-1.4;/usr/lib/pangomm-1.4/include;/usr/include/atkmm-1.6;/usr/lib/atkmm-1.6/include;/usr/include/gtk-3.0/unix-print;/usr/include/gdkmm-3.0;/usr/lib/gdkmm-3.0/include +GTK_LDFLAGS:INTERNAL=-L/usr/lib;-lgtkmm-3.0;-latkmm-1.6;-lgdkmm-3.0;-lgiomm-2.4;-lgtk-3;-lgdk-3;-lz;-latk-1.0;-lcairo-gobject;-lgio-2.0;-lpangomm-1.4;-lglibmm-2.4;-lcairomm-1.0;-lsigc-2.0;-lpangocairo-1.0;-lpango-1.0;-lharfbuzz;-lcairo;-lgdk_pixbuf-2.0;-lgobject-2.0;-lglib-2.0 +GTK_LDFLAGS_OTHER:INTERNAL= +GTK_LIBDIR:INTERNAL=/usr/lib +GTK_LIBRARIES:INTERNAL=gtkmm-3.0;atkmm-1.6;gdkmm-3.0;giomm-2.4;gtk-3;gdk-3;z;atk-1.0;cairo-gobject;gio-2.0;pangomm-1.4;glibmm-2.4;cairomm-1.0;sigc-2.0;pangocairo-1.0;pango-1.0;harfbuzz;cairo;gdk_pixbuf-2.0;gobject-2.0;glib-2.0 +GTK_LIBRARY_DIRS:INTERNAL=/usr/lib +GTK_LIBS:INTERNAL= +GTK_LIBS_L:INTERNAL= +GTK_LIBS_OTHER:INTERNAL= +GTK_LIBS_PATHS:INTERNAL= +GTK_MODULE_NAME:INTERNAL=gtkmm-3.0 +GTK_PREFIX:INTERNAL=/usr +GTK_STATIC_CFLAGS:INTERNAL=-I/usr/include/gtkmm-3.0;-I/usr/lib/gtkmm-3.0/include;-I/usr/include/giomm-2.4;-I/usr/lib/giomm-2.4/include;-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/include;-I/usr/include/sysprof-4;-I/usr/include/libmount;-I/usr/include/blkid;-I/usr/include/glibmm-2.4;-I/usr/lib/glibmm-2.4/include;-I/usr/include/sigc++-2.0;-I/usr/lib/sigc++-2.0/include;-I/usr/include/gtk-3.0;-I/usr/include/pango-1.0;-I/usr/include/harfbuzz;-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/fribidi;-I/usr/include/cairo;-I/usr/include/lzo;-I/usr/include/pixman-1;-I/usr/include/gdk-pixbuf-2.0;-I/usr/include/gio-unix-2.0;-I/usr/include/cloudproviders;-I/usr/include/atk-1.0;-I/usr/include/at-spi2-atk/2.0;-I/usr/include/dbus-1.0;-I/usr/lib/dbus-1.0/include;-I/usr/include/at-spi-2.0;-I/usr/include/cairomm-1.0;-I/usr/lib/cairomm-1.0/include;-I/usr/include/pangomm-1.4;-I/usr/lib/pangomm-1.4/include;-I/usr/include/atkmm-1.6;-I/usr/lib/atkmm-1.6/include;-I/usr/include/gtk-3.0/unix-print;-I/usr/include/gdkmm-3.0;-I/usr/lib/gdkmm-3.0/include;-pthread +GTK_STATIC_CFLAGS_I:INTERNAL= +GTK_STATIC_CFLAGS_OTHER:INTERNAL=-pthread +GTK_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/gtkmm-3.0;/usr/lib/gtkmm-3.0/include;/usr/include/giomm-2.4;/usr/lib/giomm-2.4/include;/usr/include/glib-2.0;/usr/lib/glib-2.0/include;/usr/include/sysprof-4;/usr/include/libmount;/usr/include/blkid;/usr/include/glibmm-2.4;/usr/lib/glibmm-2.4/include;/usr/include/sigc++-2.0;/usr/lib/sigc++-2.0/include;/usr/include/gtk-3.0;/usr/include/pango-1.0;/usr/include/harfbuzz;/usr/include/freetype2;/usr/include/libpng16;/usr/include/fribidi;/usr/include/cairo;/usr/include/lzo;/usr/include/pixman-1;/usr/include/gdk-pixbuf-2.0;/usr/include/gio-unix-2.0;/usr/include/cloudproviders;/usr/include/atk-1.0;/usr/include/at-spi2-atk/2.0;/usr/include/dbus-1.0;/usr/lib/dbus-1.0/include;/usr/include/at-spi-2.0;/usr/include/cairomm-1.0;/usr/lib/cairomm-1.0/include;/usr/include/pangomm-1.4;/usr/lib/pangomm-1.4/include;/usr/include/atkmm-1.6;/usr/lib/atkmm-1.6/include;/usr/include/gtk-3.0/unix-print;/usr/include/gdkmm-3.0;/usr/lib/gdkmm-3.0/include +GTK_STATIC_LDFLAGS:INTERNAL=-L/usr/lib;-lgtkmm-3.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lglibmm-2.4;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lz;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangocairo-1.0;-lm;-lpango-1.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-lm;-L/usr/lib;-lm;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lepoxy;-ldl;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-latk-1.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lgdk_pixbuf-2.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lsystemd;-ldbus-1;-lsystemd;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-L/usr/lib;-lffi;-ldl;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lpangoft2-1.0;-lm;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lcairomm-1.0;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangomm-1.4;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangocairo-1.0;-lm;-lpango-1.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-lpangoft2-1.0;-lm;-L/usr/lib;-lm;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-latkmm-1.6;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lz;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangocairo-1.0;-lm;-lpango-1.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-lm;-L/usr/lib;-lm;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lepoxy;-ldl;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-latk-1.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lgdk_pixbuf-2.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lsystemd;-ldbus-1;-lsystemd;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-L/usr/lib;-lffi;-ldl;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lpangoft2-1.0;-lm;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-latk-1.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lgdk_pixbuf-2.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lgdkmm-3.0;-lgiomm-2.4;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lglibmm-2.4;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lgtk-3;-lgdk-3;-lz;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangocairo-1.0;-lm;-lpango-1.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-lm;-L/usr/lib;-lm;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXrandr;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXcursor;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXcomposite;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXdamage;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXinerama;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lepoxy;-ldl;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lcloudproviders;-latk-1.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lgdk_pixbuf-2.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-latk-bridge-2.0;-L/usr/lib;-lsystemd;-latspi;-ldbus-1;-lsystemd;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXtst;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXi;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXfixes;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-latk-1.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-Wl,--export-dynamic;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-lxkbcommon;-lwayland-cursor;-L/usr/lib;-lm;-pthread;-L/usr/lib;-lffi;-lwayland-egl;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-lepoxy;-ldl;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lGL;-lEGL;-lpangoft2-1.0;-lm;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lcairomm-1.0;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangomm-1.4;-lglibmm-2.4;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lcairomm-1.0;-lsigc-2.0;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangocairo-1.0;-lm;-lpango-1.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-lpangoft2-1.0;-lm;-L/usr/lib;-lpango-1.0;-lm;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXext;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-lxcb-render;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lxcb-shm;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lpixman-1;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-lthai;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXft;-L/usr/lib;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXdmcp;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lharfbuzz-gobject;-lharfbuzz;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lgdk_pixbuf-2.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lpng16;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-ltiff;-lzstd;-llzma;-ljbig;-ljpeg;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-lmount;-L/usr/lib;-lblkid;-lsysprof-capture-4;-pthread +GTK_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-Wl,--export-dynamic;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread +GTK_STATIC_LIBDIR:INTERNAL= +GTK_STATIC_LIBRARIES:INTERNAL=gtkmm-3.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;glibmm-2.4;m;pcre;ffi;z;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangocairo-1.0;m;pango-1.0;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;freetype;bz2;z;m;m;brotlicommon;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;m;bz2;z;png16;m;m;z;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fontconfig;freetype;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;wayland-client;m;ffi;m;ffi;m;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;X11;pthread;xcb;Xau;pthread;xcb;Xau;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;epoxy;dl;pthread;xcb;Xau;atk-1.0;m;pcre;gobject-2.0;m;pcre;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;png16;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;gdk_pixbuf-2.0;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;glib-2.0;m;pcre;z;blkid;m;pcre;gobject-2.0;m;pcre;ffi;systemd;dbus-1;systemd;glib-2.0;m;pcre;m;pcre;ffi;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gmodule-2.0;glib-2.0;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;wayland-client;m;ffi;m;ffi;m;ffi;dl;pthread;xcb;Xau;pangoft2-1.0;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;bz2;z;m;m;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;cairomm-1.0;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangomm-1.4;m;pcre;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangocairo-1.0;m;pango-1.0;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangoft2-1.0;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;freetype;bz2;z;m;m;brotlicommon;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;m;freetype;bz2;z;png16;m;m;z;brotlicommon;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;atkmm-1.6;m;pcre;ffi;m;pcre;gobject-2.0;m;pcre;ffi;z;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangocairo-1.0;m;pango-1.0;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;freetype;bz2;z;m;m;brotlicommon;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;m;bz2;z;png16;m;m;z;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fontconfig;freetype;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;wayland-client;m;ffi;m;ffi;m;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;X11;pthread;xcb;Xau;pthread;xcb;Xau;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;epoxy;dl;pthread;xcb;Xau;atk-1.0;m;pcre;gobject-2.0;m;pcre;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;png16;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;gdk_pixbuf-2.0;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;glib-2.0;m;pcre;z;blkid;m;pcre;gobject-2.0;m;pcre;ffi;systemd;dbus-1;systemd;glib-2.0;m;pcre;m;pcre;ffi;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gmodule-2.0;glib-2.0;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;wayland-client;m;ffi;m;ffi;m;ffi;dl;pthread;xcb;Xau;pangoft2-1.0;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;bz2;z;m;m;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;blkid;atk-1.0;m;pcre;gobject-2.0;m;pcre;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;png16;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;gdk_pixbuf-2.0;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;gdkmm-3.0;giomm-2.4;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;glibmm-2.4;m;pcre;ffi;gtk-3;gdk-3;z;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangocairo-1.0;m;pango-1.0;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;freetype;bz2;z;m;m;brotlicommon;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;m;bz2;z;png16;m;m;z;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fontconfig;freetype;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xrandr;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xcursor;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xcomposite;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xdamage;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xinerama;X11;pthread;xcb;Xau;pthread;xcb;Xau;wayland-client;m;ffi;m;ffi;m;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;X11;pthread;xcb;Xau;pthread;xcb;Xau;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;epoxy;dl;pthread;xcb;Xau;cloudproviders;atk-1.0;m;pcre;gobject-2.0;m;pcre;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;png16;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;gdk_pixbuf-2.0;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;glib-2.0;m;pcre;z;blkid;m;pcre;gobject-2.0;m;pcre;ffi;atk-bridge-2.0;systemd;atspi;dbus-1;systemd;glib-2.0;m;pcre;m;pcre;ffi;X11;pthread;xcb;Xau;Xtst;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xi;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xfixes;X11;pthread;xcb;Xau;atk-1.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gmodule-2.0;glib-2.0;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;wayland-client;m;ffi;xkbcommon;wayland-cursor;m;ffi;wayland-egl;wayland-client;m;ffi;epoxy;dl;pthread;xcb;Xau;GL;EGL;pangoft2-1.0;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;bz2;z;m;m;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;cairomm-1.0;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangomm-1.4;glibmm-2.4;m;pcre;ffi;cairomm-1.0;sigc-2.0;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangocairo-1.0;m;pango-1.0;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangoft2-1.0;m;pango-1.0;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;Xext;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb-render;xcb;Xau;xcb-shm;xcb;Xau;pixman-1;m;harfbuzz-gobject;m;freetype;bz2;z;m;m;brotlicommon;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fribidi;thai;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;Xft;Xrender;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xdmcp;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;harfbuzz-gobject;harfbuzz;m;freetype;bz2;z;png16;m;m;z;brotlidec;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;gdk_pixbuf-2.0;m;m;pcre;ffi;png16;m;z;m;z;jpeg;tiff;zstd;lzma;jbig;jpeg;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;glib-2.0;m;pcre;z;mount;blkid;sysprof-capture-4 +GTK_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib +GTK_STATIC_LIBS:INTERNAL= +GTK_STATIC_LIBS_L:INTERNAL= +GTK_STATIC_LIBS_OTHER:INTERNAL= +GTK_STATIC_LIBS_PATHS:INTERNAL= +GTK_VERSION:INTERNAL=3.24.5 +GTK_gtkmm-3.0_INCLUDEDIR:INTERNAL= +GTK_gtkmm-3.0_LIBDIR:INTERNAL= +GTK_gtkmm-3.0_PREFIX:INTERNAL= +GTK_gtkmm-3.0_VERSION:INTERNAL= +//ADVANCED property for variable: PKG_CONFIG_ARGN +PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE +PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1 +__pkg_config_arguments_GTK:INTERNAL=REQUIRED;gtkmm-3.0 +__pkg_config_checked_GTK:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_atk-1.0 +pkgcfg_lib_GTK_atk-1.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_atkmm-1.6 +pkgcfg_lib_GTK_atkmm-1.6-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_cairo +pkgcfg_lib_GTK_cairo-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_cairo-gobject +pkgcfg_lib_GTK_cairo-gobject-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_cairomm-1.0 +pkgcfg_lib_GTK_cairomm-1.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_gdk-3 +pkgcfg_lib_GTK_gdk-3-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_gdk_pixbuf-2.0 +pkgcfg_lib_GTK_gdk_pixbuf-2.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_gdkmm-3.0 +pkgcfg_lib_GTK_gdkmm-3.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_gio-2.0 +pkgcfg_lib_GTK_gio-2.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_giomm-2.4 +pkgcfg_lib_GTK_giomm-2.4-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_glib-2.0 +pkgcfg_lib_GTK_glib-2.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_glibmm-2.4 +pkgcfg_lib_GTK_glibmm-2.4-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_gobject-2.0 +pkgcfg_lib_GTK_gobject-2.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_gtk-3 +pkgcfg_lib_GTK_gtk-3-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_gtkmm-3.0 +pkgcfg_lib_GTK_gtkmm-3.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_harfbuzz +pkgcfg_lib_GTK_harfbuzz-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_pango-1.0 +pkgcfg_lib_GTK_pango-1.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_pangocairo-1.0 +pkgcfg_lib_GTK_pangocairo-1.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_pangomm-1.4 +pkgcfg_lib_GTK_pangomm-1.4-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_sigc-2.0 +pkgcfg_lib_GTK_sigc-2.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK_z +pkgcfg_lib_GTK_z-ADVANCED:INTERNAL=1 +prefix_result:INTERNAL=/usr/lib + diff --git a/compile/CMakeFiles/3.23.0/CMakeCCompiler.cmake b/compile/CMakeFiles/3.23.0/CMakeCCompiler.cmake new file mode 100644 index 0000000..ef0634e --- /dev/null +++ b/compile/CMakeFiles/3.23.0/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "11.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0;/usr/lib;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/compile/CMakeFiles/3.23.0/CMakeCXXCompiler.cmake b/compile/CMakeFiles/3.23.0/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..409828e --- /dev/null +++ b/compile/CMakeFiles/3.23.0/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.2.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11.2.0;/usr/include/c++/11.2.0/x86_64-pc-linux-gnu;/usr/include/c++/11.2.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0;/usr/lib;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/compile/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_C.bin b/compile/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..c3922cbdd14070e6955b757aa89ff9adca5de09d GIT binary patch literal 15936 zcmeHOU2Ggz6~4Q68mGkZ4{>nok}Lrs7vYVaxW)uIU3nDvhB5&PrL z&K5foU=gTlML}*WK~+%{1TP34K#Hh@1UNFZDo^AA6yU`mB3cwk5EL1Ryqq(0zV+;| zhN?)sFxT2S_k8Dk=iWJUXZL#M-p`~a#-fpkLTONE6l<|o4@rn2@d2rjNT@;8Ovgu5 zmwJHoMi=w!2~UvKE4QMxvPtj;lFaMmN*(!#2U8nfK@V9nZ?Cew&$B=(IS=N!CeeXI zz9+hEYL@>kWzaK1@8$%bP8@%x9&& zy{^M8$tR?!>O{`U4D_GKWqWc~p}gF)JUGxZ&>t@q<0suNaKC!#!((cE>b#1sstv}# zkElqE9u=Kj+`_(x>BDJfe&t)&pX++zv)31HJorRM<B0t6=1;OD3t5=sCUQ7`CJ54XdD7 z=R6On@rm?EQa>3#8Go!=Kh>}F^z5XbHEnajDmkV-JDJQC3+Akm$#J-ae6b+mbkDV} zqoNy-t`Yrt13yAK_ZQ=){IGR^ug?1gyZ+1pdUtA0OL3T)rB8(ZXt&fiMGM2Eq)483;2F zW+2SK|62zB+;a5q+T}Y<+Le93IH8pG`3)yp`KfmKM@^e&3?ds4k$)VEm9I^f~A8$GKIoF@?n;hrrzMru8;I`92p`Vn{2P#`F$5z>K zQzZF+)%Abu1s0F)XlwVh8-ILUyRqG%MPAl!?l^}jKuQ8MRkr3^j*af}xqque7s;&3 zr_O7ahmLbqTf6NvYgdNOkW%SrrQ>UJl}hF1ef?C8T-@C4@83%7wq(iK0cL7k4_CM*U#l=Rvc3= z+Vsxu!bEy@b|R&xrbg4lQ{>^=jf{1H)*&z<($(-Ge)r40TEAPV@cXv4dzH!zNiO`( zluP8&Sru7sjdUH{-?UCI&KPIj3~}De4x{_sH*bvf)2EMOe3J3uL#0P7pEo)K#mkBiemILms+X3^JWUF1We zW8Gwz==c}xVbQUElK*ex0{a^~l_KjKvgi?O8JA?SBd?$2vL*HhJyks|@@*nJMRtgU z*e{hq35<3(1gFKIZUO%v6|X-8x~@B-HwmBKAiMoVp6K6CSKpTY{!MiM8cu2Ae=4x9 ze6L1h3C}W~OrDN)(<23ggkUD)kgqxLw>2z@K&f z+Z4t(@b6Hi-g*7l^*^K%G0*d;C)5_nh&rS`9`gVZYDe%@0chobTlUJ&emaqeq9nXa z9DSl*e>zg>pYEar5KoR1UTx8${IEl$Pbe~C)=~v>9@dnoK#Q!1rzI2~ek?{`U+@GNT zHsLXleX>1Tf8Bi#;q6iS77W}Mik`jo6pD@+pQFX|r09;Zpsa%B5HM#uC8ta)WaiZF zdVAf;>vO!~zC?s@o75uq{cNlX?(&=CaDc8XWGLfY3iI+m@n$P4;l50wLpQhmQnZ@ zQ_ganoLOU~lcq+;&JIty&n0!*HZc0pso}|Vl3@DA(^HyQwb8RmAD@^W8J^Im$Hva3 zX7$I?F^*U?rqSsrJ}xQ6tcYU zAw5lAS*xIzOJUr=c4EJg%6)&yi z9V0{1u|2tnnpL138A~eej;Mt~Ilg2UmrUDP@j;ogMcZnutUz=Ldw9&n*?rL{Evk5S zr9e%1(y=|ulcrs=iiH|QC!1~N3?`^J4;2-6%w;~ym z%| zfqA-waoa+j<%{(3^YMEJxfDoP@aN}i0X}}eA@P3%x5Xtme!f8%H-Yn4F;ck1+@tz} zC#pw*t2)om{QPxsfW-I%A=v&81N?6bA95B%k;p&bSE<5tIl1ks^GEDg4EjTd{26gu ze0cD?Z2EO)aAM-!#KfT7up~B;j3wXGWzbA}cz{h^JTPN6?_P=_f zdITTxE?NA1l@M1M__$9I06fU;03Y+bPT`}UK|XYzS92`%AM>nk;iDb+OFE#c1_Brp z_bLv4a4rnKUslI%m911l0&Ymh`2S=69|`?IUJek3zWeCjOHTq$1%jhp__poAKgB-` LR1O9R0ag7IwhZIb literal 0 HcmV?d00001 diff --git a/compile/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_CXX.bin b/compile/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..8acb2ff48f818e63b598e8b59eccad41d9f511d8 GIT binary patch literal 15960 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 Q{D<*}0n)w@A*70b0(_1BWB>pF literal 0 HcmV?d00001 diff --git a/compile/CMakeFiles/3.23.0/CMakeSystem.cmake b/compile/CMakeFiles/3.23.0/CMakeSystem.cmake new file mode 100644 index 0000000..7116ac5 --- /dev/null +++ b/compile/CMakeFiles/3.23.0/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.17.6-2-ublinux") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.17.6-2-ublinux") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-5.17.6-2-ublinux") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.17.6-2-ublinux") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/compile/CMakeFiles/3.23.0/CompilerIdC/CMakeCCompilerId.c b/compile/CMakeFiles/3.23.0/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..26b2f9e --- /dev/null +++ b/compile/CMakeFiles/3.23.0/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,828 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/compile/CMakeFiles/3.23.0/CompilerIdC/a.out b/compile/CMakeFiles/3.23.0/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..b007c9432446c32aa9116428d966392c17ef4bb5 GIT binary patch literal 16056 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 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/compile/CMakeFiles/3.23.0/CompilerIdCXX/a.out b/compile/CMakeFiles/3.23.0/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..60376f710d90dc5cc90bbfbeda0ecb81765c0595 GIT binary patch literal 16064 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 X&beMyigWbZ{2${F1EfZcpsC_t>9#hx literal 0 HcmV?d00001 diff --git a/compile/CMakeFiles/CMakeDirectoryInformation.cmake b/compile/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..f6435ee --- /dev/null +++ b/compile/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.23 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/compile/CMakeFiles/CMakeOutput.log b/compile/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..09e3d4c --- /dev/null +++ b/compile/CMakeFiles/CMakeOutput.log @@ -0,0 +1,411 @@ +The system is: Linux - 5.17.6-2-ublinux - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/cc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/3.23.0/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/3.23.0/CompilerIdCXX/a.out" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make -f Makefile cmTC_603ff/fast && make[1]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_603ff.dir/build.make CMakeFiles/cmTC_603ff.dir/build +make[2]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +Target: x86_64-pc-linux-gnu +Configured with: /build/gcc/src/gcc/configure --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.2.0 (GCC) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_603ff.dir/' + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/cc1 -quiet -v /usr/share/cmake/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_603ff.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/ccvO5zcs.s +GNU C17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu) + compiled by GNU C version 11.2.0, GMP version 6.2.1, MPFR version 4.1.0-p13, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../x86_64-pc-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include + /usr/local/include + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed + /usr/include +End of search list. +GNU C17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu) + compiled by GNU C version 11.2.0, GMP version 6.2.1, MPFR version 4.1.0-p13, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 65a5ec6b673b24273c0fdde359680a16 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_603ff.dir/' + as -v --64 -o CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o /tmp/ccvO5zcs.s +GNU assembler version 2.38 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.38 +COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_603ff +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_603ff.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -o cmTC_603ff +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper +Target: x86_64-pc-linux-gnu +Configured with: /build/gcc/src/gcc/configure --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.2.0 (GCC) +COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_603ff' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_603ff.' + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cchexM3T.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_603ff /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../.. CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_603ff' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_603ff.' +make[2]: Leaving directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] + add: [/usr/local/include] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed;/usr/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_603ff/fast && make[1]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_603ff.dir/build.make CMakeFiles/cmTC_603ff.dir/build] + ignore line: [make[2]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=c c++ ada fortran go lto objc obj-c++ d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.2.0 (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_603ff.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/cc1 -quiet -v /usr/share/cmake/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_603ff.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/ccvO5zcs.s] + ignore line: [GNU C17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu)] + ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.2.1 MPFR version 4.1.0-p13 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../x86_64-pc-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu)] + ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.2.1 MPFR version 4.1.0-p13 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 65a5ec6b673b24273c0fdde359680a16] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_603ff.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o /tmp/ccvO5zcs.s] + ignore line: [GNU assembler version 2.38 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_603ff] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_603ff.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -o cmTC_603ff ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=c c++ ada fortran go lto objc obj-c++ d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.2.0 (GCC) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_603ff' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_603ff.'] + link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cchexM3T.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_603ff /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../.. CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cchexM3T.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-o] ==> ignore + arg [cmTC_603ff] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../..] + arg [CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o] ==> [/usr/lib/crti.o] + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o;/usr/lib/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0;/usr/lib;/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make -f Makefile cmTC_f1cb4/fast && make[1]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_f1cb4.dir/build.make CMakeFiles/cmTC_f1cb4.dir/build +make[2]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +Target: x86_64-pc-linux-gnu +Configured with: /build/gcc/src/gcc/configure --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.2.0 (GCC) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f1cb4.dir/' + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_f1cb4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -o /tmp/ccjngT5y.s +GNU C++17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu) + compiled by GNU C version 11.2.0, GMP version 6.2.1, MPFR version 4.1.0-p13, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../x86_64-pc-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0 + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/x86_64-pc-linux-gnu + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/backward + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include + /usr/local/include + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed + /usr/include +End of search list. +GNU C++17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu) + compiled by GNU C version 11.2.0, GMP version 6.2.1, MPFR version 4.1.0-p13, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 37973183ac4df241cfcce263334987c1 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f1cb4.dir/' + as -v --64 -o CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccjngT5y.s +GNU assembler version 2.38 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.38 +COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_f1cb4 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f1cb4.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_f1cb4 +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper +Target: x86_64-pc-linux-gnu +Configured with: /build/gcc/src/gcc/configure --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.2.0 (GCC) +COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f1cb4' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_f1cb4.' + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccB3qYgI.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_f1cb4 /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../.. CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f1cb4' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_f1cb4.' +make[2]: Leaving directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/x86_64-pc-linux-gnu] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/backward] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] + add: [/usr/local/include] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0] ==> [/usr/include/c++/11.2.0] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/x86_64-pc-linux-gnu] ==> [/usr/include/c++/11.2.0/x86_64-pc-linux-gnu] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/backward] ==> [/usr/include/c++/11.2.0/backward] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/11.2.0;/usr/include/c++/11.2.0/x86_64-pc-linux-gnu;/usr/include/c++/11.2.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed;/usr/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_f1cb4/fast && make[1]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_f1cb4.dir/build.make CMakeFiles/cmTC_f1cb4.dir/build] + ignore line: [make[2]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=c c++ ada fortran go lto objc obj-c++ d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.2.0 (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f1cb4.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_f1cb4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -o /tmp/ccjngT5y.s] + ignore line: [GNU C++17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu)] + ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.2.1 MPFR version 4.1.0-p13 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../x86_64-pc-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/x86_64-pc-linux-gnu] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/backward] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu)] + ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.2.1 MPFR version 4.1.0-p13 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 37973183ac4df241cfcce263334987c1] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f1cb4.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccjngT5y.s] + ignore line: [GNU assembler version 2.38 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_f1cb4] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f1cb4.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_f1cb4 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=c c++ ada fortran go lto objc obj-c++ d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.2.0 (GCC) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f1cb4' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_f1cb4.'] + link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccB3qYgI.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_f1cb4 /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../.. CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccB3qYgI.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-o] ==> ignore + arg [cmTC_f1cb4] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../..] + arg [CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o] ==> [/usr/lib/crti.o] + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o;/usr/lib/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0;/usr/lib;/lib] + implicit fwks: [] + + diff --git a/compile/CMakeFiles/Makefile.cmake b/compile/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..c9729c9 --- /dev/null +++ b/compile/CMakeFiles/Makefile.cmake @@ -0,0 +1,129 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.23 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "CMakeFiles/3.23.0/CMakeCCompiler.cmake" + "CMakeFiles/3.23.0/CMakeCXXCompiler.cmake" + "CMakeFiles/3.23.0/CMakeSystem.cmake" + "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/CMakeLists.txt" + "/usr/share/cmake/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake/Modules/CMakeCInformation.cmake" + "/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake" + "/usr/share/cmake/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/share/cmake/Modules/Compiler/GNU.cmake" + "/usr/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake/Modules/FindPackageMessage.cmake" + "/usr/share/cmake/Modules/FindPkgConfig.cmake" + "/usr/share/cmake/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake" + "/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake/Modules/Platform/Linux.cmake" + "/usr/share/cmake/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.23.0/CMakeSystem.cmake" + "CMakeFiles/3.23.0/CMakeCCompiler.cmake" + "CMakeFiles/3.23.0/CMakeCXXCompiler.cmake" + "CMakeFiles/3.23.0/CMakeCCompiler.cmake" + "CMakeFiles/3.23.0/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/ublexec.dir/DependInfo.cmake" + ) diff --git a/compile/CMakeFiles/Makefile2 b/compile/CMakeFiles/Makefile2 new file mode 100644 index 0000000..5bda377 --- /dev/null +++ b/compile/CMakeFiles/Makefile2 @@ -0,0 +1,112 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.23 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/ublexec.dir/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/ublexec.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/ublexec.dir + +# All Build rule for target. +CMakeFiles/ublexec.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles --progress-num=1,2,3 "Built target ublexec" +.PHONY : CMakeFiles/ublexec.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ublexec.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/ublexec.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles 0 +.PHONY : CMakeFiles/ublexec.dir/rule + +# Convenience name for target. +ublexec: CMakeFiles/ublexec.dir/rule +.PHONY : ublexec + +# clean rule for target. +CMakeFiles/ublexec.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/clean +.PHONY : CMakeFiles/ublexec.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/compile/CMakeFiles/Progress/2 b/compile/CMakeFiles/Progress/2 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/compile/CMakeFiles/Progress/2 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/compile/CMakeFiles/Progress/count.txt b/compile/CMakeFiles/Progress/count.txt new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/compile/CMakeFiles/Progress/count.txt @@ -0,0 +1 @@ +3 diff --git a/compile/CMakeFiles/TargetDirectories.txt b/compile/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..0f479a0 --- /dev/null +++ b/compile/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,7 @@ +/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/ublexec.dir +/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/edit_cache.dir +/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/rebuild_cache.dir +/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/list_install_components.dir +/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/install.dir +/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/install/local.dir +/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/install/strip.dir diff --git a/compile/CMakeFiles/cmake.check_cache b/compile/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/compile/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/compile/CMakeFiles/progress.marks b/compile/CMakeFiles/progress.marks new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/compile/CMakeFiles/progress.marks @@ -0,0 +1 @@ +3 diff --git a/compile/CMakeFiles/ublexec.dir/DependInfo.cmake b/compile/CMakeFiles/ublexec.dir/DependInfo.cmake new file mode 100644 index 0000000..cd616f7 --- /dev/null +++ b/compile/CMakeFiles/ublexec.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc" "CMakeFiles/ublexec.dir/main.cc.o" "gcc" "CMakeFiles/ublexec.dir/main.cc.o.d" + "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc" "CMakeFiles/ublexec.dir/ublexec.cc.o" "gcc" "CMakeFiles/ublexec.dir/ublexec.cc.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/compile/CMakeFiles/ublexec.dir/build.make b/compile/CMakeFiles/ublexec.dir/build.make new file mode 100644 index 0000000..b137c42 --- /dev/null +++ b/compile/CMakeFiles/ublexec.dir/build.make @@ -0,0 +1,126 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.23 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile + +# Include any dependencies generated for this target. +include CMakeFiles/ublexec.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/ublexec.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/ublexec.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/ublexec.dir/flags.make + +CMakeFiles/ublexec.dir/main.cc.o: CMakeFiles/ublexec.dir/flags.make +CMakeFiles/ublexec.dir/main.cc.o: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc +CMakeFiles/ublexec.dir/main.cc.o: CMakeFiles/ublexec.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/ublexec.dir/main.cc.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/ublexec.dir/main.cc.o -MF CMakeFiles/ublexec.dir/main.cc.o.d -o CMakeFiles/ublexec.dir/main.cc.o -c /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc + +CMakeFiles/ublexec.dir/main.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/ublexec.dir/main.cc.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc > CMakeFiles/ublexec.dir/main.cc.i + +CMakeFiles/ublexec.dir/main.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/ublexec.dir/main.cc.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc -o CMakeFiles/ublexec.dir/main.cc.s + +CMakeFiles/ublexec.dir/ublexec.cc.o: CMakeFiles/ublexec.dir/flags.make +CMakeFiles/ublexec.dir/ublexec.cc.o: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc +CMakeFiles/ublexec.dir/ublexec.cc.o: CMakeFiles/ublexec.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/ublexec.dir/ublexec.cc.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/ublexec.dir/ublexec.cc.o -MF CMakeFiles/ublexec.dir/ublexec.cc.o.d -o CMakeFiles/ublexec.dir/ublexec.cc.o -c /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc + +CMakeFiles/ublexec.dir/ublexec.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/ublexec.dir/ublexec.cc.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc > CMakeFiles/ublexec.dir/ublexec.cc.i + +CMakeFiles/ublexec.dir/ublexec.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/ublexec.dir/ublexec.cc.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc -o CMakeFiles/ublexec.dir/ublexec.cc.s + +# Object files for target ublexec +ublexec_OBJECTS = \ +"CMakeFiles/ublexec.dir/main.cc.o" \ +"CMakeFiles/ublexec.dir/ublexec.cc.o" + +# External object files for target ublexec +ublexec_EXTERNAL_OBJECTS = + +ublexec: CMakeFiles/ublexec.dir/main.cc.o +ublexec: CMakeFiles/ublexec.dir/ublexec.cc.o +ublexec: CMakeFiles/ublexec.dir/build.make +ublexec: CMakeFiles/ublexec.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX executable ublexec" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/ublexec.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/ublexec.dir/build: ublexec +.PHONY : CMakeFiles/ublexec.dir/build + +CMakeFiles/ublexec.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ublexec.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ublexec.dir/clean + +CMakeFiles/ublexec.dir/depend: + cd /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/ublexec.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ublexec.dir/depend + diff --git a/compile/CMakeFiles/ublexec.dir/cmake_clean.cmake b/compile/CMakeFiles/ublexec.dir/cmake_clean.cmake new file mode 100644 index 0000000..1b4890b --- /dev/null +++ b/compile/CMakeFiles/ublexec.dir/cmake_clean.cmake @@ -0,0 +1,13 @@ +file(REMOVE_RECURSE + "CMakeFiles/ublexec.dir/main.cc.o" + "CMakeFiles/ublexec.dir/main.cc.o.d" + "CMakeFiles/ublexec.dir/ublexec.cc.o" + "CMakeFiles/ublexec.dir/ublexec.cc.o.d" + "ublexec" + "ublexec.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/ublexec.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/compile/CMakeFiles/ublexec.dir/compiler_depend.internal b/compile/CMakeFiles/ublexec.dir/compiler_depend.internal new file mode 100644 index 0000000..389a26a --- /dev/null +++ b/compile/CMakeFiles/ublexec.dir/compiler_depend.internal @@ -0,0 +1,3323 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.23 + +CMakeFiles/ublexec.dir/main.cc.o + /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc + /usr/include/stdc-predef.h + /usr/include/c++/11.2.0/cstddef + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h + /usr/include/features.h + /usr/include/features-time64.h + /usr/include/bits/wordsize.h + /usr/include/bits/timesize.h + /usr/include/sys/cdefs.h + /usr/include/bits/long-double.h + /usr/include/gnu/stubs.h + /usr/include/gnu/stubs-64.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h + /usr/include/c++/11.2.0/pstl/pstl_config.h + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h + /usr/include/c++/11.2.0/cstdlib + /usr/include/stdlib.h + /usr/include/bits/libc-header-start.h + /usr/include/bits/waitflags.h + /usr/include/bits/waitstatus.h + /usr/include/bits/floatn.h + /usr/include/bits/floatn-common.h + /usr/include/bits/types/locale_t.h + /usr/include/bits/types/__locale_t.h + /usr/include/sys/types.h + /usr/include/bits/types.h + /usr/include/bits/typesizes.h + /usr/include/bits/time64.h + /usr/include/bits/types/clock_t.h + /usr/include/bits/types/clockid_t.h + /usr/include/bits/types/time_t.h + /usr/include/bits/types/timer_t.h + /usr/include/bits/stdint-intn.h + /usr/include/endian.h + /usr/include/bits/endian.h + /usr/include/bits/endianness.h + /usr/include/bits/byteswap.h + /usr/include/bits/uintn-identity.h + /usr/include/sys/select.h + /usr/include/bits/select.h + /usr/include/bits/types/sigset_t.h + /usr/include/bits/types/__sigset_t.h + /usr/include/bits/types/struct_timeval.h + /usr/include/bits/types/struct_timespec.h + /usr/include/bits/pthreadtypes.h + /usr/include/bits/thread-shared-types.h + /usr/include/bits/pthreadtypes-arch.h + /usr/include/bits/atomic_wide_counter.h + /usr/include/bits/struct_mutex.h + /usr/include/bits/struct_rwlock.h + /usr/include/alloca.h + /usr/include/bits/stdlib-bsearch.h + /usr/include/bits/stdlib-float.h + /usr/include/c++/11.2.0/bits/std_abs.h + /usr/include/c++/11.2.0/iostream + /usr/include/c++/11.2.0/ostream + /usr/include/c++/11.2.0/ios + /usr/include/c++/11.2.0/iosfwd + /usr/include/c++/11.2.0/bits/stringfwd.h + /usr/include/c++/11.2.0/bits/memoryfwd.h + /usr/include/c++/11.2.0/bits/postypes.h + /usr/include/c++/11.2.0/cwchar + /usr/include/wchar.h + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h + /usr/include/bits/wchar.h + /usr/include/bits/types/wint_t.h + /usr/include/bits/types/mbstate_t.h + /usr/include/bits/types/__mbstate_t.h + /usr/include/bits/types/__FILE.h + /usr/include/bits/types/FILE.h + /usr/include/c++/11.2.0/exception + /usr/include/c++/11.2.0/bits/exception.h + /usr/include/c++/11.2.0/bits/exception_ptr.h + /usr/include/c++/11.2.0/bits/exception_defines.h + /usr/include/c++/11.2.0/bits/cxxabi_init_exception.h + /usr/include/c++/11.2.0/typeinfo + /usr/include/c++/11.2.0/bits/hash_bytes.h + /usr/include/c++/11.2.0/new + /usr/include/c++/11.2.0/bits/nested_exception.h + /usr/include/c++/11.2.0/bits/move.h + /usr/include/c++/11.2.0/type_traits + /usr/include/c++/11.2.0/bits/char_traits.h + /usr/include/c++/11.2.0/bits/stl_algobase.h + /usr/include/c++/11.2.0/bits/functexcept.h + /usr/include/c++/11.2.0/bits/cpp_type_traits.h + /usr/include/c++/11.2.0/ext/type_traits.h + /usr/include/c++/11.2.0/ext/numeric_traits.h + /usr/include/c++/11.2.0/bits/stl_pair.h + /usr/include/c++/11.2.0/bits/stl_iterator_base_types.h + /usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h + /usr/include/c++/11.2.0/bits/concept_check.h + /usr/include/c++/11.2.0/debug/assertions.h + /usr/include/c++/11.2.0/bits/stl_iterator.h + /usr/include/c++/11.2.0/bits/ptr_traits.h + /usr/include/c++/11.2.0/debug/debug.h + /usr/include/c++/11.2.0/bits/predefined_ops.h + /usr/include/c++/11.2.0/cstdint + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h + /usr/include/stdint.h + /usr/include/bits/stdint-uintn.h + /usr/include/c++/11.2.0/bits/localefwd.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h + /usr/include/c++/11.2.0/clocale + /usr/include/locale.h + /usr/include/bits/locale.h + /usr/include/c++/11.2.0/cctype + /usr/include/ctype.h + /usr/include/c++/11.2.0/bits/ios_base.h + /usr/include/c++/11.2.0/ext/atomicity.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h + /usr/include/pthread.h + /usr/include/sched.h + /usr/include/bits/sched.h + /usr/include/bits/types/struct_sched_param.h + /usr/include/bits/cpu-set.h + /usr/include/time.h + /usr/include/bits/time.h + /usr/include/bits/timex.h + /usr/include/bits/types/struct_tm.h + /usr/include/bits/types/struct_itimerspec.h + /usr/include/bits/setjmp.h + /usr/include/bits/types/struct___jmp_buf_tag.h + /usr/include/bits/pthread_stack_min-dynamic.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h + /usr/include/sys/single_threaded.h + /usr/include/c++/11.2.0/bits/locale_classes.h + /usr/include/c++/11.2.0/string + /usr/include/c++/11.2.0/bits/allocator.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h + /usr/include/c++/11.2.0/ext/new_allocator.h + /usr/include/c++/11.2.0/bits/ostream_insert.h + /usr/include/c++/11.2.0/bits/cxxabi_forced.h + /usr/include/c++/11.2.0/bits/stl_function.h + /usr/include/c++/11.2.0/backward/binders.h + /usr/include/c++/11.2.0/bits/range_access.h + /usr/include/c++/11.2.0/initializer_list + /usr/include/c++/11.2.0/bits/basic_string.h + /usr/include/c++/11.2.0/ext/alloc_traits.h + /usr/include/c++/11.2.0/bits/alloc_traits.h + /usr/include/c++/11.2.0/bits/stl_construct.h + /usr/include/c++/11.2.0/string_view + /usr/include/c++/11.2.0/bits/functional_hash.h + /usr/include/c++/11.2.0/bits/string_view.tcc + /usr/include/c++/11.2.0/ext/string_conversions.h + /usr/include/c++/11.2.0/cstdio + /usr/include/stdio.h + /usr/include/bits/types/__fpos_t.h + /usr/include/bits/types/__fpos64_t.h + /usr/include/bits/types/struct_FILE.h + /usr/include/bits/types/cookie_io_functions_t.h + /usr/include/bits/stdio_lim.h + /usr/include/bits/stdio.h + /usr/include/c++/11.2.0/cerrno + /usr/include/errno.h + /usr/include/bits/errno.h + /usr/include/linux/errno.h + /usr/include/asm/errno.h + /usr/include/asm-generic/errno.h + /usr/include/asm-generic/errno-base.h + /usr/include/bits/types/error_t.h + /usr/include/c++/11.2.0/bits/charconv.h + /usr/include/c++/11.2.0/bits/basic_string.tcc + /usr/include/c++/11.2.0/bits/locale_classes.tcc + /usr/include/c++/11.2.0/system_error + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h + /usr/include/c++/11.2.0/stdexcept + /usr/include/c++/11.2.0/streambuf + /usr/include/c++/11.2.0/bits/streambuf.tcc + /usr/include/c++/11.2.0/bits/basic_ios.h + /usr/include/c++/11.2.0/bits/locale_facets.h + /usr/include/c++/11.2.0/cwctype + /usr/include/wctype.h + /usr/include/bits/wctype-wchar.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h + /usr/include/c++/11.2.0/bits/streambuf_iterator.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h + /usr/include/c++/11.2.0/bits/locale_facets.tcc + /usr/include/c++/11.2.0/bits/basic_ios.tcc + /usr/include/c++/11.2.0/bits/ostream.tcc + /usr/include/c++/11.2.0/istream + /usr/include/c++/11.2.0/bits/istream.tcc + /usr/include/c++/11.2.0/memory + /usr/include/c++/11.2.0/bits/stl_uninitialized.h + /usr/include/c++/11.2.0/bits/stl_tempbuf.h + /usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h + /usr/include/c++/11.2.0/bits/align.h + /usr/include/c++/11.2.0/bit + /usr/include/c++/11.2.0/bits/uses_allocator.h + /usr/include/c++/11.2.0/bits/unique_ptr.h + /usr/include/c++/11.2.0/utility + /usr/include/c++/11.2.0/bits/stl_relops.h + /usr/include/c++/11.2.0/tuple + /usr/include/c++/11.2.0/array + /usr/include/c++/11.2.0/bits/invoke.h + /usr/include/c++/11.2.0/bits/shared_ptr.h + /usr/include/c++/11.2.0/bits/shared_ptr_base.h + /usr/include/c++/11.2.0/bits/allocated_ptr.h + /usr/include/c++/11.2.0/bits/refwrap.h + /usr/include/c++/11.2.0/ext/aligned_buffer.h + /usr/include/c++/11.2.0/ext/concurrence.h + /usr/include/c++/11.2.0/bits/shared_ptr_atomic.h + /usr/include/c++/11.2.0/bits/atomic_base.h + /usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h + /usr/include/c++/11.2.0/backward/auto_ptr.h + /usr/include/c++/11.2.0/pstl/glue_memory_defs.h + /usr/include/c++/11.2.0/pstl/execution_defs.h + /usr/include/gtkmm-3.0/gtkmm.h + /usr/include/glibmm-2.4/glibmm.h + /usr/lib/glibmm-2.4/include/glibmmconfig.h + /usr/include/glibmm-2.4/glibmm/thread.h + /usr/include/glib-2.0/glib.h + /usr/include/glib-2.0/glib/galloca.h + /usr/include/glib-2.0/glib/gtypes.h + /usr/lib/glib-2.0/include/glibconfig.h + /usr/include/glib-2.0/glib/gmacros.h + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h + /usr/include/limits.h + /usr/include/bits/posix1_lim.h + /usr/include/bits/local_lim.h + /usr/include/linux/limits.h + /usr/include/bits/posix2_lim.h + /usr/include/bits/xopen_lim.h + /usr/include/bits/uio_lim.h + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h + /usr/include/glib-2.0/glib/gversionmacros.h + /usr/include/string.h + /usr/include/strings.h + /usr/include/glib-2.0/glib/garray.h + /usr/include/glib-2.0/glib/gasyncqueue.h + /usr/include/glib-2.0/glib/gthread.h + /usr/include/glib-2.0/glib/gatomic.h + /usr/include/glib-2.0/glib/glib-typeof.h + /usr/include/glib-2.0/glib/gerror.h + /usr/include/glib-2.0/glib/gquark.h + /usr/include/glib-2.0/glib/gutils.h + /usr/include/c++/11.2.0/stdlib.h + /usr/include/glib-2.0/glib/gbacktrace.h + /usr/include/signal.h + /usr/include/bits/signum-generic.h + /usr/include/bits/signum-arch.h + /usr/include/bits/types/sig_atomic_t.h + /usr/include/bits/types/siginfo_t.h + /usr/include/bits/types/__sigval_t.h + /usr/include/bits/siginfo-arch.h + /usr/include/bits/siginfo-consts.h + /usr/include/bits/siginfo-consts-arch.h + /usr/include/bits/types/sigval_t.h + /usr/include/bits/types/sigevent_t.h + /usr/include/bits/sigevent-consts.h + /usr/include/bits/sigaction.h + /usr/include/bits/sigcontext.h + /usr/include/bits/types/stack_t.h + /usr/include/sys/ucontext.h + /usr/include/bits/sigstack.h + /usr/include/bits/sigstksz.h + /usr/include/unistd.h + /usr/include/bits/posix_opt.h + /usr/include/bits/environments.h + /usr/include/bits/confname.h + /usr/include/bits/getopt_posix.h + /usr/include/bits/getopt_core.h + /usr/include/bits/unistd_ext.h + /usr/include/linux/close_range.h + /usr/include/bits/ss_flags.h + /usr/include/bits/types/struct_sigstack.h + /usr/include/bits/sigthread.h + /usr/include/bits/signal_ext.h + /usr/include/glib-2.0/glib/gbase64.h + /usr/include/glib-2.0/glib/gbitlock.h + /usr/include/glib-2.0/glib/gbookmarkfile.h + /usr/include/glib-2.0/glib/gdatetime.h + /usr/include/glib-2.0/glib/gtimezone.h + /usr/include/glib-2.0/glib/gbytes.h + /usr/include/glib-2.0/glib/gcharset.h + /usr/include/glib-2.0/glib/gchecksum.h + /usr/include/glib-2.0/glib/gconvert.h + /usr/include/glib-2.0/glib/gdataset.h + /usr/include/glib-2.0/glib/gdate.h + /usr/include/glib-2.0/glib/gdir.h + /usr/include/dirent.h + /usr/include/bits/dirent.h + /usr/include/bits/dirent_ext.h + /usr/include/glib-2.0/glib/genviron.h + /usr/include/glib-2.0/glib/gfileutils.h + /usr/include/glib-2.0/glib/ggettext.h + /usr/include/glib-2.0/glib/ghash.h + /usr/include/glib-2.0/glib/glist.h + /usr/include/glib-2.0/glib/gmem.h + /usr/include/glib-2.0/glib/gnode.h + /usr/include/glib-2.0/glib/ghmac.h + /usr/include/glib-2.0/glib/gchecksum.h + /usr/include/glib-2.0/glib/ghook.h + /usr/include/glib-2.0/glib/ghostutils.h + /usr/include/glib-2.0/glib/giochannel.h + /usr/include/glib-2.0/glib/gmain.h + /usr/include/glib-2.0/glib/gpoll.h + /usr/include/glib-2.0/glib/gslist.h + /usr/include/glib-2.0/glib/gstring.h + /usr/include/glib-2.0/glib/gunicode.h + /usr/include/glib-2.0/glib/gkeyfile.h + /usr/include/glib-2.0/glib/gmappedfile.h + /usr/include/glib-2.0/glib/gmarkup.h + /usr/include/glib-2.0/glib/gmessages.h + /usr/include/glib-2.0/glib/gvariant.h + /usr/include/glib-2.0/glib/gvarianttype.h + /usr/include/glib-2.0/glib/goption.h + /usr/include/glib-2.0/glib/gpattern.h + /usr/include/glib-2.0/glib/gprimes.h + /usr/include/glib-2.0/glib/gqsort.h + /usr/include/glib-2.0/glib/gqueue.h + /usr/include/glib-2.0/glib/grand.h + /usr/include/glib-2.0/glib/grcbox.h + /usr/include/glib-2.0/glib/grefcount.h + /usr/include/glib-2.0/glib/grefstring.h + /usr/include/glib-2.0/glib/gmem.h + /usr/include/glib-2.0/glib/gmacros.h + /usr/include/glib-2.0/glib/gregex.h + /usr/include/glib-2.0/glib/gscanner.h + /usr/include/glib-2.0/glib/gsequence.h + /usr/include/glib-2.0/glib/gshell.h + /usr/include/glib-2.0/glib/gslice.h + /usr/include/glib-2.0/glib/gspawn.h + /usr/include/glib-2.0/glib/gstrfuncs.h + /usr/include/glib-2.0/glib/gstringchunk.h + /usr/include/glib-2.0/glib/gstrvbuilder.h + /usr/include/glib-2.0/glib/gtestutils.h + /usr/include/glib-2.0/glib/gthreadpool.h + /usr/include/glib-2.0/glib/gtimer.h + /usr/include/glib-2.0/glib/gtrashstack.h + /usr/include/glib-2.0/glib/gtree.h + /usr/include/glib-2.0/glib/guri.h + /usr/include/glib-2.0/glib/guuid.h + /usr/include/glib-2.0/glib/gversion.h + /usr/include/glib-2.0/glib/deprecated/gallocator.h + /usr/include/glib-2.0/glib/deprecated/gcache.h + /usr/include/glib-2.0/glib/deprecated/gcompletion.h + /usr/include/glib-2.0/glib/deprecated/gmain.h + /usr/include/glib-2.0/glib/deprecated/grel.h + /usr/include/glib-2.0/glib/deprecated/gthread.h + /usr/include/glib-2.0/glib/glib-autocleanups.h + /usr/include/glibmm-2.4/glibmm/error.h + /usr/include/glibmm-2.4/glibmm/exception.h + /usr/include/glibmm-2.4/glibmm/ustring.h + /usr/include/glibmm-2.4/glibmm/unicode.h + /usr/include/c++/11.2.0/iterator + /usr/include/c++/11.2.0/bits/stream_iterator.h + /usr/include/c++/11.2.0/sstream + /usr/include/c++/11.2.0/bits/sstream.tcc + /usr/include/glibmm-2.4/glibmm/value.h + /usr/include/glibmm-2.4/glibmm/refptr.h + /usr/include/glibmm-2.4/glibmm/enums.h + /usr/include/glib-2.0/glib-object.h + /usr/include/glib-2.0/gobject/gbinding.h + /usr/include/glib-2.0/gobject/gobject.h + /usr/include/glib-2.0/gobject/gtype.h + /usr/include/glib-2.0/gobject/gvalue.h + /usr/include/glib-2.0/gobject/gparam.h + /usr/include/glib-2.0/gobject/gclosure.h + /usr/include/glib-2.0/gobject/gsignal.h + /usr/include/glib-2.0/gobject/gmarshal.h + /usr/include/glib-2.0/gobject/gboxed.h + /usr/include/glib-2.0/gobject/glib-types.h + /usr/include/glib-2.0/gobject/gbindinggroup.h + /usr/include/glib-2.0/gobject/genums.h + /usr/include/glib-2.0/gobject/glib-enumtypes.h + /usr/include/glib-2.0/gobject/gparamspecs.h + /usr/include/glib-2.0/gobject/gsignalgroup.h + /usr/include/glib-2.0/gobject/gsourceclosure.h + /usr/include/glib-2.0/gobject/gtypemodule.h + /usr/include/glib-2.0/gobject/gtypeplugin.h + /usr/include/glib-2.0/gobject/gvaluearray.h + /usr/include/glib-2.0/gobject/gvaluetypes.h + /usr/include/glib-2.0/gobject/gobject-autocleanups.h + /usr/include/c++/11.2.0/vector + /usr/include/c++/11.2.0/bits/stl_vector.h + /usr/include/c++/11.2.0/bits/stl_bvector.h + /usr/include/c++/11.2.0/bits/vector.tcc + /usr/include/glibmm-2.4/glibmm/value_custom.h + /usr/include/glibmm-2.4/glibmm/value_basictypes.h + /usr/include/glibmm-2.4/glibmm/timeval.h + /usr/include/sigc++-2.0/sigc++/sigc++.h + /usr/include/sigc++-2.0/sigc++/signal.h + /usr/include/c++/11.2.0/list + /usr/include/c++/11.2.0/bits/stl_list.h + /usr/include/c++/11.2.0/bits/list.tcc + /usr/include/sigc++-2.0/sigc++/signal_base.h + /usr/lib/sigc++-2.0/include/sigc++config.h + /usr/include/sigc++-2.0/sigc++/type_traits.h + /usr/include/sigc++-2.0/sigc++/trackable.h + /usr/include/sigc++-2.0/sigc++/functors/slot.h + /usr/include/sigc++-2.0/sigc++/visit_each.h + /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h + /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h + /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h + /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h + /usr/include/sigc++-2.0/sigc++/limit_reference.h + /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h + /usr/include/sigc++-2.0/sigc++/functors/slot_base.h + /usr/include/sigc++-2.0/sigc++/connection.h + /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h + /usr/include/sigc++-2.0/sigc++/adaptors/bind.h + /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h + /usr/include/sigc++-2.0/sigc++/reference_wrapper.h + /usr/include/c++/11.2.0/functional + /usr/include/c++/11.2.0/bits/std_function.h + /usr/include/c++/11.2.0/unordered_map + /usr/include/c++/11.2.0/bits/hashtable.h + /usr/include/c++/11.2.0/bits/hashtable_policy.h + /usr/include/c++/11.2.0/bits/node_handle.h + /usr/include/c++/11.2.0/bits/unordered_map.h + /usr/include/c++/11.2.0/bits/erase_if.h + /usr/include/c++/11.2.0/bits/stl_algo.h + /usr/include/c++/11.2.0/bits/algorithmfwd.h + /usr/include/c++/11.2.0/bits/stl_heap.h + /usr/include/c++/11.2.0/bits/uniform_int_dist.h + /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h + /usr/include/sigc++-2.0/sigc++/adaptors/hide.h + /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h + /usr/include/sigc++-2.0/sigc++/adaptors/retype.h + /usr/include/sigc++-2.0/sigc++/adaptors/compose.h + /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h + /usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h + /usr/include/sigc++-2.0/sigc++/functors/functors.h + /usr/include/glibmm-2.4/glibmm/threads.h + /usr/include/glibmm-2.4/glibmm/arrayhandle.h + /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h + /usr/include/glibmm-2.4/glibmm/variant.h + /usr/include/glibmm-2.4/glibmm/varianttype.h + /usr/include/glibmm-2.4/glibmm/variantiter.h + /usr/include/glibmm-2.4/glibmm/variantdbusstring.h + /usr/include/c++/11.2.0/map + /usr/include/c++/11.2.0/bits/stl_tree.h + /usr/include/c++/11.2.0/bits/stl_map.h + /usr/include/c++/11.2.0/bits/stl_multimap.h + /usr/include/glibmm-2.4/glibmm/variant_basictypes.h + /usr/include/glibmm-2.4/glibmm/wrap.h + /usr/include/glibmm-2.4/glibmm/objectbase.h + /usr/include/glibmm-2.4/glibmm/class.h + /usr/include/glibmm-2.4/glibmm/signalproxy.h + /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h + /usr/include/glibmm-2.4/glibmm/propertyproxy.h + /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h + /usr/include/glibmm-2.4/glibmm/quark.h + /usr/include/glibmm-2.4/glibmm/debug.h + /usr/include/c++/11.2.0/mutex + /usr/include/c++/11.2.0/chrono + /usr/include/c++/11.2.0/ratio + /usr/include/c++/11.2.0/limits + /usr/include/c++/11.2.0/ctime + /usr/include/c++/11.2.0/bits/parse_numbers.h + /usr/include/c++/11.2.0/bits/std_mutex.h + /usr/include/c++/11.2.0/bits/unique_lock.h + /usr/include/c++/11.2.0/algorithm + /usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h + /usr/include/c++/11.2.0/deque + /usr/include/c++/11.2.0/bits/stl_deque.h + /usr/include/c++/11.2.0/bits/deque.tcc + /usr/include/glibmm-2.4/glibmm/balancedtree.h + /usr/include/glibmm-2.4/glibmm/base64.h + /usr/include/glibmm-2.4/glibmm/binding.h + /usr/include/glibmm-2.4/glibmm/object.h + /usr/include/glibmm-2.4/glibmm/utility.h + /usr/include/glibmm-2.4/glibmm/bytearray.h + /usr/include/sigc++-2.0/sigc++/slot.h + /usr/include/glibmm-2.4/glibmm/bytes.h + /usr/include/glibmm-2.4/glibmm/checksum.h + /usr/include/glibmm-2.4/glibmm/convert.h + /usr/include/glibmm-2.4/glibmm/date.h + /usr/include/glibmm-2.4/glibmm/datetime.h + /usr/include/glibmm-2.4/glibmm/timezone.h + /usr/include/glibmm-2.4/glibmm/dispatcher.h + /usr/include/glibmm-2.4/glibmm/main.h + /usr/include/glibmm-2.4/glibmm/priorities.h + /usr/include/glibmm-2.4/glibmm/iochannel.h + /usr/include/glibmm-2.4/glibmm/exceptionhandler.h + /usr/include/glibmm-2.4/glibmm/fileutils.h + /usr/include/glibmm-2.4/glibmm/helperlist.h + /usr/include/glibmm-2.4/glibmm/containers.h + /usr/include/glibmm-2.4/glibmm/sarray.h + /usr/include/glibmm-2.4/glibmm/interface.h + /usr/include/glibmm-2.4/glibmm/init.h + /usr/include/glibmm-2.4/glibmm/keyfile.h + /usr/include/glibmm-2.4/glibmm/streamiochannel.h + /usr/include/glibmm-2.4/glibmm/listhandle.h + /usr/include/glibmm-2.4/glibmm/markup.h + /usr/include/glibmm-2.4/glibmm/miscutils.h + /usr/include/glibmm-2.4/glibmm/module.h + /usr/include/glibmm-2.4/glibmm/nodetree.h + /usr/include/c++/11.2.0/stack + /usr/include/c++/11.2.0/bits/stl_stack.h + /usr/include/glibmm-2.4/glibmm/optioncontext.h + /usr/include/glibmm-2.4/glibmm/optionentry.h + /usr/include/glibmm-2.4/glibmm/optiongroup.h + /usr/include/glibmm-2.4/glibmm/pattern.h + /usr/include/glibmm-2.4/glibmm/property.h + /usr/include/glibmm-2.4/glibmm/random.h + /usr/include/glibmm-2.4/glibmm/regex.h + /usr/include/glibmm-2.4/glibmm/shell.h + /usr/include/glibmm-2.4/glibmm/slisthandle.h + /usr/include/glibmm-2.4/glibmm/spawn.h + /usr/include/glibmm-2.4/glibmm/stringutils.h + /usr/include/glibmm-2.4/glibmm/threadpool.h + /usr/include/glibmm-2.4/glibmm/timer.h + /usr/include/glibmm-2.4/glibmm/uriutils.h + /usr/include/glibmm-2.4/glibmm/valuearray.h + /usr/include/glibmm-2.4/glibmm/variantdict.h + /usr/include/glibmm-2.4/glibmm/vectorutils.h + /usr/include/glibmm-2.4/glibmm/weakref.h + /usr/include/giomm-2.4/giomm.h + /usr/include/giomm-2.4/giomm/action.h + /usr/lib/giomm-2.4/include/giommconfig.h + /usr/include/glib-2.0/gio/gio.h + /usr/include/glib-2.0/gio/giotypes.h + /usr/include/glib-2.0/gio/gioenums.h + /usr/include/glib-2.0/gio/gaction.h + /usr/include/glib-2.0/gio/gactiongroup.h + /usr/include/glib-2.0/gio/gactiongroupexporter.h + /usr/include/glib-2.0/gio/gactionmap.h + /usr/include/glib-2.0/gio/gappinfo.h + /usr/include/glib-2.0/gio/gapplication.h + /usr/include/glib-2.0/gio/gapplicationcommandline.h + /usr/include/glib-2.0/gio/gasyncinitable.h + /usr/include/glib-2.0/gio/ginitable.h + /usr/include/glib-2.0/gio/gasyncresult.h + /usr/include/glib-2.0/gio/gbufferedinputstream.h + /usr/include/glib-2.0/gio/gfilterinputstream.h + /usr/include/glib-2.0/gio/ginputstream.h + /usr/include/glib-2.0/gio/gbufferedoutputstream.h + /usr/include/glib-2.0/gio/gfilteroutputstream.h + /usr/include/glib-2.0/gio/goutputstream.h + /usr/include/glib-2.0/gio/gbytesicon.h + /usr/include/glib-2.0/gio/gcancellable.h + /usr/include/glib-2.0/gio/gcharsetconverter.h + /usr/include/glib-2.0/gio/gconverter.h + /usr/include/glib-2.0/gio/gcontenttype.h + /usr/include/glib-2.0/gio/gconverterinputstream.h + /usr/include/glib-2.0/gio/gconverteroutputstream.h + /usr/include/glib-2.0/gio/gcredentials.h + /usr/include/glib-2.0/gio/gdatagrambased.h + /usr/include/glib-2.0/gio/gdatainputstream.h + /usr/include/glib-2.0/gio/gdataoutputstream.h + /usr/include/glib-2.0/gio/gdbusactiongroup.h + /usr/include/glib-2.0/gio/giotypes.h + /usr/include/glib-2.0/gio/gdbusaddress.h + /usr/include/glib-2.0/gio/gdbusauthobserver.h + /usr/include/glib-2.0/gio/gdbusconnection.h + /usr/include/glib-2.0/gio/gdbuserror.h + /usr/include/glib-2.0/gio/gdbusinterface.h + /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h + /usr/include/glib-2.0/gio/gdbusintrospection.h + /usr/include/glib-2.0/gio/gdbusmenumodel.h + /usr/include/glib-2.0/gio/gdbusmessage.h + /usr/include/glib-2.0/gio/gdbusmethodinvocation.h + /usr/include/glib-2.0/gio/gdbusnameowning.h + /usr/include/glib-2.0/gio/gdbusnamewatching.h + /usr/include/glib-2.0/gio/gdbusobject.h + /usr/include/glib-2.0/gio/gdbusobjectmanager.h + /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h + /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h + /usr/include/glib-2.0/gio/gdbusobjectproxy.h + /usr/include/glib-2.0/gio/gdbusobjectskeleton.h + /usr/include/glib-2.0/gio/gdbusproxy.h + /usr/include/glib-2.0/gio/gdbusserver.h + /usr/include/glib-2.0/gio/gdbusutils.h + /usr/include/glib-2.0/gio/gdebugcontroller.h + /usr/include/glib-2.0/gio/gdebugcontrollerdbus.h + /usr/include/glib-2.0/gio/gdrive.h + /usr/include/glib-2.0/gio/gdtlsclientconnection.h + /usr/include/glib-2.0/gio/gdtlsconnection.h + /usr/include/glib-2.0/gio/gdtlsserverconnection.h + /usr/include/glib-2.0/gio/gemblemedicon.h + /usr/include/glib-2.0/gio/gicon.h + /usr/include/glib-2.0/gio/gemblem.h + /usr/include/glib-2.0/gio/gfile.h + /usr/include/glib-2.0/gio/gfileattribute.h + /usr/include/glib-2.0/gio/gfileenumerator.h + /usr/include/glib-2.0/gio/gfileicon.h + /usr/include/glib-2.0/gio/gfileinfo.h + /usr/include/glib-2.0/gio/gfileinputstream.h + /usr/include/glib-2.0/gio/gfileiostream.h + /usr/include/glib-2.0/gio/giostream.h + /usr/include/glib-2.0/gio/gioerror.h + /usr/include/glib-2.0/gio/gfilemonitor.h + /usr/include/glib-2.0/gio/gfilenamecompleter.h + /usr/include/glib-2.0/gio/gfileoutputstream.h + /usr/include/glib-2.0/gio/ginetaddress.h + /usr/include/glib-2.0/gio/ginetaddressmask.h + /usr/include/glib-2.0/gio/ginetsocketaddress.h + /usr/include/glib-2.0/gio/gsocketaddress.h + /usr/include/glib-2.0/gio/gioenumtypes.h + /usr/include/glib-2.0/gio/giomodule.h + /usr/include/glib-2.0/gmodule.h + /usr/include/glib-2.0/gio/gioscheduler.h + /usr/include/glib-2.0/gio/glistmodel.h + /usr/include/glib-2.0/gio/gliststore.h + /usr/include/glib-2.0/gio/gloadableicon.h + /usr/include/glib-2.0/gio/gmemoryinputstream.h + /usr/include/glib-2.0/gio/gmemorymonitor.h + /usr/include/glib-2.0/gio/gmemoryoutputstream.h + /usr/include/glib-2.0/gio/gmenu.h + /usr/include/glib-2.0/gio/gmenumodel.h + /usr/include/glib-2.0/gio/gmenuexporter.h + /usr/include/glib-2.0/gio/gmount.h + /usr/include/glib-2.0/gio/gmountoperation.h + /usr/include/glib-2.0/gio/gnativesocketaddress.h + /usr/include/glib-2.0/gio/gnativevolumemonitor.h + /usr/include/glib-2.0/gio/gvolumemonitor.h + /usr/include/glib-2.0/gio/gnetworkaddress.h + /usr/include/glib-2.0/gio/gnetworkmonitor.h + /usr/include/glib-2.0/gio/gnetworkservice.h + /usr/include/glib-2.0/gio/gnotification.h + /usr/include/glib-2.0/gio/gpermission.h + /usr/include/glib-2.0/gio/gpollableinputstream.h + /usr/include/glib-2.0/gio/gpollableoutputstream.h + /usr/include/glib-2.0/gio/gpollableutils.h + /usr/include/glib-2.0/gio/gpowerprofilemonitor.h + /usr/include/glib-2.0/gio/gpropertyaction.h + /usr/include/glib-2.0/gio/gproxy.h + /usr/include/glib-2.0/gio/gproxyaddress.h + /usr/include/glib-2.0/gio/gproxyaddressenumerator.h + /usr/include/glib-2.0/gio/gsocketaddressenumerator.h + /usr/include/glib-2.0/gio/gproxyresolver.h + /usr/include/glib-2.0/gio/gremoteactiongroup.h + /usr/include/glib-2.0/gio/gresolver.h + /usr/include/glib-2.0/gio/gresource.h + /usr/include/glib-2.0/gio/gseekable.h + /usr/include/glib-2.0/gio/gsettings.h + /usr/include/glib-2.0/gio/gsettingsschema.h + /usr/include/glib-2.0/gio/gsimpleaction.h + /usr/include/glib-2.0/gio/gsimpleactiongroup.h + /usr/include/glib-2.0/gio/gactiongroup.h + /usr/include/glib-2.0/gio/gactionmap.h + /usr/include/glib-2.0/gio/gsimpleasyncresult.h + /usr/include/glib-2.0/gio/gsimpleiostream.h + /usr/include/glib-2.0/gio/gsimplepermission.h + /usr/include/glib-2.0/gio/gsimpleproxyresolver.h + /usr/include/glib-2.0/gio/gsocket.h + /usr/include/glib-2.0/gio/gsocketclient.h + /usr/include/glib-2.0/gio/gsocketconnectable.h + /usr/include/glib-2.0/gio/gsocketconnection.h + /usr/include/glib-2.0/gio/gsocketcontrolmessage.h + /usr/include/glib-2.0/gio/gsocketlistener.h + /usr/include/glib-2.0/gio/gsocketservice.h + /usr/include/glib-2.0/gio/gsrvtarget.h + /usr/include/glib-2.0/gio/gsubprocess.h + /usr/include/glib-2.0/gio/gsubprocesslauncher.h + /usr/include/glib-2.0/gio/gtask.h + /usr/include/glib-2.0/gio/gtcpconnection.h + /usr/include/glib-2.0/gio/gtcpwrapperconnection.h + /usr/include/glib-2.0/gio/gtestdbus.h + /usr/include/glib-2.0/gio/gthemedicon.h + /usr/include/glib-2.0/gio/gthreadedsocketservice.h + /usr/include/glib-2.0/gio/gtlsbackend.h + /usr/include/glib-2.0/gio/gtlscertificate.h + /usr/include/glib-2.0/gio/gtlsclientconnection.h + /usr/include/glib-2.0/gio/gtlsconnection.h + /usr/include/glib-2.0/gio/gtlsdatabase.h + /usr/include/glib-2.0/gio/gtlsfiledatabase.h + /usr/include/glib-2.0/gio/gtlsinteraction.h + /usr/include/glib-2.0/gio/gtlspassword.h + /usr/include/glib-2.0/gio/gtlsserverconnection.h + /usr/include/glib-2.0/gio/gvfs.h + /usr/include/glib-2.0/gio/gvolume.h + /usr/include/glib-2.0/gio/gzlibcompressor.h + /usr/include/glib-2.0/gio/gzlibdecompressor.h + /usr/include/glib-2.0/gio/gio-autocleanups.h + /usr/include/giomm-2.4/giomm/actiongroup.h + /usr/include/giomm-2.4/giomm/actionmap.h + /usr/include/giomm-2.4/giomm/simpleaction.h + /usr/include/giomm-2.4/giomm/appinfo.h + /usr/include/giomm-2.4/giomm/applaunchcontext.h + /usr/include/giomm-2.4/giomm/icon.h + /usr/include/giomm-2.4/giomm/asyncresult.h + /usr/include/giomm-2.4/giomm/cancellable.h + /usr/include/giomm-2.4/giomm/application.h + /usr/include/giomm-2.4/giomm/applicationcommandline.h + /usr/include/giomm-2.4/giomm/file.h + /usr/include/giomm-2.4/giomm/fileattributeinfolist.h + /usr/include/giomm-2.4/giomm/fileattributeinfo.h + /usr/include/giomm-2.4/giomm/fileenumerator.h + /usr/include/giomm-2.4/giomm/fileinfo.h + /usr/include/giomm-2.4/giomm/fileinputstream.h + /usr/include/giomm-2.4/giomm/inputstream.h + /usr/include/giomm-2.4/giomm/seekable.h + /usr/include/giomm-2.4/giomm/fileiostream.h + /usr/include/giomm-2.4/giomm/iostream.h + /usr/include/giomm-2.4/giomm/outputstream.h + /usr/include/giomm-2.4/giomm/filemonitor.h + /usr/include/giomm-2.4/giomm/fileoutputstream.h + /usr/include/giomm-2.4/giomm/mountoperation.h + /usr/include/giomm-2.4/giomm/drive.h + /usr/include/giomm-2.4/giomm/mount.h + /usr/include/giomm-2.4/giomm/error.h + /usr/include/giomm-2.4/giomm/dbusconnection.h + /usr/include/giomm-2.4/giomm/initable.h + /usr/include/giomm-2.4/giomm/asyncinitable.h + /usr/include/giomm-2.4/giomm/dbusauthobserver.h + /usr/include/giomm-2.4/giomm/credentials.h + /usr/include/giomm-2.4/giomm/dbusmethodinvocation.h + /usr/include/giomm-2.4/giomm/dbusmessage.h + /usr/include/giomm-2.4/giomm/unixfdlist.h + /usr/include/giomm-2.4/giomm/dbusintrospection.h + /usr/include/giomm-2.4/giomm/dbussubtreevtable.h + /usr/include/giomm-2.4/giomm/dbusinterfacevtable.h + /usr/include/giomm-2.4/giomm/notification.h + /usr/include/giomm-2.4/giomm/bufferedinputstream.h + /usr/include/giomm-2.4/giomm/filterinputstream.h + /usr/include/giomm-2.4/giomm/bufferedoutputstream.h + /usr/include/giomm-2.4/giomm/filteroutputstream.h + /usr/include/giomm-2.4/giomm/charsetconverter.h + /usr/include/giomm-2.4/giomm/converter.h + /usr/include/giomm-2.4/giomm/contenttype.h + /usr/include/giomm-2.4/giomm/converterinputstream.h + /usr/include/giomm-2.4/giomm/pollableinputstream.h + /usr/include/giomm-2.4/giomm/converteroutputstream.h + /usr/include/giomm-2.4/giomm/pollableoutputstream.h + /usr/include/giomm-2.4/giomm/datainputstream.h + /usr/include/giomm-2.4/giomm/enums.h + /usr/include/giomm-2.4/giomm/dataoutputstream.h + /usr/include/giomm-2.4/giomm/dbusactiongroup.h + /usr/include/giomm-2.4/giomm/remoteactiongroup.h + /usr/include/giomm-2.4/giomm/dbusaddress.h + /usr/include/giomm-2.4/giomm/dbuserror.h + /usr/include/giomm-2.4/giomm/dbuserrorutils.h + /usr/include/giomm-2.4/giomm/dbusinterface.h + /usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h + /usr/include/giomm-2.4/giomm/dbusmenumodel.h + /usr/include/giomm-2.4/giomm/menumodel.h + /usr/include/giomm-2.4/giomm/dbusobject.h + /usr/include/giomm-2.4/giomm/dbusobjectmanager.h + /usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h + /usr/include/giomm-2.4/giomm/dbusobjectproxy.h + /usr/include/giomm-2.4/giomm/dbusproxy.h + /usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h + /usr/include/giomm-2.4/giomm/dbusobjectskeleton.h + /usr/include/giomm-2.4/giomm/dbusownname.h + /usr/include/giomm-2.4/giomm/dbusserver.h + /usr/include/giomm-2.4/giomm/dbusutils.h + /usr/include/giomm-2.4/giomm/dbuswatchname.h + /usr/include/giomm-2.4/giomm/desktopappinfo.h + /usr/include/giomm-2.4/giomm/emblem.h + /usr/include/giomm-2.4/giomm/emblemedicon.h + /usr/include/giomm-2.4/giomm/fileicon.h + /usr/include/giomm-2.4/giomm/loadableicon.h + /usr/include/giomm-2.4/giomm/filenamecompleter.h + /usr/include/giomm-2.4/giomm/inetaddress.h + /usr/include/giomm-2.4/giomm/inetsocketaddress.h + /usr/include/giomm-2.4/giomm/socketaddress.h + /usr/include/giomm-2.4/giomm/socketconnectable.h + /usr/include/giomm-2.4/giomm/socketaddressenumerator.h + /usr/include/giomm-2.4/giomm/init.h + /usr/include/giomm-2.4/giomm/wrap_init.h + /usr/include/giomm-2.4/giomm/listmodel.h + /usr/include/giomm-2.4/giomm/liststore.h + /usr/include/giomm-2.4/giomm/memoryinputstream.h + /usr/include/giomm-2.4/giomm/memoryoutputstream.h + /usr/include/giomm-2.4/giomm/menu.h + /usr/include/giomm-2.4/giomm/menuitem.h + /usr/include/giomm-2.4/giomm/menuattributeiter.h + /usr/include/giomm-2.4/giomm/menulinkiter.h + /usr/include/giomm-2.4/giomm/networkaddress.h + /usr/include/giomm-2.4/giomm/networkmonitor.h + /usr/include/giomm-2.4/giomm/networkservice.h + /usr/include/giomm-2.4/giomm/permission.h + /usr/include/giomm-2.4/giomm/proxy.h + /usr/include/giomm-2.4/giomm/proxyaddress.h + /usr/include/giomm-2.4/giomm/proxyresolver.h + /usr/include/giomm-2.4/giomm/resolver.h + /usr/include/giomm-2.4/giomm/srvtarget.h + /usr/include/giomm-2.4/giomm/resource.h + /usr/include/giomm-2.4/giomm/settings.h + /usr/include/giomm-2.4/giomm/settingsschema.h + /usr/include/giomm-2.4/giomm/settingsschemakey.h + /usr/include/giomm-2.4/giomm/settingsschemasource.h + /usr/include/giomm-2.4/giomm/simpleactiongroup.h + /usr/include/giomm-2.4/giomm/simpleiostream.h + /usr/include/giomm-2.4/giomm/simplepermission.h + /usr/include/giomm-2.4/giomm/socket.h + /usr/include/giomm-2.4/giomm/socketclient.h + /usr/include/giomm-2.4/giomm/socketconnection.h + /usr/include/giomm-2.4/giomm/socketcontrolmessage.h + /usr/include/c++/11.2.0/set + /usr/include/c++/11.2.0/bits/stl_set.h + /usr/include/c++/11.2.0/bits/stl_multiset.h + /usr/include/giomm-2.4/giomm/socketlistener.h + /usr/include/giomm-2.4/giomm/socketservice.h + /usr/include/giomm-2.4/giomm/socketsource.h + /usr/include/giomm-2.4/giomm/tcpconnection.h + /usr/include/giomm-2.4/giomm/tcpwrapperconnection.h + /usr/include/giomm-2.4/giomm/themedicon.h + /usr/include/giomm-2.4/giomm/threadedsocketservice.h + /usr/include/giomm-2.4/giomm/tlscertificate.h + /usr/include/giomm-2.4/giomm/tlsclientconnection.h + /usr/include/giomm-2.4/giomm/tlsconnection.h + /usr/include/giomm-2.4/giomm/tlsdatabase.h + /usr/include/giomm-2.4/giomm/tlsinteraction.h + /usr/include/giomm-2.4/giomm/tlspassword.h + /usr/include/giomm-2.4/giomm/tlsserverconnection.h + /usr/include/giomm-2.4/giomm/unixconnection.h + /usr/include/giomm-2.4/giomm/unixcredentialsmessage.h + /usr/include/giomm-2.4/giomm/unixfdmessage.h + /usr/include/giomm-2.4/giomm/unixinputstream.h + /usr/include/giomm-2.4/giomm/unixoutputstream.h + /usr/include/giomm-2.4/giomm/unixsocketaddress.h + /usr/include/giomm-2.4/giomm/volume.h + /usr/include/giomm-2.4/giomm/volumemonitor.h + /usr/include/giomm-2.4/giomm/zlibcompressor.h + /usr/include/giomm-2.4/giomm/zlibdecompressor.h + /usr/include/gdkmm-3.0/gdkmm/dragcontext.h + /usr/include/gdkmm-3.0/gdkmm/color.h + /usr/lib/gdkmm-3.0/include/gdkmmconfig.h + /usr/lib/pangomm-1.4/include/pangommconfig.h + /usr/include/gtk-3.0/gdk/gdk.h + /usr/include/gtk-3.0/gdk/gdkconfig.h + /usr/include/gtk-3.0/gdk/gdkversionmacros.h + /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h + /usr/include/gtk-3.0/gdk/gdktypes.h + /usr/include/pango-1.0/pango/pango.h + /usr/include/pango-1.0/pango/pango-attributes.h + /usr/include/pango-1.0/pango/pango-font.h + /usr/include/pango-1.0/pango/pango-coverage.h + /usr/include/pango-1.0/pango/pango-version-macros.h + /usr/include/pango-1.0/pango/pango-features.h + /usr/include/harfbuzz/hb.h + /usr/include/harfbuzz/hb-blob.h + /usr/include/harfbuzz/hb-common.h + /usr/include/harfbuzz/hb-buffer.h + /usr/include/harfbuzz/hb-unicode.h + /usr/include/harfbuzz/hb-font.h + /usr/include/harfbuzz/hb-face.h + /usr/include/harfbuzz/hb-set.h + /usr/include/harfbuzz/hb-draw.h + /usr/include/harfbuzz/hb.h + /usr/include/harfbuzz/hb-deprecated.h + /usr/include/harfbuzz/hb-map.h + /usr/include/harfbuzz/hb-shape.h + /usr/include/harfbuzz/hb-shape-plan.h + /usr/include/harfbuzz/hb-style.h + /usr/include/harfbuzz/hb-version.h + /usr/include/pango-1.0/pango/pango-types.h + /usr/include/pango-1.0/pango/pango-gravity.h + /usr/include/pango-1.0/pango/pango-matrix.h + /usr/include/pango-1.0/pango/pango-script.h + /usr/include/pango-1.0/pango/pango-language.h + /usr/include/pango-1.0/pango/pango-bidi-type.h + /usr/include/pango-1.0/pango/pango-direction.h + /usr/include/pango-1.0/pango/pango-color.h + /usr/include/pango-1.0/pango/pango-break.h + /usr/include/pango-1.0/pango/pango-item.h + /usr/include/pango-1.0/pango/pango-context.h + /usr/include/pango-1.0/pango/pango-fontmap.h + /usr/include/pango-1.0/pango/pango-fontset.h + /usr/include/pango-1.0/pango/pango-engine.h + /usr/include/pango-1.0/pango/pango-glyph.h + /usr/include/pango-1.0/pango/pango-enum-types.h + /usr/include/pango-1.0/pango/pango-fontset-simple.h + /usr/include/pango-1.0/pango/pango-glyph-item.h + /usr/include/pango-1.0/pango/pango-layout.h + /usr/include/pango-1.0/pango/pango-tabs.h + /usr/include/pango-1.0/pango/pango-markup.h + /usr/include/pango-1.0/pango/pango-renderer.h + /usr/include/pango-1.0/pango/pango-utils.h + /usr/include/cairo/cairo.h + /usr/include/cairo/cairo-version.h + /usr/include/cairo/cairo-features.h + /usr/include/cairo/cairo-deprecated.h + /usr/include/gtk-3.0/gdk/gdkscreen.h + /usr/include/gtk-3.0/gdk/gdkdisplay.h + /usr/include/gtk-3.0/gdk/gdkevents.h + /usr/include/gtk-3.0/gdk/gdkdnd.h + /usr/include/gtk-3.0/gdk/gdkdevice.h + /usr/include/gtk-3.0/gdk/gdkdevicetool.h + /usr/include/gtk-3.0/gdk/gdkdevicemanager.h + /usr/include/gtk-3.0/gdk/gdkseat.h + /usr/include/gtk-3.0/gdk/gdkwindow.h + /usr/include/gtk-3.0/gdk/gdkdrawingcontext.h + /usr/include/gtk-3.0/gdk/gdkframeclock.h + /usr/include/gtk-3.0/gdk/gdkframetimings.h + /usr/include/gtk-3.0/gdk/gdkmonitor.h + /usr/include/gtk-3.0/gdk/gdkrectangle.h + /usr/include/gtk-3.0/gdk/gdkcairo.h + /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h + /usr/include/gtk-3.0/gdk/gdkrgba.h + /usr/include/gtk-3.0/gdk/gdkpixbuf.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h + /usr/include/pango-1.0/pango/pangocairo.h + /usr/include/gtk-3.0/gdk/gdkcursor.h + /usr/include/gtk-3.0/gdk/gdkdevicepad.h + /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h + /usr/include/gtk-3.0/gdk/gdkenumtypes.h + /usr/include/gtk-3.0/gdk/gdkglcontext.h + /usr/include/gtk-3.0/gdk/gdkkeys.h + /usr/include/gtk-3.0/gdk/gdkkeysyms.h + /usr/include/gtk-3.0/gdk/gdkmain.h + /usr/include/gtk-3.0/gdk/gdkpango.h + /usr/include/gtk-3.0/gdk/gdkproperty.h + /usr/include/gtk-3.0/gdk/gdkselection.h + /usr/include/gtk-3.0/gdk/gdktestutils.h + /usr/include/gtk-3.0/gdk/gdkthreads.h + /usr/include/gtk-3.0/gdk/gdkvisual.h + /usr/include/gtk-3.0/gdk/gdk-autocleanup.h + /usr/include/gdkmm-3.0/gdkmm/pixbuf.h + /usr/include/gdkmm-3.0/gdkmm/pixbufformat.h + /usr/include/gdkmm-3.0/gdkmm/types.h + /usr/include/cairomm-1.0/cairomm/surface.h + /usr/include/cairomm-1.0/cairomm/enums.h + /usr/include/cairo/cairo-ft.h + /usr/include/cairo/cairo.h + /usr/include/freetype2/ft2build.h + /usr/include/freetype2/freetype/config/ftheader.h + /usr/include/freetype2/freetype/freetype.h + /usr/include/freetype2/freetype/config/ftconfig.h + /usr/include/freetype2/freetype/config/ftoption.h + /usr/include/freetype2/freetype/config/ftstdlib.h + /usr/include/setjmp.h + /usr/include/freetype2/freetype/config/integer-types.h + /usr/include/freetype2/freetype/config/public-macros.h + /usr/include/freetype2/freetype/config/mac-support.h + /usr/include/freetype2/freetype/fttypes.h + /usr/include/freetype2/freetype/ftsystem.h + /usr/include/freetype2/freetype/ftimage.h + /usr/include/freetype2/freetype/fterrors.h + /usr/include/freetype2/freetype/ftmoderr.h + /usr/include/freetype2/freetype/fterrdef.h + /usr/include/fontconfig/fontconfig.h + /usr/include/sys/stat.h + /usr/include/bits/stat.h + /usr/include/bits/struct_stat.h + /usr/include/bits/statx.h + /usr/include/linux/stat.h + /usr/include/linux/types.h + /usr/include/asm/types.h + /usr/include/asm-generic/types.h + /usr/include/asm-generic/int-ll64.h + /usr/include/asm/bitsperlong.h + /usr/include/asm-generic/bitsperlong.h + /usr/include/linux/posix_types.h + /usr/include/linux/stddef.h + /usr/include/asm/posix_types.h + /usr/include/asm/posix_types_64.h + /usr/include/asm-generic/posix_types.h + /usr/include/bits/statx-generic.h + /usr/include/bits/types/struct_statx_timestamp.h + /usr/include/bits/types/struct_statx.h + /usr/include/cairomm-1.0/cairomm/exception.h + /usr/lib/cairomm-1.0/include/cairommconfig.h + /usr/include/cairomm-1.0/cairomm/device.h + /usr/include/cairomm-1.0/cairomm/types.h + /usr/include/cairomm-1.0/cairomm/refptr.h + /usr/include/cairomm-1.0/cairomm/fontoptions.h + /usr/include/cairo/cairo-pdf.h + /usr/include/cairo/cairo-ps.h + /usr/include/cairo/cairo-svg.h + /usr/include/gdkmm-3.0/gdkmm/device.h + /usr/include/gdkmm-3.0/gdkmm/cursor.h + /usr/include/gdkmm-3.0/gdkmm/display.h + /usr/include/gdkmm-3.0/gdkmm/screen.h + /usr/include/gdkmm-3.0/gdkmm/rectangle.h + /usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h + /usr/include/gdkmm-3.0/gdkmm/event.h + /usr/include/gdkmm-3.0/gdkmm/timecoord.h + /usr/include/gdkmm-3.0/gdkmm.h + /usr/include/gdkmm-3.0/gdkmm/visual.h + /usr/include/gdkmm-3.0/gdkmm/window.h + /usr/include/cairomm-1.0/cairomm/region.h + /usr/include/cairomm-1.0/cairomm/pattern.h + /usr/include/gdkmm-3.0/gdkmm/rgba.h + /usr/include/cairomm-1.0/cairomm/context.h + /usr/include/cairomm-1.0/cairomm/fontface.h + /usr/include/cairomm-1.0/cairomm/matrix.h + /usr/include/cairomm-1.0/cairomm/path.h + /usr/include/cairomm-1.0/cairomm/scaledfont.h + /usr/include/c++/11.2.0/valarray + /usr/include/c++/11.2.0/cmath + /usr/include/math.h + /usr/include/bits/math-vector.h + /usr/include/bits/libm-simd-decl-stubs.h + /usr/include/bits/flt-eval-method.h + /usr/include/bits/fp-logb.h + /usr/include/bits/fp-fast.h + /usr/include/bits/mathcalls-helper-functions.h + /usr/include/bits/mathcalls.h + /usr/include/bits/mathcalls-narrow.h + /usr/include/bits/iscanonical.h + /usr/include/c++/11.2.0/bits/specfun.h + /usr/include/c++/11.2.0/tr1/gamma.tcc + /usr/include/c++/11.2.0/tr1/special_function_util.h + /usr/include/c++/11.2.0/tr1/bessel_function.tcc + /usr/include/c++/11.2.0/tr1/beta_function.tcc + /usr/include/c++/11.2.0/tr1/ell_integral.tcc + /usr/include/c++/11.2.0/tr1/exp_integral.tcc + /usr/include/c++/11.2.0/tr1/hypergeometric.tcc + /usr/include/c++/11.2.0/tr1/legendre_function.tcc + /usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc + /usr/include/c++/11.2.0/tr1/poly_hermite.tcc + /usr/include/c++/11.2.0/tr1/poly_laguerre.tcc + /usr/include/c++/11.2.0/tr1/riemann_zeta.tcc + /usr/include/c++/11.2.0/bits/valarray_array.h + /usr/include/c++/11.2.0/bits/valarray_array.tcc + /usr/include/c++/11.2.0/bits/valarray_before.h + /usr/include/c++/11.2.0/bits/slice_array.h + /usr/include/c++/11.2.0/bits/valarray_after.h + /usr/include/c++/11.2.0/bits/gslice.h + /usr/include/c++/11.2.0/bits/gslice_array.h + /usr/include/c++/11.2.0/bits/mask_array.h + /usr/include/c++/11.2.0/bits/indirect_array.h + /usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h + /usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h + /usr/include/gdkmm-3.0/gdkmm/pixbufloader.h + /usr/include/gdkmm-3.0/gdkmm/drawingcontext.h + /usr/include/gdkmm-3.0/gdkmm/frameclock.h + /usr/include/gdkmm-3.0/gdkmm/frametimings.h + /usr/include/gdkmm-3.0/gdkmm/glcontext.h + /usr/include/gdkmm-3.0/gdkmm/displaymanager.h + /usr/include/gdkmm-3.0/gdkmm/devicemanager.h + /usr/include/gdkmm-3.0/gdkmm/seat.h + /usr/include/gdkmm-3.0/gdkmm/monitor.h + /usr/include/gdkmm-3.0/gdkmm/general.h + /usr/include/gtkmm-3.0/gtkmm/toggleaction.h + /usr/include/gtkmm-3.0/gtkmm/action.h + /usr/lib/gtkmm-3.0/include/gtkmmconfig.h + /usr/include/gtkmm-3.0/gtkmm/widget.h + /usr/include/pangomm-1.4/pangomm/context.h + /usr/include/pangomm-1.4/pangomm/fontdescription.h + /usr/include/pangomm-1.4/pangomm/fontmetrics.h + /usr/include/pangomm-1.4/pangomm/fontset.h + /usr/include/pangomm-1.4/pangomm/language.h + /usr/include/pangomm-1.4/pangomm/font.h + /usr/include/pangomm-1.4/pangomm/rectangle.h + /usr/include/pangomm-1.4/pangomm/glyph.h + /usr/include/pangomm-1.4/pangomm/coverage.h + /usr/include/pangomm-1.4/pangomm/fontmap.h + /usr/include/pangomm-1.4/pangomm/fontfamily.h + /usr/include/pangomm-1.4/pangomm/fontface.h + /usr/include/pangomm-1.4/pangomm/item.h + /usr/include/pangomm-1.4/pangomm/attributes.h + /usr/include/pangomm-1.4/pangomm/color.h + /usr/include/pangomm-1.4/pangomm/attrlist.h + /usr/include/pangomm-1.4/pangomm/attriter.h + /usr/include/pangomm-1.4/pangomm/types.h + /usr/include/pangomm-1.4/pangomm/layout.h + /usr/include/pangomm-1.4/pangomm/tabarray.h + /usr/include/pangomm-1.4/pangomm/layoutline.h + /usr/include/pangomm-1.4/pangomm/layoutiter.h + /usr/include/pangomm-1.4/pangomm/layoutrun.h + /usr/include/atkmm-1.6/atkmm/object.h + /usr/include/atkmm-1.6/atkmm/component.h + /usr/lib/atkmm-1.6/include/atkmmconfig.h + /usr/include/atkmm-1.6/atkmm/relation.h + /usr/include/atkmm-1.6/atkmm/implementor.h + /usr/include/gtkmm-3.0/gtkmm/object.h + /usr/include/gtkmm-3.0/gtkmm/base.h + /usr/include/gtkmm-3.0/gtkmm/buildable.h + /usr/include/gtkmm-3.0/gtkmm/enums.h + /usr/include/gtk-3.0/gtk/gtk.h + /usr/include/gtk-3.0/gtk/gtkaboutdialog.h + /usr/include/gtk-3.0/gtk/gtkdialog.h + /usr/include/gtk-3.0/gtk/gtkwindow.h + /usr/include/gtk-3.0/gtk/gtkapplication.h + /usr/include/gtk-3.0/gtk/gtkwidget.h + /usr/include/gtk-3.0/gtk/gtkaccelgroup.h + /usr/include/gtk-3.0/gtk/gtkenums.h + /usr/include/gtk-3.0/gtk/gtkborder.h + /usr/include/gtk-3.0/gtk/gtktypes.h + /usr/include/atk-1.0/atk/atk.h + /usr/include/atk-1.0/atk/atkobject.h + /usr/include/atk-1.0/atk/atkversion.h + /usr/include/atk-1.0/atk/atkstate.h + /usr/include/atk-1.0/atk/atkrelationtype.h + /usr/include/atk-1.0/atk/atkaction.h + /usr/include/atk-1.0/atk/atkcomponent.h + /usr/include/atk-1.0/atk/atkutil.h + /usr/include/atk-1.0/atk/atkdocument.h + /usr/include/atk-1.0/atk/atkeditabletext.h + /usr/include/atk-1.0/atk/atktext.h + /usr/include/atk-1.0/atk/atk-enum-types.h + /usr/include/atk-1.0/atk/atkgobjectaccessible.h + /usr/include/atk-1.0/atk/atkhyperlink.h + /usr/include/atk-1.0/atk/atkhyperlinkimpl.h + /usr/include/atk-1.0/atk/atkhypertext.h + /usr/include/atk-1.0/atk/atkimage.h + /usr/include/atk-1.0/atk/atknoopobject.h + /usr/include/atk-1.0/atk/atknoopobjectfactory.h + /usr/include/atk-1.0/atk/atkobjectfactory.h + /usr/include/atk-1.0/atk/atkplug.h + /usr/include/atk-1.0/atk/atkrange.h + /usr/include/atk-1.0/atk/atkregistry.h + /usr/include/atk-1.0/atk/atkobjectfactory.h + /usr/include/atk-1.0/atk/atkrelation.h + /usr/include/atk-1.0/atk/atkrelationset.h + /usr/include/atk-1.0/atk/atkselection.h + /usr/include/atk-1.0/atk/atksocket.h + /usr/include/atk-1.0/atk/atkstateset.h + /usr/include/atk-1.0/atk/atkstreamablecontent.h + /usr/include/atk-1.0/atk/atktable.h + /usr/include/atk-1.0/atk/atktablecell.h + /usr/include/atk-1.0/atk/atkmisc.h + /usr/include/atk-1.0/atk/atkvalue.h + /usr/include/atk-1.0/atk/atkwindow.h + /usr/include/atk-1.0/atk/atk-autocleanups.h + /usr/include/gtk-3.0/gtk/gtkbin.h + /usr/include/gtk-3.0/gtk/gtkcontainer.h + /usr/include/gtk-3.0/gtk/gtkaccellabel.h + /usr/include/gtk-3.0/gtk/gtklabel.h + /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h + /usr/include/gtk-3.0/gtk/gtkmenu.h + /usr/include/gtk-3.0/gtk/gtkmenushell.h + /usr/include/gtk-3.0/gtk/gtkaccelmap.h + /usr/include/gtk-3.0/gtk/gtkaccessible.h + /usr/include/gtk-3.0/gtk/gtkactionable.h + /usr/include/gtk-3.0/gtk/gtkactionbar.h + /usr/include/gtk-3.0/gtk/gtkadjustment.h + /usr/include/gtk-3.0/gtk/gtkappchooser.h + /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h + /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h + /usr/include/gtk-3.0/gtk/gtkbox.h + /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h + /usr/include/gtk-3.0/gtk/gtkcombobox.h + /usr/include/gtk-3.0/gtk/gtktreemodel.h + /usr/include/gtk-3.0/gtk/gtktreeview.h + /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h + /usr/include/gtk-3.0/gtk/gtkcellrenderer.h + /usr/include/gtk-3.0/gtk/gtkcelleditable.h + /usr/include/gtk-3.0/gtk/gtktreesortable.h + /usr/include/gtk-3.0/gtk/gtkcellarea.h + /usr/include/gtk-3.0/gtk/gtkdnd.h + /usr/include/gtk-3.0/gtk/gtkselection.h + /usr/include/gtk-3.0/gtk/gtktextiter.h + /usr/include/gtk-3.0/gtk/gtktextattributes.h + /usr/include/gtk-3.0/gtk/gtktextchild.h + /usr/include/gtk-3.0/gtk/gtktexttag.h + /usr/include/gtk-3.0/gtk/gtkentry.h + /usr/include/gtk-3.0/gtk/gtkeditable.h + /usr/include/gtk-3.0/gtk/gtkimcontext.h + /usr/include/gtk-3.0/gtk/gtkentrybuffer.h + /usr/include/gtk-3.0/gtk/gtkentrycompletion.h + /usr/include/gtk-3.0/gtk/gtkliststore.h + /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h + /usr/include/gtk-3.0/gtk/gtkimage.h + /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h + /usr/include/gtk-3.0/gtk/gtkshortcutswindow.h + /usr/include/gtk-3.0/gtk/gtkaspectframe.h + /usr/include/gtk-3.0/gtk/gtkframe.h + /usr/include/gtk-3.0/gtk/gtkassistant.h + /usr/include/gtk-3.0/gtk/gtkbbox.h + /usr/include/gtk-3.0/gtk/gtkbindings.h + /usr/include/gtk-3.0/gtk/gtkbuildable.h + /usr/include/gtk-3.0/gtk/gtkbuilder.h + /usr/include/gtk-3.0/gtk/gtkbutton.h + /usr/include/gtk-3.0/gtk/gtkcalendar.h + /usr/include/gtk-3.0/gtk/gtkcellareabox.h + /usr/include/gtk-3.0/gtk/gtkcellareacontext.h + /usr/include/gtk-3.0/gtk/gtkcelllayout.h + /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h + /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h + /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h + /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h + /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h + /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h + /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h + /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h + /usr/include/gtk-3.0/gtk/gtkcellview.h + /usr/include/gtk-3.0/gtk/gtkcheckbutton.h + /usr/include/gtk-3.0/gtk/gtktogglebutton.h + /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h + /usr/include/gtk-3.0/gtk/gtkmenuitem.h + /usr/include/gtk-3.0/gtk/gtkclipboard.h + /usr/include/gtk-3.0/gtk/gtkcolorbutton.h + /usr/include/gtk-3.0/gtk/gtkcolorchooser.h + /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h + /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h + /usr/include/gtk-3.0/gtk/gtkcolorutils.h + /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h + /usr/include/gtk-3.0/gtk/gtkcssprovider.h + /usr/include/gtk-3.0/gtk/gtkcsssection.h + /usr/include/gtk-3.0/gtk/gtkdebug.h + /usr/include/gtk-3.0/gtk/gtkdragdest.h + /usr/include/gtk-3.0/gtk/gtkdragsource.h + /usr/include/gtk-3.0/gtk/gtkdrawingarea.h + /usr/include/gtk-3.0/gtk/gtkeventbox.h + /usr/include/gtk-3.0/gtk/gtkeventcontroller.h + /usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h + /usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h + /usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h + /usr/include/gtk-3.0/gtk/gtkexpander.h + /usr/include/gtk-3.0/gtk/gtkfixed.h + /usr/include/gtk-3.0/gtk/gtkfilechooser.h + /usr/include/gtk-3.0/gtk/gtkfilefilter.h + /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h + /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h + /usr/include/gtk-3.0/gtk/gtkfilechoosernative.h + /usr/include/gtk-3.0/gtk/gtknativedialog.h + /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h + /usr/include/gtk-3.0/gtk/gtkflowbox.h + /usr/include/gtk-3.0/gtk/gtkfontbutton.h + /usr/include/gtk-3.0/gtk/gtkfontchooser.h + /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h + /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h + /usr/include/gtk-3.0/gtk/gtkgesture.h + /usr/include/gtk-3.0/gtk/gtkgesturedrag.h + /usr/include/gtk-3.0/gtk/gtkgesturesingle.h + /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h + /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h + /usr/include/gtk-3.0/gtk/gtkgesturepan.h + /usr/include/gtk-3.0/gtk/gtkgesturerotate.h + /usr/include/gtk-3.0/gtk/gtkgesturestylus.h + /usr/include/gtk-3.0/gtk/gtkgestureswipe.h + /usr/include/gtk-3.0/gtk/gtkgesturezoom.h + /usr/include/gtk-3.0/gtk/gtkglarea.h + /usr/include/gtk-3.0/gtk/gtkgrid.h + /usr/include/gtk-3.0/gtk/gtkheaderbar.h + /usr/include/gtk-3.0/gtk/gtkicontheme.h + /usr/include/gtk-3.0/gtk/gtkstylecontext.h + /usr/include/gtk-3.0/gtk/gtkstyleprovider.h + /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h + /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h + /usr/include/gtk-3.0/gtk/gtkiconview.h + /usr/include/gtk-3.0/gtk/gtktooltip.h + /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h + /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h + /usr/include/gtk-3.0/gtk/gtkimmulticontext.h + /usr/include/gtk-3.0/gtk/gtkinfobar.h + /usr/include/gtk-3.0/gtk/gtkinvisible.h + /usr/include/gtk-3.0/gtk/gtklayout.h + /usr/include/gtk-3.0/gtk/gtklevelbar.h + /usr/include/gtk-3.0/gtk/gtklinkbutton.h + /usr/include/gtk-3.0/gtk/gtklistbox.h + /usr/include/gtk-3.0/gtk/gtklockbutton.h + /usr/include/gtk-3.0/gtk/gtkmain.h + /usr/include/gtk-3.0/gtk/gtkmenubar.h + /usr/include/gtk-3.0/gtk/gtkmenubutton.h + /usr/include/gtk-3.0/gtk/gtkpopover.h + /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h + /usr/include/gtk-3.0/gtk/gtktoolbutton.h + /usr/include/gtk-3.0/gtk/gtktoolitem.h + /usr/include/gtk-3.0/gtk/gtksizegroup.h + /usr/include/gtk-3.0/gtk/gtkmessagedialog.h + /usr/include/gtk-3.0/gtk/gtkmodelbutton.h + /usr/include/gtk-3.0/gtk/gtkmodules.h + /usr/include/gtk-3.0/gtk/gtkmountoperation.h + /usr/include/gtk-3.0/gtk/gtknotebook.h + /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h + /usr/include/gtk-3.0/gtk/gtkorientable.h + /usr/include/gtk-3.0/gtk/gtkoverlay.h + /usr/include/gtk-3.0/gtk/gtkpadcontroller.h + /usr/include/gtk-3.0/gtk/gtkpagesetup.h + /usr/include/gtk-3.0/gtk/gtkpapersize.h + /usr/include/gtk-3.0/gtk/gtkpaned.h + /usr/include/gtk-3.0/gtk/gtkplacessidebar.h + /usr/include/gtk-3.0/gtk/gtkpopovermenu.h + /usr/include/gtk-3.0/gtk/gtkprintcontext.h + /usr/include/gtk-3.0/gtk/gtkprintoperation.h + /usr/include/gtk-3.0/gtk/gtkprintsettings.h + /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h + /usr/include/gtk-3.0/gtk/gtkprogressbar.h + /usr/include/gtk-3.0/gtk/gtkradiobutton.h + /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h + /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h + /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h + /usr/include/gtk-3.0/gtk/gtkrange.h + /usr/include/gtk-3.0/gtk/gtkrecentchooser.h + /usr/include/gtk-3.0/gtk/gtkrecentmanager.h + /usr/include/gtk-3.0/gtk/gtkrecentfilter.h + /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h + /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h + /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h + /usr/include/gtk-3.0/gtk/gtkrender.h + /usr/include/gtk-3.0/gtk/gtkrevealer.h + /usr/include/gtk-3.0/gtk/gtkscale.h + /usr/include/gtk-3.0/gtk/gtkscalebutton.h + /usr/include/gtk-3.0/gtk/gtkscrollable.h + /usr/include/gtk-3.0/gtk/gtkscrollbar.h + /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h + /usr/include/gtk-3.0/gtk/gtksearchbar.h + /usr/include/gtk-3.0/gtk/gtksearchentry.h + /usr/include/gtk-3.0/gtk/gtkseparator.h + /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h + /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h + /usr/include/gtk-3.0/gtk/gtksettings.h + /usr/include/gtk-3.0/gtk/gtkshortcutlabel.h + /usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h + /usr/include/gtk-3.0/gtk/gtkshortcutssection.h + /usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h + /usr/include/gtk-3.0/gtk/gtkshow.h + /usr/include/gtk-3.0/gtk/gtkstacksidebar.h + /usr/include/gtk-3.0/gtk/gtkstack.h + /usr/include/gtk-3.0/gtk/gtksizerequest.h + /usr/include/gtk-3.0/gtk/gtkspinbutton.h + /usr/include/gtk-3.0/gtk/gtkspinner.h + /usr/include/gtk-3.0/gtk/gtkstackswitcher.h + /usr/include/gtk-3.0/gtk/gtkstatusbar.h + /usr/include/gtk-3.0/gtk/gtkswitch.h + /usr/include/gtk-3.0/gtk/gtktextbuffer.h + /usr/include/gtk-3.0/gtk/gtktexttagtable.h + /usr/include/gtk-3.0/gtk/gtktextmark.h + /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h + /usr/include/gtk-3.0/gtk/gtktextview.h + /usr/include/gtk-3.0/gtk/gtktoolbar.h + /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h + /usr/include/gtk-3.0/gtk/gtktoolpalette.h + /usr/include/gtk-3.0/gtk/gtktoolshell.h + /usr/include/gtk-3.0/gtk/gtktestutils.h + /usr/include/gtk-3.0/gtk/gtktreednd.h + /usr/include/gtk-3.0/gtk/gtktreemodelsort.h + /usr/include/gtk-3.0/gtk/gtktreeselection.h + /usr/include/gtk-3.0/gtk/gtktreestore.h + /usr/include/gtk-3.0/gtk/gtktypebuiltins.h + /usr/include/gtk-3.0/gtk/gtkversion.h + /usr/include/gtk-3.0/gtk/gtkviewport.h + /usr/include/gtk-3.0/gtk/gtkvolumebutton.h + /usr/include/gtk-3.0/gtk/gtkwidgetpath.h + /usr/include/gtk-3.0/gtk/gtkwindowgroup.h + /usr/include/gtk-3.0/gtk/gtkwindow.h + /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h + /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h + /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h + /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h + /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h + /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h + /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h + /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h + /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h + /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h + /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h + /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h + /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h + /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h + /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h + /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h + /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h + /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h + /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h + /usr/include/gtk-3.0/gtk/deprecated/gtktable.h + /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h + /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h + /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h + /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h + /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h + /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h + /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h + /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h + /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h + /usr/include/gtk-3.0/gtk/gtk-autocleanups.h + /usr/include/gtkmm-3.0/gtkmm/targetlist.h + /usr/include/gtkmm-3.0/gtkmm/targetentry.h + /usr/include/gtkmm-3.0/gtkmm/clipboard.h + /usr/include/gtkmm-3.0/gtkmm/selectiondata.h + /usr/include/gtkmm-3.0/gtkmm/requisition.h + /usr/include/gtkmm-3.0/gtkmm/stylecontext.h + /usr/include/gtkmm-3.0/gtkmm/styleprovider.h + /usr/include/gtkmm-3.0/gtkmm/border.h + /usr/include/gtkmm-3.0/gtkmm/iconsource.h + /usr/include/gtkmm-3.0/gtkmm/iconset.h + /usr/include/gtkmm-3.0/gtkmm/stockid.h + /usr/include/gtkmm-3.0/gtkmm/widgetpath.h + /usr/include/gtkmm-3.0/gtkmm/accelgroup.h + /usr/include/gtkmm-3.0/gtkmm/radioaction.h + /usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h + /usr/include/gtkmm-3.0/gtkmm/aboutdialog.h + /usr/include/gtkmm-3.0/gtkmm/dialog.h + /usr/include/gtkmm-3.0/gtkmm/window.h + /usr/include/gtkmm-3.0/gtkmm/bin.h + /usr/include/gtkmm-3.0/gtkmm/container.h + /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h + /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h + /usr/include/gtkmm-3.0/gtkmm/application.h + /usr/include/gtkmm-3.0/gtkmm/actiongroup.h + /usr/include/gtkmm-3.0/gtkmm/accelkey.h + /usr/include/gtkmm-3.0/gtkmm/windowgroup.h + /usr/include/gtkmm-3.0/gtkmm/box.h + /usr/include/gtkmm-3.0/gtkmm/orientable.h + /usr/include/gtkmm-3.0/gtkmm/hvbox.h + /usr/include/gtkmm-3.0/gtkmm/button.h + /usr/include/gtkmm-3.0/gtkmm/activatable.h + /usr/include/gtkmm-3.0/gtkmm/buttonbox.h + /usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h + /usr/include/gtkmm-3.0/gtkmm/headerbar.h + /usr/include/gtkmm-3.0/gtkmm/accelmap.h + /usr/include/gtkmm-3.0/gtkmm/actionable.h + /usr/include/gtkmm-3.0/gtkmm/actionbar.h + /usr/include/gtkmm-3.0/gtkmm/adjustment.h + /usr/include/gtkmm-3.0/gtkmm/alignment.h + /usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h + /usr/include/gtkmm-3.0/gtkmm/appchooser.h + /usr/include/gtkmm-3.0/gtkmm/combobox.h + /usr/include/gtkmm-3.0/gtkmm/celllayout.h + /usr/include/gtkmm-3.0/gtkmm/cellrenderer.h + /usr/include/gtkmm-3.0/gtkmm/celleditable.h + /usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h + /usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h + /usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h + /usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h + /usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h + /usr/include/gtkmm-3.0/gtkmm/treemodel.h + /usr/include/gtkmm-3.0/gtkmm/treeiter.h + /usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h + /usr/include/gtkmm-3.0/gtkmm/cellarea.h + /usr/include/gtkmm-3.0/gtkmm/cellareacontext.h + /usr/include/gtkmm-3.0/gtkmm/treeview.h + /usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h + /usr/include/gtkmm-3.0/gtkmm/treeselection.h + /usr/include/gtkmm-3.0/gtkmm/treepath.h + /usr/include/gtkmm-3.0/gtkmm/scrollable.h + /usr/include/gtkmm-3.0/gtkmm/entry.h + /usr/include/gtkmm-3.0/gtkmm/editable.h + /usr/include/gtkmm-3.0/gtkmm/menu.h + /usr/include/gtkmm-3.0/gtkmm/menushell.h + /usr/include/gtkmm-3.0/gtkmm/menuitem.h + /usr/include/gtkmm-3.0/gtkmm/accellabel.h + /usr/include/gtkmm-3.0/gtkmm/label.h + /usr/include/gtkmm-3.0/gtkmm/misc.h + /usr/include/gtkmm-3.0/gtkmm/entrycompletion.h + /usr/include/gtkmm-3.0/gtkmm/image.h + /usr/include/gtkmm-3.0/gtkmm/entrybuffer.h + /usr/include/gtkmm-3.0/gtkmm/tooltip.h + /usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h + /usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h + /usr/include/gtkmm-3.0/gtkmm/applicationwindow.h + /usr/include/gtkmm-3.0/gtkmm/arrow.h + /usr/include/gtkmm-3.0/gtkmm/aspectframe.h + /usr/include/gtkmm-3.0/gtkmm/frame.h + /usr/include/gtkmm-3.0/gtkmm/assistant.h + /usr/include/gtkmm-3.0/gtkmm/builder.h + /usr/include/gtkmm-3.0/gtkmm/cellareabox.h + /usr/include/gtkmm-3.0/gtkmm/cellview.h + /usr/include/gtkmm-3.0/gtkmm/checkbutton.h + /usr/include/gtkmm-3.0/gtkmm/togglebutton.h + /usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h + /usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h + /usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h + /usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h + /usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h + /usr/include/gtkmm-3.0/gtkmm/colorbutton.h + /usr/include/gtkmm-3.0/gtkmm/colorchooser.h + /usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h + /usr/include/gtkmm-3.0/gtkmm/colorselection.h + /usr/include/gtkmm-3.0/gtkmm/comboboxtext.h + /usr/include/gtkmm-3.0/gtkmm/cssprovider.h + /usr/include/gtkmm-3.0/gtkmm/csssection.h + /usr/include/gtkmm-3.0/gtkmm/drawingarea.h + /usr/include/gtkmm-3.0/gtkmm/expander.h + /usr/include/gtkmm-3.0/gtkmm/eventbox.h + /usr/include/gtkmm-3.0/gtkmm/eventcontroller.h + /usr/include/gtkmm-3.0/gtkmm/filechooser.h + /usr/include/gtkmm-3.0/gtkmm/filefilter.h + /usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h + /usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h + /usr/include/gtkmm-3.0/gtkmm/filechoosernative.h + /usr/include/gtkmm-3.0/gtkmm/nativedialog.h + /usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h + /usr/include/gtkmm-3.0/gtkmm/fixed.h + /usr/include/gtkmm-3.0/gtkmm/flowbox.h + /usr/include/gtkmm-3.0/gtkmm/flowboxchild.h + /usr/include/gtkmm-3.0/gtkmm/fontbutton.h + /usr/include/gtkmm-3.0/gtkmm/fontchooser.h + /usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h + /usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h + /usr/include/gtkmm-3.0/gtkmm/fontselection.h + /usr/include/gtkmm-3.0/gtkmm/gesture.h + /usr/include/gtkmm-3.0/gtkmm/gesturedrag.h + /usr/include/gtkmm-3.0/gtkmm/gesturesingle.h + /usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h + /usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h + /usr/include/gtkmm-3.0/gtkmm/gesturepan.h + /usr/include/gtkmm-3.0/gtkmm/gesturerotate.h + /usr/include/gtkmm-3.0/gtkmm/gestureswipe.h + /usr/include/gtkmm-3.0/gtkmm/gesturezoom.h + /usr/include/gtkmm-3.0/gtkmm/glarea.h + /usr/include/gtkmm-3.0/gtkmm/grid.h + /usr/include/gtkmm-3.0/gtkmm/handlebox.h + /usr/include/gtkmm-3.0/gtkmm/hvpaned.h + /usr/include/gtkmm-3.0/gtkmm/paned.h + /usr/include/gtkmm-3.0/gtkmm/hvscale.h + /usr/include/gtkmm-3.0/gtkmm/scale.h + /usr/include/gtkmm-3.0/gtkmm/range.h + /usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h + /usr/include/gtkmm-3.0/gtkmm/scrollbar.h + /usr/include/gtkmm-3.0/gtkmm/hvseparator.h + /usr/include/gtkmm-3.0/gtkmm/separator.h + /usr/include/gtkmm-3.0/gtkmm/iconfactory.h + /usr/include/gtkmm-3.0/gtkmm/icontheme.h + /usr/include/gtkmm-3.0/gtkmm/iconinfo.h + /usr/include/gtkmm-3.0/gtkmm/iconview.h + /usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h + /usr/include/gtkmm-3.0/gtkmm/infobar.h + /usr/include/gtkmm-3.0/gtkmm/calendar.h + /usr/include/gtkmm-3.0/gtkmm/invisible.h + /usr/include/gtkmm-3.0/gtkmm/layout.h + /usr/include/gtkmm-3.0/gtkmm/levelbar.h + /usr/include/gtkmm-3.0/gtkmm/listbox.h + /usr/include/gtkmm-3.0/gtkmm/listboxrow.h + /usr/include/gtkmm-3.0/gtkmm/liststore.h + /usr/include/gtkmm-3.0/gtkmm/treesortable.h + /usr/include/gtkmm-3.0/gtkmm/treedragdest.h + /usr/include/gtkmm-3.0/gtkmm/treedragsource.h + /usr/include/gtkmm-3.0/gtkmm/listviewtext.h + /usr/include/gtkmm-3.0/gtkmm/linkbutton.h + /usr/include/gtkmm-3.0/gtkmm/main.h + /usr/include/gtkmm-3.0/gtkmm/menubar.h + /usr/include/gtkmm-3.0/gtkmm/menubutton.h + /usr/include/gtkmm-3.0/gtkmm/popover.h + /usr/include/gtkmm-3.0/gtkmm/messagedialog.h + /usr/include/gtkmm-3.0/gtkmm/modelbutton.h + /usr/include/gtkmm-3.0/gtkmm/notebook.h + /usr/include/gtkmm-3.0/gtkmm/numerableicon.h + /usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h + /usr/include/gtkmm-3.0/gtkmm/overlay.h + /usr/include/gtkmm-3.0/gtkmm/pagesetup.h + /usr/include/gtkmm-3.0/gtkmm/papersize.h + /usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h + /usr/include/gtkmm-3.0/gtkmm/printsettings.h + /usr/include/gtkmm-3.0/gtkmm/placessidebar.h + /usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h + /usr/include/gtkmm-3.0/gtkmm/popovermenu.h + /usr/include/gtkmm-3.0/gtkmm/printcontext.h + /usr/include/gtkmm-3.0/gtkmm/printer.h + /usr/include/gtkmm-3.0/gtkmm/printjob.h + /usr/include/gtkmm-3.0/gtkmm/printoperation.h + /usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h + /usr/include/gtkmm-3.0/gtkmm/printunixdialog.h + /usr/include/gtkmm-3.0/gtkmm/progressbar.h + /usr/include/gtkmm-3.0/gtkmm/radiobutton.h + /usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h + /usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h + /usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h + /usr/include/gtkmm-3.0/gtkmm/toolbutton.h + /usr/include/gtkmm-3.0/gtkmm/toolitem.h + /usr/include/gtkmm-3.0/gtkmm/sizegroup.h + /usr/include/gtkmm-3.0/gtkmm/recentaction.h + /usr/include/gtkmm-3.0/gtkmm/recentchooser.h + /usr/include/gtkmm-3.0/gtkmm/recentinfo.h + /usr/include/gtkmm-3.0/gtkmm/recentfilter.h + /usr/include/gtkmm-3.0/gtkmm/recentmanager.h + /usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h + /usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h + /usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h + /usr/include/gtkmm-3.0/gtkmm/revealer.h + /usr/include/gtkmm-3.0/gtkmm/scalebutton.h + /usr/include/gtkmm-3.0/gtkmm/searchbar.h + /usr/include/gtkmm-3.0/gtkmm/searchentry.h + /usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h + /usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h + /usr/include/gtkmm-3.0/gtkmm/settings.h + /usr/include/gtkmm-3.0/gtkmm/toolbar.h + /usr/include/gtkmm-3.0/gtkmm/toolshell.h + /usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h + /usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h + /usr/include/gtkmm-3.0/gtkmm/shortcutssection.h + /usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h + /usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h + /usr/include/gtkmm-3.0/gtkmm/spinbutton.h + /usr/include/gtkmm-3.0/gtkmm/spinner.h + /usr/include/gtkmm-3.0/gtkmm/stack.h + /usr/include/gtkmm-3.0/gtkmm/stacksidebar.h + /usr/include/gtkmm-3.0/gtkmm/stackswitcher.h + /usr/include/gtkmm-3.0/gtkmm/statusbar.h + /usr/include/gtkmm-3.0/gtkmm/statusicon.h + /usr/include/gtkmm-3.0/gtkmm/stock.h + /usr/include/gtkmm-3.0/gtkmm/stockitem.h + /usr/include/gtkmm-3.0/gtkmm/styleproperty.h + /usr/include/gtkmm-3.0/gtkmm/switch.h + /usr/include/gtkmm-3.0/gtkmm/table.h + /usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h + /usr/include/gtkmm-3.0/gtkmm/textbuffer.h + /usr/include/gtkmm-3.0/gtkmm/texttagtable.h + /usr/include/gtkmm-3.0/gtkmm/texttag.h + /usr/include/gtkmm-3.0/gtkmm/textchildanchor.h + /usr/include/gtkmm-3.0/gtkmm/textmark.h + /usr/include/gtkmm-3.0/gtkmm/textiter.h + /usr/include/gtkmm-3.0/gtkmm/textattributes.h + /usr/include/gtkmm-3.0/gtkmm/textview.h + /usr/include/gtkmm-3.0/gtkmm/toolpalette.h + /usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h + /usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h + /usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h + /usr/include/gtkmm-3.0/gtkmm/treemodelsort.h + /usr/include/gtkmm-3.0/gtkmm/treerowreference.h + /usr/include/gtkmm-3.0/gtkmm/treestore.h + /usr/include/gtkmm-3.0/gtkmm/uimanager.h + /usr/include/gtkmm-3.0/gtkmm/viewport.h + /usr/include/gtkmm-3.0/gtkmm/volumebutton.h + /usr/include/c++/11.2.0/fstream + /usr/include/c++/11.2.0/bits/codecvt.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h + /usr/include/c++/11.2.0/bits/fstream.tcc + /usr/include/libintl.h + /usr/include/gtkmm-3.0/gtkmm/plug.h + /usr/include/gtk-3.0/gtk/gtkx.h + /usr/include/gtk-3.0/gtk/gtksocket.h + /usr/include/gtk-3.0/gdk/gdkx.h + /usr/include/X11/Xlib.h + /usr/include/X11/X.h + /usr/include/X11/Xfuncproto.h + /usr/include/X11/Xosdefs.h + /usr/include/X11/Xutil.h + /usr/include/X11/keysym.h + /usr/include/X11/keysymdef.h + /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h + /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h + /usr/include/gtk-3.0/gdk/x11/gdkx11device.h + /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h + /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h + /usr/include/gtk-3.0/gdk/x11/gdkx11display.h + /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h + /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h + /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h + /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h + /usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h + /usr/include/gtk-3.0/gdk/x11/gdkx11property.h + /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h + /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h + /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h + /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h + /usr/include/gtk-3.0/gdk/x11/gdkx11window.h + /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h + /usr/include/gtk-3.0/gtk/gtkplug.h + /usr/include/gtk-3.0/gtk/gtkx-autocleanups.h + /usr/include/pwd.h + /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h + /usr/include/c++/11.2.0/filesystem + /usr/include/c++/11.2.0/bits/fs_fwd.h + /usr/include/c++/11.2.0/bits/fs_path.h + /usr/include/c++/11.2.0/locale + /usr/include/c++/11.2.0/bits/locale_facets_nonio.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h + /usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc + /usr/include/c++/11.2.0/bits/locale_conv.h + /usr/include/c++/11.2.0/iomanip + /usr/include/c++/11.2.0/bits/quoted_string.h + /usr/include/c++/11.2.0/codecvt + /usr/include/c++/11.2.0/bits/fs_dir.h + /usr/include/c++/11.2.0/bits/fs_ops.h + +CMakeFiles/ublexec.dir/ublexec.cc.o + /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc + /usr/include/stdc-predef.h + /usr/include/c++/11.2.0/cstddef + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h + /usr/include/features.h + /usr/include/features-time64.h + /usr/include/bits/wordsize.h + /usr/include/bits/timesize.h + /usr/include/sys/cdefs.h + /usr/include/bits/long-double.h + /usr/include/gnu/stubs.h + /usr/include/gnu/stubs-64.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h + /usr/include/c++/11.2.0/pstl/pstl_config.h + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h + /usr/include/c++/11.2.0/cstdlib + /usr/include/stdlib.h + /usr/include/bits/libc-header-start.h + /usr/include/bits/waitflags.h + /usr/include/bits/waitstatus.h + /usr/include/bits/floatn.h + /usr/include/bits/floatn-common.h + /usr/include/bits/types/locale_t.h + /usr/include/bits/types/__locale_t.h + /usr/include/sys/types.h + /usr/include/bits/types.h + /usr/include/bits/typesizes.h + /usr/include/bits/time64.h + /usr/include/bits/types/clock_t.h + /usr/include/bits/types/clockid_t.h + /usr/include/bits/types/time_t.h + /usr/include/bits/types/timer_t.h + /usr/include/bits/stdint-intn.h + /usr/include/endian.h + /usr/include/bits/endian.h + /usr/include/bits/endianness.h + /usr/include/bits/byteswap.h + /usr/include/bits/uintn-identity.h + /usr/include/sys/select.h + /usr/include/bits/select.h + /usr/include/bits/types/sigset_t.h + /usr/include/bits/types/__sigset_t.h + /usr/include/bits/types/struct_timeval.h + /usr/include/bits/types/struct_timespec.h + /usr/include/bits/pthreadtypes.h + /usr/include/bits/thread-shared-types.h + /usr/include/bits/pthreadtypes-arch.h + /usr/include/bits/atomic_wide_counter.h + /usr/include/bits/struct_mutex.h + /usr/include/bits/struct_rwlock.h + /usr/include/alloca.h + /usr/include/bits/stdlib-bsearch.h + /usr/include/bits/stdlib-float.h + /usr/include/c++/11.2.0/bits/std_abs.h + /usr/include/c++/11.2.0/iostream + /usr/include/c++/11.2.0/ostream + /usr/include/c++/11.2.0/ios + /usr/include/c++/11.2.0/iosfwd + /usr/include/c++/11.2.0/bits/stringfwd.h + /usr/include/c++/11.2.0/bits/memoryfwd.h + /usr/include/c++/11.2.0/bits/postypes.h + /usr/include/c++/11.2.0/cwchar + /usr/include/wchar.h + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h + /usr/include/bits/wchar.h + /usr/include/bits/types/wint_t.h + /usr/include/bits/types/mbstate_t.h + /usr/include/bits/types/__mbstate_t.h + /usr/include/bits/types/__FILE.h + /usr/include/bits/types/FILE.h + /usr/include/c++/11.2.0/exception + /usr/include/c++/11.2.0/bits/exception.h + /usr/include/c++/11.2.0/bits/exception_ptr.h + /usr/include/c++/11.2.0/bits/exception_defines.h + /usr/include/c++/11.2.0/bits/cxxabi_init_exception.h + /usr/include/c++/11.2.0/typeinfo + /usr/include/c++/11.2.0/bits/hash_bytes.h + /usr/include/c++/11.2.0/new + /usr/include/c++/11.2.0/bits/nested_exception.h + /usr/include/c++/11.2.0/bits/move.h + /usr/include/c++/11.2.0/type_traits + /usr/include/c++/11.2.0/bits/char_traits.h + /usr/include/c++/11.2.0/bits/stl_algobase.h + /usr/include/c++/11.2.0/bits/functexcept.h + /usr/include/c++/11.2.0/bits/cpp_type_traits.h + /usr/include/c++/11.2.0/ext/type_traits.h + /usr/include/c++/11.2.0/ext/numeric_traits.h + /usr/include/c++/11.2.0/bits/stl_pair.h + /usr/include/c++/11.2.0/bits/stl_iterator_base_types.h + /usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h + /usr/include/c++/11.2.0/bits/concept_check.h + /usr/include/c++/11.2.0/debug/assertions.h + /usr/include/c++/11.2.0/bits/stl_iterator.h + /usr/include/c++/11.2.0/bits/ptr_traits.h + /usr/include/c++/11.2.0/debug/debug.h + /usr/include/c++/11.2.0/bits/predefined_ops.h + /usr/include/c++/11.2.0/cstdint + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h + /usr/include/stdint.h + /usr/include/bits/stdint-uintn.h + /usr/include/c++/11.2.0/bits/localefwd.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h + /usr/include/c++/11.2.0/clocale + /usr/include/locale.h + /usr/include/bits/locale.h + /usr/include/c++/11.2.0/cctype + /usr/include/ctype.h + /usr/include/c++/11.2.0/bits/ios_base.h + /usr/include/c++/11.2.0/ext/atomicity.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h + /usr/include/pthread.h + /usr/include/sched.h + /usr/include/bits/sched.h + /usr/include/bits/types/struct_sched_param.h + /usr/include/bits/cpu-set.h + /usr/include/time.h + /usr/include/bits/time.h + /usr/include/bits/timex.h + /usr/include/bits/types/struct_tm.h + /usr/include/bits/types/struct_itimerspec.h + /usr/include/bits/setjmp.h + /usr/include/bits/types/struct___jmp_buf_tag.h + /usr/include/bits/pthread_stack_min-dynamic.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h + /usr/include/sys/single_threaded.h + /usr/include/c++/11.2.0/bits/locale_classes.h + /usr/include/c++/11.2.0/string + /usr/include/c++/11.2.0/bits/allocator.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h + /usr/include/c++/11.2.0/ext/new_allocator.h + /usr/include/c++/11.2.0/bits/ostream_insert.h + /usr/include/c++/11.2.0/bits/cxxabi_forced.h + /usr/include/c++/11.2.0/bits/stl_function.h + /usr/include/c++/11.2.0/backward/binders.h + /usr/include/c++/11.2.0/bits/range_access.h + /usr/include/c++/11.2.0/initializer_list + /usr/include/c++/11.2.0/bits/basic_string.h + /usr/include/c++/11.2.0/ext/alloc_traits.h + /usr/include/c++/11.2.0/bits/alloc_traits.h + /usr/include/c++/11.2.0/bits/stl_construct.h + /usr/include/c++/11.2.0/string_view + /usr/include/c++/11.2.0/bits/functional_hash.h + /usr/include/c++/11.2.0/bits/string_view.tcc + /usr/include/c++/11.2.0/ext/string_conversions.h + /usr/include/c++/11.2.0/cstdio + /usr/include/stdio.h + /usr/include/bits/types/__fpos_t.h + /usr/include/bits/types/__fpos64_t.h + /usr/include/bits/types/struct_FILE.h + /usr/include/bits/types/cookie_io_functions_t.h + /usr/include/bits/stdio_lim.h + /usr/include/bits/stdio.h + /usr/include/c++/11.2.0/cerrno + /usr/include/errno.h + /usr/include/bits/errno.h + /usr/include/linux/errno.h + /usr/include/asm/errno.h + /usr/include/asm-generic/errno.h + /usr/include/asm-generic/errno-base.h + /usr/include/bits/types/error_t.h + /usr/include/c++/11.2.0/bits/charconv.h + /usr/include/c++/11.2.0/bits/basic_string.tcc + /usr/include/c++/11.2.0/bits/locale_classes.tcc + /usr/include/c++/11.2.0/system_error + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h + /usr/include/c++/11.2.0/stdexcept + /usr/include/c++/11.2.0/streambuf + /usr/include/c++/11.2.0/bits/streambuf.tcc + /usr/include/c++/11.2.0/bits/basic_ios.h + /usr/include/c++/11.2.0/bits/locale_facets.h + /usr/include/c++/11.2.0/cwctype + /usr/include/wctype.h + /usr/include/bits/wctype-wchar.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h + /usr/include/c++/11.2.0/bits/streambuf_iterator.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h + /usr/include/c++/11.2.0/bits/locale_facets.tcc + /usr/include/c++/11.2.0/bits/basic_ios.tcc + /usr/include/c++/11.2.0/bits/ostream.tcc + /usr/include/c++/11.2.0/istream + /usr/include/c++/11.2.0/bits/istream.tcc + /usr/include/c++/11.2.0/memory + /usr/include/c++/11.2.0/bits/stl_uninitialized.h + /usr/include/c++/11.2.0/bits/stl_tempbuf.h + /usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h + /usr/include/c++/11.2.0/bits/align.h + /usr/include/c++/11.2.0/bit + /usr/include/c++/11.2.0/bits/uses_allocator.h + /usr/include/c++/11.2.0/bits/unique_ptr.h + /usr/include/c++/11.2.0/utility + /usr/include/c++/11.2.0/bits/stl_relops.h + /usr/include/c++/11.2.0/tuple + /usr/include/c++/11.2.0/array + /usr/include/c++/11.2.0/bits/invoke.h + /usr/include/c++/11.2.0/bits/shared_ptr.h + /usr/include/c++/11.2.0/bits/shared_ptr_base.h + /usr/include/c++/11.2.0/bits/allocated_ptr.h + /usr/include/c++/11.2.0/bits/refwrap.h + /usr/include/c++/11.2.0/ext/aligned_buffer.h + /usr/include/c++/11.2.0/ext/concurrence.h + /usr/include/c++/11.2.0/bits/shared_ptr_atomic.h + /usr/include/c++/11.2.0/bits/atomic_base.h + /usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h + /usr/include/c++/11.2.0/backward/auto_ptr.h + /usr/include/c++/11.2.0/pstl/glue_memory_defs.h + /usr/include/c++/11.2.0/pstl/execution_defs.h + /usr/include/gtkmm-3.0/gtkmm.h + /usr/include/glibmm-2.4/glibmm.h + /usr/lib/glibmm-2.4/include/glibmmconfig.h + /usr/include/glibmm-2.4/glibmm/thread.h + /usr/include/glib-2.0/glib.h + /usr/include/glib-2.0/glib/galloca.h + /usr/include/glib-2.0/glib/gtypes.h + /usr/lib/glib-2.0/include/glibconfig.h + /usr/include/glib-2.0/glib/gmacros.h + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h + /usr/include/limits.h + /usr/include/bits/posix1_lim.h + /usr/include/bits/local_lim.h + /usr/include/linux/limits.h + /usr/include/bits/posix2_lim.h + /usr/include/bits/xopen_lim.h + /usr/include/bits/uio_lim.h + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h + /usr/include/glib-2.0/glib/gversionmacros.h + /usr/include/string.h + /usr/include/strings.h + /usr/include/glib-2.0/glib/garray.h + /usr/include/glib-2.0/glib/gasyncqueue.h + /usr/include/glib-2.0/glib/gthread.h + /usr/include/glib-2.0/glib/gatomic.h + /usr/include/glib-2.0/glib/glib-typeof.h + /usr/include/glib-2.0/glib/gerror.h + /usr/include/glib-2.0/glib/gquark.h + /usr/include/glib-2.0/glib/gutils.h + /usr/include/c++/11.2.0/stdlib.h + /usr/include/glib-2.0/glib/gbacktrace.h + /usr/include/signal.h + /usr/include/bits/signum-generic.h + /usr/include/bits/signum-arch.h + /usr/include/bits/types/sig_atomic_t.h + /usr/include/bits/types/siginfo_t.h + /usr/include/bits/types/__sigval_t.h + /usr/include/bits/siginfo-arch.h + /usr/include/bits/siginfo-consts.h + /usr/include/bits/siginfo-consts-arch.h + /usr/include/bits/types/sigval_t.h + /usr/include/bits/types/sigevent_t.h + /usr/include/bits/sigevent-consts.h + /usr/include/bits/sigaction.h + /usr/include/bits/sigcontext.h + /usr/include/bits/types/stack_t.h + /usr/include/sys/ucontext.h + /usr/include/bits/sigstack.h + /usr/include/bits/sigstksz.h + /usr/include/unistd.h + /usr/include/bits/posix_opt.h + /usr/include/bits/environments.h + /usr/include/bits/confname.h + /usr/include/bits/getopt_posix.h + /usr/include/bits/getopt_core.h + /usr/include/bits/unistd_ext.h + /usr/include/linux/close_range.h + /usr/include/bits/ss_flags.h + /usr/include/bits/types/struct_sigstack.h + /usr/include/bits/sigthread.h + /usr/include/bits/signal_ext.h + /usr/include/glib-2.0/glib/gbase64.h + /usr/include/glib-2.0/glib/gbitlock.h + /usr/include/glib-2.0/glib/gbookmarkfile.h + /usr/include/glib-2.0/glib/gdatetime.h + /usr/include/glib-2.0/glib/gtimezone.h + /usr/include/glib-2.0/glib/gbytes.h + /usr/include/glib-2.0/glib/gcharset.h + /usr/include/glib-2.0/glib/gchecksum.h + /usr/include/glib-2.0/glib/gconvert.h + /usr/include/glib-2.0/glib/gdataset.h + /usr/include/glib-2.0/glib/gdate.h + /usr/include/glib-2.0/glib/gdir.h + /usr/include/dirent.h + /usr/include/bits/dirent.h + /usr/include/bits/dirent_ext.h + /usr/include/glib-2.0/glib/genviron.h + /usr/include/glib-2.0/glib/gfileutils.h + /usr/include/glib-2.0/glib/ggettext.h + /usr/include/glib-2.0/glib/ghash.h + /usr/include/glib-2.0/glib/glist.h + /usr/include/glib-2.0/glib/gmem.h + /usr/include/glib-2.0/glib/gnode.h + /usr/include/glib-2.0/glib/ghmac.h + /usr/include/glib-2.0/glib/gchecksum.h + /usr/include/glib-2.0/glib/ghook.h + /usr/include/glib-2.0/glib/ghostutils.h + /usr/include/glib-2.0/glib/giochannel.h + /usr/include/glib-2.0/glib/gmain.h + /usr/include/glib-2.0/glib/gpoll.h + /usr/include/glib-2.0/glib/gslist.h + /usr/include/glib-2.0/glib/gstring.h + /usr/include/glib-2.0/glib/gunicode.h + /usr/include/glib-2.0/glib/gkeyfile.h + /usr/include/glib-2.0/glib/gmappedfile.h + /usr/include/glib-2.0/glib/gmarkup.h + /usr/include/glib-2.0/glib/gmessages.h + /usr/include/glib-2.0/glib/gvariant.h + /usr/include/glib-2.0/glib/gvarianttype.h + /usr/include/glib-2.0/glib/goption.h + /usr/include/glib-2.0/glib/gpattern.h + /usr/include/glib-2.0/glib/gprimes.h + /usr/include/glib-2.0/glib/gqsort.h + /usr/include/glib-2.0/glib/gqueue.h + /usr/include/glib-2.0/glib/grand.h + /usr/include/glib-2.0/glib/grcbox.h + /usr/include/glib-2.0/glib/grefcount.h + /usr/include/glib-2.0/glib/grefstring.h + /usr/include/glib-2.0/glib/gmem.h + /usr/include/glib-2.0/glib/gmacros.h + /usr/include/glib-2.0/glib/gregex.h + /usr/include/glib-2.0/glib/gscanner.h + /usr/include/glib-2.0/glib/gsequence.h + /usr/include/glib-2.0/glib/gshell.h + /usr/include/glib-2.0/glib/gslice.h + /usr/include/glib-2.0/glib/gspawn.h + /usr/include/glib-2.0/glib/gstrfuncs.h + /usr/include/glib-2.0/glib/gstringchunk.h + /usr/include/glib-2.0/glib/gstrvbuilder.h + /usr/include/glib-2.0/glib/gtestutils.h + /usr/include/glib-2.0/glib/gthreadpool.h + /usr/include/glib-2.0/glib/gtimer.h + /usr/include/glib-2.0/glib/gtrashstack.h + /usr/include/glib-2.0/glib/gtree.h + /usr/include/glib-2.0/glib/guri.h + /usr/include/glib-2.0/glib/guuid.h + /usr/include/glib-2.0/glib/gversion.h + /usr/include/glib-2.0/glib/deprecated/gallocator.h + /usr/include/glib-2.0/glib/deprecated/gcache.h + /usr/include/glib-2.0/glib/deprecated/gcompletion.h + /usr/include/glib-2.0/glib/deprecated/gmain.h + /usr/include/glib-2.0/glib/deprecated/grel.h + /usr/include/glib-2.0/glib/deprecated/gthread.h + /usr/include/glib-2.0/glib/glib-autocleanups.h + /usr/include/glibmm-2.4/glibmm/error.h + /usr/include/glibmm-2.4/glibmm/exception.h + /usr/include/glibmm-2.4/glibmm/ustring.h + /usr/include/glibmm-2.4/glibmm/unicode.h + /usr/include/c++/11.2.0/iterator + /usr/include/c++/11.2.0/bits/stream_iterator.h + /usr/include/c++/11.2.0/sstream + /usr/include/c++/11.2.0/bits/sstream.tcc + /usr/include/glibmm-2.4/glibmm/value.h + /usr/include/glibmm-2.4/glibmm/refptr.h + /usr/include/glibmm-2.4/glibmm/enums.h + /usr/include/glib-2.0/glib-object.h + /usr/include/glib-2.0/gobject/gbinding.h + /usr/include/glib-2.0/gobject/gobject.h + /usr/include/glib-2.0/gobject/gtype.h + /usr/include/glib-2.0/gobject/gvalue.h + /usr/include/glib-2.0/gobject/gparam.h + /usr/include/glib-2.0/gobject/gclosure.h + /usr/include/glib-2.0/gobject/gsignal.h + /usr/include/glib-2.0/gobject/gmarshal.h + /usr/include/glib-2.0/gobject/gboxed.h + /usr/include/glib-2.0/gobject/glib-types.h + /usr/include/glib-2.0/gobject/gbindinggroup.h + /usr/include/glib-2.0/gobject/genums.h + /usr/include/glib-2.0/gobject/glib-enumtypes.h + /usr/include/glib-2.0/gobject/gparamspecs.h + /usr/include/glib-2.0/gobject/gsignalgroup.h + /usr/include/glib-2.0/gobject/gsourceclosure.h + /usr/include/glib-2.0/gobject/gtypemodule.h + /usr/include/glib-2.0/gobject/gtypeplugin.h + /usr/include/glib-2.0/gobject/gvaluearray.h + /usr/include/glib-2.0/gobject/gvaluetypes.h + /usr/include/glib-2.0/gobject/gobject-autocleanups.h + /usr/include/c++/11.2.0/vector + /usr/include/c++/11.2.0/bits/stl_vector.h + /usr/include/c++/11.2.0/bits/stl_bvector.h + /usr/include/c++/11.2.0/bits/vector.tcc + /usr/include/glibmm-2.4/glibmm/value_custom.h + /usr/include/glibmm-2.4/glibmm/value_basictypes.h + /usr/include/glibmm-2.4/glibmm/timeval.h + /usr/include/sigc++-2.0/sigc++/sigc++.h + /usr/include/sigc++-2.0/sigc++/signal.h + /usr/include/c++/11.2.0/list + /usr/include/c++/11.2.0/bits/stl_list.h + /usr/include/c++/11.2.0/bits/list.tcc + /usr/include/sigc++-2.0/sigc++/signal_base.h + /usr/lib/sigc++-2.0/include/sigc++config.h + /usr/include/sigc++-2.0/sigc++/type_traits.h + /usr/include/sigc++-2.0/sigc++/trackable.h + /usr/include/sigc++-2.0/sigc++/functors/slot.h + /usr/include/sigc++-2.0/sigc++/visit_each.h + /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h + /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h + /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h + /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h + /usr/include/sigc++-2.0/sigc++/limit_reference.h + /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h + /usr/include/sigc++-2.0/sigc++/functors/slot_base.h + /usr/include/sigc++-2.0/sigc++/connection.h + /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h + /usr/include/sigc++-2.0/sigc++/adaptors/bind.h + /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h + /usr/include/sigc++-2.0/sigc++/reference_wrapper.h + /usr/include/c++/11.2.0/functional + /usr/include/c++/11.2.0/bits/std_function.h + /usr/include/c++/11.2.0/unordered_map + /usr/include/c++/11.2.0/bits/hashtable.h + /usr/include/c++/11.2.0/bits/hashtable_policy.h + /usr/include/c++/11.2.0/bits/node_handle.h + /usr/include/c++/11.2.0/bits/unordered_map.h + /usr/include/c++/11.2.0/bits/erase_if.h + /usr/include/c++/11.2.0/bits/stl_algo.h + /usr/include/c++/11.2.0/bits/algorithmfwd.h + /usr/include/c++/11.2.0/bits/stl_heap.h + /usr/include/c++/11.2.0/bits/uniform_int_dist.h + /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h + /usr/include/sigc++-2.0/sigc++/adaptors/hide.h + /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h + /usr/include/sigc++-2.0/sigc++/adaptors/retype.h + /usr/include/sigc++-2.0/sigc++/adaptors/compose.h + /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h + /usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h + /usr/include/sigc++-2.0/sigc++/functors/functors.h + /usr/include/glibmm-2.4/glibmm/threads.h + /usr/include/glibmm-2.4/glibmm/arrayhandle.h + /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h + /usr/include/glibmm-2.4/glibmm/variant.h + /usr/include/glibmm-2.4/glibmm/varianttype.h + /usr/include/glibmm-2.4/glibmm/variantiter.h + /usr/include/glibmm-2.4/glibmm/variantdbusstring.h + /usr/include/c++/11.2.0/map + /usr/include/c++/11.2.0/bits/stl_tree.h + /usr/include/c++/11.2.0/bits/stl_map.h + /usr/include/c++/11.2.0/bits/stl_multimap.h + /usr/include/glibmm-2.4/glibmm/variant_basictypes.h + /usr/include/glibmm-2.4/glibmm/wrap.h + /usr/include/glibmm-2.4/glibmm/objectbase.h + /usr/include/glibmm-2.4/glibmm/class.h + /usr/include/glibmm-2.4/glibmm/signalproxy.h + /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h + /usr/include/glibmm-2.4/glibmm/propertyproxy.h + /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h + /usr/include/glibmm-2.4/glibmm/quark.h + /usr/include/glibmm-2.4/glibmm/debug.h + /usr/include/c++/11.2.0/mutex + /usr/include/c++/11.2.0/chrono + /usr/include/c++/11.2.0/ratio + /usr/include/c++/11.2.0/limits + /usr/include/c++/11.2.0/ctime + /usr/include/c++/11.2.0/bits/parse_numbers.h + /usr/include/c++/11.2.0/bits/std_mutex.h + /usr/include/c++/11.2.0/bits/unique_lock.h + /usr/include/c++/11.2.0/algorithm + /usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h + /usr/include/c++/11.2.0/deque + /usr/include/c++/11.2.0/bits/stl_deque.h + /usr/include/c++/11.2.0/bits/deque.tcc + /usr/include/glibmm-2.4/glibmm/balancedtree.h + /usr/include/glibmm-2.4/glibmm/base64.h + /usr/include/glibmm-2.4/glibmm/binding.h + /usr/include/glibmm-2.4/glibmm/object.h + /usr/include/glibmm-2.4/glibmm/utility.h + /usr/include/glibmm-2.4/glibmm/bytearray.h + /usr/include/sigc++-2.0/sigc++/slot.h + /usr/include/glibmm-2.4/glibmm/bytes.h + /usr/include/glibmm-2.4/glibmm/checksum.h + /usr/include/glibmm-2.4/glibmm/convert.h + /usr/include/glibmm-2.4/glibmm/date.h + /usr/include/glibmm-2.4/glibmm/datetime.h + /usr/include/glibmm-2.4/glibmm/timezone.h + /usr/include/glibmm-2.4/glibmm/dispatcher.h + /usr/include/glibmm-2.4/glibmm/main.h + /usr/include/glibmm-2.4/glibmm/priorities.h + /usr/include/glibmm-2.4/glibmm/iochannel.h + /usr/include/glibmm-2.4/glibmm/exceptionhandler.h + /usr/include/glibmm-2.4/glibmm/fileutils.h + /usr/include/glibmm-2.4/glibmm/helperlist.h + /usr/include/glibmm-2.4/glibmm/containers.h + /usr/include/glibmm-2.4/glibmm/sarray.h + /usr/include/glibmm-2.4/glibmm/interface.h + /usr/include/glibmm-2.4/glibmm/init.h + /usr/include/glibmm-2.4/glibmm/keyfile.h + /usr/include/glibmm-2.4/glibmm/streamiochannel.h + /usr/include/glibmm-2.4/glibmm/listhandle.h + /usr/include/glibmm-2.4/glibmm/markup.h + /usr/include/glibmm-2.4/glibmm/miscutils.h + /usr/include/glibmm-2.4/glibmm/module.h + /usr/include/glibmm-2.4/glibmm/nodetree.h + /usr/include/c++/11.2.0/stack + /usr/include/c++/11.2.0/bits/stl_stack.h + /usr/include/glibmm-2.4/glibmm/optioncontext.h + /usr/include/glibmm-2.4/glibmm/optionentry.h + /usr/include/glibmm-2.4/glibmm/optiongroup.h + /usr/include/glibmm-2.4/glibmm/pattern.h + /usr/include/glibmm-2.4/glibmm/property.h + /usr/include/glibmm-2.4/glibmm/random.h + /usr/include/glibmm-2.4/glibmm/regex.h + /usr/include/glibmm-2.4/glibmm/shell.h + /usr/include/glibmm-2.4/glibmm/slisthandle.h + /usr/include/glibmm-2.4/glibmm/spawn.h + /usr/include/glibmm-2.4/glibmm/stringutils.h + /usr/include/glibmm-2.4/glibmm/threadpool.h + /usr/include/glibmm-2.4/glibmm/timer.h + /usr/include/glibmm-2.4/glibmm/uriutils.h + /usr/include/glibmm-2.4/glibmm/valuearray.h + /usr/include/glibmm-2.4/glibmm/variantdict.h + /usr/include/glibmm-2.4/glibmm/vectorutils.h + /usr/include/glibmm-2.4/glibmm/weakref.h + /usr/include/giomm-2.4/giomm.h + /usr/include/giomm-2.4/giomm/action.h + /usr/lib/giomm-2.4/include/giommconfig.h + /usr/include/glib-2.0/gio/gio.h + /usr/include/glib-2.0/gio/giotypes.h + /usr/include/glib-2.0/gio/gioenums.h + /usr/include/glib-2.0/gio/gaction.h + /usr/include/glib-2.0/gio/gactiongroup.h + /usr/include/glib-2.0/gio/gactiongroupexporter.h + /usr/include/glib-2.0/gio/gactionmap.h + /usr/include/glib-2.0/gio/gappinfo.h + /usr/include/glib-2.0/gio/gapplication.h + /usr/include/glib-2.0/gio/gapplicationcommandline.h + /usr/include/glib-2.0/gio/gasyncinitable.h + /usr/include/glib-2.0/gio/ginitable.h + /usr/include/glib-2.0/gio/gasyncresult.h + /usr/include/glib-2.0/gio/gbufferedinputstream.h + /usr/include/glib-2.0/gio/gfilterinputstream.h + /usr/include/glib-2.0/gio/ginputstream.h + /usr/include/glib-2.0/gio/gbufferedoutputstream.h + /usr/include/glib-2.0/gio/gfilteroutputstream.h + /usr/include/glib-2.0/gio/goutputstream.h + /usr/include/glib-2.0/gio/gbytesicon.h + /usr/include/glib-2.0/gio/gcancellable.h + /usr/include/glib-2.0/gio/gcharsetconverter.h + /usr/include/glib-2.0/gio/gconverter.h + /usr/include/glib-2.0/gio/gcontenttype.h + /usr/include/glib-2.0/gio/gconverterinputstream.h + /usr/include/glib-2.0/gio/gconverteroutputstream.h + /usr/include/glib-2.0/gio/gcredentials.h + /usr/include/glib-2.0/gio/gdatagrambased.h + /usr/include/glib-2.0/gio/gdatainputstream.h + /usr/include/glib-2.0/gio/gdataoutputstream.h + /usr/include/glib-2.0/gio/gdbusactiongroup.h + /usr/include/glib-2.0/gio/giotypes.h + /usr/include/glib-2.0/gio/gdbusaddress.h + /usr/include/glib-2.0/gio/gdbusauthobserver.h + /usr/include/glib-2.0/gio/gdbusconnection.h + /usr/include/glib-2.0/gio/gdbuserror.h + /usr/include/glib-2.0/gio/gdbusinterface.h + /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h + /usr/include/glib-2.0/gio/gdbusintrospection.h + /usr/include/glib-2.0/gio/gdbusmenumodel.h + /usr/include/glib-2.0/gio/gdbusmessage.h + /usr/include/glib-2.0/gio/gdbusmethodinvocation.h + /usr/include/glib-2.0/gio/gdbusnameowning.h + /usr/include/glib-2.0/gio/gdbusnamewatching.h + /usr/include/glib-2.0/gio/gdbusobject.h + /usr/include/glib-2.0/gio/gdbusobjectmanager.h + /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h + /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h + /usr/include/glib-2.0/gio/gdbusobjectproxy.h + /usr/include/glib-2.0/gio/gdbusobjectskeleton.h + /usr/include/glib-2.0/gio/gdbusproxy.h + /usr/include/glib-2.0/gio/gdbusserver.h + /usr/include/glib-2.0/gio/gdbusutils.h + /usr/include/glib-2.0/gio/gdebugcontroller.h + /usr/include/glib-2.0/gio/gdebugcontrollerdbus.h + /usr/include/glib-2.0/gio/gdrive.h + /usr/include/glib-2.0/gio/gdtlsclientconnection.h + /usr/include/glib-2.0/gio/gdtlsconnection.h + /usr/include/glib-2.0/gio/gdtlsserverconnection.h + /usr/include/glib-2.0/gio/gemblemedicon.h + /usr/include/glib-2.0/gio/gicon.h + /usr/include/glib-2.0/gio/gemblem.h + /usr/include/glib-2.0/gio/gfile.h + /usr/include/glib-2.0/gio/gfileattribute.h + /usr/include/glib-2.0/gio/gfileenumerator.h + /usr/include/glib-2.0/gio/gfileicon.h + /usr/include/glib-2.0/gio/gfileinfo.h + /usr/include/glib-2.0/gio/gfileinputstream.h + /usr/include/glib-2.0/gio/gfileiostream.h + /usr/include/glib-2.0/gio/giostream.h + /usr/include/glib-2.0/gio/gioerror.h + /usr/include/glib-2.0/gio/gfilemonitor.h + /usr/include/glib-2.0/gio/gfilenamecompleter.h + /usr/include/glib-2.0/gio/gfileoutputstream.h + /usr/include/glib-2.0/gio/ginetaddress.h + /usr/include/glib-2.0/gio/ginetaddressmask.h + /usr/include/glib-2.0/gio/ginetsocketaddress.h + /usr/include/glib-2.0/gio/gsocketaddress.h + /usr/include/glib-2.0/gio/gioenumtypes.h + /usr/include/glib-2.0/gio/giomodule.h + /usr/include/glib-2.0/gmodule.h + /usr/include/glib-2.0/gio/gioscheduler.h + /usr/include/glib-2.0/gio/glistmodel.h + /usr/include/glib-2.0/gio/gliststore.h + /usr/include/glib-2.0/gio/gloadableicon.h + /usr/include/glib-2.0/gio/gmemoryinputstream.h + /usr/include/glib-2.0/gio/gmemorymonitor.h + /usr/include/glib-2.0/gio/gmemoryoutputstream.h + /usr/include/glib-2.0/gio/gmenu.h + /usr/include/glib-2.0/gio/gmenumodel.h + /usr/include/glib-2.0/gio/gmenuexporter.h + /usr/include/glib-2.0/gio/gmount.h + /usr/include/glib-2.0/gio/gmountoperation.h + /usr/include/glib-2.0/gio/gnativesocketaddress.h + /usr/include/glib-2.0/gio/gnativevolumemonitor.h + /usr/include/glib-2.0/gio/gvolumemonitor.h + /usr/include/glib-2.0/gio/gnetworkaddress.h + /usr/include/glib-2.0/gio/gnetworkmonitor.h + /usr/include/glib-2.0/gio/gnetworkservice.h + /usr/include/glib-2.0/gio/gnotification.h + /usr/include/glib-2.0/gio/gpermission.h + /usr/include/glib-2.0/gio/gpollableinputstream.h + /usr/include/glib-2.0/gio/gpollableoutputstream.h + /usr/include/glib-2.0/gio/gpollableutils.h + /usr/include/glib-2.0/gio/gpowerprofilemonitor.h + /usr/include/glib-2.0/gio/gpropertyaction.h + /usr/include/glib-2.0/gio/gproxy.h + /usr/include/glib-2.0/gio/gproxyaddress.h + /usr/include/glib-2.0/gio/gproxyaddressenumerator.h + /usr/include/glib-2.0/gio/gsocketaddressenumerator.h + /usr/include/glib-2.0/gio/gproxyresolver.h + /usr/include/glib-2.0/gio/gremoteactiongroup.h + /usr/include/glib-2.0/gio/gresolver.h + /usr/include/glib-2.0/gio/gresource.h + /usr/include/glib-2.0/gio/gseekable.h + /usr/include/glib-2.0/gio/gsettings.h + /usr/include/glib-2.0/gio/gsettingsschema.h + /usr/include/glib-2.0/gio/gsimpleaction.h + /usr/include/glib-2.0/gio/gsimpleactiongroup.h + /usr/include/glib-2.0/gio/gactiongroup.h + /usr/include/glib-2.0/gio/gactionmap.h + /usr/include/glib-2.0/gio/gsimpleasyncresult.h + /usr/include/glib-2.0/gio/gsimpleiostream.h + /usr/include/glib-2.0/gio/gsimplepermission.h + /usr/include/glib-2.0/gio/gsimpleproxyresolver.h + /usr/include/glib-2.0/gio/gsocket.h + /usr/include/glib-2.0/gio/gsocketclient.h + /usr/include/glib-2.0/gio/gsocketconnectable.h + /usr/include/glib-2.0/gio/gsocketconnection.h + /usr/include/glib-2.0/gio/gsocketcontrolmessage.h + /usr/include/glib-2.0/gio/gsocketlistener.h + /usr/include/glib-2.0/gio/gsocketservice.h + /usr/include/glib-2.0/gio/gsrvtarget.h + /usr/include/glib-2.0/gio/gsubprocess.h + /usr/include/glib-2.0/gio/gsubprocesslauncher.h + /usr/include/glib-2.0/gio/gtask.h + /usr/include/glib-2.0/gio/gtcpconnection.h + /usr/include/glib-2.0/gio/gtcpwrapperconnection.h + /usr/include/glib-2.0/gio/gtestdbus.h + /usr/include/glib-2.0/gio/gthemedicon.h + /usr/include/glib-2.0/gio/gthreadedsocketservice.h + /usr/include/glib-2.0/gio/gtlsbackend.h + /usr/include/glib-2.0/gio/gtlscertificate.h + /usr/include/glib-2.0/gio/gtlsclientconnection.h + /usr/include/glib-2.0/gio/gtlsconnection.h + /usr/include/glib-2.0/gio/gtlsdatabase.h + /usr/include/glib-2.0/gio/gtlsfiledatabase.h + /usr/include/glib-2.0/gio/gtlsinteraction.h + /usr/include/glib-2.0/gio/gtlspassword.h + /usr/include/glib-2.0/gio/gtlsserverconnection.h + /usr/include/glib-2.0/gio/gvfs.h + /usr/include/glib-2.0/gio/gvolume.h + /usr/include/glib-2.0/gio/gzlibcompressor.h + /usr/include/glib-2.0/gio/gzlibdecompressor.h + /usr/include/glib-2.0/gio/gio-autocleanups.h + /usr/include/giomm-2.4/giomm/actiongroup.h + /usr/include/giomm-2.4/giomm/actionmap.h + /usr/include/giomm-2.4/giomm/simpleaction.h + /usr/include/giomm-2.4/giomm/appinfo.h + /usr/include/giomm-2.4/giomm/applaunchcontext.h + /usr/include/giomm-2.4/giomm/icon.h + /usr/include/giomm-2.4/giomm/asyncresult.h + /usr/include/giomm-2.4/giomm/cancellable.h + /usr/include/giomm-2.4/giomm/application.h + /usr/include/giomm-2.4/giomm/applicationcommandline.h + /usr/include/giomm-2.4/giomm/file.h + /usr/include/giomm-2.4/giomm/fileattributeinfolist.h + /usr/include/giomm-2.4/giomm/fileattributeinfo.h + /usr/include/giomm-2.4/giomm/fileenumerator.h + /usr/include/giomm-2.4/giomm/fileinfo.h + /usr/include/giomm-2.4/giomm/fileinputstream.h + /usr/include/giomm-2.4/giomm/inputstream.h + /usr/include/giomm-2.4/giomm/seekable.h + /usr/include/giomm-2.4/giomm/fileiostream.h + /usr/include/giomm-2.4/giomm/iostream.h + /usr/include/giomm-2.4/giomm/outputstream.h + /usr/include/giomm-2.4/giomm/filemonitor.h + /usr/include/giomm-2.4/giomm/fileoutputstream.h + /usr/include/giomm-2.4/giomm/mountoperation.h + /usr/include/giomm-2.4/giomm/drive.h + /usr/include/giomm-2.4/giomm/mount.h + /usr/include/giomm-2.4/giomm/error.h + /usr/include/giomm-2.4/giomm/dbusconnection.h + /usr/include/giomm-2.4/giomm/initable.h + /usr/include/giomm-2.4/giomm/asyncinitable.h + /usr/include/giomm-2.4/giomm/dbusauthobserver.h + /usr/include/giomm-2.4/giomm/credentials.h + /usr/include/giomm-2.4/giomm/dbusmethodinvocation.h + /usr/include/giomm-2.4/giomm/dbusmessage.h + /usr/include/giomm-2.4/giomm/unixfdlist.h + /usr/include/giomm-2.4/giomm/dbusintrospection.h + /usr/include/giomm-2.4/giomm/dbussubtreevtable.h + /usr/include/giomm-2.4/giomm/dbusinterfacevtable.h + /usr/include/giomm-2.4/giomm/notification.h + /usr/include/giomm-2.4/giomm/bufferedinputstream.h + /usr/include/giomm-2.4/giomm/filterinputstream.h + /usr/include/giomm-2.4/giomm/bufferedoutputstream.h + /usr/include/giomm-2.4/giomm/filteroutputstream.h + /usr/include/giomm-2.4/giomm/charsetconverter.h + /usr/include/giomm-2.4/giomm/converter.h + /usr/include/giomm-2.4/giomm/contenttype.h + /usr/include/giomm-2.4/giomm/converterinputstream.h + /usr/include/giomm-2.4/giomm/pollableinputstream.h + /usr/include/giomm-2.4/giomm/converteroutputstream.h + /usr/include/giomm-2.4/giomm/pollableoutputstream.h + /usr/include/giomm-2.4/giomm/datainputstream.h + /usr/include/giomm-2.4/giomm/enums.h + /usr/include/giomm-2.4/giomm/dataoutputstream.h + /usr/include/giomm-2.4/giomm/dbusactiongroup.h + /usr/include/giomm-2.4/giomm/remoteactiongroup.h + /usr/include/giomm-2.4/giomm/dbusaddress.h + /usr/include/giomm-2.4/giomm/dbuserror.h + /usr/include/giomm-2.4/giomm/dbuserrorutils.h + /usr/include/giomm-2.4/giomm/dbusinterface.h + /usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h + /usr/include/giomm-2.4/giomm/dbusmenumodel.h + /usr/include/giomm-2.4/giomm/menumodel.h + /usr/include/giomm-2.4/giomm/dbusobject.h + /usr/include/giomm-2.4/giomm/dbusobjectmanager.h + /usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h + /usr/include/giomm-2.4/giomm/dbusobjectproxy.h + /usr/include/giomm-2.4/giomm/dbusproxy.h + /usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h + /usr/include/giomm-2.4/giomm/dbusobjectskeleton.h + /usr/include/giomm-2.4/giomm/dbusownname.h + /usr/include/giomm-2.4/giomm/dbusserver.h + /usr/include/giomm-2.4/giomm/dbusutils.h + /usr/include/giomm-2.4/giomm/dbuswatchname.h + /usr/include/giomm-2.4/giomm/desktopappinfo.h + /usr/include/giomm-2.4/giomm/emblem.h + /usr/include/giomm-2.4/giomm/emblemedicon.h + /usr/include/giomm-2.4/giomm/fileicon.h + /usr/include/giomm-2.4/giomm/loadableicon.h + /usr/include/giomm-2.4/giomm/filenamecompleter.h + /usr/include/giomm-2.4/giomm/inetaddress.h + /usr/include/giomm-2.4/giomm/inetsocketaddress.h + /usr/include/giomm-2.4/giomm/socketaddress.h + /usr/include/giomm-2.4/giomm/socketconnectable.h + /usr/include/giomm-2.4/giomm/socketaddressenumerator.h + /usr/include/giomm-2.4/giomm/init.h + /usr/include/giomm-2.4/giomm/wrap_init.h + /usr/include/giomm-2.4/giomm/listmodel.h + /usr/include/giomm-2.4/giomm/liststore.h + /usr/include/giomm-2.4/giomm/memoryinputstream.h + /usr/include/giomm-2.4/giomm/memoryoutputstream.h + /usr/include/giomm-2.4/giomm/menu.h + /usr/include/giomm-2.4/giomm/menuitem.h + /usr/include/giomm-2.4/giomm/menuattributeiter.h + /usr/include/giomm-2.4/giomm/menulinkiter.h + /usr/include/giomm-2.4/giomm/networkaddress.h + /usr/include/giomm-2.4/giomm/networkmonitor.h + /usr/include/giomm-2.4/giomm/networkservice.h + /usr/include/giomm-2.4/giomm/permission.h + /usr/include/giomm-2.4/giomm/proxy.h + /usr/include/giomm-2.4/giomm/proxyaddress.h + /usr/include/giomm-2.4/giomm/proxyresolver.h + /usr/include/giomm-2.4/giomm/resolver.h + /usr/include/giomm-2.4/giomm/srvtarget.h + /usr/include/giomm-2.4/giomm/resource.h + /usr/include/giomm-2.4/giomm/settings.h + /usr/include/giomm-2.4/giomm/settingsschema.h + /usr/include/giomm-2.4/giomm/settingsschemakey.h + /usr/include/giomm-2.4/giomm/settingsschemasource.h + /usr/include/giomm-2.4/giomm/simpleactiongroup.h + /usr/include/giomm-2.4/giomm/simpleiostream.h + /usr/include/giomm-2.4/giomm/simplepermission.h + /usr/include/giomm-2.4/giomm/socket.h + /usr/include/giomm-2.4/giomm/socketclient.h + /usr/include/giomm-2.4/giomm/socketconnection.h + /usr/include/giomm-2.4/giomm/socketcontrolmessage.h + /usr/include/c++/11.2.0/set + /usr/include/c++/11.2.0/bits/stl_set.h + /usr/include/c++/11.2.0/bits/stl_multiset.h + /usr/include/giomm-2.4/giomm/socketlistener.h + /usr/include/giomm-2.4/giomm/socketservice.h + /usr/include/giomm-2.4/giomm/socketsource.h + /usr/include/giomm-2.4/giomm/tcpconnection.h + /usr/include/giomm-2.4/giomm/tcpwrapperconnection.h + /usr/include/giomm-2.4/giomm/themedicon.h + /usr/include/giomm-2.4/giomm/threadedsocketservice.h + /usr/include/giomm-2.4/giomm/tlscertificate.h + /usr/include/giomm-2.4/giomm/tlsclientconnection.h + /usr/include/giomm-2.4/giomm/tlsconnection.h + /usr/include/giomm-2.4/giomm/tlsdatabase.h + /usr/include/giomm-2.4/giomm/tlsinteraction.h + /usr/include/giomm-2.4/giomm/tlspassword.h + /usr/include/giomm-2.4/giomm/tlsserverconnection.h + /usr/include/giomm-2.4/giomm/unixconnection.h + /usr/include/giomm-2.4/giomm/unixcredentialsmessage.h + /usr/include/giomm-2.4/giomm/unixfdmessage.h + /usr/include/giomm-2.4/giomm/unixinputstream.h + /usr/include/giomm-2.4/giomm/unixoutputstream.h + /usr/include/giomm-2.4/giomm/unixsocketaddress.h + /usr/include/giomm-2.4/giomm/volume.h + /usr/include/giomm-2.4/giomm/volumemonitor.h + /usr/include/giomm-2.4/giomm/zlibcompressor.h + /usr/include/giomm-2.4/giomm/zlibdecompressor.h + /usr/include/gdkmm-3.0/gdkmm/dragcontext.h + /usr/include/gdkmm-3.0/gdkmm/color.h + /usr/lib/gdkmm-3.0/include/gdkmmconfig.h + /usr/lib/pangomm-1.4/include/pangommconfig.h + /usr/include/gtk-3.0/gdk/gdk.h + /usr/include/gtk-3.0/gdk/gdkconfig.h + /usr/include/gtk-3.0/gdk/gdkversionmacros.h + /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h + /usr/include/gtk-3.0/gdk/gdktypes.h + /usr/include/pango-1.0/pango/pango.h + /usr/include/pango-1.0/pango/pango-attributes.h + /usr/include/pango-1.0/pango/pango-font.h + /usr/include/pango-1.0/pango/pango-coverage.h + /usr/include/pango-1.0/pango/pango-version-macros.h + /usr/include/pango-1.0/pango/pango-features.h + /usr/include/harfbuzz/hb.h + /usr/include/harfbuzz/hb-blob.h + /usr/include/harfbuzz/hb-common.h + /usr/include/harfbuzz/hb-buffer.h + /usr/include/harfbuzz/hb-unicode.h + /usr/include/harfbuzz/hb-font.h + /usr/include/harfbuzz/hb-face.h + /usr/include/harfbuzz/hb-set.h + /usr/include/harfbuzz/hb-draw.h + /usr/include/harfbuzz/hb.h + /usr/include/harfbuzz/hb-deprecated.h + /usr/include/harfbuzz/hb-map.h + /usr/include/harfbuzz/hb-shape.h + /usr/include/harfbuzz/hb-shape-plan.h + /usr/include/harfbuzz/hb-style.h + /usr/include/harfbuzz/hb-version.h + /usr/include/pango-1.0/pango/pango-types.h + /usr/include/pango-1.0/pango/pango-gravity.h + /usr/include/pango-1.0/pango/pango-matrix.h + /usr/include/pango-1.0/pango/pango-script.h + /usr/include/pango-1.0/pango/pango-language.h + /usr/include/pango-1.0/pango/pango-bidi-type.h + /usr/include/pango-1.0/pango/pango-direction.h + /usr/include/pango-1.0/pango/pango-color.h + /usr/include/pango-1.0/pango/pango-break.h + /usr/include/pango-1.0/pango/pango-item.h + /usr/include/pango-1.0/pango/pango-context.h + /usr/include/pango-1.0/pango/pango-fontmap.h + /usr/include/pango-1.0/pango/pango-fontset.h + /usr/include/pango-1.0/pango/pango-engine.h + /usr/include/pango-1.0/pango/pango-glyph.h + /usr/include/pango-1.0/pango/pango-enum-types.h + /usr/include/pango-1.0/pango/pango-fontset-simple.h + /usr/include/pango-1.0/pango/pango-glyph-item.h + /usr/include/pango-1.0/pango/pango-layout.h + /usr/include/pango-1.0/pango/pango-tabs.h + /usr/include/pango-1.0/pango/pango-markup.h + /usr/include/pango-1.0/pango/pango-renderer.h + /usr/include/pango-1.0/pango/pango-utils.h + /usr/include/cairo/cairo.h + /usr/include/cairo/cairo-version.h + /usr/include/cairo/cairo-features.h + /usr/include/cairo/cairo-deprecated.h + /usr/include/gtk-3.0/gdk/gdkscreen.h + /usr/include/gtk-3.0/gdk/gdkdisplay.h + /usr/include/gtk-3.0/gdk/gdkevents.h + /usr/include/gtk-3.0/gdk/gdkdnd.h + /usr/include/gtk-3.0/gdk/gdkdevice.h + /usr/include/gtk-3.0/gdk/gdkdevicetool.h + /usr/include/gtk-3.0/gdk/gdkdevicemanager.h + /usr/include/gtk-3.0/gdk/gdkseat.h + /usr/include/gtk-3.0/gdk/gdkwindow.h + /usr/include/gtk-3.0/gdk/gdkdrawingcontext.h + /usr/include/gtk-3.0/gdk/gdkframeclock.h + /usr/include/gtk-3.0/gdk/gdkframetimings.h + /usr/include/gtk-3.0/gdk/gdkmonitor.h + /usr/include/gtk-3.0/gdk/gdkrectangle.h + /usr/include/gtk-3.0/gdk/gdkcairo.h + /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h + /usr/include/gtk-3.0/gdk/gdkrgba.h + /usr/include/gtk-3.0/gdk/gdkpixbuf.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h + /usr/include/pango-1.0/pango/pangocairo.h + /usr/include/gtk-3.0/gdk/gdkcursor.h + /usr/include/gtk-3.0/gdk/gdkdevicepad.h + /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h + /usr/include/gtk-3.0/gdk/gdkenumtypes.h + /usr/include/gtk-3.0/gdk/gdkglcontext.h + /usr/include/gtk-3.0/gdk/gdkkeys.h + /usr/include/gtk-3.0/gdk/gdkkeysyms.h + /usr/include/gtk-3.0/gdk/gdkmain.h + /usr/include/gtk-3.0/gdk/gdkpango.h + /usr/include/gtk-3.0/gdk/gdkproperty.h + /usr/include/gtk-3.0/gdk/gdkselection.h + /usr/include/gtk-3.0/gdk/gdktestutils.h + /usr/include/gtk-3.0/gdk/gdkthreads.h + /usr/include/gtk-3.0/gdk/gdkvisual.h + /usr/include/gtk-3.0/gdk/gdk-autocleanup.h + /usr/include/gdkmm-3.0/gdkmm/pixbuf.h + /usr/include/gdkmm-3.0/gdkmm/pixbufformat.h + /usr/include/gdkmm-3.0/gdkmm/types.h + /usr/include/cairomm-1.0/cairomm/surface.h + /usr/include/cairomm-1.0/cairomm/enums.h + /usr/include/cairo/cairo-ft.h + /usr/include/cairo/cairo.h + /usr/include/freetype2/ft2build.h + /usr/include/freetype2/freetype/config/ftheader.h + /usr/include/freetype2/freetype/freetype.h + /usr/include/freetype2/freetype/config/ftconfig.h + /usr/include/freetype2/freetype/config/ftoption.h + /usr/include/freetype2/freetype/config/ftstdlib.h + /usr/include/setjmp.h + /usr/include/freetype2/freetype/config/integer-types.h + /usr/include/freetype2/freetype/config/public-macros.h + /usr/include/freetype2/freetype/config/mac-support.h + /usr/include/freetype2/freetype/fttypes.h + /usr/include/freetype2/freetype/ftsystem.h + /usr/include/freetype2/freetype/ftimage.h + /usr/include/freetype2/freetype/fterrors.h + /usr/include/freetype2/freetype/ftmoderr.h + /usr/include/freetype2/freetype/fterrdef.h + /usr/include/fontconfig/fontconfig.h + /usr/include/sys/stat.h + /usr/include/bits/stat.h + /usr/include/bits/struct_stat.h + /usr/include/bits/statx.h + /usr/include/linux/stat.h + /usr/include/linux/types.h + /usr/include/asm/types.h + /usr/include/asm-generic/types.h + /usr/include/asm-generic/int-ll64.h + /usr/include/asm/bitsperlong.h + /usr/include/asm-generic/bitsperlong.h + /usr/include/linux/posix_types.h + /usr/include/linux/stddef.h + /usr/include/asm/posix_types.h + /usr/include/asm/posix_types_64.h + /usr/include/asm-generic/posix_types.h + /usr/include/bits/statx-generic.h + /usr/include/bits/types/struct_statx_timestamp.h + /usr/include/bits/types/struct_statx.h + /usr/include/cairomm-1.0/cairomm/exception.h + /usr/lib/cairomm-1.0/include/cairommconfig.h + /usr/include/cairomm-1.0/cairomm/device.h + /usr/include/cairomm-1.0/cairomm/types.h + /usr/include/cairomm-1.0/cairomm/refptr.h + /usr/include/cairomm-1.0/cairomm/fontoptions.h + /usr/include/cairo/cairo-pdf.h + /usr/include/cairo/cairo-ps.h + /usr/include/cairo/cairo-svg.h + /usr/include/gdkmm-3.0/gdkmm/device.h + /usr/include/gdkmm-3.0/gdkmm/cursor.h + /usr/include/gdkmm-3.0/gdkmm/display.h + /usr/include/gdkmm-3.0/gdkmm/screen.h + /usr/include/gdkmm-3.0/gdkmm/rectangle.h + /usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h + /usr/include/gdkmm-3.0/gdkmm/event.h + /usr/include/gdkmm-3.0/gdkmm/timecoord.h + /usr/include/gdkmm-3.0/gdkmm.h + /usr/include/gdkmm-3.0/gdkmm/visual.h + /usr/include/gdkmm-3.0/gdkmm/window.h + /usr/include/cairomm-1.0/cairomm/region.h + /usr/include/cairomm-1.0/cairomm/pattern.h + /usr/include/gdkmm-3.0/gdkmm/rgba.h + /usr/include/cairomm-1.0/cairomm/context.h + /usr/include/cairomm-1.0/cairomm/fontface.h + /usr/include/cairomm-1.0/cairomm/matrix.h + /usr/include/cairomm-1.0/cairomm/path.h + /usr/include/cairomm-1.0/cairomm/scaledfont.h + /usr/include/c++/11.2.0/valarray + /usr/include/c++/11.2.0/cmath + /usr/include/math.h + /usr/include/bits/math-vector.h + /usr/include/bits/libm-simd-decl-stubs.h + /usr/include/bits/flt-eval-method.h + /usr/include/bits/fp-logb.h + /usr/include/bits/fp-fast.h + /usr/include/bits/mathcalls-helper-functions.h + /usr/include/bits/mathcalls.h + /usr/include/bits/mathcalls-narrow.h + /usr/include/bits/iscanonical.h + /usr/include/c++/11.2.0/bits/specfun.h + /usr/include/c++/11.2.0/tr1/gamma.tcc + /usr/include/c++/11.2.0/tr1/special_function_util.h + /usr/include/c++/11.2.0/tr1/bessel_function.tcc + /usr/include/c++/11.2.0/tr1/beta_function.tcc + /usr/include/c++/11.2.0/tr1/ell_integral.tcc + /usr/include/c++/11.2.0/tr1/exp_integral.tcc + /usr/include/c++/11.2.0/tr1/hypergeometric.tcc + /usr/include/c++/11.2.0/tr1/legendre_function.tcc + /usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc + /usr/include/c++/11.2.0/tr1/poly_hermite.tcc + /usr/include/c++/11.2.0/tr1/poly_laguerre.tcc + /usr/include/c++/11.2.0/tr1/riemann_zeta.tcc + /usr/include/c++/11.2.0/bits/valarray_array.h + /usr/include/c++/11.2.0/bits/valarray_array.tcc + /usr/include/c++/11.2.0/bits/valarray_before.h + /usr/include/c++/11.2.0/bits/slice_array.h + /usr/include/c++/11.2.0/bits/valarray_after.h + /usr/include/c++/11.2.0/bits/gslice.h + /usr/include/c++/11.2.0/bits/gslice_array.h + /usr/include/c++/11.2.0/bits/mask_array.h + /usr/include/c++/11.2.0/bits/indirect_array.h + /usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h + /usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h + /usr/include/gdkmm-3.0/gdkmm/pixbufloader.h + /usr/include/gdkmm-3.0/gdkmm/drawingcontext.h + /usr/include/gdkmm-3.0/gdkmm/frameclock.h + /usr/include/gdkmm-3.0/gdkmm/frametimings.h + /usr/include/gdkmm-3.0/gdkmm/glcontext.h + /usr/include/gdkmm-3.0/gdkmm/displaymanager.h + /usr/include/gdkmm-3.0/gdkmm/devicemanager.h + /usr/include/gdkmm-3.0/gdkmm/seat.h + /usr/include/gdkmm-3.0/gdkmm/monitor.h + /usr/include/gdkmm-3.0/gdkmm/general.h + /usr/include/gtkmm-3.0/gtkmm/toggleaction.h + /usr/include/gtkmm-3.0/gtkmm/action.h + /usr/lib/gtkmm-3.0/include/gtkmmconfig.h + /usr/include/gtkmm-3.0/gtkmm/widget.h + /usr/include/pangomm-1.4/pangomm/context.h + /usr/include/pangomm-1.4/pangomm/fontdescription.h + /usr/include/pangomm-1.4/pangomm/fontmetrics.h + /usr/include/pangomm-1.4/pangomm/fontset.h + /usr/include/pangomm-1.4/pangomm/language.h + /usr/include/pangomm-1.4/pangomm/font.h + /usr/include/pangomm-1.4/pangomm/rectangle.h + /usr/include/pangomm-1.4/pangomm/glyph.h + /usr/include/pangomm-1.4/pangomm/coverage.h + /usr/include/pangomm-1.4/pangomm/fontmap.h + /usr/include/pangomm-1.4/pangomm/fontfamily.h + /usr/include/pangomm-1.4/pangomm/fontface.h + /usr/include/pangomm-1.4/pangomm/item.h + /usr/include/pangomm-1.4/pangomm/attributes.h + /usr/include/pangomm-1.4/pangomm/color.h + /usr/include/pangomm-1.4/pangomm/attrlist.h + /usr/include/pangomm-1.4/pangomm/attriter.h + /usr/include/pangomm-1.4/pangomm/types.h + /usr/include/pangomm-1.4/pangomm/layout.h + /usr/include/pangomm-1.4/pangomm/tabarray.h + /usr/include/pangomm-1.4/pangomm/layoutline.h + /usr/include/pangomm-1.4/pangomm/layoutiter.h + /usr/include/pangomm-1.4/pangomm/layoutrun.h + /usr/include/atkmm-1.6/atkmm/object.h + /usr/include/atkmm-1.6/atkmm/component.h + /usr/lib/atkmm-1.6/include/atkmmconfig.h + /usr/include/atkmm-1.6/atkmm/relation.h + /usr/include/atkmm-1.6/atkmm/implementor.h + /usr/include/gtkmm-3.0/gtkmm/object.h + /usr/include/gtkmm-3.0/gtkmm/base.h + /usr/include/gtkmm-3.0/gtkmm/buildable.h + /usr/include/gtkmm-3.0/gtkmm/enums.h + /usr/include/gtk-3.0/gtk/gtk.h + /usr/include/gtk-3.0/gtk/gtkaboutdialog.h + /usr/include/gtk-3.0/gtk/gtkdialog.h + /usr/include/gtk-3.0/gtk/gtkwindow.h + /usr/include/gtk-3.0/gtk/gtkapplication.h + /usr/include/gtk-3.0/gtk/gtkwidget.h + /usr/include/gtk-3.0/gtk/gtkaccelgroup.h + /usr/include/gtk-3.0/gtk/gtkenums.h + /usr/include/gtk-3.0/gtk/gtkborder.h + /usr/include/gtk-3.0/gtk/gtktypes.h + /usr/include/atk-1.0/atk/atk.h + /usr/include/atk-1.0/atk/atkobject.h + /usr/include/atk-1.0/atk/atkversion.h + /usr/include/atk-1.0/atk/atkstate.h + /usr/include/atk-1.0/atk/atkrelationtype.h + /usr/include/atk-1.0/atk/atkaction.h + /usr/include/atk-1.0/atk/atkcomponent.h + /usr/include/atk-1.0/atk/atkutil.h + /usr/include/atk-1.0/atk/atkdocument.h + /usr/include/atk-1.0/atk/atkeditabletext.h + /usr/include/atk-1.0/atk/atktext.h + /usr/include/atk-1.0/atk/atk-enum-types.h + /usr/include/atk-1.0/atk/atkgobjectaccessible.h + /usr/include/atk-1.0/atk/atkhyperlink.h + /usr/include/atk-1.0/atk/atkhyperlinkimpl.h + /usr/include/atk-1.0/atk/atkhypertext.h + /usr/include/atk-1.0/atk/atkimage.h + /usr/include/atk-1.0/atk/atknoopobject.h + /usr/include/atk-1.0/atk/atknoopobjectfactory.h + /usr/include/atk-1.0/atk/atkobjectfactory.h + /usr/include/atk-1.0/atk/atkplug.h + /usr/include/atk-1.0/atk/atkrange.h + /usr/include/atk-1.0/atk/atkregistry.h + /usr/include/atk-1.0/atk/atkobjectfactory.h + /usr/include/atk-1.0/atk/atkrelation.h + /usr/include/atk-1.0/atk/atkrelationset.h + /usr/include/atk-1.0/atk/atkselection.h + /usr/include/atk-1.0/atk/atksocket.h + /usr/include/atk-1.0/atk/atkstateset.h + /usr/include/atk-1.0/atk/atkstreamablecontent.h + /usr/include/atk-1.0/atk/atktable.h + /usr/include/atk-1.0/atk/atktablecell.h + /usr/include/atk-1.0/atk/atkmisc.h + /usr/include/atk-1.0/atk/atkvalue.h + /usr/include/atk-1.0/atk/atkwindow.h + /usr/include/atk-1.0/atk/atk-autocleanups.h + /usr/include/gtk-3.0/gtk/gtkbin.h + /usr/include/gtk-3.0/gtk/gtkcontainer.h + /usr/include/gtk-3.0/gtk/gtkaccellabel.h + /usr/include/gtk-3.0/gtk/gtklabel.h + /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h + /usr/include/gtk-3.0/gtk/gtkmenu.h + /usr/include/gtk-3.0/gtk/gtkmenushell.h + /usr/include/gtk-3.0/gtk/gtkaccelmap.h + /usr/include/gtk-3.0/gtk/gtkaccessible.h + /usr/include/gtk-3.0/gtk/gtkactionable.h + /usr/include/gtk-3.0/gtk/gtkactionbar.h + /usr/include/gtk-3.0/gtk/gtkadjustment.h + /usr/include/gtk-3.0/gtk/gtkappchooser.h + /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h + /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h + /usr/include/gtk-3.0/gtk/gtkbox.h + /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h + /usr/include/gtk-3.0/gtk/gtkcombobox.h + /usr/include/gtk-3.0/gtk/gtktreemodel.h + /usr/include/gtk-3.0/gtk/gtktreeview.h + /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h + /usr/include/gtk-3.0/gtk/gtkcellrenderer.h + /usr/include/gtk-3.0/gtk/gtkcelleditable.h + /usr/include/gtk-3.0/gtk/gtktreesortable.h + /usr/include/gtk-3.0/gtk/gtkcellarea.h + /usr/include/gtk-3.0/gtk/gtkdnd.h + /usr/include/gtk-3.0/gtk/gtkselection.h + /usr/include/gtk-3.0/gtk/gtktextiter.h + /usr/include/gtk-3.0/gtk/gtktextattributes.h + /usr/include/gtk-3.0/gtk/gtktextchild.h + /usr/include/gtk-3.0/gtk/gtktexttag.h + /usr/include/gtk-3.0/gtk/gtkentry.h + /usr/include/gtk-3.0/gtk/gtkeditable.h + /usr/include/gtk-3.0/gtk/gtkimcontext.h + /usr/include/gtk-3.0/gtk/gtkentrybuffer.h + /usr/include/gtk-3.0/gtk/gtkentrycompletion.h + /usr/include/gtk-3.0/gtk/gtkliststore.h + /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h + /usr/include/gtk-3.0/gtk/gtkimage.h + /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h + /usr/include/gtk-3.0/gtk/gtkshortcutswindow.h + /usr/include/gtk-3.0/gtk/gtkaspectframe.h + /usr/include/gtk-3.0/gtk/gtkframe.h + /usr/include/gtk-3.0/gtk/gtkassistant.h + /usr/include/gtk-3.0/gtk/gtkbbox.h + /usr/include/gtk-3.0/gtk/gtkbindings.h + /usr/include/gtk-3.0/gtk/gtkbuildable.h + /usr/include/gtk-3.0/gtk/gtkbuilder.h + /usr/include/gtk-3.0/gtk/gtkbutton.h + /usr/include/gtk-3.0/gtk/gtkcalendar.h + /usr/include/gtk-3.0/gtk/gtkcellareabox.h + /usr/include/gtk-3.0/gtk/gtkcellareacontext.h + /usr/include/gtk-3.0/gtk/gtkcelllayout.h + /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h + /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h + /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h + /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h + /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h + /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h + /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h + /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h + /usr/include/gtk-3.0/gtk/gtkcellview.h + /usr/include/gtk-3.0/gtk/gtkcheckbutton.h + /usr/include/gtk-3.0/gtk/gtktogglebutton.h + /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h + /usr/include/gtk-3.0/gtk/gtkmenuitem.h + /usr/include/gtk-3.0/gtk/gtkclipboard.h + /usr/include/gtk-3.0/gtk/gtkcolorbutton.h + /usr/include/gtk-3.0/gtk/gtkcolorchooser.h + /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h + /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h + /usr/include/gtk-3.0/gtk/gtkcolorutils.h + /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h + /usr/include/gtk-3.0/gtk/gtkcssprovider.h + /usr/include/gtk-3.0/gtk/gtkcsssection.h + /usr/include/gtk-3.0/gtk/gtkdebug.h + /usr/include/gtk-3.0/gtk/gtkdragdest.h + /usr/include/gtk-3.0/gtk/gtkdragsource.h + /usr/include/gtk-3.0/gtk/gtkdrawingarea.h + /usr/include/gtk-3.0/gtk/gtkeventbox.h + /usr/include/gtk-3.0/gtk/gtkeventcontroller.h + /usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h + /usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h + /usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h + /usr/include/gtk-3.0/gtk/gtkexpander.h + /usr/include/gtk-3.0/gtk/gtkfixed.h + /usr/include/gtk-3.0/gtk/gtkfilechooser.h + /usr/include/gtk-3.0/gtk/gtkfilefilter.h + /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h + /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h + /usr/include/gtk-3.0/gtk/gtkfilechoosernative.h + /usr/include/gtk-3.0/gtk/gtknativedialog.h + /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h + /usr/include/gtk-3.0/gtk/gtkflowbox.h + /usr/include/gtk-3.0/gtk/gtkfontbutton.h + /usr/include/gtk-3.0/gtk/gtkfontchooser.h + /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h + /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h + /usr/include/gtk-3.0/gtk/gtkgesture.h + /usr/include/gtk-3.0/gtk/gtkgesturedrag.h + /usr/include/gtk-3.0/gtk/gtkgesturesingle.h + /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h + /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h + /usr/include/gtk-3.0/gtk/gtkgesturepan.h + /usr/include/gtk-3.0/gtk/gtkgesturerotate.h + /usr/include/gtk-3.0/gtk/gtkgesturestylus.h + /usr/include/gtk-3.0/gtk/gtkgestureswipe.h + /usr/include/gtk-3.0/gtk/gtkgesturezoom.h + /usr/include/gtk-3.0/gtk/gtkglarea.h + /usr/include/gtk-3.0/gtk/gtkgrid.h + /usr/include/gtk-3.0/gtk/gtkheaderbar.h + /usr/include/gtk-3.0/gtk/gtkicontheme.h + /usr/include/gtk-3.0/gtk/gtkstylecontext.h + /usr/include/gtk-3.0/gtk/gtkstyleprovider.h + /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h + /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h + /usr/include/gtk-3.0/gtk/gtkiconview.h + /usr/include/gtk-3.0/gtk/gtktooltip.h + /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h + /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h + /usr/include/gtk-3.0/gtk/gtkimmulticontext.h + /usr/include/gtk-3.0/gtk/gtkinfobar.h + /usr/include/gtk-3.0/gtk/gtkinvisible.h + /usr/include/gtk-3.0/gtk/gtklayout.h + /usr/include/gtk-3.0/gtk/gtklevelbar.h + /usr/include/gtk-3.0/gtk/gtklinkbutton.h + /usr/include/gtk-3.0/gtk/gtklistbox.h + /usr/include/gtk-3.0/gtk/gtklockbutton.h + /usr/include/gtk-3.0/gtk/gtkmain.h + /usr/include/gtk-3.0/gtk/gtkmenubar.h + /usr/include/gtk-3.0/gtk/gtkmenubutton.h + /usr/include/gtk-3.0/gtk/gtkpopover.h + /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h + /usr/include/gtk-3.0/gtk/gtktoolbutton.h + /usr/include/gtk-3.0/gtk/gtktoolitem.h + /usr/include/gtk-3.0/gtk/gtksizegroup.h + /usr/include/gtk-3.0/gtk/gtkmessagedialog.h + /usr/include/gtk-3.0/gtk/gtkmodelbutton.h + /usr/include/gtk-3.0/gtk/gtkmodules.h + /usr/include/gtk-3.0/gtk/gtkmountoperation.h + /usr/include/gtk-3.0/gtk/gtknotebook.h + /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h + /usr/include/gtk-3.0/gtk/gtkorientable.h + /usr/include/gtk-3.0/gtk/gtkoverlay.h + /usr/include/gtk-3.0/gtk/gtkpadcontroller.h + /usr/include/gtk-3.0/gtk/gtkpagesetup.h + /usr/include/gtk-3.0/gtk/gtkpapersize.h + /usr/include/gtk-3.0/gtk/gtkpaned.h + /usr/include/gtk-3.0/gtk/gtkplacessidebar.h + /usr/include/gtk-3.0/gtk/gtkpopovermenu.h + /usr/include/gtk-3.0/gtk/gtkprintcontext.h + /usr/include/gtk-3.0/gtk/gtkprintoperation.h + /usr/include/gtk-3.0/gtk/gtkprintsettings.h + /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h + /usr/include/gtk-3.0/gtk/gtkprogressbar.h + /usr/include/gtk-3.0/gtk/gtkradiobutton.h + /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h + /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h + /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h + /usr/include/gtk-3.0/gtk/gtkrange.h + /usr/include/gtk-3.0/gtk/gtkrecentchooser.h + /usr/include/gtk-3.0/gtk/gtkrecentmanager.h + /usr/include/gtk-3.0/gtk/gtkrecentfilter.h + /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h + /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h + /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h + /usr/include/gtk-3.0/gtk/gtkrender.h + /usr/include/gtk-3.0/gtk/gtkrevealer.h + /usr/include/gtk-3.0/gtk/gtkscale.h + /usr/include/gtk-3.0/gtk/gtkscalebutton.h + /usr/include/gtk-3.0/gtk/gtkscrollable.h + /usr/include/gtk-3.0/gtk/gtkscrollbar.h + /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h + /usr/include/gtk-3.0/gtk/gtksearchbar.h + /usr/include/gtk-3.0/gtk/gtksearchentry.h + /usr/include/gtk-3.0/gtk/gtkseparator.h + /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h + /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h + /usr/include/gtk-3.0/gtk/gtksettings.h + /usr/include/gtk-3.0/gtk/gtkshortcutlabel.h + /usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h + /usr/include/gtk-3.0/gtk/gtkshortcutssection.h + /usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h + /usr/include/gtk-3.0/gtk/gtkshow.h + /usr/include/gtk-3.0/gtk/gtkstacksidebar.h + /usr/include/gtk-3.0/gtk/gtkstack.h + /usr/include/gtk-3.0/gtk/gtksizerequest.h + /usr/include/gtk-3.0/gtk/gtkspinbutton.h + /usr/include/gtk-3.0/gtk/gtkspinner.h + /usr/include/gtk-3.0/gtk/gtkstackswitcher.h + /usr/include/gtk-3.0/gtk/gtkstatusbar.h + /usr/include/gtk-3.0/gtk/gtkswitch.h + /usr/include/gtk-3.0/gtk/gtktextbuffer.h + /usr/include/gtk-3.0/gtk/gtktexttagtable.h + /usr/include/gtk-3.0/gtk/gtktextmark.h + /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h + /usr/include/gtk-3.0/gtk/gtktextview.h + /usr/include/gtk-3.0/gtk/gtktoolbar.h + /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h + /usr/include/gtk-3.0/gtk/gtktoolpalette.h + /usr/include/gtk-3.0/gtk/gtktoolshell.h + /usr/include/gtk-3.0/gtk/gtktestutils.h + /usr/include/gtk-3.0/gtk/gtktreednd.h + /usr/include/gtk-3.0/gtk/gtktreemodelsort.h + /usr/include/gtk-3.0/gtk/gtktreeselection.h + /usr/include/gtk-3.0/gtk/gtktreestore.h + /usr/include/gtk-3.0/gtk/gtktypebuiltins.h + /usr/include/gtk-3.0/gtk/gtkversion.h + /usr/include/gtk-3.0/gtk/gtkviewport.h + /usr/include/gtk-3.0/gtk/gtkvolumebutton.h + /usr/include/gtk-3.0/gtk/gtkwidgetpath.h + /usr/include/gtk-3.0/gtk/gtkwindowgroup.h + /usr/include/gtk-3.0/gtk/gtkwindow.h + /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h + /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h + /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h + /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h + /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h + /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h + /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h + /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h + /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h + /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h + /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h + /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h + /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h + /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h + /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h + /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h + /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h + /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h + /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h + /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h + /usr/include/gtk-3.0/gtk/deprecated/gtktable.h + /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h + /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h + /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h + /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h + /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h + /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h + /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h + /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h + /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h + /usr/include/gtk-3.0/gtk/gtk-autocleanups.h + /usr/include/gtkmm-3.0/gtkmm/targetlist.h + /usr/include/gtkmm-3.0/gtkmm/targetentry.h + /usr/include/gtkmm-3.0/gtkmm/clipboard.h + /usr/include/gtkmm-3.0/gtkmm/selectiondata.h + /usr/include/gtkmm-3.0/gtkmm/requisition.h + /usr/include/gtkmm-3.0/gtkmm/stylecontext.h + /usr/include/gtkmm-3.0/gtkmm/styleprovider.h + /usr/include/gtkmm-3.0/gtkmm/border.h + /usr/include/gtkmm-3.0/gtkmm/iconsource.h + /usr/include/gtkmm-3.0/gtkmm/iconset.h + /usr/include/gtkmm-3.0/gtkmm/stockid.h + /usr/include/gtkmm-3.0/gtkmm/widgetpath.h + /usr/include/gtkmm-3.0/gtkmm/accelgroup.h + /usr/include/gtkmm-3.0/gtkmm/radioaction.h + /usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h + /usr/include/gtkmm-3.0/gtkmm/aboutdialog.h + /usr/include/gtkmm-3.0/gtkmm/dialog.h + /usr/include/gtkmm-3.0/gtkmm/window.h + /usr/include/gtkmm-3.0/gtkmm/bin.h + /usr/include/gtkmm-3.0/gtkmm/container.h + /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h + /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h + /usr/include/gtkmm-3.0/gtkmm/application.h + /usr/include/gtkmm-3.0/gtkmm/actiongroup.h + /usr/include/gtkmm-3.0/gtkmm/accelkey.h + /usr/include/gtkmm-3.0/gtkmm/windowgroup.h + /usr/include/gtkmm-3.0/gtkmm/box.h + /usr/include/gtkmm-3.0/gtkmm/orientable.h + /usr/include/gtkmm-3.0/gtkmm/hvbox.h + /usr/include/gtkmm-3.0/gtkmm/button.h + /usr/include/gtkmm-3.0/gtkmm/activatable.h + /usr/include/gtkmm-3.0/gtkmm/buttonbox.h + /usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h + /usr/include/gtkmm-3.0/gtkmm/headerbar.h + /usr/include/gtkmm-3.0/gtkmm/accelmap.h + /usr/include/gtkmm-3.0/gtkmm/actionable.h + /usr/include/gtkmm-3.0/gtkmm/actionbar.h + /usr/include/gtkmm-3.0/gtkmm/adjustment.h + /usr/include/gtkmm-3.0/gtkmm/alignment.h + /usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h + /usr/include/gtkmm-3.0/gtkmm/appchooser.h + /usr/include/gtkmm-3.0/gtkmm/combobox.h + /usr/include/gtkmm-3.0/gtkmm/celllayout.h + /usr/include/gtkmm-3.0/gtkmm/cellrenderer.h + /usr/include/gtkmm-3.0/gtkmm/celleditable.h + /usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h + /usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h + /usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h + /usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h + /usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h + /usr/include/gtkmm-3.0/gtkmm/treemodel.h + /usr/include/gtkmm-3.0/gtkmm/treeiter.h + /usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h + /usr/include/gtkmm-3.0/gtkmm/cellarea.h + /usr/include/gtkmm-3.0/gtkmm/cellareacontext.h + /usr/include/gtkmm-3.0/gtkmm/treeview.h + /usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h + /usr/include/gtkmm-3.0/gtkmm/treeselection.h + /usr/include/gtkmm-3.0/gtkmm/treepath.h + /usr/include/gtkmm-3.0/gtkmm/scrollable.h + /usr/include/gtkmm-3.0/gtkmm/entry.h + /usr/include/gtkmm-3.0/gtkmm/editable.h + /usr/include/gtkmm-3.0/gtkmm/menu.h + /usr/include/gtkmm-3.0/gtkmm/menushell.h + /usr/include/gtkmm-3.0/gtkmm/menuitem.h + /usr/include/gtkmm-3.0/gtkmm/accellabel.h + /usr/include/gtkmm-3.0/gtkmm/label.h + /usr/include/gtkmm-3.0/gtkmm/misc.h + /usr/include/gtkmm-3.0/gtkmm/entrycompletion.h + /usr/include/gtkmm-3.0/gtkmm/image.h + /usr/include/gtkmm-3.0/gtkmm/entrybuffer.h + /usr/include/gtkmm-3.0/gtkmm/tooltip.h + /usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h + /usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h + /usr/include/gtkmm-3.0/gtkmm/applicationwindow.h + /usr/include/gtkmm-3.0/gtkmm/arrow.h + /usr/include/gtkmm-3.0/gtkmm/aspectframe.h + /usr/include/gtkmm-3.0/gtkmm/frame.h + /usr/include/gtkmm-3.0/gtkmm/assistant.h + /usr/include/gtkmm-3.0/gtkmm/builder.h + /usr/include/gtkmm-3.0/gtkmm/cellareabox.h + /usr/include/gtkmm-3.0/gtkmm/cellview.h + /usr/include/gtkmm-3.0/gtkmm/checkbutton.h + /usr/include/gtkmm-3.0/gtkmm/togglebutton.h + /usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h + /usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h + /usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h + /usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h + /usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h + /usr/include/gtkmm-3.0/gtkmm/colorbutton.h + /usr/include/gtkmm-3.0/gtkmm/colorchooser.h + /usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h + /usr/include/gtkmm-3.0/gtkmm/colorselection.h + /usr/include/gtkmm-3.0/gtkmm/comboboxtext.h + /usr/include/gtkmm-3.0/gtkmm/cssprovider.h + /usr/include/gtkmm-3.0/gtkmm/csssection.h + /usr/include/gtkmm-3.0/gtkmm/drawingarea.h + /usr/include/gtkmm-3.0/gtkmm/expander.h + /usr/include/gtkmm-3.0/gtkmm/eventbox.h + /usr/include/gtkmm-3.0/gtkmm/eventcontroller.h + /usr/include/gtkmm-3.0/gtkmm/filechooser.h + /usr/include/gtkmm-3.0/gtkmm/filefilter.h + /usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h + /usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h + /usr/include/gtkmm-3.0/gtkmm/filechoosernative.h + /usr/include/gtkmm-3.0/gtkmm/nativedialog.h + /usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h + /usr/include/gtkmm-3.0/gtkmm/fixed.h + /usr/include/gtkmm-3.0/gtkmm/flowbox.h + /usr/include/gtkmm-3.0/gtkmm/flowboxchild.h + /usr/include/gtkmm-3.0/gtkmm/fontbutton.h + /usr/include/gtkmm-3.0/gtkmm/fontchooser.h + /usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h + /usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h + /usr/include/gtkmm-3.0/gtkmm/fontselection.h + /usr/include/gtkmm-3.0/gtkmm/gesture.h + /usr/include/gtkmm-3.0/gtkmm/gesturedrag.h + /usr/include/gtkmm-3.0/gtkmm/gesturesingle.h + /usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h + /usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h + /usr/include/gtkmm-3.0/gtkmm/gesturepan.h + /usr/include/gtkmm-3.0/gtkmm/gesturerotate.h + /usr/include/gtkmm-3.0/gtkmm/gestureswipe.h + /usr/include/gtkmm-3.0/gtkmm/gesturezoom.h + /usr/include/gtkmm-3.0/gtkmm/glarea.h + /usr/include/gtkmm-3.0/gtkmm/grid.h + /usr/include/gtkmm-3.0/gtkmm/handlebox.h + /usr/include/gtkmm-3.0/gtkmm/hvpaned.h + /usr/include/gtkmm-3.0/gtkmm/paned.h + /usr/include/gtkmm-3.0/gtkmm/hvscale.h + /usr/include/gtkmm-3.0/gtkmm/scale.h + /usr/include/gtkmm-3.0/gtkmm/range.h + /usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h + /usr/include/gtkmm-3.0/gtkmm/scrollbar.h + /usr/include/gtkmm-3.0/gtkmm/hvseparator.h + /usr/include/gtkmm-3.0/gtkmm/separator.h + /usr/include/gtkmm-3.0/gtkmm/iconfactory.h + /usr/include/gtkmm-3.0/gtkmm/icontheme.h + /usr/include/gtkmm-3.0/gtkmm/iconinfo.h + /usr/include/gtkmm-3.0/gtkmm/iconview.h + /usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h + /usr/include/gtkmm-3.0/gtkmm/infobar.h + /usr/include/gtkmm-3.0/gtkmm/calendar.h + /usr/include/gtkmm-3.0/gtkmm/invisible.h + /usr/include/gtkmm-3.0/gtkmm/layout.h + /usr/include/gtkmm-3.0/gtkmm/levelbar.h + /usr/include/gtkmm-3.0/gtkmm/listbox.h + /usr/include/gtkmm-3.0/gtkmm/listboxrow.h + /usr/include/gtkmm-3.0/gtkmm/liststore.h + /usr/include/gtkmm-3.0/gtkmm/treesortable.h + /usr/include/gtkmm-3.0/gtkmm/treedragdest.h + /usr/include/gtkmm-3.0/gtkmm/treedragsource.h + /usr/include/gtkmm-3.0/gtkmm/listviewtext.h + /usr/include/gtkmm-3.0/gtkmm/linkbutton.h + /usr/include/gtkmm-3.0/gtkmm/main.h + /usr/include/gtkmm-3.0/gtkmm/menubar.h + /usr/include/gtkmm-3.0/gtkmm/menubutton.h + /usr/include/gtkmm-3.0/gtkmm/popover.h + /usr/include/gtkmm-3.0/gtkmm/messagedialog.h + /usr/include/gtkmm-3.0/gtkmm/modelbutton.h + /usr/include/gtkmm-3.0/gtkmm/notebook.h + /usr/include/gtkmm-3.0/gtkmm/numerableicon.h + /usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h + /usr/include/gtkmm-3.0/gtkmm/overlay.h + /usr/include/gtkmm-3.0/gtkmm/pagesetup.h + /usr/include/gtkmm-3.0/gtkmm/papersize.h + /usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h + /usr/include/gtkmm-3.0/gtkmm/printsettings.h + /usr/include/gtkmm-3.0/gtkmm/placessidebar.h + /usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h + /usr/include/gtkmm-3.0/gtkmm/popovermenu.h + /usr/include/gtkmm-3.0/gtkmm/printcontext.h + /usr/include/gtkmm-3.0/gtkmm/printer.h + /usr/include/gtkmm-3.0/gtkmm/printjob.h + /usr/include/gtkmm-3.0/gtkmm/printoperation.h + /usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h + /usr/include/gtkmm-3.0/gtkmm/printunixdialog.h + /usr/include/gtkmm-3.0/gtkmm/progressbar.h + /usr/include/gtkmm-3.0/gtkmm/radiobutton.h + /usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h + /usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h + /usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h + /usr/include/gtkmm-3.0/gtkmm/toolbutton.h + /usr/include/gtkmm-3.0/gtkmm/toolitem.h + /usr/include/gtkmm-3.0/gtkmm/sizegroup.h + /usr/include/gtkmm-3.0/gtkmm/recentaction.h + /usr/include/gtkmm-3.0/gtkmm/recentchooser.h + /usr/include/gtkmm-3.0/gtkmm/recentinfo.h + /usr/include/gtkmm-3.0/gtkmm/recentfilter.h + /usr/include/gtkmm-3.0/gtkmm/recentmanager.h + /usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h + /usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h + /usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h + /usr/include/gtkmm-3.0/gtkmm/revealer.h + /usr/include/gtkmm-3.0/gtkmm/scalebutton.h + /usr/include/gtkmm-3.0/gtkmm/searchbar.h + /usr/include/gtkmm-3.0/gtkmm/searchentry.h + /usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h + /usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h + /usr/include/gtkmm-3.0/gtkmm/settings.h + /usr/include/gtkmm-3.0/gtkmm/toolbar.h + /usr/include/gtkmm-3.0/gtkmm/toolshell.h + /usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h + /usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h + /usr/include/gtkmm-3.0/gtkmm/shortcutssection.h + /usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h + /usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h + /usr/include/gtkmm-3.0/gtkmm/spinbutton.h + /usr/include/gtkmm-3.0/gtkmm/spinner.h + /usr/include/gtkmm-3.0/gtkmm/stack.h + /usr/include/gtkmm-3.0/gtkmm/stacksidebar.h + /usr/include/gtkmm-3.0/gtkmm/stackswitcher.h + /usr/include/gtkmm-3.0/gtkmm/statusbar.h + /usr/include/gtkmm-3.0/gtkmm/statusicon.h + /usr/include/gtkmm-3.0/gtkmm/stock.h + /usr/include/gtkmm-3.0/gtkmm/stockitem.h + /usr/include/gtkmm-3.0/gtkmm/styleproperty.h + /usr/include/gtkmm-3.0/gtkmm/switch.h + /usr/include/gtkmm-3.0/gtkmm/table.h + /usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h + /usr/include/gtkmm-3.0/gtkmm/textbuffer.h + /usr/include/gtkmm-3.0/gtkmm/texttagtable.h + /usr/include/gtkmm-3.0/gtkmm/texttag.h + /usr/include/gtkmm-3.0/gtkmm/textchildanchor.h + /usr/include/gtkmm-3.0/gtkmm/textmark.h + /usr/include/gtkmm-3.0/gtkmm/textiter.h + /usr/include/gtkmm-3.0/gtkmm/textattributes.h + /usr/include/gtkmm-3.0/gtkmm/textview.h + /usr/include/gtkmm-3.0/gtkmm/toolpalette.h + /usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h + /usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h + /usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h + /usr/include/gtkmm-3.0/gtkmm/treemodelsort.h + /usr/include/gtkmm-3.0/gtkmm/treerowreference.h + /usr/include/gtkmm-3.0/gtkmm/treestore.h + /usr/include/gtkmm-3.0/gtkmm/uimanager.h + /usr/include/gtkmm-3.0/gtkmm/viewport.h + /usr/include/gtkmm-3.0/gtkmm/volumebutton.h + /usr/include/c++/11.2.0/fstream + /usr/include/c++/11.2.0/bits/codecvt.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h + /usr/include/c++/11.2.0/bits/fstream.tcc + /usr/include/c++/11.2.0/filesystem + /usr/include/c++/11.2.0/bits/fs_fwd.h + /usr/include/c++/11.2.0/bits/fs_path.h + /usr/include/c++/11.2.0/locale + /usr/include/c++/11.2.0/bits/locale_facets_nonio.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h + /usr/include/libintl.h + /usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc + /usr/include/c++/11.2.0/bits/locale_conv.h + /usr/include/c++/11.2.0/iomanip + /usr/include/c++/11.2.0/bits/quoted_string.h + /usr/include/c++/11.2.0/codecvt + /usr/include/c++/11.2.0/bits/fs_dir.h + /usr/include/c++/11.2.0/bits/fs_ops.h + /usr/include/gtkmm-3.0/gtkmm/plug.h + /usr/include/gtk-3.0/gtk/gtkx.h + /usr/include/gtk-3.0/gtk/gtksocket.h + /usr/include/gtk-3.0/gdk/gdkx.h + /usr/include/X11/Xlib.h + /usr/include/X11/X.h + /usr/include/X11/Xfuncproto.h + /usr/include/X11/Xosdefs.h + /usr/include/X11/Xutil.h + /usr/include/X11/keysym.h + /usr/include/X11/keysymdef.h + /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h + /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h + /usr/include/gtk-3.0/gdk/x11/gdkx11device.h + /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h + /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h + /usr/include/gtk-3.0/gdk/x11/gdkx11display.h + /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h + /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h + /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h + /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h + /usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h + /usr/include/gtk-3.0/gdk/x11/gdkx11property.h + /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h + /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h + /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h + /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h + /usr/include/gtk-3.0/gdk/x11/gdkx11window.h + /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h + /usr/include/gtk-3.0/gtk/gtkplug.h + /usr/include/gtk-3.0/gtk/gtkx-autocleanups.h + /usr/include/pwd.h + /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h + diff --git a/compile/CMakeFiles/ublexec.dir/compiler_depend.make b/compile/CMakeFiles/ublexec.dir/compiler_depend.make new file mode 100644 index 0000000..b50afc6 --- /dev/null +++ b/compile/CMakeFiles/ublexec.dir/compiler_depend.make @@ -0,0 +1,6619 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.23 + +CMakeFiles/ublexec.dir/main.cc.o: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc \ + /usr/include/stdc-predef.h \ + /usr/include/c++/11.2.0/cstddef \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/11.2.0/pstl/pstl_config.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \ + /usr/include/c++/11.2.0/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h \ + /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h \ + /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/c++/11.2.0/bits/std_abs.h \ + /usr/include/c++/11.2.0/iostream \ + /usr/include/c++/11.2.0/ostream \ + /usr/include/c++/11.2.0/ios \ + /usr/include/c++/11.2.0/iosfwd \ + /usr/include/c++/11.2.0/bits/stringfwd.h \ + /usr/include/c++/11.2.0/bits/memoryfwd.h \ + /usr/include/c++/11.2.0/bits/postypes.h \ + /usr/include/c++/11.2.0/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/11.2.0/exception \ + /usr/include/c++/11.2.0/bits/exception.h \ + /usr/include/c++/11.2.0/bits/exception_ptr.h \ + /usr/include/c++/11.2.0/bits/exception_defines.h \ + /usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \ + /usr/include/c++/11.2.0/typeinfo \ + /usr/include/c++/11.2.0/bits/hash_bytes.h \ + /usr/include/c++/11.2.0/new \ + /usr/include/c++/11.2.0/bits/nested_exception.h \ + /usr/include/c++/11.2.0/bits/move.h \ + /usr/include/c++/11.2.0/type_traits \ + /usr/include/c++/11.2.0/bits/char_traits.h \ + /usr/include/c++/11.2.0/bits/stl_algobase.h \ + /usr/include/c++/11.2.0/bits/functexcept.h \ + /usr/include/c++/11.2.0/bits/cpp_type_traits.h \ + /usr/include/c++/11.2.0/ext/type_traits.h \ + /usr/include/c++/11.2.0/ext/numeric_traits.h \ + /usr/include/c++/11.2.0/bits/stl_pair.h \ + /usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \ + /usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11.2.0/bits/concept_check.h \ + /usr/include/c++/11.2.0/debug/assertions.h \ + /usr/include/c++/11.2.0/bits/stl_iterator.h \ + /usr/include/c++/11.2.0/bits/ptr_traits.h \ + /usr/include/c++/11.2.0/debug/debug.h \ + /usr/include/c++/11.2.0/bits/predefined_ops.h \ + /usr/include/c++/11.2.0/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/c++/11.2.0/bits/localefwd.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/11.2.0/clocale \ + /usr/include/locale.h \ + /usr/include/bits/locale.h \ + /usr/include/c++/11.2.0/cctype \ + /usr/include/ctype.h \ + /usr/include/c++/11.2.0/bits/ios_base.h \ + /usr/include/c++/11.2.0/ext/atomicity.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h \ + /usr/include/sched.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/time.h \ + /usr/include/bits/time.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/11.2.0/bits/locale_classes.h \ + /usr/include/c++/11.2.0/string \ + /usr/include/c++/11.2.0/bits/allocator.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/11.2.0/ext/new_allocator.h \ + /usr/include/c++/11.2.0/bits/ostream_insert.h \ + /usr/include/c++/11.2.0/bits/cxxabi_forced.h \ + /usr/include/c++/11.2.0/bits/stl_function.h \ + /usr/include/c++/11.2.0/backward/binders.h \ + /usr/include/c++/11.2.0/bits/range_access.h \ + /usr/include/c++/11.2.0/initializer_list \ + /usr/include/c++/11.2.0/bits/basic_string.h \ + /usr/include/c++/11.2.0/ext/alloc_traits.h \ + /usr/include/c++/11.2.0/bits/alloc_traits.h \ + /usr/include/c++/11.2.0/bits/stl_construct.h \ + /usr/include/c++/11.2.0/string_view \ + /usr/include/c++/11.2.0/bits/functional_hash.h \ + /usr/include/c++/11.2.0/bits/string_view.tcc \ + /usr/include/c++/11.2.0/ext/string_conversions.h \ + /usr/include/c++/11.2.0/cstdio \ + /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdio.h \ + /usr/include/c++/11.2.0/cerrno \ + /usr/include/errno.h \ + /usr/include/bits/errno.h \ + /usr/include/linux/errno.h \ + /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/11.2.0/bits/charconv.h \ + /usr/include/c++/11.2.0/bits/basic_string.tcc \ + /usr/include/c++/11.2.0/bits/locale_classes.tcc \ + /usr/include/c++/11.2.0/system_error \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/11.2.0/stdexcept \ + /usr/include/c++/11.2.0/streambuf \ + /usr/include/c++/11.2.0/bits/streambuf.tcc \ + /usr/include/c++/11.2.0/bits/basic_ios.h \ + /usr/include/c++/11.2.0/bits/locale_facets.h \ + /usr/include/c++/11.2.0/cwctype \ + /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/11.2.0/bits/streambuf_iterator.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/11.2.0/bits/locale_facets.tcc \ + /usr/include/c++/11.2.0/bits/basic_ios.tcc \ + /usr/include/c++/11.2.0/bits/ostream.tcc \ + /usr/include/c++/11.2.0/istream \ + /usr/include/c++/11.2.0/bits/istream.tcc \ + /usr/include/c++/11.2.0/memory \ + /usr/include/c++/11.2.0/bits/stl_uninitialized.h \ + /usr/include/c++/11.2.0/bits/stl_tempbuf.h \ + /usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11.2.0/bits/align.h \ + /usr/include/c++/11.2.0/bit \ + /usr/include/c++/11.2.0/bits/uses_allocator.h \ + /usr/include/c++/11.2.0/bits/unique_ptr.h \ + /usr/include/c++/11.2.0/utility \ + /usr/include/c++/11.2.0/bits/stl_relops.h \ + /usr/include/c++/11.2.0/tuple \ + /usr/include/c++/11.2.0/array \ + /usr/include/c++/11.2.0/bits/invoke.h \ + /usr/include/c++/11.2.0/bits/shared_ptr.h \ + /usr/include/c++/11.2.0/bits/shared_ptr_base.h \ + /usr/include/c++/11.2.0/bits/allocated_ptr.h \ + /usr/include/c++/11.2.0/bits/refwrap.h \ + /usr/include/c++/11.2.0/ext/aligned_buffer.h \ + /usr/include/c++/11.2.0/ext/concurrence.h \ + /usr/include/c++/11.2.0/bits/shared_ptr_atomic.h \ + /usr/include/c++/11.2.0/bits/atomic_base.h \ + /usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11.2.0/backward/auto_ptr.h \ + /usr/include/c++/11.2.0/pstl/glue_memory_defs.h \ + /usr/include/c++/11.2.0/pstl/execution_defs.h \ + /usr/include/gtkmm-3.0/gtkmm.h \ + /usr/include/glibmm-2.4/glibmm.h \ + /usr/lib/glibmm-2.4/include/glibmmconfig.h \ + /usr/include/glibmm-2.4/glibmm/thread.h \ + /usr/include/glib-2.0/glib.h \ + /usr/include/glib-2.0/glib/galloca.h \ + /usr/include/glib-2.0/glib/gtypes.h \ + /usr/lib/glib-2.0/include/glibconfig.h \ + /usr/include/glib-2.0/glib/gmacros.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h \ + /usr/include/limits.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h \ + /usr/include/glib-2.0/glib/gversionmacros.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/glib-2.0/glib/garray.h \ + /usr/include/glib-2.0/glib/gasyncqueue.h \ + /usr/include/glib-2.0/glib/gthread.h \ + /usr/include/glib-2.0/glib/gatomic.h \ + /usr/include/glib-2.0/glib/glib-typeof.h \ + /usr/include/glib-2.0/glib/gerror.h \ + /usr/include/glib-2.0/glib/gquark.h \ + /usr/include/glib-2.0/glib/gutils.h \ + /usr/include/c++/11.2.0/stdlib.h \ + /usr/include/glib-2.0/glib/gbacktrace.h \ + /usr/include/signal.h \ + /usr/include/bits/signum-generic.h \ + /usr/include/bits/signum-arch.h \ + /usr/include/bits/types/sig_atomic_t.h \ + /usr/include/bits/types/siginfo_t.h \ + /usr/include/bits/types/__sigval_t.h \ + /usr/include/bits/siginfo-arch.h \ + /usr/include/bits/siginfo-consts.h \ + /usr/include/bits/siginfo-consts-arch.h \ + /usr/include/bits/types/sigval_t.h \ + /usr/include/bits/types/sigevent_t.h \ + /usr/include/bits/sigevent-consts.h \ + /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h \ + /usr/include/bits/types/stack_t.h \ + /usr/include/sys/ucontext.h \ + /usr/include/bits/sigstack.h \ + /usr/include/bits/sigstksz.h \ + /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h \ + /usr/include/bits/confname.h \ + /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h \ + /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h \ + /usr/include/bits/ss_flags.h \ + /usr/include/bits/types/struct_sigstack.h \ + /usr/include/bits/sigthread.h \ + /usr/include/bits/signal_ext.h \ + /usr/include/glib-2.0/glib/gbase64.h \ + /usr/include/glib-2.0/glib/gbitlock.h \ + /usr/include/glib-2.0/glib/gbookmarkfile.h \ + /usr/include/glib-2.0/glib/gdatetime.h \ + /usr/include/glib-2.0/glib/gtimezone.h \ + /usr/include/glib-2.0/glib/gbytes.h \ + /usr/include/glib-2.0/glib/gcharset.h \ + /usr/include/glib-2.0/glib/gchecksum.h \ + /usr/include/glib-2.0/glib/gconvert.h \ + /usr/include/glib-2.0/glib/gdataset.h \ + /usr/include/glib-2.0/glib/gdate.h \ + /usr/include/glib-2.0/glib/gdir.h \ + /usr/include/dirent.h \ + /usr/include/bits/dirent.h \ + /usr/include/bits/dirent_ext.h \ + /usr/include/glib-2.0/glib/genviron.h \ + /usr/include/glib-2.0/glib/gfileutils.h \ + /usr/include/glib-2.0/glib/ggettext.h \ + /usr/include/glib-2.0/glib/ghash.h \ + /usr/include/glib-2.0/glib/glist.h \ + /usr/include/glib-2.0/glib/gmem.h \ + /usr/include/glib-2.0/glib/gnode.h \ + /usr/include/glib-2.0/glib/ghmac.h \ + /usr/include/glib-2.0/glib/gchecksum.h \ + /usr/include/glib-2.0/glib/ghook.h \ + /usr/include/glib-2.0/glib/ghostutils.h \ + /usr/include/glib-2.0/glib/giochannel.h \ + /usr/include/glib-2.0/glib/gmain.h \ + /usr/include/glib-2.0/glib/gpoll.h \ + /usr/include/glib-2.0/glib/gslist.h \ + /usr/include/glib-2.0/glib/gstring.h \ + /usr/include/glib-2.0/glib/gunicode.h \ + /usr/include/glib-2.0/glib/gkeyfile.h \ + /usr/include/glib-2.0/glib/gmappedfile.h \ + /usr/include/glib-2.0/glib/gmarkup.h \ + /usr/include/glib-2.0/glib/gmessages.h \ + /usr/include/glib-2.0/glib/gvariant.h \ + /usr/include/glib-2.0/glib/gvarianttype.h \ + /usr/include/glib-2.0/glib/goption.h \ + /usr/include/glib-2.0/glib/gpattern.h \ + /usr/include/glib-2.0/glib/gprimes.h \ + /usr/include/glib-2.0/glib/gqsort.h \ + /usr/include/glib-2.0/glib/gqueue.h \ + /usr/include/glib-2.0/glib/grand.h \ + /usr/include/glib-2.0/glib/grcbox.h \ + /usr/include/glib-2.0/glib/grefcount.h \ + /usr/include/glib-2.0/glib/grefstring.h \ + /usr/include/glib-2.0/glib/gmem.h \ + /usr/include/glib-2.0/glib/gmacros.h \ + /usr/include/glib-2.0/glib/gregex.h \ + /usr/include/glib-2.0/glib/gscanner.h \ + /usr/include/glib-2.0/glib/gsequence.h \ + /usr/include/glib-2.0/glib/gshell.h \ + /usr/include/glib-2.0/glib/gslice.h \ + /usr/include/glib-2.0/glib/gspawn.h \ + /usr/include/glib-2.0/glib/gstrfuncs.h \ + /usr/include/glib-2.0/glib/gstringchunk.h \ + /usr/include/glib-2.0/glib/gstrvbuilder.h \ + /usr/include/glib-2.0/glib/gtestutils.h \ + /usr/include/glib-2.0/glib/gthreadpool.h \ + /usr/include/glib-2.0/glib/gtimer.h \ + /usr/include/glib-2.0/glib/gtrashstack.h \ + /usr/include/glib-2.0/glib/gtree.h \ + /usr/include/glib-2.0/glib/guri.h \ + /usr/include/glib-2.0/glib/guuid.h \ + /usr/include/glib-2.0/glib/gversion.h \ + /usr/include/glib-2.0/glib/deprecated/gallocator.h \ + /usr/include/glib-2.0/glib/deprecated/gcache.h \ + /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ + /usr/include/glib-2.0/glib/deprecated/gmain.h \ + /usr/include/glib-2.0/glib/deprecated/grel.h \ + /usr/include/glib-2.0/glib/deprecated/gthread.h \ + /usr/include/glib-2.0/glib/glib-autocleanups.h \ + /usr/include/glibmm-2.4/glibmm/error.h \ + /usr/include/glibmm-2.4/glibmm/exception.h \ + /usr/include/glibmm-2.4/glibmm/ustring.h \ + /usr/include/glibmm-2.4/glibmm/unicode.h \ + /usr/include/c++/11.2.0/iterator \ + /usr/include/c++/11.2.0/bits/stream_iterator.h \ + /usr/include/c++/11.2.0/sstream \ + /usr/include/c++/11.2.0/bits/sstream.tcc \ + /usr/include/glibmm-2.4/glibmm/value.h \ + /usr/include/glibmm-2.4/glibmm/refptr.h \ + /usr/include/glibmm-2.4/glibmm/enums.h \ + /usr/include/glib-2.0/glib-object.h \ + /usr/include/glib-2.0/gobject/gbinding.h \ + /usr/include/glib-2.0/gobject/gobject.h \ + /usr/include/glib-2.0/gobject/gtype.h \ + /usr/include/glib-2.0/gobject/gvalue.h \ + /usr/include/glib-2.0/gobject/gparam.h \ + /usr/include/glib-2.0/gobject/gclosure.h \ + /usr/include/glib-2.0/gobject/gsignal.h \ + /usr/include/glib-2.0/gobject/gmarshal.h \ + /usr/include/glib-2.0/gobject/gboxed.h \ + /usr/include/glib-2.0/gobject/glib-types.h \ + /usr/include/glib-2.0/gobject/gbindinggroup.h \ + /usr/include/glib-2.0/gobject/genums.h \ + /usr/include/glib-2.0/gobject/glib-enumtypes.h \ + /usr/include/glib-2.0/gobject/gparamspecs.h \ + /usr/include/glib-2.0/gobject/gsignalgroup.h \ + /usr/include/glib-2.0/gobject/gsourceclosure.h \ + /usr/include/glib-2.0/gobject/gtypemodule.h \ + /usr/include/glib-2.0/gobject/gtypeplugin.h \ + /usr/include/glib-2.0/gobject/gvaluearray.h \ + /usr/include/glib-2.0/gobject/gvaluetypes.h \ + /usr/include/glib-2.0/gobject/gobject-autocleanups.h \ + /usr/include/c++/11.2.0/vector \ + /usr/include/c++/11.2.0/bits/stl_vector.h \ + /usr/include/c++/11.2.0/bits/stl_bvector.h \ + /usr/include/c++/11.2.0/bits/vector.tcc \ + /usr/include/glibmm-2.4/glibmm/value_custom.h \ + /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ + /usr/include/glibmm-2.4/glibmm/timeval.h \ + /usr/include/sigc++-2.0/sigc++/sigc++.h \ + /usr/include/sigc++-2.0/sigc++/signal.h \ + /usr/include/c++/11.2.0/list \ + /usr/include/c++/11.2.0/bits/stl_list.h \ + /usr/include/c++/11.2.0/bits/list.tcc \ + /usr/include/sigc++-2.0/sigc++/signal_base.h \ + /usr/lib/sigc++-2.0/include/sigc++config.h \ + /usr/include/sigc++-2.0/sigc++/type_traits.h \ + /usr/include/sigc++-2.0/sigc++/trackable.h \ + /usr/include/sigc++-2.0/sigc++/functors/slot.h \ + /usr/include/sigc++-2.0/sigc++/visit_each.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ + /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ + /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ + /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ + /usr/include/sigc++-2.0/sigc++/limit_reference.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ + /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ + /usr/include/sigc++-2.0/sigc++/connection.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ + /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ + /usr/include/c++/11.2.0/functional \ + /usr/include/c++/11.2.0/bits/std_function.h \ + /usr/include/c++/11.2.0/unordered_map \ + /usr/include/c++/11.2.0/bits/hashtable.h \ + /usr/include/c++/11.2.0/bits/hashtable_policy.h \ + /usr/include/c++/11.2.0/bits/node_handle.h \ + /usr/include/c++/11.2.0/bits/unordered_map.h \ + /usr/include/c++/11.2.0/bits/erase_if.h \ + /usr/include/c++/11.2.0/bits/stl_algo.h \ + /usr/include/c++/11.2.0/bits/algorithmfwd.h \ + /usr/include/c++/11.2.0/bits/stl_heap.h \ + /usr/include/c++/11.2.0/bits/uniform_int_dist.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h \ + /usr/include/sigc++-2.0/sigc++/functors/functors.h \ + /usr/include/glibmm-2.4/glibmm/threads.h \ + /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ + /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ + /usr/include/glibmm-2.4/glibmm/variant.h \ + /usr/include/glibmm-2.4/glibmm/varianttype.h \ + /usr/include/glibmm-2.4/glibmm/variantiter.h \ + /usr/include/glibmm-2.4/glibmm/variantdbusstring.h \ + /usr/include/c++/11.2.0/map \ + /usr/include/c++/11.2.0/bits/stl_tree.h \ + /usr/include/c++/11.2.0/bits/stl_map.h \ + /usr/include/c++/11.2.0/bits/stl_multimap.h \ + /usr/include/glibmm-2.4/glibmm/variant_basictypes.h \ + /usr/include/glibmm-2.4/glibmm/wrap.h \ + /usr/include/glibmm-2.4/glibmm/objectbase.h \ + /usr/include/glibmm-2.4/glibmm/class.h \ + /usr/include/glibmm-2.4/glibmm/signalproxy.h \ + /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ + /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ + /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ + /usr/include/glibmm-2.4/glibmm/quark.h \ + /usr/include/glibmm-2.4/glibmm/debug.h \ + /usr/include/c++/11.2.0/mutex \ + /usr/include/c++/11.2.0/chrono \ + /usr/include/c++/11.2.0/ratio \ + /usr/include/c++/11.2.0/limits \ + /usr/include/c++/11.2.0/ctime \ + /usr/include/c++/11.2.0/bits/parse_numbers.h \ + /usr/include/c++/11.2.0/bits/std_mutex.h \ + /usr/include/c++/11.2.0/bits/unique_lock.h \ + /usr/include/c++/11.2.0/algorithm \ + /usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h \ + /usr/include/c++/11.2.0/deque \ + /usr/include/c++/11.2.0/bits/stl_deque.h \ + /usr/include/c++/11.2.0/bits/deque.tcc \ + /usr/include/glibmm-2.4/glibmm/balancedtree.h \ + /usr/include/glibmm-2.4/glibmm/base64.h \ + /usr/include/glibmm-2.4/glibmm/binding.h \ + /usr/include/glibmm-2.4/glibmm/object.h \ + /usr/include/glibmm-2.4/glibmm/utility.h \ + /usr/include/glibmm-2.4/glibmm/bytearray.h \ + /usr/include/sigc++-2.0/sigc++/slot.h \ + /usr/include/glibmm-2.4/glibmm/bytes.h \ + /usr/include/glibmm-2.4/glibmm/checksum.h \ + /usr/include/glibmm-2.4/glibmm/convert.h \ + /usr/include/glibmm-2.4/glibmm/date.h \ + /usr/include/glibmm-2.4/glibmm/datetime.h \ + /usr/include/glibmm-2.4/glibmm/timezone.h \ + /usr/include/glibmm-2.4/glibmm/dispatcher.h \ + /usr/include/glibmm-2.4/glibmm/main.h \ + /usr/include/glibmm-2.4/glibmm/priorities.h \ + /usr/include/glibmm-2.4/glibmm/iochannel.h \ + /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ + /usr/include/glibmm-2.4/glibmm/fileutils.h \ + /usr/include/glibmm-2.4/glibmm/helperlist.h \ + /usr/include/glibmm-2.4/glibmm/containers.h \ + /usr/include/glibmm-2.4/glibmm/sarray.h \ + /usr/include/glibmm-2.4/glibmm/interface.h \ + /usr/include/glibmm-2.4/glibmm/init.h \ + /usr/include/glibmm-2.4/glibmm/keyfile.h \ + /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ + /usr/include/glibmm-2.4/glibmm/listhandle.h \ + /usr/include/glibmm-2.4/glibmm/markup.h \ + /usr/include/glibmm-2.4/glibmm/miscutils.h \ + /usr/include/glibmm-2.4/glibmm/module.h \ + /usr/include/glibmm-2.4/glibmm/nodetree.h \ + /usr/include/c++/11.2.0/stack \ + /usr/include/c++/11.2.0/bits/stl_stack.h \ + /usr/include/glibmm-2.4/glibmm/optioncontext.h \ + /usr/include/glibmm-2.4/glibmm/optionentry.h \ + /usr/include/glibmm-2.4/glibmm/optiongroup.h \ + /usr/include/glibmm-2.4/glibmm/pattern.h \ + /usr/include/glibmm-2.4/glibmm/property.h \ + /usr/include/glibmm-2.4/glibmm/random.h \ + /usr/include/glibmm-2.4/glibmm/regex.h \ + /usr/include/glibmm-2.4/glibmm/shell.h \ + /usr/include/glibmm-2.4/glibmm/slisthandle.h \ + /usr/include/glibmm-2.4/glibmm/spawn.h \ + /usr/include/glibmm-2.4/glibmm/stringutils.h \ + /usr/include/glibmm-2.4/glibmm/threadpool.h \ + /usr/include/glibmm-2.4/glibmm/timer.h \ + /usr/include/glibmm-2.4/glibmm/uriutils.h \ + /usr/include/glibmm-2.4/glibmm/valuearray.h \ + /usr/include/glibmm-2.4/glibmm/variantdict.h \ + /usr/include/glibmm-2.4/glibmm/vectorutils.h \ + /usr/include/glibmm-2.4/glibmm/weakref.h \ + /usr/include/giomm-2.4/giomm.h \ + /usr/include/giomm-2.4/giomm/action.h \ + /usr/lib/giomm-2.4/include/giommconfig.h \ + /usr/include/glib-2.0/gio/gio.h \ + /usr/include/glib-2.0/gio/giotypes.h \ + /usr/include/glib-2.0/gio/gioenums.h \ + /usr/include/glib-2.0/gio/gaction.h \ + /usr/include/glib-2.0/gio/gactiongroup.h \ + /usr/include/glib-2.0/gio/gactiongroupexporter.h \ + /usr/include/glib-2.0/gio/gactionmap.h \ + /usr/include/glib-2.0/gio/gappinfo.h \ + /usr/include/glib-2.0/gio/gapplication.h \ + /usr/include/glib-2.0/gio/gapplicationcommandline.h \ + /usr/include/glib-2.0/gio/gasyncinitable.h \ + /usr/include/glib-2.0/gio/ginitable.h \ + /usr/include/glib-2.0/gio/gasyncresult.h \ + /usr/include/glib-2.0/gio/gbufferedinputstream.h \ + /usr/include/glib-2.0/gio/gfilterinputstream.h \ + /usr/include/glib-2.0/gio/ginputstream.h \ + /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ + /usr/include/glib-2.0/gio/gfilteroutputstream.h \ + /usr/include/glib-2.0/gio/goutputstream.h \ + /usr/include/glib-2.0/gio/gbytesicon.h \ + /usr/include/glib-2.0/gio/gcancellable.h \ + /usr/include/glib-2.0/gio/gcharsetconverter.h \ + /usr/include/glib-2.0/gio/gconverter.h \ + /usr/include/glib-2.0/gio/gcontenttype.h \ + /usr/include/glib-2.0/gio/gconverterinputstream.h \ + /usr/include/glib-2.0/gio/gconverteroutputstream.h \ + /usr/include/glib-2.0/gio/gcredentials.h \ + /usr/include/glib-2.0/gio/gdatagrambased.h \ + /usr/include/glib-2.0/gio/gdatainputstream.h \ + /usr/include/glib-2.0/gio/gdataoutputstream.h \ + /usr/include/glib-2.0/gio/gdbusactiongroup.h \ + /usr/include/glib-2.0/gio/giotypes.h \ + /usr/include/glib-2.0/gio/gdbusaddress.h \ + /usr/include/glib-2.0/gio/gdbusauthobserver.h \ + /usr/include/glib-2.0/gio/gdbusconnection.h \ + /usr/include/glib-2.0/gio/gdbuserror.h \ + /usr/include/glib-2.0/gio/gdbusinterface.h \ + /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ + /usr/include/glib-2.0/gio/gdbusintrospection.h \ + /usr/include/glib-2.0/gio/gdbusmenumodel.h \ + /usr/include/glib-2.0/gio/gdbusmessage.h \ + /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ + /usr/include/glib-2.0/gio/gdbusnameowning.h \ + /usr/include/glib-2.0/gio/gdbusnamewatching.h \ + /usr/include/glib-2.0/gio/gdbusobject.h \ + /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ + /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ + /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ + /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ + /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ + /usr/include/glib-2.0/gio/gdbusproxy.h \ + /usr/include/glib-2.0/gio/gdbusserver.h \ + /usr/include/glib-2.0/gio/gdbusutils.h \ + /usr/include/glib-2.0/gio/gdebugcontroller.h \ + /usr/include/glib-2.0/gio/gdebugcontrollerdbus.h \ + /usr/include/glib-2.0/gio/gdrive.h \ + /usr/include/glib-2.0/gio/gdtlsclientconnection.h \ + /usr/include/glib-2.0/gio/gdtlsconnection.h \ + /usr/include/glib-2.0/gio/gdtlsserverconnection.h \ + /usr/include/glib-2.0/gio/gemblemedicon.h \ + /usr/include/glib-2.0/gio/gicon.h \ + /usr/include/glib-2.0/gio/gemblem.h \ + /usr/include/glib-2.0/gio/gfile.h \ + /usr/include/glib-2.0/gio/gfileattribute.h \ + /usr/include/glib-2.0/gio/gfileenumerator.h \ + /usr/include/glib-2.0/gio/gfileicon.h \ + /usr/include/glib-2.0/gio/gfileinfo.h \ + /usr/include/glib-2.0/gio/gfileinputstream.h \ + /usr/include/glib-2.0/gio/gfileiostream.h \ + /usr/include/glib-2.0/gio/giostream.h \ + /usr/include/glib-2.0/gio/gioerror.h \ + /usr/include/glib-2.0/gio/gfilemonitor.h \ + /usr/include/glib-2.0/gio/gfilenamecompleter.h \ + /usr/include/glib-2.0/gio/gfileoutputstream.h \ + /usr/include/glib-2.0/gio/ginetaddress.h \ + /usr/include/glib-2.0/gio/ginetaddressmask.h \ + /usr/include/glib-2.0/gio/ginetsocketaddress.h \ + /usr/include/glib-2.0/gio/gsocketaddress.h \ + /usr/include/glib-2.0/gio/gioenumtypes.h \ + /usr/include/glib-2.0/gio/giomodule.h \ + /usr/include/glib-2.0/gmodule.h \ + /usr/include/glib-2.0/gio/gioscheduler.h \ + /usr/include/glib-2.0/gio/glistmodel.h \ + /usr/include/glib-2.0/gio/gliststore.h \ + /usr/include/glib-2.0/gio/gloadableicon.h \ + /usr/include/glib-2.0/gio/gmemoryinputstream.h \ + /usr/include/glib-2.0/gio/gmemorymonitor.h \ + /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ + /usr/include/glib-2.0/gio/gmenu.h \ + /usr/include/glib-2.0/gio/gmenumodel.h \ + /usr/include/glib-2.0/gio/gmenuexporter.h \ + /usr/include/glib-2.0/gio/gmount.h \ + /usr/include/glib-2.0/gio/gmountoperation.h \ + /usr/include/glib-2.0/gio/gnativesocketaddress.h \ + /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ + /usr/include/glib-2.0/gio/gvolumemonitor.h \ + /usr/include/glib-2.0/gio/gnetworkaddress.h \ + /usr/include/glib-2.0/gio/gnetworkmonitor.h \ + /usr/include/glib-2.0/gio/gnetworkservice.h \ + /usr/include/glib-2.0/gio/gnotification.h \ + /usr/include/glib-2.0/gio/gpermission.h \ + /usr/include/glib-2.0/gio/gpollableinputstream.h \ + /usr/include/glib-2.0/gio/gpollableoutputstream.h \ + /usr/include/glib-2.0/gio/gpollableutils.h \ + /usr/include/glib-2.0/gio/gpowerprofilemonitor.h \ + /usr/include/glib-2.0/gio/gpropertyaction.h \ + /usr/include/glib-2.0/gio/gproxy.h \ + /usr/include/glib-2.0/gio/gproxyaddress.h \ + /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ + /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ + /usr/include/glib-2.0/gio/gproxyresolver.h \ + /usr/include/glib-2.0/gio/gremoteactiongroup.h \ + /usr/include/glib-2.0/gio/gresolver.h \ + /usr/include/glib-2.0/gio/gresource.h \ + /usr/include/glib-2.0/gio/gseekable.h \ + /usr/include/glib-2.0/gio/gsettings.h \ + /usr/include/glib-2.0/gio/gsettingsschema.h \ + /usr/include/glib-2.0/gio/gsimpleaction.h \ + /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ + /usr/include/glib-2.0/gio/gactiongroup.h \ + /usr/include/glib-2.0/gio/gactionmap.h \ + /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ + /usr/include/glib-2.0/gio/gsimpleiostream.h \ + /usr/include/glib-2.0/gio/gsimplepermission.h \ + /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ + /usr/include/glib-2.0/gio/gsocket.h \ + /usr/include/glib-2.0/gio/gsocketclient.h \ + /usr/include/glib-2.0/gio/gsocketconnectable.h \ + /usr/include/glib-2.0/gio/gsocketconnection.h \ + /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ + /usr/include/glib-2.0/gio/gsocketlistener.h \ + /usr/include/glib-2.0/gio/gsocketservice.h \ + /usr/include/glib-2.0/gio/gsrvtarget.h \ + /usr/include/glib-2.0/gio/gsubprocess.h \ + /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ + /usr/include/glib-2.0/gio/gtask.h \ + /usr/include/glib-2.0/gio/gtcpconnection.h \ + /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ + /usr/include/glib-2.0/gio/gtestdbus.h \ + /usr/include/glib-2.0/gio/gthemedicon.h \ + /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ + /usr/include/glib-2.0/gio/gtlsbackend.h \ + /usr/include/glib-2.0/gio/gtlscertificate.h \ + /usr/include/glib-2.0/gio/gtlsclientconnection.h \ + /usr/include/glib-2.0/gio/gtlsconnection.h \ + /usr/include/glib-2.0/gio/gtlsdatabase.h \ + /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ + /usr/include/glib-2.0/gio/gtlsinteraction.h \ + /usr/include/glib-2.0/gio/gtlspassword.h \ + /usr/include/glib-2.0/gio/gtlsserverconnection.h \ + /usr/include/glib-2.0/gio/gvfs.h \ + /usr/include/glib-2.0/gio/gvolume.h \ + /usr/include/glib-2.0/gio/gzlibcompressor.h \ + /usr/include/glib-2.0/gio/gzlibdecompressor.h \ + /usr/include/glib-2.0/gio/gio-autocleanups.h \ + /usr/include/giomm-2.4/giomm/actiongroup.h \ + /usr/include/giomm-2.4/giomm/actionmap.h \ + /usr/include/giomm-2.4/giomm/simpleaction.h \ + /usr/include/giomm-2.4/giomm/appinfo.h \ + /usr/include/giomm-2.4/giomm/applaunchcontext.h \ + /usr/include/giomm-2.4/giomm/icon.h \ + /usr/include/giomm-2.4/giomm/asyncresult.h \ + /usr/include/giomm-2.4/giomm/cancellable.h \ + /usr/include/giomm-2.4/giomm/application.h \ + /usr/include/giomm-2.4/giomm/applicationcommandline.h \ + /usr/include/giomm-2.4/giomm/file.h \ + /usr/include/giomm-2.4/giomm/fileattributeinfolist.h \ + /usr/include/giomm-2.4/giomm/fileattributeinfo.h \ + /usr/include/giomm-2.4/giomm/fileenumerator.h \ + /usr/include/giomm-2.4/giomm/fileinfo.h \ + /usr/include/giomm-2.4/giomm/fileinputstream.h \ + /usr/include/giomm-2.4/giomm/inputstream.h \ + /usr/include/giomm-2.4/giomm/seekable.h \ + /usr/include/giomm-2.4/giomm/fileiostream.h \ + /usr/include/giomm-2.4/giomm/iostream.h \ + /usr/include/giomm-2.4/giomm/outputstream.h \ + /usr/include/giomm-2.4/giomm/filemonitor.h \ + /usr/include/giomm-2.4/giomm/fileoutputstream.h \ + /usr/include/giomm-2.4/giomm/mountoperation.h \ + /usr/include/giomm-2.4/giomm/drive.h \ + /usr/include/giomm-2.4/giomm/mount.h \ + /usr/include/giomm-2.4/giomm/error.h \ + /usr/include/giomm-2.4/giomm/dbusconnection.h \ + /usr/include/giomm-2.4/giomm/initable.h \ + /usr/include/giomm-2.4/giomm/asyncinitable.h \ + /usr/include/giomm-2.4/giomm/dbusauthobserver.h \ + /usr/include/giomm-2.4/giomm/credentials.h \ + /usr/include/giomm-2.4/giomm/dbusmethodinvocation.h \ + /usr/include/giomm-2.4/giomm/dbusmessage.h \ + /usr/include/giomm-2.4/giomm/unixfdlist.h \ + /usr/include/giomm-2.4/giomm/dbusintrospection.h \ + /usr/include/giomm-2.4/giomm/dbussubtreevtable.h \ + /usr/include/giomm-2.4/giomm/dbusinterfacevtable.h \ + /usr/include/giomm-2.4/giomm/notification.h \ + /usr/include/giomm-2.4/giomm/bufferedinputstream.h \ + /usr/include/giomm-2.4/giomm/filterinputstream.h \ + /usr/include/giomm-2.4/giomm/bufferedoutputstream.h \ + /usr/include/giomm-2.4/giomm/filteroutputstream.h \ + /usr/include/giomm-2.4/giomm/charsetconverter.h \ + /usr/include/giomm-2.4/giomm/converter.h \ + /usr/include/giomm-2.4/giomm/contenttype.h \ + /usr/include/giomm-2.4/giomm/converterinputstream.h \ + /usr/include/giomm-2.4/giomm/pollableinputstream.h \ + /usr/include/giomm-2.4/giomm/converteroutputstream.h \ + /usr/include/giomm-2.4/giomm/pollableoutputstream.h \ + /usr/include/giomm-2.4/giomm/datainputstream.h \ + /usr/include/giomm-2.4/giomm/enums.h \ + /usr/include/giomm-2.4/giomm/dataoutputstream.h \ + /usr/include/giomm-2.4/giomm/dbusactiongroup.h \ + /usr/include/giomm-2.4/giomm/remoteactiongroup.h \ + /usr/include/giomm-2.4/giomm/dbusaddress.h \ + /usr/include/giomm-2.4/giomm/dbuserror.h \ + /usr/include/giomm-2.4/giomm/dbuserrorutils.h \ + /usr/include/giomm-2.4/giomm/dbusinterface.h \ + /usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h \ + /usr/include/giomm-2.4/giomm/dbusmenumodel.h \ + /usr/include/giomm-2.4/giomm/menumodel.h \ + /usr/include/giomm-2.4/giomm/dbusobject.h \ + /usr/include/giomm-2.4/giomm/dbusobjectmanager.h \ + /usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h \ + /usr/include/giomm-2.4/giomm/dbusobjectproxy.h \ + /usr/include/giomm-2.4/giomm/dbusproxy.h \ + /usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h \ + /usr/include/giomm-2.4/giomm/dbusobjectskeleton.h \ + /usr/include/giomm-2.4/giomm/dbusownname.h \ + /usr/include/giomm-2.4/giomm/dbusserver.h \ + /usr/include/giomm-2.4/giomm/dbusutils.h \ + /usr/include/giomm-2.4/giomm/dbuswatchname.h \ + /usr/include/giomm-2.4/giomm/desktopappinfo.h \ + /usr/include/giomm-2.4/giomm/emblem.h \ + /usr/include/giomm-2.4/giomm/emblemedicon.h \ + /usr/include/giomm-2.4/giomm/fileicon.h \ + /usr/include/giomm-2.4/giomm/loadableicon.h \ + /usr/include/giomm-2.4/giomm/filenamecompleter.h \ + /usr/include/giomm-2.4/giomm/inetaddress.h \ + /usr/include/giomm-2.4/giomm/inetsocketaddress.h \ + /usr/include/giomm-2.4/giomm/socketaddress.h \ + /usr/include/giomm-2.4/giomm/socketconnectable.h \ + /usr/include/giomm-2.4/giomm/socketaddressenumerator.h \ + /usr/include/giomm-2.4/giomm/init.h \ + /usr/include/giomm-2.4/giomm/wrap_init.h \ + /usr/include/giomm-2.4/giomm/listmodel.h \ + /usr/include/giomm-2.4/giomm/liststore.h \ + /usr/include/giomm-2.4/giomm/memoryinputstream.h \ + /usr/include/giomm-2.4/giomm/memoryoutputstream.h \ + /usr/include/giomm-2.4/giomm/menu.h \ + /usr/include/giomm-2.4/giomm/menuitem.h \ + /usr/include/giomm-2.4/giomm/menuattributeiter.h \ + /usr/include/giomm-2.4/giomm/menulinkiter.h \ + /usr/include/giomm-2.4/giomm/networkaddress.h \ + /usr/include/giomm-2.4/giomm/networkmonitor.h \ + /usr/include/giomm-2.4/giomm/networkservice.h \ + /usr/include/giomm-2.4/giomm/permission.h \ + /usr/include/giomm-2.4/giomm/proxy.h \ + /usr/include/giomm-2.4/giomm/proxyaddress.h \ + /usr/include/giomm-2.4/giomm/proxyresolver.h \ + /usr/include/giomm-2.4/giomm/resolver.h \ + /usr/include/giomm-2.4/giomm/srvtarget.h \ + /usr/include/giomm-2.4/giomm/resource.h \ + /usr/include/giomm-2.4/giomm/settings.h \ + /usr/include/giomm-2.4/giomm/settingsschema.h \ + /usr/include/giomm-2.4/giomm/settingsschemakey.h \ + /usr/include/giomm-2.4/giomm/settingsschemasource.h \ + /usr/include/giomm-2.4/giomm/simpleactiongroup.h \ + /usr/include/giomm-2.4/giomm/simpleiostream.h \ + /usr/include/giomm-2.4/giomm/simplepermission.h \ + /usr/include/giomm-2.4/giomm/socket.h \ + /usr/include/giomm-2.4/giomm/socketclient.h \ + /usr/include/giomm-2.4/giomm/socketconnection.h \ + /usr/include/giomm-2.4/giomm/socketcontrolmessage.h \ + /usr/include/c++/11.2.0/set \ + /usr/include/c++/11.2.0/bits/stl_set.h \ + /usr/include/c++/11.2.0/bits/stl_multiset.h \ + /usr/include/giomm-2.4/giomm/socketlistener.h \ + /usr/include/giomm-2.4/giomm/socketservice.h \ + /usr/include/giomm-2.4/giomm/socketsource.h \ + /usr/include/giomm-2.4/giomm/tcpconnection.h \ + /usr/include/giomm-2.4/giomm/tcpwrapperconnection.h \ + /usr/include/giomm-2.4/giomm/themedicon.h \ + /usr/include/giomm-2.4/giomm/threadedsocketservice.h \ + /usr/include/giomm-2.4/giomm/tlscertificate.h \ + /usr/include/giomm-2.4/giomm/tlsclientconnection.h \ + /usr/include/giomm-2.4/giomm/tlsconnection.h \ + /usr/include/giomm-2.4/giomm/tlsdatabase.h \ + /usr/include/giomm-2.4/giomm/tlsinteraction.h \ + /usr/include/giomm-2.4/giomm/tlspassword.h \ + /usr/include/giomm-2.4/giomm/tlsserverconnection.h \ + /usr/include/giomm-2.4/giomm/unixconnection.h \ + /usr/include/giomm-2.4/giomm/unixcredentialsmessage.h \ + /usr/include/giomm-2.4/giomm/unixfdmessage.h \ + /usr/include/giomm-2.4/giomm/unixinputstream.h \ + /usr/include/giomm-2.4/giomm/unixoutputstream.h \ + /usr/include/giomm-2.4/giomm/unixsocketaddress.h \ + /usr/include/giomm-2.4/giomm/volume.h \ + /usr/include/giomm-2.4/giomm/volumemonitor.h \ + /usr/include/giomm-2.4/giomm/zlibcompressor.h \ + /usr/include/giomm-2.4/giomm/zlibdecompressor.h \ + /usr/include/gdkmm-3.0/gdkmm/dragcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/color.h \ + /usr/lib/gdkmm-3.0/include/gdkmmconfig.h \ + /usr/lib/pangomm-1.4/include/pangommconfig.h \ + /usr/include/gtk-3.0/gdk/gdk.h \ + /usr/include/gtk-3.0/gdk/gdkconfig.h \ + /usr/include/gtk-3.0/gdk/gdkversionmacros.h \ + /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h \ + /usr/include/gtk-3.0/gdk/gdktypes.h \ + /usr/include/pango-1.0/pango/pango.h \ + /usr/include/pango-1.0/pango/pango-attributes.h \ + /usr/include/pango-1.0/pango/pango-font.h \ + /usr/include/pango-1.0/pango/pango-coverage.h \ + /usr/include/pango-1.0/pango/pango-version-macros.h \ + /usr/include/pango-1.0/pango/pango-features.h \ + /usr/include/harfbuzz/hb.h \ + /usr/include/harfbuzz/hb-blob.h \ + /usr/include/harfbuzz/hb-common.h \ + /usr/include/harfbuzz/hb-buffer.h \ + /usr/include/harfbuzz/hb-unicode.h \ + /usr/include/harfbuzz/hb-font.h \ + /usr/include/harfbuzz/hb-face.h \ + /usr/include/harfbuzz/hb-set.h \ + /usr/include/harfbuzz/hb-draw.h \ + /usr/include/harfbuzz/hb.h \ + /usr/include/harfbuzz/hb-deprecated.h \ + /usr/include/harfbuzz/hb-map.h \ + /usr/include/harfbuzz/hb-shape.h \ + /usr/include/harfbuzz/hb-shape-plan.h \ + /usr/include/harfbuzz/hb-style.h \ + /usr/include/harfbuzz/hb-version.h \ + /usr/include/pango-1.0/pango/pango-types.h \ + /usr/include/pango-1.0/pango/pango-gravity.h \ + /usr/include/pango-1.0/pango/pango-matrix.h \ + /usr/include/pango-1.0/pango/pango-script.h \ + /usr/include/pango-1.0/pango/pango-language.h \ + /usr/include/pango-1.0/pango/pango-bidi-type.h \ + /usr/include/pango-1.0/pango/pango-direction.h \ + /usr/include/pango-1.0/pango/pango-color.h \ + /usr/include/pango-1.0/pango/pango-break.h \ + /usr/include/pango-1.0/pango/pango-item.h \ + /usr/include/pango-1.0/pango/pango-context.h \ + /usr/include/pango-1.0/pango/pango-fontmap.h \ + /usr/include/pango-1.0/pango/pango-fontset.h \ + /usr/include/pango-1.0/pango/pango-engine.h \ + /usr/include/pango-1.0/pango/pango-glyph.h \ + /usr/include/pango-1.0/pango/pango-enum-types.h \ + /usr/include/pango-1.0/pango/pango-fontset-simple.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-layout.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/include/pango-1.0/pango/pango-markup.h \ + /usr/include/pango-1.0/pango/pango-renderer.h \ + /usr/include/pango-1.0/pango/pango-utils.h \ + /usr/include/cairo/cairo.h \ + /usr/include/cairo/cairo-version.h \ + /usr/include/cairo/cairo-features.h \ + /usr/include/cairo/cairo-deprecated.h \ + /usr/include/gtk-3.0/gdk/gdkscreen.h \ + /usr/include/gtk-3.0/gdk/gdkdisplay.h \ + /usr/include/gtk-3.0/gdk/gdkevents.h \ + /usr/include/gtk-3.0/gdk/gdkdnd.h \ + /usr/include/gtk-3.0/gdk/gdkdevice.h \ + /usr/include/gtk-3.0/gdk/gdkdevicetool.h \ + /usr/include/gtk-3.0/gdk/gdkdevicemanager.h \ + /usr/include/gtk-3.0/gdk/gdkseat.h \ + /usr/include/gtk-3.0/gdk/gdkwindow.h \ + /usr/include/gtk-3.0/gdk/gdkdrawingcontext.h \ + /usr/include/gtk-3.0/gdk/gdkframeclock.h \ + /usr/include/gtk-3.0/gdk/gdkframetimings.h \ + /usr/include/gtk-3.0/gdk/gdkmonitor.h \ + /usr/include/gtk-3.0/gdk/gdkrectangle.h \ + /usr/include/gtk-3.0/gdk/gdkcairo.h \ + /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h \ + /usr/include/gtk-3.0/gdk/gdkrgba.h \ + /usr/include/gtk-3.0/gdk/gdkpixbuf.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h \ + /usr/include/pango-1.0/pango/pangocairo.h \ + /usr/include/gtk-3.0/gdk/gdkcursor.h \ + /usr/include/gtk-3.0/gdk/gdkdevicepad.h \ + /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h \ + /usr/include/gtk-3.0/gdk/gdkenumtypes.h \ + /usr/include/gtk-3.0/gdk/gdkglcontext.h \ + /usr/include/gtk-3.0/gdk/gdkkeys.h \ + /usr/include/gtk-3.0/gdk/gdkkeysyms.h \ + /usr/include/gtk-3.0/gdk/gdkmain.h \ + /usr/include/gtk-3.0/gdk/gdkpango.h \ + /usr/include/gtk-3.0/gdk/gdkproperty.h \ + /usr/include/gtk-3.0/gdk/gdkselection.h \ + /usr/include/gtk-3.0/gdk/gdktestutils.h \ + /usr/include/gtk-3.0/gdk/gdkthreads.h \ + /usr/include/gtk-3.0/gdk/gdkvisual.h \ + /usr/include/gtk-3.0/gdk/gdk-autocleanup.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbuf.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufformat.h \ + /usr/include/gdkmm-3.0/gdkmm/types.h \ + /usr/include/cairomm-1.0/cairomm/surface.h \ + /usr/include/cairomm-1.0/cairomm/enums.h \ + /usr/include/cairo/cairo-ft.h \ + /usr/include/cairo/cairo.h \ + /usr/include/freetype2/ft2build.h \ + /usr/include/freetype2/freetype/config/ftheader.h \ + /usr/include/freetype2/freetype/freetype.h \ + /usr/include/freetype2/freetype/config/ftconfig.h \ + /usr/include/freetype2/freetype/config/ftoption.h \ + /usr/include/freetype2/freetype/config/ftstdlib.h \ + /usr/include/setjmp.h \ + /usr/include/freetype2/freetype/config/integer-types.h \ + /usr/include/freetype2/freetype/config/public-macros.h \ + /usr/include/freetype2/freetype/config/mac-support.h \ + /usr/include/freetype2/freetype/fttypes.h \ + /usr/include/freetype2/freetype/ftsystem.h \ + /usr/include/freetype2/freetype/ftimage.h \ + /usr/include/freetype2/freetype/fterrors.h \ + /usr/include/freetype2/freetype/ftmoderr.h \ + /usr/include/freetype2/freetype/fterrdef.h \ + /usr/include/fontconfig/fontconfig.h \ + /usr/include/sys/stat.h \ + /usr/include/bits/stat.h \ + /usr/include/bits/struct_stat.h \ + /usr/include/bits/statx.h \ + /usr/include/linux/stat.h \ + /usr/include/linux/types.h \ + /usr/include/asm/types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/statx-generic.h \ + /usr/include/bits/types/struct_statx_timestamp.h \ + /usr/include/bits/types/struct_statx.h \ + /usr/include/cairomm-1.0/cairomm/exception.h \ + /usr/lib/cairomm-1.0/include/cairommconfig.h \ + /usr/include/cairomm-1.0/cairomm/device.h \ + /usr/include/cairomm-1.0/cairomm/types.h \ + /usr/include/cairomm-1.0/cairomm/refptr.h \ + /usr/include/cairomm-1.0/cairomm/fontoptions.h \ + /usr/include/cairo/cairo-pdf.h \ + /usr/include/cairo/cairo-ps.h \ + /usr/include/cairo/cairo-svg.h \ + /usr/include/gdkmm-3.0/gdkmm/device.h \ + /usr/include/gdkmm-3.0/gdkmm/cursor.h \ + /usr/include/gdkmm-3.0/gdkmm/display.h \ + /usr/include/gdkmm-3.0/gdkmm/screen.h \ + /usr/include/gdkmm-3.0/gdkmm/rectangle.h \ + /usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/event.h \ + /usr/include/gdkmm-3.0/gdkmm/timecoord.h \ + /usr/include/gdkmm-3.0/gdkmm.h \ + /usr/include/gdkmm-3.0/gdkmm/visual.h \ + /usr/include/gdkmm-3.0/gdkmm/window.h \ + /usr/include/cairomm-1.0/cairomm/region.h \ + /usr/include/cairomm-1.0/cairomm/pattern.h \ + /usr/include/gdkmm-3.0/gdkmm/rgba.h \ + /usr/include/cairomm-1.0/cairomm/context.h \ + /usr/include/cairomm-1.0/cairomm/fontface.h \ + /usr/include/cairomm-1.0/cairomm/matrix.h \ + /usr/include/cairomm-1.0/cairomm/path.h \ + /usr/include/cairomm-1.0/cairomm/scaledfont.h \ + /usr/include/c++/11.2.0/valarray \ + /usr/include/c++/11.2.0/cmath \ + /usr/include/math.h \ + /usr/include/bits/math-vector.h \ + /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h \ + /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h \ + /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h \ + /usr/include/c++/11.2.0/bits/specfun.h \ + /usr/include/c++/11.2.0/tr1/gamma.tcc \ + /usr/include/c++/11.2.0/tr1/special_function_util.h \ + /usr/include/c++/11.2.0/tr1/bessel_function.tcc \ + /usr/include/c++/11.2.0/tr1/beta_function.tcc \ + /usr/include/c++/11.2.0/tr1/ell_integral.tcc \ + /usr/include/c++/11.2.0/tr1/exp_integral.tcc \ + /usr/include/c++/11.2.0/tr1/hypergeometric.tcc \ + /usr/include/c++/11.2.0/tr1/legendre_function.tcc \ + /usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc \ + /usr/include/c++/11.2.0/tr1/poly_hermite.tcc \ + /usr/include/c++/11.2.0/tr1/poly_laguerre.tcc \ + /usr/include/c++/11.2.0/tr1/riemann_zeta.tcc \ + /usr/include/c++/11.2.0/bits/valarray_array.h \ + /usr/include/c++/11.2.0/bits/valarray_array.tcc \ + /usr/include/c++/11.2.0/bits/valarray_before.h \ + /usr/include/c++/11.2.0/bits/slice_array.h \ + /usr/include/c++/11.2.0/bits/valarray_after.h \ + /usr/include/c++/11.2.0/bits/gslice.h \ + /usr/include/c++/11.2.0/bits/gslice_array.h \ + /usr/include/c++/11.2.0/bits/mask_array.h \ + /usr/include/c++/11.2.0/bits/indirect_array.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufloader.h \ + /usr/include/gdkmm-3.0/gdkmm/drawingcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/frameclock.h \ + /usr/include/gdkmm-3.0/gdkmm/frametimings.h \ + /usr/include/gdkmm-3.0/gdkmm/glcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/displaymanager.h \ + /usr/include/gdkmm-3.0/gdkmm/devicemanager.h \ + /usr/include/gdkmm-3.0/gdkmm/seat.h \ + /usr/include/gdkmm-3.0/gdkmm/monitor.h \ + /usr/include/gdkmm-3.0/gdkmm/general.h \ + /usr/include/gtkmm-3.0/gtkmm/toggleaction.h \ + /usr/include/gtkmm-3.0/gtkmm/action.h \ + /usr/lib/gtkmm-3.0/include/gtkmmconfig.h \ + /usr/include/gtkmm-3.0/gtkmm/widget.h \ + /usr/include/pangomm-1.4/pangomm/context.h \ + /usr/include/pangomm-1.4/pangomm/fontdescription.h \ + /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ + /usr/include/pangomm-1.4/pangomm/fontset.h \ + /usr/include/pangomm-1.4/pangomm/language.h \ + /usr/include/pangomm-1.4/pangomm/font.h \ + /usr/include/pangomm-1.4/pangomm/rectangle.h \ + /usr/include/pangomm-1.4/pangomm/glyph.h \ + /usr/include/pangomm-1.4/pangomm/coverage.h \ + /usr/include/pangomm-1.4/pangomm/fontmap.h \ + /usr/include/pangomm-1.4/pangomm/fontfamily.h \ + /usr/include/pangomm-1.4/pangomm/fontface.h \ + /usr/include/pangomm-1.4/pangomm/item.h \ + /usr/include/pangomm-1.4/pangomm/attributes.h \ + /usr/include/pangomm-1.4/pangomm/color.h \ + /usr/include/pangomm-1.4/pangomm/attrlist.h \ + /usr/include/pangomm-1.4/pangomm/attriter.h \ + /usr/include/pangomm-1.4/pangomm/types.h \ + /usr/include/pangomm-1.4/pangomm/layout.h \ + /usr/include/pangomm-1.4/pangomm/tabarray.h \ + /usr/include/pangomm-1.4/pangomm/layoutline.h \ + /usr/include/pangomm-1.4/pangomm/layoutiter.h \ + /usr/include/pangomm-1.4/pangomm/layoutrun.h \ + /usr/include/atkmm-1.6/atkmm/object.h \ + /usr/include/atkmm-1.6/atkmm/component.h \ + /usr/lib/atkmm-1.6/include/atkmmconfig.h \ + /usr/include/atkmm-1.6/atkmm/relation.h \ + /usr/include/atkmm-1.6/atkmm/implementor.h \ + /usr/include/gtkmm-3.0/gtkmm/object.h \ + /usr/include/gtkmm-3.0/gtkmm/base.h \ + /usr/include/gtkmm-3.0/gtkmm/buildable.h \ + /usr/include/gtkmm-3.0/gtkmm/enums.h \ + /usr/include/gtk-3.0/gtk/gtk.h \ + /usr/include/gtk-3.0/gtk/gtkaboutdialog.h \ + /usr/include/gtk-3.0/gtk/gtkdialog.h \ + /usr/include/gtk-3.0/gtk/gtkwindow.h \ + /usr/include/gtk-3.0/gtk/gtkapplication.h \ + /usr/include/gtk-3.0/gtk/gtkwidget.h \ + /usr/include/gtk-3.0/gtk/gtkaccelgroup.h \ + /usr/include/gtk-3.0/gtk/gtkenums.h \ + /usr/include/gtk-3.0/gtk/gtkborder.h \ + /usr/include/gtk-3.0/gtk/gtktypes.h \ + /usr/include/atk-1.0/atk/atk.h \ + /usr/include/atk-1.0/atk/atkobject.h \ + /usr/include/atk-1.0/atk/atkversion.h \ + /usr/include/atk-1.0/atk/atkstate.h \ + /usr/include/atk-1.0/atk/atkrelationtype.h \ + /usr/include/atk-1.0/atk/atkaction.h \ + /usr/include/atk-1.0/atk/atkcomponent.h \ + /usr/include/atk-1.0/atk/atkutil.h \ + /usr/include/atk-1.0/atk/atkdocument.h \ + /usr/include/atk-1.0/atk/atkeditabletext.h \ + /usr/include/atk-1.0/atk/atktext.h \ + /usr/include/atk-1.0/atk/atk-enum-types.h \ + /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ + /usr/include/atk-1.0/atk/atkhyperlink.h \ + /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ + /usr/include/atk-1.0/atk/atkhypertext.h \ + /usr/include/atk-1.0/atk/atkimage.h \ + /usr/include/atk-1.0/atk/atknoopobject.h \ + /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ + /usr/include/atk-1.0/atk/atkobjectfactory.h \ + /usr/include/atk-1.0/atk/atkplug.h \ + /usr/include/atk-1.0/atk/atkrange.h \ + /usr/include/atk-1.0/atk/atkregistry.h \ + /usr/include/atk-1.0/atk/atkobjectfactory.h \ + /usr/include/atk-1.0/atk/atkrelation.h \ + /usr/include/atk-1.0/atk/atkrelationset.h \ + /usr/include/atk-1.0/atk/atkselection.h \ + /usr/include/atk-1.0/atk/atksocket.h \ + /usr/include/atk-1.0/atk/atkstateset.h \ + /usr/include/atk-1.0/atk/atkstreamablecontent.h \ + /usr/include/atk-1.0/atk/atktable.h \ + /usr/include/atk-1.0/atk/atktablecell.h \ + /usr/include/atk-1.0/atk/atkmisc.h \ + /usr/include/atk-1.0/atk/atkvalue.h \ + /usr/include/atk-1.0/atk/atkwindow.h \ + /usr/include/atk-1.0/atk/atk-autocleanups.h \ + /usr/include/gtk-3.0/gtk/gtkbin.h \ + /usr/include/gtk-3.0/gtk/gtkcontainer.h \ + /usr/include/gtk-3.0/gtk/gtkaccellabel.h \ + /usr/include/gtk-3.0/gtk/gtklabel.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h \ + /usr/include/gtk-3.0/gtk/gtkmenu.h \ + /usr/include/gtk-3.0/gtk/gtkmenushell.h \ + /usr/include/gtk-3.0/gtk/gtkaccelmap.h \ + /usr/include/gtk-3.0/gtk/gtkaccessible.h \ + /usr/include/gtk-3.0/gtk/gtkactionable.h \ + /usr/include/gtk-3.0/gtk/gtkactionbar.h \ + /usr/include/gtk-3.0/gtk/gtkadjustment.h \ + /usr/include/gtk-3.0/gtk/gtkappchooser.h \ + /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkbox.h \ + /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h \ + /usr/include/gtk-3.0/gtk/gtkcombobox.h \ + /usr/include/gtk-3.0/gtk/gtktreemodel.h \ + /usr/include/gtk-3.0/gtk/gtktreeview.h \ + /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderer.h \ + /usr/include/gtk-3.0/gtk/gtkcelleditable.h \ + /usr/include/gtk-3.0/gtk/gtktreesortable.h \ + /usr/include/gtk-3.0/gtk/gtkcellarea.h \ + /usr/include/gtk-3.0/gtk/gtkdnd.h \ + /usr/include/gtk-3.0/gtk/gtkselection.h \ + /usr/include/gtk-3.0/gtk/gtktextiter.h \ + /usr/include/gtk-3.0/gtk/gtktextattributes.h \ + /usr/include/gtk-3.0/gtk/gtktextchild.h \ + /usr/include/gtk-3.0/gtk/gtktexttag.h \ + /usr/include/gtk-3.0/gtk/gtkentry.h \ + /usr/include/gtk-3.0/gtk/gtkeditable.h \ + /usr/include/gtk-3.0/gtk/gtkimcontext.h \ + /usr/include/gtk-3.0/gtk/gtkentrybuffer.h \ + /usr/include/gtk-3.0/gtk/gtkentrycompletion.h \ + /usr/include/gtk-3.0/gtk/gtkliststore.h \ + /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h \ + /usr/include/gtk-3.0/gtk/gtkimage.h \ + /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutswindow.h \ + /usr/include/gtk-3.0/gtk/gtkaspectframe.h \ + /usr/include/gtk-3.0/gtk/gtkframe.h \ + /usr/include/gtk-3.0/gtk/gtkassistant.h \ + /usr/include/gtk-3.0/gtk/gtkbbox.h \ + /usr/include/gtk-3.0/gtk/gtkbindings.h \ + /usr/include/gtk-3.0/gtk/gtkbuildable.h \ + /usr/include/gtk-3.0/gtk/gtkbuilder.h \ + /usr/include/gtk-3.0/gtk/gtkbutton.h \ + /usr/include/gtk-3.0/gtk/gtkcalendar.h \ + /usr/include/gtk-3.0/gtk/gtkcellareabox.h \ + /usr/include/gtk-3.0/gtk/gtkcellareacontext.h \ + /usr/include/gtk-3.0/gtk/gtkcelllayout.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h \ + /usr/include/gtk-3.0/gtk/gtkcellview.h \ + /usr/include/gtk-3.0/gtk/gtkcheckbutton.h \ + /usr/include/gtk-3.0/gtk/gtktogglebutton.h \ + /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkmenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkclipboard.h \ + /usr/include/gtk-3.0/gtk/gtkcolorbutton.h \ + /usr/include/gtk-3.0/gtk/gtkcolorchooser.h \ + /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkcolorutils.h \ + /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h \ + /usr/include/gtk-3.0/gtk/gtkcssprovider.h \ + /usr/include/gtk-3.0/gtk/gtkcsssection.h \ + /usr/include/gtk-3.0/gtk/gtkdebug.h \ + /usr/include/gtk-3.0/gtk/gtkdragdest.h \ + /usr/include/gtk-3.0/gtk/gtkdragsource.h \ + /usr/include/gtk-3.0/gtk/gtkdrawingarea.h \ + /usr/include/gtk-3.0/gtk/gtkeventbox.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontroller.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h \ + /usr/include/gtk-3.0/gtk/gtkexpander.h \ + /usr/include/gtk-3.0/gtk/gtkfixed.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooser.h \ + /usr/include/gtk-3.0/gtk/gtkfilefilter.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkfilechoosernative.h \ + /usr/include/gtk-3.0/gtk/gtknativedialog.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkflowbox.h \ + /usr/include/gtk-3.0/gtk/gtkfontbutton.h \ + /usr/include/gtk-3.0/gtk/gtkfontchooser.h \ + /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkgesture.h \ + /usr/include/gtk-3.0/gtk/gtkgesturedrag.h \ + /usr/include/gtk-3.0/gtk/gtkgesturesingle.h \ + /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h \ + /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h \ + /usr/include/gtk-3.0/gtk/gtkgesturepan.h \ + /usr/include/gtk-3.0/gtk/gtkgesturerotate.h \ + /usr/include/gtk-3.0/gtk/gtkgesturestylus.h \ + /usr/include/gtk-3.0/gtk/gtkgestureswipe.h \ + /usr/include/gtk-3.0/gtk/gtkgesturezoom.h \ + /usr/include/gtk-3.0/gtk/gtkglarea.h \ + /usr/include/gtk-3.0/gtk/gtkgrid.h \ + /usr/include/gtk-3.0/gtk/gtkheaderbar.h \ + /usr/include/gtk-3.0/gtk/gtkicontheme.h \ + /usr/include/gtk-3.0/gtk/gtkstylecontext.h \ + /usr/include/gtk-3.0/gtk/gtkstyleprovider.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h \ + /usr/include/gtk-3.0/gtk/gtkiconview.h \ + /usr/include/gtk-3.0/gtk/gtktooltip.h \ + /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h \ + /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h \ + /usr/include/gtk-3.0/gtk/gtkimmulticontext.h \ + /usr/include/gtk-3.0/gtk/gtkinfobar.h \ + /usr/include/gtk-3.0/gtk/gtkinvisible.h \ + /usr/include/gtk-3.0/gtk/gtklayout.h \ + /usr/include/gtk-3.0/gtk/gtklevelbar.h \ + /usr/include/gtk-3.0/gtk/gtklinkbutton.h \ + /usr/include/gtk-3.0/gtk/gtklistbox.h \ + /usr/include/gtk-3.0/gtk/gtklockbutton.h \ + /usr/include/gtk-3.0/gtk/gtkmain.h \ + /usr/include/gtk-3.0/gtk/gtkmenubar.h \ + /usr/include/gtk-3.0/gtk/gtkmenubutton.h \ + /usr/include/gtk-3.0/gtk/gtkpopover.h \ + /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtktoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtktoolitem.h \ + /usr/include/gtk-3.0/gtk/gtksizegroup.h \ + /usr/include/gtk-3.0/gtk/gtkmessagedialog.h \ + /usr/include/gtk-3.0/gtk/gtkmodelbutton.h \ + /usr/include/gtk-3.0/gtk/gtkmodules.h \ + /usr/include/gtk-3.0/gtk/gtkmountoperation.h \ + /usr/include/gtk-3.0/gtk/gtknotebook.h \ + /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h \ + /usr/include/gtk-3.0/gtk/gtkorientable.h \ + /usr/include/gtk-3.0/gtk/gtkoverlay.h \ + /usr/include/gtk-3.0/gtk/gtkpadcontroller.h \ + /usr/include/gtk-3.0/gtk/gtkpagesetup.h \ + /usr/include/gtk-3.0/gtk/gtkpapersize.h \ + /usr/include/gtk-3.0/gtk/gtkpaned.h \ + /usr/include/gtk-3.0/gtk/gtkplacessidebar.h \ + /usr/include/gtk-3.0/gtk/gtkpopovermenu.h \ + /usr/include/gtk-3.0/gtk/gtkprintcontext.h \ + /usr/include/gtk-3.0/gtk/gtkprintoperation.h \ + /usr/include/gtk-3.0/gtk/gtkprintsettings.h \ + /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h \ + /usr/include/gtk-3.0/gtk/gtkprogressbar.h \ + /usr/include/gtk-3.0/gtk/gtkradiobutton.h \ + /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtkrange.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchooser.h \ + /usr/include/gtk-3.0/gtk/gtkrecentmanager.h \ + /usr/include/gtk-3.0/gtk/gtkrecentfilter.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkrender.h \ + /usr/include/gtk-3.0/gtk/gtkrevealer.h \ + /usr/include/gtk-3.0/gtk/gtkscale.h \ + /usr/include/gtk-3.0/gtk/gtkscalebutton.h \ + /usr/include/gtk-3.0/gtk/gtkscrollable.h \ + /usr/include/gtk-3.0/gtk/gtkscrollbar.h \ + /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h \ + /usr/include/gtk-3.0/gtk/gtksearchbar.h \ + /usr/include/gtk-3.0/gtk/gtksearchentry.h \ + /usr/include/gtk-3.0/gtk/gtkseparator.h \ + /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h \ + /usr/include/gtk-3.0/gtk/gtksettings.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutlabel.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutssection.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h \ + /usr/include/gtk-3.0/gtk/gtkshow.h \ + /usr/include/gtk-3.0/gtk/gtkstacksidebar.h \ + /usr/include/gtk-3.0/gtk/gtkstack.h \ + /usr/include/gtk-3.0/gtk/gtksizerequest.h \ + /usr/include/gtk-3.0/gtk/gtkspinbutton.h \ + /usr/include/gtk-3.0/gtk/gtkspinner.h \ + /usr/include/gtk-3.0/gtk/gtkstackswitcher.h \ + /usr/include/gtk-3.0/gtk/gtkstatusbar.h \ + /usr/include/gtk-3.0/gtk/gtkswitch.h \ + /usr/include/gtk-3.0/gtk/gtktextbuffer.h \ + /usr/include/gtk-3.0/gtk/gtktexttagtable.h \ + /usr/include/gtk-3.0/gtk/gtktextmark.h \ + /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h \ + /usr/include/gtk-3.0/gtk/gtktextview.h \ + /usr/include/gtk-3.0/gtk/gtktoolbar.h \ + /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h \ + /usr/include/gtk-3.0/gtk/gtktoolpalette.h \ + /usr/include/gtk-3.0/gtk/gtktoolshell.h \ + /usr/include/gtk-3.0/gtk/gtktestutils.h \ + /usr/include/gtk-3.0/gtk/gtktreednd.h \ + /usr/include/gtk-3.0/gtk/gtktreemodelsort.h \ + /usr/include/gtk-3.0/gtk/gtktreeselection.h \ + /usr/include/gtk-3.0/gtk/gtktreestore.h \ + /usr/include/gtk-3.0/gtk/gtktypebuiltins.h \ + /usr/include/gtk-3.0/gtk/gtkversion.h \ + /usr/include/gtk-3.0/gtk/gtkviewport.h \ + /usr/include/gtk-3.0/gtk/gtkvolumebutton.h \ + /usr/include/gtk-3.0/gtk/gtkwidgetpath.h \ + /usr/include/gtk-3.0/gtk/gtkwindowgroup.h \ + /usr/include/gtk-3.0/gtk/gtkwindow.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtktable.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h \ + /usr/include/gtk-3.0/gtk/gtk-autocleanups.h \ + /usr/include/gtkmm-3.0/gtkmm/targetlist.h \ + /usr/include/gtkmm-3.0/gtkmm/targetentry.h \ + /usr/include/gtkmm-3.0/gtkmm/clipboard.h \ + /usr/include/gtkmm-3.0/gtkmm/selectiondata.h \ + /usr/include/gtkmm-3.0/gtkmm/requisition.h \ + /usr/include/gtkmm-3.0/gtkmm/stylecontext.h \ + /usr/include/gtkmm-3.0/gtkmm/styleprovider.h \ + /usr/include/gtkmm-3.0/gtkmm/border.h \ + /usr/include/gtkmm-3.0/gtkmm/iconsource.h \ + /usr/include/gtkmm-3.0/gtkmm/iconset.h \ + /usr/include/gtkmm-3.0/gtkmm/stockid.h \ + /usr/include/gtkmm-3.0/gtkmm/widgetpath.h \ + /usr/include/gtkmm-3.0/gtkmm/accelgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/radioaction.h \ + /usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h \ + /usr/include/gtkmm-3.0/gtkmm/aboutdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/dialog.h \ + /usr/include/gtkmm-3.0/gtkmm/window.h \ + /usr/include/gtkmm-3.0/gtkmm/bin.h \ + /usr/include/gtkmm-3.0/gtkmm/container.h \ + /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h \ + /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h \ + /usr/include/gtkmm-3.0/gtkmm/application.h \ + /usr/include/gtkmm-3.0/gtkmm/actiongroup.h \ + /usr/include/gtkmm-3.0/gtkmm/accelkey.h \ + /usr/include/gtkmm-3.0/gtkmm/windowgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/box.h \ + /usr/include/gtkmm-3.0/gtkmm/orientable.h \ + /usr/include/gtkmm-3.0/gtkmm/hvbox.h \ + /usr/include/gtkmm-3.0/gtkmm/button.h \ + /usr/include/gtkmm-3.0/gtkmm/activatable.h \ + /usr/include/gtkmm-3.0/gtkmm/buttonbox.h \ + /usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h \ + /usr/include/gtkmm-3.0/gtkmm/headerbar.h \ + /usr/include/gtkmm-3.0/gtkmm/accelmap.h \ + /usr/include/gtkmm-3.0/gtkmm/actionable.h \ + /usr/include/gtkmm-3.0/gtkmm/actionbar.h \ + /usr/include/gtkmm-3.0/gtkmm/adjustment.h \ + /usr/include/gtkmm-3.0/gtkmm/alignment.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/combobox.h \ + /usr/include/gtkmm-3.0/gtkmm/celllayout.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderer.h \ + /usr/include/gtkmm-3.0/gtkmm/celleditable.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodel.h \ + /usr/include/gtkmm-3.0/gtkmm/treeiter.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h \ + /usr/include/gtkmm-3.0/gtkmm/cellarea.h \ + /usr/include/gtkmm-3.0/gtkmm/cellareacontext.h \ + /usr/include/gtkmm-3.0/gtkmm/treeview.h \ + /usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h \ + /usr/include/gtkmm-3.0/gtkmm/treeselection.h \ + /usr/include/gtkmm-3.0/gtkmm/treepath.h \ + /usr/include/gtkmm-3.0/gtkmm/scrollable.h \ + /usr/include/gtkmm-3.0/gtkmm/entry.h \ + /usr/include/gtkmm-3.0/gtkmm/editable.h \ + /usr/include/gtkmm-3.0/gtkmm/menu.h \ + /usr/include/gtkmm-3.0/gtkmm/menushell.h \ + /usr/include/gtkmm-3.0/gtkmm/menuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/accellabel.h \ + /usr/include/gtkmm-3.0/gtkmm/label.h \ + /usr/include/gtkmm-3.0/gtkmm/misc.h \ + /usr/include/gtkmm-3.0/gtkmm/entrycompletion.h \ + /usr/include/gtkmm-3.0/gtkmm/image.h \ + /usr/include/gtkmm-3.0/gtkmm/entrybuffer.h \ + /usr/include/gtkmm-3.0/gtkmm/tooltip.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/applicationwindow.h \ + /usr/include/gtkmm-3.0/gtkmm/arrow.h \ + /usr/include/gtkmm-3.0/gtkmm/aspectframe.h \ + /usr/include/gtkmm-3.0/gtkmm/frame.h \ + /usr/include/gtkmm-3.0/gtkmm/assistant.h \ + /usr/include/gtkmm-3.0/gtkmm/builder.h \ + /usr/include/gtkmm-3.0/gtkmm/cellareabox.h \ + /usr/include/gtkmm-3.0/gtkmm/cellview.h \ + /usr/include/gtkmm-3.0/gtkmm/checkbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/togglebutton.h \ + /usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h \ + /usr/include/gtkmm-3.0/gtkmm/colorbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/colorchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/colorselection.h \ + /usr/include/gtkmm-3.0/gtkmm/comboboxtext.h \ + /usr/include/gtkmm-3.0/gtkmm/cssprovider.h \ + /usr/include/gtkmm-3.0/gtkmm/csssection.h \ + /usr/include/gtkmm-3.0/gtkmm/drawingarea.h \ + /usr/include/gtkmm-3.0/gtkmm/expander.h \ + /usr/include/gtkmm-3.0/gtkmm/eventbox.h \ + /usr/include/gtkmm-3.0/gtkmm/eventcontroller.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooser.h \ + /usr/include/gtkmm-3.0/gtkmm/filefilter.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/filechoosernative.h \ + /usr/include/gtkmm-3.0/gtkmm/nativedialog.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/fixed.h \ + /usr/include/gtkmm-3.0/gtkmm/flowbox.h \ + /usr/include/gtkmm-3.0/gtkmm/flowboxchild.h \ + /usr/include/gtkmm-3.0/gtkmm/fontbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/fontchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/fontselection.h \ + /usr/include/gtkmm-3.0/gtkmm/gesture.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturedrag.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturesingle.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturepan.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturerotate.h \ + /usr/include/gtkmm-3.0/gtkmm/gestureswipe.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturezoom.h \ + /usr/include/gtkmm-3.0/gtkmm/glarea.h \ + /usr/include/gtkmm-3.0/gtkmm/grid.h \ + /usr/include/gtkmm-3.0/gtkmm/handlebox.h \ + /usr/include/gtkmm-3.0/gtkmm/hvpaned.h \ + /usr/include/gtkmm-3.0/gtkmm/paned.h \ + /usr/include/gtkmm-3.0/gtkmm/hvscale.h \ + /usr/include/gtkmm-3.0/gtkmm/scale.h \ + /usr/include/gtkmm-3.0/gtkmm/range.h \ + /usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h \ + /usr/include/gtkmm-3.0/gtkmm/scrollbar.h \ + /usr/include/gtkmm-3.0/gtkmm/hvseparator.h \ + /usr/include/gtkmm-3.0/gtkmm/separator.h \ + /usr/include/gtkmm-3.0/gtkmm/iconfactory.h \ + /usr/include/gtkmm-3.0/gtkmm/icontheme.h \ + /usr/include/gtkmm-3.0/gtkmm/iconinfo.h \ + /usr/include/gtkmm-3.0/gtkmm/iconview.h \ + /usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/infobar.h \ + /usr/include/gtkmm-3.0/gtkmm/calendar.h \ + /usr/include/gtkmm-3.0/gtkmm/invisible.h \ + /usr/include/gtkmm-3.0/gtkmm/layout.h \ + /usr/include/gtkmm-3.0/gtkmm/levelbar.h \ + /usr/include/gtkmm-3.0/gtkmm/listbox.h \ + /usr/include/gtkmm-3.0/gtkmm/listboxrow.h \ + /usr/include/gtkmm-3.0/gtkmm/liststore.h \ + /usr/include/gtkmm-3.0/gtkmm/treesortable.h \ + /usr/include/gtkmm-3.0/gtkmm/treedragdest.h \ + /usr/include/gtkmm-3.0/gtkmm/treedragsource.h \ + /usr/include/gtkmm-3.0/gtkmm/listviewtext.h \ + /usr/include/gtkmm-3.0/gtkmm/linkbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/main.h \ + /usr/include/gtkmm-3.0/gtkmm/menubar.h \ + /usr/include/gtkmm-3.0/gtkmm/menubutton.h \ + /usr/include/gtkmm-3.0/gtkmm/popover.h \ + /usr/include/gtkmm-3.0/gtkmm/messagedialog.h \ + /usr/include/gtkmm-3.0/gtkmm/modelbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/notebook.h \ + /usr/include/gtkmm-3.0/gtkmm/numerableicon.h \ + /usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h \ + /usr/include/gtkmm-3.0/gtkmm/overlay.h \ + /usr/include/gtkmm-3.0/gtkmm/pagesetup.h \ + /usr/include/gtkmm-3.0/gtkmm/papersize.h \ + /usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/printsettings.h \ + /usr/include/gtkmm-3.0/gtkmm/placessidebar.h \ + /usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h \ + /usr/include/gtkmm-3.0/gtkmm/popovermenu.h \ + /usr/include/gtkmm-3.0/gtkmm/printcontext.h \ + /usr/include/gtkmm-3.0/gtkmm/printer.h \ + /usr/include/gtkmm-3.0/gtkmm/printjob.h \ + /usr/include/gtkmm-3.0/gtkmm/printoperation.h \ + /usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h \ + /usr/include/gtkmm-3.0/gtkmm/printunixdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/progressbar.h \ + /usr/include/gtkmm-3.0/gtkmm/radiobutton.h \ + /usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/toolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/toolitem.h \ + /usr/include/gtkmm-3.0/gtkmm/sizegroup.h \ + /usr/include/gtkmm-3.0/gtkmm/recentaction.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/recentinfo.h \ + /usr/include/gtkmm-3.0/gtkmm/recentfilter.h \ + /usr/include/gtkmm-3.0/gtkmm/recentmanager.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/revealer.h \ + /usr/include/gtkmm-3.0/gtkmm/scalebutton.h \ + /usr/include/gtkmm-3.0/gtkmm/searchbar.h \ + /usr/include/gtkmm-3.0/gtkmm/searchentry.h \ + /usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h \ + /usr/include/gtkmm-3.0/gtkmm/settings.h \ + /usr/include/gtkmm-3.0/gtkmm/toolbar.h \ + /usr/include/gtkmm-3.0/gtkmm/toolshell.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutssection.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h \ + /usr/include/gtkmm-3.0/gtkmm/spinbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/spinner.h \ + /usr/include/gtkmm-3.0/gtkmm/stack.h \ + /usr/include/gtkmm-3.0/gtkmm/stacksidebar.h \ + /usr/include/gtkmm-3.0/gtkmm/stackswitcher.h \ + /usr/include/gtkmm-3.0/gtkmm/statusbar.h \ + /usr/include/gtkmm-3.0/gtkmm/statusicon.h \ + /usr/include/gtkmm-3.0/gtkmm/stock.h \ + /usr/include/gtkmm-3.0/gtkmm/stockitem.h \ + /usr/include/gtkmm-3.0/gtkmm/styleproperty.h \ + /usr/include/gtkmm-3.0/gtkmm/switch.h \ + /usr/include/gtkmm-3.0/gtkmm/table.h \ + /usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/textbuffer.h \ + /usr/include/gtkmm-3.0/gtkmm/texttagtable.h \ + /usr/include/gtkmm-3.0/gtkmm/texttag.h \ + /usr/include/gtkmm-3.0/gtkmm/textchildanchor.h \ + /usr/include/gtkmm-3.0/gtkmm/textmark.h \ + /usr/include/gtkmm-3.0/gtkmm/textiter.h \ + /usr/include/gtkmm-3.0/gtkmm/textattributes.h \ + /usr/include/gtkmm-3.0/gtkmm/textview.h \ + /usr/include/gtkmm-3.0/gtkmm/toolpalette.h \ + /usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodelsort.h \ + /usr/include/gtkmm-3.0/gtkmm/treerowreference.h \ + /usr/include/gtkmm-3.0/gtkmm/treestore.h \ + /usr/include/gtkmm-3.0/gtkmm/uimanager.h \ + /usr/include/gtkmm-3.0/gtkmm/viewport.h \ + /usr/include/gtkmm-3.0/gtkmm/volumebutton.h \ + /usr/include/c++/11.2.0/fstream \ + /usr/include/c++/11.2.0/bits/codecvt.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h \ + /usr/include/c++/11.2.0/bits/fstream.tcc \ + /usr/include/libintl.h \ + /usr/include/gtkmm-3.0/gtkmm/plug.h \ + /usr/include/gtk-3.0/gtk/gtkx.h \ + /usr/include/gtk-3.0/gtk/gtksocket.h \ + /usr/include/gtk-3.0/gdk/gdkx.h \ + /usr/include/X11/Xlib.h \ + /usr/include/X11/X.h \ + /usr/include/X11/Xfuncproto.h \ + /usr/include/X11/Xosdefs.h \ + /usr/include/X11/Xutil.h \ + /usr/include/X11/keysym.h \ + /usr/include/X11/keysymdef.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11device.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11display.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11property.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11window.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h \ + /usr/include/gtk-3.0/gtk/gtkplug.h \ + /usr/include/gtk-3.0/gtk/gtkx-autocleanups.h \ + /usr/include/pwd.h \ + /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h \ + /usr/include/c++/11.2.0/filesystem \ + /usr/include/c++/11.2.0/bits/fs_fwd.h \ + /usr/include/c++/11.2.0/bits/fs_path.h \ + /usr/include/c++/11.2.0/locale \ + /usr/include/c++/11.2.0/bits/locale_facets_nonio.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11.2.0/bits/locale_conv.h \ + /usr/include/c++/11.2.0/iomanip \ + /usr/include/c++/11.2.0/bits/quoted_string.h \ + /usr/include/c++/11.2.0/codecvt \ + /usr/include/c++/11.2.0/bits/fs_dir.h \ + /usr/include/c++/11.2.0/bits/fs_ops.h + +CMakeFiles/ublexec.dir/ublexec.cc.o: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc \ + /usr/include/stdc-predef.h \ + /usr/include/c++/11.2.0/cstddef \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/11.2.0/pstl/pstl_config.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \ + /usr/include/c++/11.2.0/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h \ + /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h \ + /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/c++/11.2.0/bits/std_abs.h \ + /usr/include/c++/11.2.0/iostream \ + /usr/include/c++/11.2.0/ostream \ + /usr/include/c++/11.2.0/ios \ + /usr/include/c++/11.2.0/iosfwd \ + /usr/include/c++/11.2.0/bits/stringfwd.h \ + /usr/include/c++/11.2.0/bits/memoryfwd.h \ + /usr/include/c++/11.2.0/bits/postypes.h \ + /usr/include/c++/11.2.0/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/11.2.0/exception \ + /usr/include/c++/11.2.0/bits/exception.h \ + /usr/include/c++/11.2.0/bits/exception_ptr.h \ + /usr/include/c++/11.2.0/bits/exception_defines.h \ + /usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \ + /usr/include/c++/11.2.0/typeinfo \ + /usr/include/c++/11.2.0/bits/hash_bytes.h \ + /usr/include/c++/11.2.0/new \ + /usr/include/c++/11.2.0/bits/nested_exception.h \ + /usr/include/c++/11.2.0/bits/move.h \ + /usr/include/c++/11.2.0/type_traits \ + /usr/include/c++/11.2.0/bits/char_traits.h \ + /usr/include/c++/11.2.0/bits/stl_algobase.h \ + /usr/include/c++/11.2.0/bits/functexcept.h \ + /usr/include/c++/11.2.0/bits/cpp_type_traits.h \ + /usr/include/c++/11.2.0/ext/type_traits.h \ + /usr/include/c++/11.2.0/ext/numeric_traits.h \ + /usr/include/c++/11.2.0/bits/stl_pair.h \ + /usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \ + /usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11.2.0/bits/concept_check.h \ + /usr/include/c++/11.2.0/debug/assertions.h \ + /usr/include/c++/11.2.0/bits/stl_iterator.h \ + /usr/include/c++/11.2.0/bits/ptr_traits.h \ + /usr/include/c++/11.2.0/debug/debug.h \ + /usr/include/c++/11.2.0/bits/predefined_ops.h \ + /usr/include/c++/11.2.0/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/c++/11.2.0/bits/localefwd.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/11.2.0/clocale \ + /usr/include/locale.h \ + /usr/include/bits/locale.h \ + /usr/include/c++/11.2.0/cctype \ + /usr/include/ctype.h \ + /usr/include/c++/11.2.0/bits/ios_base.h \ + /usr/include/c++/11.2.0/ext/atomicity.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h \ + /usr/include/sched.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/time.h \ + /usr/include/bits/time.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/11.2.0/bits/locale_classes.h \ + /usr/include/c++/11.2.0/string \ + /usr/include/c++/11.2.0/bits/allocator.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/11.2.0/ext/new_allocator.h \ + /usr/include/c++/11.2.0/bits/ostream_insert.h \ + /usr/include/c++/11.2.0/bits/cxxabi_forced.h \ + /usr/include/c++/11.2.0/bits/stl_function.h \ + /usr/include/c++/11.2.0/backward/binders.h \ + /usr/include/c++/11.2.0/bits/range_access.h \ + /usr/include/c++/11.2.0/initializer_list \ + /usr/include/c++/11.2.0/bits/basic_string.h \ + /usr/include/c++/11.2.0/ext/alloc_traits.h \ + /usr/include/c++/11.2.0/bits/alloc_traits.h \ + /usr/include/c++/11.2.0/bits/stl_construct.h \ + /usr/include/c++/11.2.0/string_view \ + /usr/include/c++/11.2.0/bits/functional_hash.h \ + /usr/include/c++/11.2.0/bits/string_view.tcc \ + /usr/include/c++/11.2.0/ext/string_conversions.h \ + /usr/include/c++/11.2.0/cstdio \ + /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdio.h \ + /usr/include/c++/11.2.0/cerrno \ + /usr/include/errno.h \ + /usr/include/bits/errno.h \ + /usr/include/linux/errno.h \ + /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/11.2.0/bits/charconv.h \ + /usr/include/c++/11.2.0/bits/basic_string.tcc \ + /usr/include/c++/11.2.0/bits/locale_classes.tcc \ + /usr/include/c++/11.2.0/system_error \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/11.2.0/stdexcept \ + /usr/include/c++/11.2.0/streambuf \ + /usr/include/c++/11.2.0/bits/streambuf.tcc \ + /usr/include/c++/11.2.0/bits/basic_ios.h \ + /usr/include/c++/11.2.0/bits/locale_facets.h \ + /usr/include/c++/11.2.0/cwctype \ + /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/11.2.0/bits/streambuf_iterator.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/11.2.0/bits/locale_facets.tcc \ + /usr/include/c++/11.2.0/bits/basic_ios.tcc \ + /usr/include/c++/11.2.0/bits/ostream.tcc \ + /usr/include/c++/11.2.0/istream \ + /usr/include/c++/11.2.0/bits/istream.tcc \ + /usr/include/c++/11.2.0/memory \ + /usr/include/c++/11.2.0/bits/stl_uninitialized.h \ + /usr/include/c++/11.2.0/bits/stl_tempbuf.h \ + /usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11.2.0/bits/align.h \ + /usr/include/c++/11.2.0/bit \ + /usr/include/c++/11.2.0/bits/uses_allocator.h \ + /usr/include/c++/11.2.0/bits/unique_ptr.h \ + /usr/include/c++/11.2.0/utility \ + /usr/include/c++/11.2.0/bits/stl_relops.h \ + /usr/include/c++/11.2.0/tuple \ + /usr/include/c++/11.2.0/array \ + /usr/include/c++/11.2.0/bits/invoke.h \ + /usr/include/c++/11.2.0/bits/shared_ptr.h \ + /usr/include/c++/11.2.0/bits/shared_ptr_base.h \ + /usr/include/c++/11.2.0/bits/allocated_ptr.h \ + /usr/include/c++/11.2.0/bits/refwrap.h \ + /usr/include/c++/11.2.0/ext/aligned_buffer.h \ + /usr/include/c++/11.2.0/ext/concurrence.h \ + /usr/include/c++/11.2.0/bits/shared_ptr_atomic.h \ + /usr/include/c++/11.2.0/bits/atomic_base.h \ + /usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11.2.0/backward/auto_ptr.h \ + /usr/include/c++/11.2.0/pstl/glue_memory_defs.h \ + /usr/include/c++/11.2.0/pstl/execution_defs.h \ + /usr/include/gtkmm-3.0/gtkmm.h \ + /usr/include/glibmm-2.4/glibmm.h \ + /usr/lib/glibmm-2.4/include/glibmmconfig.h \ + /usr/include/glibmm-2.4/glibmm/thread.h \ + /usr/include/glib-2.0/glib.h \ + /usr/include/glib-2.0/glib/galloca.h \ + /usr/include/glib-2.0/glib/gtypes.h \ + /usr/lib/glib-2.0/include/glibconfig.h \ + /usr/include/glib-2.0/glib/gmacros.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h \ + /usr/include/limits.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h \ + /usr/include/glib-2.0/glib/gversionmacros.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/glib-2.0/glib/garray.h \ + /usr/include/glib-2.0/glib/gasyncqueue.h \ + /usr/include/glib-2.0/glib/gthread.h \ + /usr/include/glib-2.0/glib/gatomic.h \ + /usr/include/glib-2.0/glib/glib-typeof.h \ + /usr/include/glib-2.0/glib/gerror.h \ + /usr/include/glib-2.0/glib/gquark.h \ + /usr/include/glib-2.0/glib/gutils.h \ + /usr/include/c++/11.2.0/stdlib.h \ + /usr/include/glib-2.0/glib/gbacktrace.h \ + /usr/include/signal.h \ + /usr/include/bits/signum-generic.h \ + /usr/include/bits/signum-arch.h \ + /usr/include/bits/types/sig_atomic_t.h \ + /usr/include/bits/types/siginfo_t.h \ + /usr/include/bits/types/__sigval_t.h \ + /usr/include/bits/siginfo-arch.h \ + /usr/include/bits/siginfo-consts.h \ + /usr/include/bits/siginfo-consts-arch.h \ + /usr/include/bits/types/sigval_t.h \ + /usr/include/bits/types/sigevent_t.h \ + /usr/include/bits/sigevent-consts.h \ + /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h \ + /usr/include/bits/types/stack_t.h \ + /usr/include/sys/ucontext.h \ + /usr/include/bits/sigstack.h \ + /usr/include/bits/sigstksz.h \ + /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h \ + /usr/include/bits/confname.h \ + /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h \ + /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h \ + /usr/include/bits/ss_flags.h \ + /usr/include/bits/types/struct_sigstack.h \ + /usr/include/bits/sigthread.h \ + /usr/include/bits/signal_ext.h \ + /usr/include/glib-2.0/glib/gbase64.h \ + /usr/include/glib-2.0/glib/gbitlock.h \ + /usr/include/glib-2.0/glib/gbookmarkfile.h \ + /usr/include/glib-2.0/glib/gdatetime.h \ + /usr/include/glib-2.0/glib/gtimezone.h \ + /usr/include/glib-2.0/glib/gbytes.h \ + /usr/include/glib-2.0/glib/gcharset.h \ + /usr/include/glib-2.0/glib/gchecksum.h \ + /usr/include/glib-2.0/glib/gconvert.h \ + /usr/include/glib-2.0/glib/gdataset.h \ + /usr/include/glib-2.0/glib/gdate.h \ + /usr/include/glib-2.0/glib/gdir.h \ + /usr/include/dirent.h \ + /usr/include/bits/dirent.h \ + /usr/include/bits/dirent_ext.h \ + /usr/include/glib-2.0/glib/genviron.h \ + /usr/include/glib-2.0/glib/gfileutils.h \ + /usr/include/glib-2.0/glib/ggettext.h \ + /usr/include/glib-2.0/glib/ghash.h \ + /usr/include/glib-2.0/glib/glist.h \ + /usr/include/glib-2.0/glib/gmem.h \ + /usr/include/glib-2.0/glib/gnode.h \ + /usr/include/glib-2.0/glib/ghmac.h \ + /usr/include/glib-2.0/glib/gchecksum.h \ + /usr/include/glib-2.0/glib/ghook.h \ + /usr/include/glib-2.0/glib/ghostutils.h \ + /usr/include/glib-2.0/glib/giochannel.h \ + /usr/include/glib-2.0/glib/gmain.h \ + /usr/include/glib-2.0/glib/gpoll.h \ + /usr/include/glib-2.0/glib/gslist.h \ + /usr/include/glib-2.0/glib/gstring.h \ + /usr/include/glib-2.0/glib/gunicode.h \ + /usr/include/glib-2.0/glib/gkeyfile.h \ + /usr/include/glib-2.0/glib/gmappedfile.h \ + /usr/include/glib-2.0/glib/gmarkup.h \ + /usr/include/glib-2.0/glib/gmessages.h \ + /usr/include/glib-2.0/glib/gvariant.h \ + /usr/include/glib-2.0/glib/gvarianttype.h \ + /usr/include/glib-2.0/glib/goption.h \ + /usr/include/glib-2.0/glib/gpattern.h \ + /usr/include/glib-2.0/glib/gprimes.h \ + /usr/include/glib-2.0/glib/gqsort.h \ + /usr/include/glib-2.0/glib/gqueue.h \ + /usr/include/glib-2.0/glib/grand.h \ + /usr/include/glib-2.0/glib/grcbox.h \ + /usr/include/glib-2.0/glib/grefcount.h \ + /usr/include/glib-2.0/glib/grefstring.h \ + /usr/include/glib-2.0/glib/gmem.h \ + /usr/include/glib-2.0/glib/gmacros.h \ + /usr/include/glib-2.0/glib/gregex.h \ + /usr/include/glib-2.0/glib/gscanner.h \ + /usr/include/glib-2.0/glib/gsequence.h \ + /usr/include/glib-2.0/glib/gshell.h \ + /usr/include/glib-2.0/glib/gslice.h \ + /usr/include/glib-2.0/glib/gspawn.h \ + /usr/include/glib-2.0/glib/gstrfuncs.h \ + /usr/include/glib-2.0/glib/gstringchunk.h \ + /usr/include/glib-2.0/glib/gstrvbuilder.h \ + /usr/include/glib-2.0/glib/gtestutils.h \ + /usr/include/glib-2.0/glib/gthreadpool.h \ + /usr/include/glib-2.0/glib/gtimer.h \ + /usr/include/glib-2.0/glib/gtrashstack.h \ + /usr/include/glib-2.0/glib/gtree.h \ + /usr/include/glib-2.0/glib/guri.h \ + /usr/include/glib-2.0/glib/guuid.h \ + /usr/include/glib-2.0/glib/gversion.h \ + /usr/include/glib-2.0/glib/deprecated/gallocator.h \ + /usr/include/glib-2.0/glib/deprecated/gcache.h \ + /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ + /usr/include/glib-2.0/glib/deprecated/gmain.h \ + /usr/include/glib-2.0/glib/deprecated/grel.h \ + /usr/include/glib-2.0/glib/deprecated/gthread.h \ + /usr/include/glib-2.0/glib/glib-autocleanups.h \ + /usr/include/glibmm-2.4/glibmm/error.h \ + /usr/include/glibmm-2.4/glibmm/exception.h \ + /usr/include/glibmm-2.4/glibmm/ustring.h \ + /usr/include/glibmm-2.4/glibmm/unicode.h \ + /usr/include/c++/11.2.0/iterator \ + /usr/include/c++/11.2.0/bits/stream_iterator.h \ + /usr/include/c++/11.2.0/sstream \ + /usr/include/c++/11.2.0/bits/sstream.tcc \ + /usr/include/glibmm-2.4/glibmm/value.h \ + /usr/include/glibmm-2.4/glibmm/refptr.h \ + /usr/include/glibmm-2.4/glibmm/enums.h \ + /usr/include/glib-2.0/glib-object.h \ + /usr/include/glib-2.0/gobject/gbinding.h \ + /usr/include/glib-2.0/gobject/gobject.h \ + /usr/include/glib-2.0/gobject/gtype.h \ + /usr/include/glib-2.0/gobject/gvalue.h \ + /usr/include/glib-2.0/gobject/gparam.h \ + /usr/include/glib-2.0/gobject/gclosure.h \ + /usr/include/glib-2.0/gobject/gsignal.h \ + /usr/include/glib-2.0/gobject/gmarshal.h \ + /usr/include/glib-2.0/gobject/gboxed.h \ + /usr/include/glib-2.0/gobject/glib-types.h \ + /usr/include/glib-2.0/gobject/gbindinggroup.h \ + /usr/include/glib-2.0/gobject/genums.h \ + /usr/include/glib-2.0/gobject/glib-enumtypes.h \ + /usr/include/glib-2.0/gobject/gparamspecs.h \ + /usr/include/glib-2.0/gobject/gsignalgroup.h \ + /usr/include/glib-2.0/gobject/gsourceclosure.h \ + /usr/include/glib-2.0/gobject/gtypemodule.h \ + /usr/include/glib-2.0/gobject/gtypeplugin.h \ + /usr/include/glib-2.0/gobject/gvaluearray.h \ + /usr/include/glib-2.0/gobject/gvaluetypes.h \ + /usr/include/glib-2.0/gobject/gobject-autocleanups.h \ + /usr/include/c++/11.2.0/vector \ + /usr/include/c++/11.2.0/bits/stl_vector.h \ + /usr/include/c++/11.2.0/bits/stl_bvector.h \ + /usr/include/c++/11.2.0/bits/vector.tcc \ + /usr/include/glibmm-2.4/glibmm/value_custom.h \ + /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ + /usr/include/glibmm-2.4/glibmm/timeval.h \ + /usr/include/sigc++-2.0/sigc++/sigc++.h \ + /usr/include/sigc++-2.0/sigc++/signal.h \ + /usr/include/c++/11.2.0/list \ + /usr/include/c++/11.2.0/bits/stl_list.h \ + /usr/include/c++/11.2.0/bits/list.tcc \ + /usr/include/sigc++-2.0/sigc++/signal_base.h \ + /usr/lib/sigc++-2.0/include/sigc++config.h \ + /usr/include/sigc++-2.0/sigc++/type_traits.h \ + /usr/include/sigc++-2.0/sigc++/trackable.h \ + /usr/include/sigc++-2.0/sigc++/functors/slot.h \ + /usr/include/sigc++-2.0/sigc++/visit_each.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ + /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ + /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ + /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ + /usr/include/sigc++-2.0/sigc++/limit_reference.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ + /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ + /usr/include/sigc++-2.0/sigc++/connection.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ + /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ + /usr/include/c++/11.2.0/functional \ + /usr/include/c++/11.2.0/bits/std_function.h \ + /usr/include/c++/11.2.0/unordered_map \ + /usr/include/c++/11.2.0/bits/hashtable.h \ + /usr/include/c++/11.2.0/bits/hashtable_policy.h \ + /usr/include/c++/11.2.0/bits/node_handle.h \ + /usr/include/c++/11.2.0/bits/unordered_map.h \ + /usr/include/c++/11.2.0/bits/erase_if.h \ + /usr/include/c++/11.2.0/bits/stl_algo.h \ + /usr/include/c++/11.2.0/bits/algorithmfwd.h \ + /usr/include/c++/11.2.0/bits/stl_heap.h \ + /usr/include/c++/11.2.0/bits/uniform_int_dist.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h \ + /usr/include/sigc++-2.0/sigc++/functors/functors.h \ + /usr/include/glibmm-2.4/glibmm/threads.h \ + /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ + /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ + /usr/include/glibmm-2.4/glibmm/variant.h \ + /usr/include/glibmm-2.4/glibmm/varianttype.h \ + /usr/include/glibmm-2.4/glibmm/variantiter.h \ + /usr/include/glibmm-2.4/glibmm/variantdbusstring.h \ + /usr/include/c++/11.2.0/map \ + /usr/include/c++/11.2.0/bits/stl_tree.h \ + /usr/include/c++/11.2.0/bits/stl_map.h \ + /usr/include/c++/11.2.0/bits/stl_multimap.h \ + /usr/include/glibmm-2.4/glibmm/variant_basictypes.h \ + /usr/include/glibmm-2.4/glibmm/wrap.h \ + /usr/include/glibmm-2.4/glibmm/objectbase.h \ + /usr/include/glibmm-2.4/glibmm/class.h \ + /usr/include/glibmm-2.4/glibmm/signalproxy.h \ + /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ + /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ + /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ + /usr/include/glibmm-2.4/glibmm/quark.h \ + /usr/include/glibmm-2.4/glibmm/debug.h \ + /usr/include/c++/11.2.0/mutex \ + /usr/include/c++/11.2.0/chrono \ + /usr/include/c++/11.2.0/ratio \ + /usr/include/c++/11.2.0/limits \ + /usr/include/c++/11.2.0/ctime \ + /usr/include/c++/11.2.0/bits/parse_numbers.h \ + /usr/include/c++/11.2.0/bits/std_mutex.h \ + /usr/include/c++/11.2.0/bits/unique_lock.h \ + /usr/include/c++/11.2.0/algorithm \ + /usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h \ + /usr/include/c++/11.2.0/deque \ + /usr/include/c++/11.2.0/bits/stl_deque.h \ + /usr/include/c++/11.2.0/bits/deque.tcc \ + /usr/include/glibmm-2.4/glibmm/balancedtree.h \ + /usr/include/glibmm-2.4/glibmm/base64.h \ + /usr/include/glibmm-2.4/glibmm/binding.h \ + /usr/include/glibmm-2.4/glibmm/object.h \ + /usr/include/glibmm-2.4/glibmm/utility.h \ + /usr/include/glibmm-2.4/glibmm/bytearray.h \ + /usr/include/sigc++-2.0/sigc++/slot.h \ + /usr/include/glibmm-2.4/glibmm/bytes.h \ + /usr/include/glibmm-2.4/glibmm/checksum.h \ + /usr/include/glibmm-2.4/glibmm/convert.h \ + /usr/include/glibmm-2.4/glibmm/date.h \ + /usr/include/glibmm-2.4/glibmm/datetime.h \ + /usr/include/glibmm-2.4/glibmm/timezone.h \ + /usr/include/glibmm-2.4/glibmm/dispatcher.h \ + /usr/include/glibmm-2.4/glibmm/main.h \ + /usr/include/glibmm-2.4/glibmm/priorities.h \ + /usr/include/glibmm-2.4/glibmm/iochannel.h \ + /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ + /usr/include/glibmm-2.4/glibmm/fileutils.h \ + /usr/include/glibmm-2.4/glibmm/helperlist.h \ + /usr/include/glibmm-2.4/glibmm/containers.h \ + /usr/include/glibmm-2.4/glibmm/sarray.h \ + /usr/include/glibmm-2.4/glibmm/interface.h \ + /usr/include/glibmm-2.4/glibmm/init.h \ + /usr/include/glibmm-2.4/glibmm/keyfile.h \ + /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ + /usr/include/glibmm-2.4/glibmm/listhandle.h \ + /usr/include/glibmm-2.4/glibmm/markup.h \ + /usr/include/glibmm-2.4/glibmm/miscutils.h \ + /usr/include/glibmm-2.4/glibmm/module.h \ + /usr/include/glibmm-2.4/glibmm/nodetree.h \ + /usr/include/c++/11.2.0/stack \ + /usr/include/c++/11.2.0/bits/stl_stack.h \ + /usr/include/glibmm-2.4/glibmm/optioncontext.h \ + /usr/include/glibmm-2.4/glibmm/optionentry.h \ + /usr/include/glibmm-2.4/glibmm/optiongroup.h \ + /usr/include/glibmm-2.4/glibmm/pattern.h \ + /usr/include/glibmm-2.4/glibmm/property.h \ + /usr/include/glibmm-2.4/glibmm/random.h \ + /usr/include/glibmm-2.4/glibmm/regex.h \ + /usr/include/glibmm-2.4/glibmm/shell.h \ + /usr/include/glibmm-2.4/glibmm/slisthandle.h \ + /usr/include/glibmm-2.4/glibmm/spawn.h \ + /usr/include/glibmm-2.4/glibmm/stringutils.h \ + /usr/include/glibmm-2.4/glibmm/threadpool.h \ + /usr/include/glibmm-2.4/glibmm/timer.h \ + /usr/include/glibmm-2.4/glibmm/uriutils.h \ + /usr/include/glibmm-2.4/glibmm/valuearray.h \ + /usr/include/glibmm-2.4/glibmm/variantdict.h \ + /usr/include/glibmm-2.4/glibmm/vectorutils.h \ + /usr/include/glibmm-2.4/glibmm/weakref.h \ + /usr/include/giomm-2.4/giomm.h \ + /usr/include/giomm-2.4/giomm/action.h \ + /usr/lib/giomm-2.4/include/giommconfig.h \ + /usr/include/glib-2.0/gio/gio.h \ + /usr/include/glib-2.0/gio/giotypes.h \ + /usr/include/glib-2.0/gio/gioenums.h \ + /usr/include/glib-2.0/gio/gaction.h \ + /usr/include/glib-2.0/gio/gactiongroup.h \ + /usr/include/glib-2.0/gio/gactiongroupexporter.h \ + /usr/include/glib-2.0/gio/gactionmap.h \ + /usr/include/glib-2.0/gio/gappinfo.h \ + /usr/include/glib-2.0/gio/gapplication.h \ + /usr/include/glib-2.0/gio/gapplicationcommandline.h \ + /usr/include/glib-2.0/gio/gasyncinitable.h \ + /usr/include/glib-2.0/gio/ginitable.h \ + /usr/include/glib-2.0/gio/gasyncresult.h \ + /usr/include/glib-2.0/gio/gbufferedinputstream.h \ + /usr/include/glib-2.0/gio/gfilterinputstream.h \ + /usr/include/glib-2.0/gio/ginputstream.h \ + /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ + /usr/include/glib-2.0/gio/gfilteroutputstream.h \ + /usr/include/glib-2.0/gio/goutputstream.h \ + /usr/include/glib-2.0/gio/gbytesicon.h \ + /usr/include/glib-2.0/gio/gcancellable.h \ + /usr/include/glib-2.0/gio/gcharsetconverter.h \ + /usr/include/glib-2.0/gio/gconverter.h \ + /usr/include/glib-2.0/gio/gcontenttype.h \ + /usr/include/glib-2.0/gio/gconverterinputstream.h \ + /usr/include/glib-2.0/gio/gconverteroutputstream.h \ + /usr/include/glib-2.0/gio/gcredentials.h \ + /usr/include/glib-2.0/gio/gdatagrambased.h \ + /usr/include/glib-2.0/gio/gdatainputstream.h \ + /usr/include/glib-2.0/gio/gdataoutputstream.h \ + /usr/include/glib-2.0/gio/gdbusactiongroup.h \ + /usr/include/glib-2.0/gio/giotypes.h \ + /usr/include/glib-2.0/gio/gdbusaddress.h \ + /usr/include/glib-2.0/gio/gdbusauthobserver.h \ + /usr/include/glib-2.0/gio/gdbusconnection.h \ + /usr/include/glib-2.0/gio/gdbuserror.h \ + /usr/include/glib-2.0/gio/gdbusinterface.h \ + /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ + /usr/include/glib-2.0/gio/gdbusintrospection.h \ + /usr/include/glib-2.0/gio/gdbusmenumodel.h \ + /usr/include/glib-2.0/gio/gdbusmessage.h \ + /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ + /usr/include/glib-2.0/gio/gdbusnameowning.h \ + /usr/include/glib-2.0/gio/gdbusnamewatching.h \ + /usr/include/glib-2.0/gio/gdbusobject.h \ + /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ + /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ + /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ + /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ + /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ + /usr/include/glib-2.0/gio/gdbusproxy.h \ + /usr/include/glib-2.0/gio/gdbusserver.h \ + /usr/include/glib-2.0/gio/gdbusutils.h \ + /usr/include/glib-2.0/gio/gdebugcontroller.h \ + /usr/include/glib-2.0/gio/gdebugcontrollerdbus.h \ + /usr/include/glib-2.0/gio/gdrive.h \ + /usr/include/glib-2.0/gio/gdtlsclientconnection.h \ + /usr/include/glib-2.0/gio/gdtlsconnection.h \ + /usr/include/glib-2.0/gio/gdtlsserverconnection.h \ + /usr/include/glib-2.0/gio/gemblemedicon.h \ + /usr/include/glib-2.0/gio/gicon.h \ + /usr/include/glib-2.0/gio/gemblem.h \ + /usr/include/glib-2.0/gio/gfile.h \ + /usr/include/glib-2.0/gio/gfileattribute.h \ + /usr/include/glib-2.0/gio/gfileenumerator.h \ + /usr/include/glib-2.0/gio/gfileicon.h \ + /usr/include/glib-2.0/gio/gfileinfo.h \ + /usr/include/glib-2.0/gio/gfileinputstream.h \ + /usr/include/glib-2.0/gio/gfileiostream.h \ + /usr/include/glib-2.0/gio/giostream.h \ + /usr/include/glib-2.0/gio/gioerror.h \ + /usr/include/glib-2.0/gio/gfilemonitor.h \ + /usr/include/glib-2.0/gio/gfilenamecompleter.h \ + /usr/include/glib-2.0/gio/gfileoutputstream.h \ + /usr/include/glib-2.0/gio/ginetaddress.h \ + /usr/include/glib-2.0/gio/ginetaddressmask.h \ + /usr/include/glib-2.0/gio/ginetsocketaddress.h \ + /usr/include/glib-2.0/gio/gsocketaddress.h \ + /usr/include/glib-2.0/gio/gioenumtypes.h \ + /usr/include/glib-2.0/gio/giomodule.h \ + /usr/include/glib-2.0/gmodule.h \ + /usr/include/glib-2.0/gio/gioscheduler.h \ + /usr/include/glib-2.0/gio/glistmodel.h \ + /usr/include/glib-2.0/gio/gliststore.h \ + /usr/include/glib-2.0/gio/gloadableicon.h \ + /usr/include/glib-2.0/gio/gmemoryinputstream.h \ + /usr/include/glib-2.0/gio/gmemorymonitor.h \ + /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ + /usr/include/glib-2.0/gio/gmenu.h \ + /usr/include/glib-2.0/gio/gmenumodel.h \ + /usr/include/glib-2.0/gio/gmenuexporter.h \ + /usr/include/glib-2.0/gio/gmount.h \ + /usr/include/glib-2.0/gio/gmountoperation.h \ + /usr/include/glib-2.0/gio/gnativesocketaddress.h \ + /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ + /usr/include/glib-2.0/gio/gvolumemonitor.h \ + /usr/include/glib-2.0/gio/gnetworkaddress.h \ + /usr/include/glib-2.0/gio/gnetworkmonitor.h \ + /usr/include/glib-2.0/gio/gnetworkservice.h \ + /usr/include/glib-2.0/gio/gnotification.h \ + /usr/include/glib-2.0/gio/gpermission.h \ + /usr/include/glib-2.0/gio/gpollableinputstream.h \ + /usr/include/glib-2.0/gio/gpollableoutputstream.h \ + /usr/include/glib-2.0/gio/gpollableutils.h \ + /usr/include/glib-2.0/gio/gpowerprofilemonitor.h \ + /usr/include/glib-2.0/gio/gpropertyaction.h \ + /usr/include/glib-2.0/gio/gproxy.h \ + /usr/include/glib-2.0/gio/gproxyaddress.h \ + /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ + /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ + /usr/include/glib-2.0/gio/gproxyresolver.h \ + /usr/include/glib-2.0/gio/gremoteactiongroup.h \ + /usr/include/glib-2.0/gio/gresolver.h \ + /usr/include/glib-2.0/gio/gresource.h \ + /usr/include/glib-2.0/gio/gseekable.h \ + /usr/include/glib-2.0/gio/gsettings.h \ + /usr/include/glib-2.0/gio/gsettingsschema.h \ + /usr/include/glib-2.0/gio/gsimpleaction.h \ + /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ + /usr/include/glib-2.0/gio/gactiongroup.h \ + /usr/include/glib-2.0/gio/gactionmap.h \ + /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ + /usr/include/glib-2.0/gio/gsimpleiostream.h \ + /usr/include/glib-2.0/gio/gsimplepermission.h \ + /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ + /usr/include/glib-2.0/gio/gsocket.h \ + /usr/include/glib-2.0/gio/gsocketclient.h \ + /usr/include/glib-2.0/gio/gsocketconnectable.h \ + /usr/include/glib-2.0/gio/gsocketconnection.h \ + /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ + /usr/include/glib-2.0/gio/gsocketlistener.h \ + /usr/include/glib-2.0/gio/gsocketservice.h \ + /usr/include/glib-2.0/gio/gsrvtarget.h \ + /usr/include/glib-2.0/gio/gsubprocess.h \ + /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ + /usr/include/glib-2.0/gio/gtask.h \ + /usr/include/glib-2.0/gio/gtcpconnection.h \ + /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ + /usr/include/glib-2.0/gio/gtestdbus.h \ + /usr/include/glib-2.0/gio/gthemedicon.h \ + /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ + /usr/include/glib-2.0/gio/gtlsbackend.h \ + /usr/include/glib-2.0/gio/gtlscertificate.h \ + /usr/include/glib-2.0/gio/gtlsclientconnection.h \ + /usr/include/glib-2.0/gio/gtlsconnection.h \ + /usr/include/glib-2.0/gio/gtlsdatabase.h \ + /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ + /usr/include/glib-2.0/gio/gtlsinteraction.h \ + /usr/include/glib-2.0/gio/gtlspassword.h \ + /usr/include/glib-2.0/gio/gtlsserverconnection.h \ + /usr/include/glib-2.0/gio/gvfs.h \ + /usr/include/glib-2.0/gio/gvolume.h \ + /usr/include/glib-2.0/gio/gzlibcompressor.h \ + /usr/include/glib-2.0/gio/gzlibdecompressor.h \ + /usr/include/glib-2.0/gio/gio-autocleanups.h \ + /usr/include/giomm-2.4/giomm/actiongroup.h \ + /usr/include/giomm-2.4/giomm/actionmap.h \ + /usr/include/giomm-2.4/giomm/simpleaction.h \ + /usr/include/giomm-2.4/giomm/appinfo.h \ + /usr/include/giomm-2.4/giomm/applaunchcontext.h \ + /usr/include/giomm-2.4/giomm/icon.h \ + /usr/include/giomm-2.4/giomm/asyncresult.h \ + /usr/include/giomm-2.4/giomm/cancellable.h \ + /usr/include/giomm-2.4/giomm/application.h \ + /usr/include/giomm-2.4/giomm/applicationcommandline.h \ + /usr/include/giomm-2.4/giomm/file.h \ + /usr/include/giomm-2.4/giomm/fileattributeinfolist.h \ + /usr/include/giomm-2.4/giomm/fileattributeinfo.h \ + /usr/include/giomm-2.4/giomm/fileenumerator.h \ + /usr/include/giomm-2.4/giomm/fileinfo.h \ + /usr/include/giomm-2.4/giomm/fileinputstream.h \ + /usr/include/giomm-2.4/giomm/inputstream.h \ + /usr/include/giomm-2.4/giomm/seekable.h \ + /usr/include/giomm-2.4/giomm/fileiostream.h \ + /usr/include/giomm-2.4/giomm/iostream.h \ + /usr/include/giomm-2.4/giomm/outputstream.h \ + /usr/include/giomm-2.4/giomm/filemonitor.h \ + /usr/include/giomm-2.4/giomm/fileoutputstream.h \ + /usr/include/giomm-2.4/giomm/mountoperation.h \ + /usr/include/giomm-2.4/giomm/drive.h \ + /usr/include/giomm-2.4/giomm/mount.h \ + /usr/include/giomm-2.4/giomm/error.h \ + /usr/include/giomm-2.4/giomm/dbusconnection.h \ + /usr/include/giomm-2.4/giomm/initable.h \ + /usr/include/giomm-2.4/giomm/asyncinitable.h \ + /usr/include/giomm-2.4/giomm/dbusauthobserver.h \ + /usr/include/giomm-2.4/giomm/credentials.h \ + /usr/include/giomm-2.4/giomm/dbusmethodinvocation.h \ + /usr/include/giomm-2.4/giomm/dbusmessage.h \ + /usr/include/giomm-2.4/giomm/unixfdlist.h \ + /usr/include/giomm-2.4/giomm/dbusintrospection.h \ + /usr/include/giomm-2.4/giomm/dbussubtreevtable.h \ + /usr/include/giomm-2.4/giomm/dbusinterfacevtable.h \ + /usr/include/giomm-2.4/giomm/notification.h \ + /usr/include/giomm-2.4/giomm/bufferedinputstream.h \ + /usr/include/giomm-2.4/giomm/filterinputstream.h \ + /usr/include/giomm-2.4/giomm/bufferedoutputstream.h \ + /usr/include/giomm-2.4/giomm/filteroutputstream.h \ + /usr/include/giomm-2.4/giomm/charsetconverter.h \ + /usr/include/giomm-2.4/giomm/converter.h \ + /usr/include/giomm-2.4/giomm/contenttype.h \ + /usr/include/giomm-2.4/giomm/converterinputstream.h \ + /usr/include/giomm-2.4/giomm/pollableinputstream.h \ + /usr/include/giomm-2.4/giomm/converteroutputstream.h \ + /usr/include/giomm-2.4/giomm/pollableoutputstream.h \ + /usr/include/giomm-2.4/giomm/datainputstream.h \ + /usr/include/giomm-2.4/giomm/enums.h \ + /usr/include/giomm-2.4/giomm/dataoutputstream.h \ + /usr/include/giomm-2.4/giomm/dbusactiongroup.h \ + /usr/include/giomm-2.4/giomm/remoteactiongroup.h \ + /usr/include/giomm-2.4/giomm/dbusaddress.h \ + /usr/include/giomm-2.4/giomm/dbuserror.h \ + /usr/include/giomm-2.4/giomm/dbuserrorutils.h \ + /usr/include/giomm-2.4/giomm/dbusinterface.h \ + /usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h \ + /usr/include/giomm-2.4/giomm/dbusmenumodel.h \ + /usr/include/giomm-2.4/giomm/menumodel.h \ + /usr/include/giomm-2.4/giomm/dbusobject.h \ + /usr/include/giomm-2.4/giomm/dbusobjectmanager.h \ + /usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h \ + /usr/include/giomm-2.4/giomm/dbusobjectproxy.h \ + /usr/include/giomm-2.4/giomm/dbusproxy.h \ + /usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h \ + /usr/include/giomm-2.4/giomm/dbusobjectskeleton.h \ + /usr/include/giomm-2.4/giomm/dbusownname.h \ + /usr/include/giomm-2.4/giomm/dbusserver.h \ + /usr/include/giomm-2.4/giomm/dbusutils.h \ + /usr/include/giomm-2.4/giomm/dbuswatchname.h \ + /usr/include/giomm-2.4/giomm/desktopappinfo.h \ + /usr/include/giomm-2.4/giomm/emblem.h \ + /usr/include/giomm-2.4/giomm/emblemedicon.h \ + /usr/include/giomm-2.4/giomm/fileicon.h \ + /usr/include/giomm-2.4/giomm/loadableicon.h \ + /usr/include/giomm-2.4/giomm/filenamecompleter.h \ + /usr/include/giomm-2.4/giomm/inetaddress.h \ + /usr/include/giomm-2.4/giomm/inetsocketaddress.h \ + /usr/include/giomm-2.4/giomm/socketaddress.h \ + /usr/include/giomm-2.4/giomm/socketconnectable.h \ + /usr/include/giomm-2.4/giomm/socketaddressenumerator.h \ + /usr/include/giomm-2.4/giomm/init.h \ + /usr/include/giomm-2.4/giomm/wrap_init.h \ + /usr/include/giomm-2.4/giomm/listmodel.h \ + /usr/include/giomm-2.4/giomm/liststore.h \ + /usr/include/giomm-2.4/giomm/memoryinputstream.h \ + /usr/include/giomm-2.4/giomm/memoryoutputstream.h \ + /usr/include/giomm-2.4/giomm/menu.h \ + /usr/include/giomm-2.4/giomm/menuitem.h \ + /usr/include/giomm-2.4/giomm/menuattributeiter.h \ + /usr/include/giomm-2.4/giomm/menulinkiter.h \ + /usr/include/giomm-2.4/giomm/networkaddress.h \ + /usr/include/giomm-2.4/giomm/networkmonitor.h \ + /usr/include/giomm-2.4/giomm/networkservice.h \ + /usr/include/giomm-2.4/giomm/permission.h \ + /usr/include/giomm-2.4/giomm/proxy.h \ + /usr/include/giomm-2.4/giomm/proxyaddress.h \ + /usr/include/giomm-2.4/giomm/proxyresolver.h \ + /usr/include/giomm-2.4/giomm/resolver.h \ + /usr/include/giomm-2.4/giomm/srvtarget.h \ + /usr/include/giomm-2.4/giomm/resource.h \ + /usr/include/giomm-2.4/giomm/settings.h \ + /usr/include/giomm-2.4/giomm/settingsschema.h \ + /usr/include/giomm-2.4/giomm/settingsschemakey.h \ + /usr/include/giomm-2.4/giomm/settingsschemasource.h \ + /usr/include/giomm-2.4/giomm/simpleactiongroup.h \ + /usr/include/giomm-2.4/giomm/simpleiostream.h \ + /usr/include/giomm-2.4/giomm/simplepermission.h \ + /usr/include/giomm-2.4/giomm/socket.h \ + /usr/include/giomm-2.4/giomm/socketclient.h \ + /usr/include/giomm-2.4/giomm/socketconnection.h \ + /usr/include/giomm-2.4/giomm/socketcontrolmessage.h \ + /usr/include/c++/11.2.0/set \ + /usr/include/c++/11.2.0/bits/stl_set.h \ + /usr/include/c++/11.2.0/bits/stl_multiset.h \ + /usr/include/giomm-2.4/giomm/socketlistener.h \ + /usr/include/giomm-2.4/giomm/socketservice.h \ + /usr/include/giomm-2.4/giomm/socketsource.h \ + /usr/include/giomm-2.4/giomm/tcpconnection.h \ + /usr/include/giomm-2.4/giomm/tcpwrapperconnection.h \ + /usr/include/giomm-2.4/giomm/themedicon.h \ + /usr/include/giomm-2.4/giomm/threadedsocketservice.h \ + /usr/include/giomm-2.4/giomm/tlscertificate.h \ + /usr/include/giomm-2.4/giomm/tlsclientconnection.h \ + /usr/include/giomm-2.4/giomm/tlsconnection.h \ + /usr/include/giomm-2.4/giomm/tlsdatabase.h \ + /usr/include/giomm-2.4/giomm/tlsinteraction.h \ + /usr/include/giomm-2.4/giomm/tlspassword.h \ + /usr/include/giomm-2.4/giomm/tlsserverconnection.h \ + /usr/include/giomm-2.4/giomm/unixconnection.h \ + /usr/include/giomm-2.4/giomm/unixcredentialsmessage.h \ + /usr/include/giomm-2.4/giomm/unixfdmessage.h \ + /usr/include/giomm-2.4/giomm/unixinputstream.h \ + /usr/include/giomm-2.4/giomm/unixoutputstream.h \ + /usr/include/giomm-2.4/giomm/unixsocketaddress.h \ + /usr/include/giomm-2.4/giomm/volume.h \ + /usr/include/giomm-2.4/giomm/volumemonitor.h \ + /usr/include/giomm-2.4/giomm/zlibcompressor.h \ + /usr/include/giomm-2.4/giomm/zlibdecompressor.h \ + /usr/include/gdkmm-3.0/gdkmm/dragcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/color.h \ + /usr/lib/gdkmm-3.0/include/gdkmmconfig.h \ + /usr/lib/pangomm-1.4/include/pangommconfig.h \ + /usr/include/gtk-3.0/gdk/gdk.h \ + /usr/include/gtk-3.0/gdk/gdkconfig.h \ + /usr/include/gtk-3.0/gdk/gdkversionmacros.h \ + /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h \ + /usr/include/gtk-3.0/gdk/gdktypes.h \ + /usr/include/pango-1.0/pango/pango.h \ + /usr/include/pango-1.0/pango/pango-attributes.h \ + /usr/include/pango-1.0/pango/pango-font.h \ + /usr/include/pango-1.0/pango/pango-coverage.h \ + /usr/include/pango-1.0/pango/pango-version-macros.h \ + /usr/include/pango-1.0/pango/pango-features.h \ + /usr/include/harfbuzz/hb.h \ + /usr/include/harfbuzz/hb-blob.h \ + /usr/include/harfbuzz/hb-common.h \ + /usr/include/harfbuzz/hb-buffer.h \ + /usr/include/harfbuzz/hb-unicode.h \ + /usr/include/harfbuzz/hb-font.h \ + /usr/include/harfbuzz/hb-face.h \ + /usr/include/harfbuzz/hb-set.h \ + /usr/include/harfbuzz/hb-draw.h \ + /usr/include/harfbuzz/hb.h \ + /usr/include/harfbuzz/hb-deprecated.h \ + /usr/include/harfbuzz/hb-map.h \ + /usr/include/harfbuzz/hb-shape.h \ + /usr/include/harfbuzz/hb-shape-plan.h \ + /usr/include/harfbuzz/hb-style.h \ + /usr/include/harfbuzz/hb-version.h \ + /usr/include/pango-1.0/pango/pango-types.h \ + /usr/include/pango-1.0/pango/pango-gravity.h \ + /usr/include/pango-1.0/pango/pango-matrix.h \ + /usr/include/pango-1.0/pango/pango-script.h \ + /usr/include/pango-1.0/pango/pango-language.h \ + /usr/include/pango-1.0/pango/pango-bidi-type.h \ + /usr/include/pango-1.0/pango/pango-direction.h \ + /usr/include/pango-1.0/pango/pango-color.h \ + /usr/include/pango-1.0/pango/pango-break.h \ + /usr/include/pango-1.0/pango/pango-item.h \ + /usr/include/pango-1.0/pango/pango-context.h \ + /usr/include/pango-1.0/pango/pango-fontmap.h \ + /usr/include/pango-1.0/pango/pango-fontset.h \ + /usr/include/pango-1.0/pango/pango-engine.h \ + /usr/include/pango-1.0/pango/pango-glyph.h \ + /usr/include/pango-1.0/pango/pango-enum-types.h \ + /usr/include/pango-1.0/pango/pango-fontset-simple.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-layout.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/include/pango-1.0/pango/pango-markup.h \ + /usr/include/pango-1.0/pango/pango-renderer.h \ + /usr/include/pango-1.0/pango/pango-utils.h \ + /usr/include/cairo/cairo.h \ + /usr/include/cairo/cairo-version.h \ + /usr/include/cairo/cairo-features.h \ + /usr/include/cairo/cairo-deprecated.h \ + /usr/include/gtk-3.0/gdk/gdkscreen.h \ + /usr/include/gtk-3.0/gdk/gdkdisplay.h \ + /usr/include/gtk-3.0/gdk/gdkevents.h \ + /usr/include/gtk-3.0/gdk/gdkdnd.h \ + /usr/include/gtk-3.0/gdk/gdkdevice.h \ + /usr/include/gtk-3.0/gdk/gdkdevicetool.h \ + /usr/include/gtk-3.0/gdk/gdkdevicemanager.h \ + /usr/include/gtk-3.0/gdk/gdkseat.h \ + /usr/include/gtk-3.0/gdk/gdkwindow.h \ + /usr/include/gtk-3.0/gdk/gdkdrawingcontext.h \ + /usr/include/gtk-3.0/gdk/gdkframeclock.h \ + /usr/include/gtk-3.0/gdk/gdkframetimings.h \ + /usr/include/gtk-3.0/gdk/gdkmonitor.h \ + /usr/include/gtk-3.0/gdk/gdkrectangle.h \ + /usr/include/gtk-3.0/gdk/gdkcairo.h \ + /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h \ + /usr/include/gtk-3.0/gdk/gdkrgba.h \ + /usr/include/gtk-3.0/gdk/gdkpixbuf.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h \ + /usr/include/pango-1.0/pango/pangocairo.h \ + /usr/include/gtk-3.0/gdk/gdkcursor.h \ + /usr/include/gtk-3.0/gdk/gdkdevicepad.h \ + /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h \ + /usr/include/gtk-3.0/gdk/gdkenumtypes.h \ + /usr/include/gtk-3.0/gdk/gdkglcontext.h \ + /usr/include/gtk-3.0/gdk/gdkkeys.h \ + /usr/include/gtk-3.0/gdk/gdkkeysyms.h \ + /usr/include/gtk-3.0/gdk/gdkmain.h \ + /usr/include/gtk-3.0/gdk/gdkpango.h \ + /usr/include/gtk-3.0/gdk/gdkproperty.h \ + /usr/include/gtk-3.0/gdk/gdkselection.h \ + /usr/include/gtk-3.0/gdk/gdktestutils.h \ + /usr/include/gtk-3.0/gdk/gdkthreads.h \ + /usr/include/gtk-3.0/gdk/gdkvisual.h \ + /usr/include/gtk-3.0/gdk/gdk-autocleanup.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbuf.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufformat.h \ + /usr/include/gdkmm-3.0/gdkmm/types.h \ + /usr/include/cairomm-1.0/cairomm/surface.h \ + /usr/include/cairomm-1.0/cairomm/enums.h \ + /usr/include/cairo/cairo-ft.h \ + /usr/include/cairo/cairo.h \ + /usr/include/freetype2/ft2build.h \ + /usr/include/freetype2/freetype/config/ftheader.h \ + /usr/include/freetype2/freetype/freetype.h \ + /usr/include/freetype2/freetype/config/ftconfig.h \ + /usr/include/freetype2/freetype/config/ftoption.h \ + /usr/include/freetype2/freetype/config/ftstdlib.h \ + /usr/include/setjmp.h \ + /usr/include/freetype2/freetype/config/integer-types.h \ + /usr/include/freetype2/freetype/config/public-macros.h \ + /usr/include/freetype2/freetype/config/mac-support.h \ + /usr/include/freetype2/freetype/fttypes.h \ + /usr/include/freetype2/freetype/ftsystem.h \ + /usr/include/freetype2/freetype/ftimage.h \ + /usr/include/freetype2/freetype/fterrors.h \ + /usr/include/freetype2/freetype/ftmoderr.h \ + /usr/include/freetype2/freetype/fterrdef.h \ + /usr/include/fontconfig/fontconfig.h \ + /usr/include/sys/stat.h \ + /usr/include/bits/stat.h \ + /usr/include/bits/struct_stat.h \ + /usr/include/bits/statx.h \ + /usr/include/linux/stat.h \ + /usr/include/linux/types.h \ + /usr/include/asm/types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/statx-generic.h \ + /usr/include/bits/types/struct_statx_timestamp.h \ + /usr/include/bits/types/struct_statx.h \ + /usr/include/cairomm-1.0/cairomm/exception.h \ + /usr/lib/cairomm-1.0/include/cairommconfig.h \ + /usr/include/cairomm-1.0/cairomm/device.h \ + /usr/include/cairomm-1.0/cairomm/types.h \ + /usr/include/cairomm-1.0/cairomm/refptr.h \ + /usr/include/cairomm-1.0/cairomm/fontoptions.h \ + /usr/include/cairo/cairo-pdf.h \ + /usr/include/cairo/cairo-ps.h \ + /usr/include/cairo/cairo-svg.h \ + /usr/include/gdkmm-3.0/gdkmm/device.h \ + /usr/include/gdkmm-3.0/gdkmm/cursor.h \ + /usr/include/gdkmm-3.0/gdkmm/display.h \ + /usr/include/gdkmm-3.0/gdkmm/screen.h \ + /usr/include/gdkmm-3.0/gdkmm/rectangle.h \ + /usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/event.h \ + /usr/include/gdkmm-3.0/gdkmm/timecoord.h \ + /usr/include/gdkmm-3.0/gdkmm.h \ + /usr/include/gdkmm-3.0/gdkmm/visual.h \ + /usr/include/gdkmm-3.0/gdkmm/window.h \ + /usr/include/cairomm-1.0/cairomm/region.h \ + /usr/include/cairomm-1.0/cairomm/pattern.h \ + /usr/include/gdkmm-3.0/gdkmm/rgba.h \ + /usr/include/cairomm-1.0/cairomm/context.h \ + /usr/include/cairomm-1.0/cairomm/fontface.h \ + /usr/include/cairomm-1.0/cairomm/matrix.h \ + /usr/include/cairomm-1.0/cairomm/path.h \ + /usr/include/cairomm-1.0/cairomm/scaledfont.h \ + /usr/include/c++/11.2.0/valarray \ + /usr/include/c++/11.2.0/cmath \ + /usr/include/math.h \ + /usr/include/bits/math-vector.h \ + /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h \ + /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h \ + /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h \ + /usr/include/c++/11.2.0/bits/specfun.h \ + /usr/include/c++/11.2.0/tr1/gamma.tcc \ + /usr/include/c++/11.2.0/tr1/special_function_util.h \ + /usr/include/c++/11.2.0/tr1/bessel_function.tcc \ + /usr/include/c++/11.2.0/tr1/beta_function.tcc \ + /usr/include/c++/11.2.0/tr1/ell_integral.tcc \ + /usr/include/c++/11.2.0/tr1/exp_integral.tcc \ + /usr/include/c++/11.2.0/tr1/hypergeometric.tcc \ + /usr/include/c++/11.2.0/tr1/legendre_function.tcc \ + /usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc \ + /usr/include/c++/11.2.0/tr1/poly_hermite.tcc \ + /usr/include/c++/11.2.0/tr1/poly_laguerre.tcc \ + /usr/include/c++/11.2.0/tr1/riemann_zeta.tcc \ + /usr/include/c++/11.2.0/bits/valarray_array.h \ + /usr/include/c++/11.2.0/bits/valarray_array.tcc \ + /usr/include/c++/11.2.0/bits/valarray_before.h \ + /usr/include/c++/11.2.0/bits/slice_array.h \ + /usr/include/c++/11.2.0/bits/valarray_after.h \ + /usr/include/c++/11.2.0/bits/gslice.h \ + /usr/include/c++/11.2.0/bits/gslice_array.h \ + /usr/include/c++/11.2.0/bits/mask_array.h \ + /usr/include/c++/11.2.0/bits/indirect_array.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufloader.h \ + /usr/include/gdkmm-3.0/gdkmm/drawingcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/frameclock.h \ + /usr/include/gdkmm-3.0/gdkmm/frametimings.h \ + /usr/include/gdkmm-3.0/gdkmm/glcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/displaymanager.h \ + /usr/include/gdkmm-3.0/gdkmm/devicemanager.h \ + /usr/include/gdkmm-3.0/gdkmm/seat.h \ + /usr/include/gdkmm-3.0/gdkmm/monitor.h \ + /usr/include/gdkmm-3.0/gdkmm/general.h \ + /usr/include/gtkmm-3.0/gtkmm/toggleaction.h \ + /usr/include/gtkmm-3.0/gtkmm/action.h \ + /usr/lib/gtkmm-3.0/include/gtkmmconfig.h \ + /usr/include/gtkmm-3.0/gtkmm/widget.h \ + /usr/include/pangomm-1.4/pangomm/context.h \ + /usr/include/pangomm-1.4/pangomm/fontdescription.h \ + /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ + /usr/include/pangomm-1.4/pangomm/fontset.h \ + /usr/include/pangomm-1.4/pangomm/language.h \ + /usr/include/pangomm-1.4/pangomm/font.h \ + /usr/include/pangomm-1.4/pangomm/rectangle.h \ + /usr/include/pangomm-1.4/pangomm/glyph.h \ + /usr/include/pangomm-1.4/pangomm/coverage.h \ + /usr/include/pangomm-1.4/pangomm/fontmap.h \ + /usr/include/pangomm-1.4/pangomm/fontfamily.h \ + /usr/include/pangomm-1.4/pangomm/fontface.h \ + /usr/include/pangomm-1.4/pangomm/item.h \ + /usr/include/pangomm-1.4/pangomm/attributes.h \ + /usr/include/pangomm-1.4/pangomm/color.h \ + /usr/include/pangomm-1.4/pangomm/attrlist.h \ + /usr/include/pangomm-1.4/pangomm/attriter.h \ + /usr/include/pangomm-1.4/pangomm/types.h \ + /usr/include/pangomm-1.4/pangomm/layout.h \ + /usr/include/pangomm-1.4/pangomm/tabarray.h \ + /usr/include/pangomm-1.4/pangomm/layoutline.h \ + /usr/include/pangomm-1.4/pangomm/layoutiter.h \ + /usr/include/pangomm-1.4/pangomm/layoutrun.h \ + /usr/include/atkmm-1.6/atkmm/object.h \ + /usr/include/atkmm-1.6/atkmm/component.h \ + /usr/lib/atkmm-1.6/include/atkmmconfig.h \ + /usr/include/atkmm-1.6/atkmm/relation.h \ + /usr/include/atkmm-1.6/atkmm/implementor.h \ + /usr/include/gtkmm-3.0/gtkmm/object.h \ + /usr/include/gtkmm-3.0/gtkmm/base.h \ + /usr/include/gtkmm-3.0/gtkmm/buildable.h \ + /usr/include/gtkmm-3.0/gtkmm/enums.h \ + /usr/include/gtk-3.0/gtk/gtk.h \ + /usr/include/gtk-3.0/gtk/gtkaboutdialog.h \ + /usr/include/gtk-3.0/gtk/gtkdialog.h \ + /usr/include/gtk-3.0/gtk/gtkwindow.h \ + /usr/include/gtk-3.0/gtk/gtkapplication.h \ + /usr/include/gtk-3.0/gtk/gtkwidget.h \ + /usr/include/gtk-3.0/gtk/gtkaccelgroup.h \ + /usr/include/gtk-3.0/gtk/gtkenums.h \ + /usr/include/gtk-3.0/gtk/gtkborder.h \ + /usr/include/gtk-3.0/gtk/gtktypes.h \ + /usr/include/atk-1.0/atk/atk.h \ + /usr/include/atk-1.0/atk/atkobject.h \ + /usr/include/atk-1.0/atk/atkversion.h \ + /usr/include/atk-1.0/atk/atkstate.h \ + /usr/include/atk-1.0/atk/atkrelationtype.h \ + /usr/include/atk-1.0/atk/atkaction.h \ + /usr/include/atk-1.0/atk/atkcomponent.h \ + /usr/include/atk-1.0/atk/atkutil.h \ + /usr/include/atk-1.0/atk/atkdocument.h \ + /usr/include/atk-1.0/atk/atkeditabletext.h \ + /usr/include/atk-1.0/atk/atktext.h \ + /usr/include/atk-1.0/atk/atk-enum-types.h \ + /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ + /usr/include/atk-1.0/atk/atkhyperlink.h \ + /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ + /usr/include/atk-1.0/atk/atkhypertext.h \ + /usr/include/atk-1.0/atk/atkimage.h \ + /usr/include/atk-1.0/atk/atknoopobject.h \ + /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ + /usr/include/atk-1.0/atk/atkobjectfactory.h \ + /usr/include/atk-1.0/atk/atkplug.h \ + /usr/include/atk-1.0/atk/atkrange.h \ + /usr/include/atk-1.0/atk/atkregistry.h \ + /usr/include/atk-1.0/atk/atkobjectfactory.h \ + /usr/include/atk-1.0/atk/atkrelation.h \ + /usr/include/atk-1.0/atk/atkrelationset.h \ + /usr/include/atk-1.0/atk/atkselection.h \ + /usr/include/atk-1.0/atk/atksocket.h \ + /usr/include/atk-1.0/atk/atkstateset.h \ + /usr/include/atk-1.0/atk/atkstreamablecontent.h \ + /usr/include/atk-1.0/atk/atktable.h \ + /usr/include/atk-1.0/atk/atktablecell.h \ + /usr/include/atk-1.0/atk/atkmisc.h \ + /usr/include/atk-1.0/atk/atkvalue.h \ + /usr/include/atk-1.0/atk/atkwindow.h \ + /usr/include/atk-1.0/atk/atk-autocleanups.h \ + /usr/include/gtk-3.0/gtk/gtkbin.h \ + /usr/include/gtk-3.0/gtk/gtkcontainer.h \ + /usr/include/gtk-3.0/gtk/gtkaccellabel.h \ + /usr/include/gtk-3.0/gtk/gtklabel.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h \ + /usr/include/gtk-3.0/gtk/gtkmenu.h \ + /usr/include/gtk-3.0/gtk/gtkmenushell.h \ + /usr/include/gtk-3.0/gtk/gtkaccelmap.h \ + /usr/include/gtk-3.0/gtk/gtkaccessible.h \ + /usr/include/gtk-3.0/gtk/gtkactionable.h \ + /usr/include/gtk-3.0/gtk/gtkactionbar.h \ + /usr/include/gtk-3.0/gtk/gtkadjustment.h \ + /usr/include/gtk-3.0/gtk/gtkappchooser.h \ + /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkbox.h \ + /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h \ + /usr/include/gtk-3.0/gtk/gtkcombobox.h \ + /usr/include/gtk-3.0/gtk/gtktreemodel.h \ + /usr/include/gtk-3.0/gtk/gtktreeview.h \ + /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderer.h \ + /usr/include/gtk-3.0/gtk/gtkcelleditable.h \ + /usr/include/gtk-3.0/gtk/gtktreesortable.h \ + /usr/include/gtk-3.0/gtk/gtkcellarea.h \ + /usr/include/gtk-3.0/gtk/gtkdnd.h \ + /usr/include/gtk-3.0/gtk/gtkselection.h \ + /usr/include/gtk-3.0/gtk/gtktextiter.h \ + /usr/include/gtk-3.0/gtk/gtktextattributes.h \ + /usr/include/gtk-3.0/gtk/gtktextchild.h \ + /usr/include/gtk-3.0/gtk/gtktexttag.h \ + /usr/include/gtk-3.0/gtk/gtkentry.h \ + /usr/include/gtk-3.0/gtk/gtkeditable.h \ + /usr/include/gtk-3.0/gtk/gtkimcontext.h \ + /usr/include/gtk-3.0/gtk/gtkentrybuffer.h \ + /usr/include/gtk-3.0/gtk/gtkentrycompletion.h \ + /usr/include/gtk-3.0/gtk/gtkliststore.h \ + /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h \ + /usr/include/gtk-3.0/gtk/gtkimage.h \ + /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutswindow.h \ + /usr/include/gtk-3.0/gtk/gtkaspectframe.h \ + /usr/include/gtk-3.0/gtk/gtkframe.h \ + /usr/include/gtk-3.0/gtk/gtkassistant.h \ + /usr/include/gtk-3.0/gtk/gtkbbox.h \ + /usr/include/gtk-3.0/gtk/gtkbindings.h \ + /usr/include/gtk-3.0/gtk/gtkbuildable.h \ + /usr/include/gtk-3.0/gtk/gtkbuilder.h \ + /usr/include/gtk-3.0/gtk/gtkbutton.h \ + /usr/include/gtk-3.0/gtk/gtkcalendar.h \ + /usr/include/gtk-3.0/gtk/gtkcellareabox.h \ + /usr/include/gtk-3.0/gtk/gtkcellareacontext.h \ + /usr/include/gtk-3.0/gtk/gtkcelllayout.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h \ + /usr/include/gtk-3.0/gtk/gtkcellview.h \ + /usr/include/gtk-3.0/gtk/gtkcheckbutton.h \ + /usr/include/gtk-3.0/gtk/gtktogglebutton.h \ + /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkmenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkclipboard.h \ + /usr/include/gtk-3.0/gtk/gtkcolorbutton.h \ + /usr/include/gtk-3.0/gtk/gtkcolorchooser.h \ + /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkcolorutils.h \ + /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h \ + /usr/include/gtk-3.0/gtk/gtkcssprovider.h \ + /usr/include/gtk-3.0/gtk/gtkcsssection.h \ + /usr/include/gtk-3.0/gtk/gtkdebug.h \ + /usr/include/gtk-3.0/gtk/gtkdragdest.h \ + /usr/include/gtk-3.0/gtk/gtkdragsource.h \ + /usr/include/gtk-3.0/gtk/gtkdrawingarea.h \ + /usr/include/gtk-3.0/gtk/gtkeventbox.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontroller.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h \ + /usr/include/gtk-3.0/gtk/gtkexpander.h \ + /usr/include/gtk-3.0/gtk/gtkfixed.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooser.h \ + /usr/include/gtk-3.0/gtk/gtkfilefilter.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkfilechoosernative.h \ + /usr/include/gtk-3.0/gtk/gtknativedialog.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkflowbox.h \ + /usr/include/gtk-3.0/gtk/gtkfontbutton.h \ + /usr/include/gtk-3.0/gtk/gtkfontchooser.h \ + /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkgesture.h \ + /usr/include/gtk-3.0/gtk/gtkgesturedrag.h \ + /usr/include/gtk-3.0/gtk/gtkgesturesingle.h \ + /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h \ + /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h \ + /usr/include/gtk-3.0/gtk/gtkgesturepan.h \ + /usr/include/gtk-3.0/gtk/gtkgesturerotate.h \ + /usr/include/gtk-3.0/gtk/gtkgesturestylus.h \ + /usr/include/gtk-3.0/gtk/gtkgestureswipe.h \ + /usr/include/gtk-3.0/gtk/gtkgesturezoom.h \ + /usr/include/gtk-3.0/gtk/gtkglarea.h \ + /usr/include/gtk-3.0/gtk/gtkgrid.h \ + /usr/include/gtk-3.0/gtk/gtkheaderbar.h \ + /usr/include/gtk-3.0/gtk/gtkicontheme.h \ + /usr/include/gtk-3.0/gtk/gtkstylecontext.h \ + /usr/include/gtk-3.0/gtk/gtkstyleprovider.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h \ + /usr/include/gtk-3.0/gtk/gtkiconview.h \ + /usr/include/gtk-3.0/gtk/gtktooltip.h \ + /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h \ + /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h \ + /usr/include/gtk-3.0/gtk/gtkimmulticontext.h \ + /usr/include/gtk-3.0/gtk/gtkinfobar.h \ + /usr/include/gtk-3.0/gtk/gtkinvisible.h \ + /usr/include/gtk-3.0/gtk/gtklayout.h \ + /usr/include/gtk-3.0/gtk/gtklevelbar.h \ + /usr/include/gtk-3.0/gtk/gtklinkbutton.h \ + /usr/include/gtk-3.0/gtk/gtklistbox.h \ + /usr/include/gtk-3.0/gtk/gtklockbutton.h \ + /usr/include/gtk-3.0/gtk/gtkmain.h \ + /usr/include/gtk-3.0/gtk/gtkmenubar.h \ + /usr/include/gtk-3.0/gtk/gtkmenubutton.h \ + /usr/include/gtk-3.0/gtk/gtkpopover.h \ + /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtktoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtktoolitem.h \ + /usr/include/gtk-3.0/gtk/gtksizegroup.h \ + /usr/include/gtk-3.0/gtk/gtkmessagedialog.h \ + /usr/include/gtk-3.0/gtk/gtkmodelbutton.h \ + /usr/include/gtk-3.0/gtk/gtkmodules.h \ + /usr/include/gtk-3.0/gtk/gtkmountoperation.h \ + /usr/include/gtk-3.0/gtk/gtknotebook.h \ + /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h \ + /usr/include/gtk-3.0/gtk/gtkorientable.h \ + /usr/include/gtk-3.0/gtk/gtkoverlay.h \ + /usr/include/gtk-3.0/gtk/gtkpadcontroller.h \ + /usr/include/gtk-3.0/gtk/gtkpagesetup.h \ + /usr/include/gtk-3.0/gtk/gtkpapersize.h \ + /usr/include/gtk-3.0/gtk/gtkpaned.h \ + /usr/include/gtk-3.0/gtk/gtkplacessidebar.h \ + /usr/include/gtk-3.0/gtk/gtkpopovermenu.h \ + /usr/include/gtk-3.0/gtk/gtkprintcontext.h \ + /usr/include/gtk-3.0/gtk/gtkprintoperation.h \ + /usr/include/gtk-3.0/gtk/gtkprintsettings.h \ + /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h \ + /usr/include/gtk-3.0/gtk/gtkprogressbar.h \ + /usr/include/gtk-3.0/gtk/gtkradiobutton.h \ + /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtkrange.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchooser.h \ + /usr/include/gtk-3.0/gtk/gtkrecentmanager.h \ + /usr/include/gtk-3.0/gtk/gtkrecentfilter.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkrender.h \ + /usr/include/gtk-3.0/gtk/gtkrevealer.h \ + /usr/include/gtk-3.0/gtk/gtkscale.h \ + /usr/include/gtk-3.0/gtk/gtkscalebutton.h \ + /usr/include/gtk-3.0/gtk/gtkscrollable.h \ + /usr/include/gtk-3.0/gtk/gtkscrollbar.h \ + /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h \ + /usr/include/gtk-3.0/gtk/gtksearchbar.h \ + /usr/include/gtk-3.0/gtk/gtksearchentry.h \ + /usr/include/gtk-3.0/gtk/gtkseparator.h \ + /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h \ + /usr/include/gtk-3.0/gtk/gtksettings.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutlabel.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutssection.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h \ + /usr/include/gtk-3.0/gtk/gtkshow.h \ + /usr/include/gtk-3.0/gtk/gtkstacksidebar.h \ + /usr/include/gtk-3.0/gtk/gtkstack.h \ + /usr/include/gtk-3.0/gtk/gtksizerequest.h \ + /usr/include/gtk-3.0/gtk/gtkspinbutton.h \ + /usr/include/gtk-3.0/gtk/gtkspinner.h \ + /usr/include/gtk-3.0/gtk/gtkstackswitcher.h \ + /usr/include/gtk-3.0/gtk/gtkstatusbar.h \ + /usr/include/gtk-3.0/gtk/gtkswitch.h \ + /usr/include/gtk-3.0/gtk/gtktextbuffer.h \ + /usr/include/gtk-3.0/gtk/gtktexttagtable.h \ + /usr/include/gtk-3.0/gtk/gtktextmark.h \ + /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h \ + /usr/include/gtk-3.0/gtk/gtktextview.h \ + /usr/include/gtk-3.0/gtk/gtktoolbar.h \ + /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h \ + /usr/include/gtk-3.0/gtk/gtktoolpalette.h \ + /usr/include/gtk-3.0/gtk/gtktoolshell.h \ + /usr/include/gtk-3.0/gtk/gtktestutils.h \ + /usr/include/gtk-3.0/gtk/gtktreednd.h \ + /usr/include/gtk-3.0/gtk/gtktreemodelsort.h \ + /usr/include/gtk-3.0/gtk/gtktreeselection.h \ + /usr/include/gtk-3.0/gtk/gtktreestore.h \ + /usr/include/gtk-3.0/gtk/gtktypebuiltins.h \ + /usr/include/gtk-3.0/gtk/gtkversion.h \ + /usr/include/gtk-3.0/gtk/gtkviewport.h \ + /usr/include/gtk-3.0/gtk/gtkvolumebutton.h \ + /usr/include/gtk-3.0/gtk/gtkwidgetpath.h \ + /usr/include/gtk-3.0/gtk/gtkwindowgroup.h \ + /usr/include/gtk-3.0/gtk/gtkwindow.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtktable.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h \ + /usr/include/gtk-3.0/gtk/gtk-autocleanups.h \ + /usr/include/gtkmm-3.0/gtkmm/targetlist.h \ + /usr/include/gtkmm-3.0/gtkmm/targetentry.h \ + /usr/include/gtkmm-3.0/gtkmm/clipboard.h \ + /usr/include/gtkmm-3.0/gtkmm/selectiondata.h \ + /usr/include/gtkmm-3.0/gtkmm/requisition.h \ + /usr/include/gtkmm-3.0/gtkmm/stylecontext.h \ + /usr/include/gtkmm-3.0/gtkmm/styleprovider.h \ + /usr/include/gtkmm-3.0/gtkmm/border.h \ + /usr/include/gtkmm-3.0/gtkmm/iconsource.h \ + /usr/include/gtkmm-3.0/gtkmm/iconset.h \ + /usr/include/gtkmm-3.0/gtkmm/stockid.h \ + /usr/include/gtkmm-3.0/gtkmm/widgetpath.h \ + /usr/include/gtkmm-3.0/gtkmm/accelgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/radioaction.h \ + /usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h \ + /usr/include/gtkmm-3.0/gtkmm/aboutdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/dialog.h \ + /usr/include/gtkmm-3.0/gtkmm/window.h \ + /usr/include/gtkmm-3.0/gtkmm/bin.h \ + /usr/include/gtkmm-3.0/gtkmm/container.h \ + /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h \ + /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h \ + /usr/include/gtkmm-3.0/gtkmm/application.h \ + /usr/include/gtkmm-3.0/gtkmm/actiongroup.h \ + /usr/include/gtkmm-3.0/gtkmm/accelkey.h \ + /usr/include/gtkmm-3.0/gtkmm/windowgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/box.h \ + /usr/include/gtkmm-3.0/gtkmm/orientable.h \ + /usr/include/gtkmm-3.0/gtkmm/hvbox.h \ + /usr/include/gtkmm-3.0/gtkmm/button.h \ + /usr/include/gtkmm-3.0/gtkmm/activatable.h \ + /usr/include/gtkmm-3.0/gtkmm/buttonbox.h \ + /usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h \ + /usr/include/gtkmm-3.0/gtkmm/headerbar.h \ + /usr/include/gtkmm-3.0/gtkmm/accelmap.h \ + /usr/include/gtkmm-3.0/gtkmm/actionable.h \ + /usr/include/gtkmm-3.0/gtkmm/actionbar.h \ + /usr/include/gtkmm-3.0/gtkmm/adjustment.h \ + /usr/include/gtkmm-3.0/gtkmm/alignment.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/combobox.h \ + /usr/include/gtkmm-3.0/gtkmm/celllayout.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderer.h \ + /usr/include/gtkmm-3.0/gtkmm/celleditable.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodel.h \ + /usr/include/gtkmm-3.0/gtkmm/treeiter.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h \ + /usr/include/gtkmm-3.0/gtkmm/cellarea.h \ + /usr/include/gtkmm-3.0/gtkmm/cellareacontext.h \ + /usr/include/gtkmm-3.0/gtkmm/treeview.h \ + /usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h \ + /usr/include/gtkmm-3.0/gtkmm/treeselection.h \ + /usr/include/gtkmm-3.0/gtkmm/treepath.h \ + /usr/include/gtkmm-3.0/gtkmm/scrollable.h \ + /usr/include/gtkmm-3.0/gtkmm/entry.h \ + /usr/include/gtkmm-3.0/gtkmm/editable.h \ + /usr/include/gtkmm-3.0/gtkmm/menu.h \ + /usr/include/gtkmm-3.0/gtkmm/menushell.h \ + /usr/include/gtkmm-3.0/gtkmm/menuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/accellabel.h \ + /usr/include/gtkmm-3.0/gtkmm/label.h \ + /usr/include/gtkmm-3.0/gtkmm/misc.h \ + /usr/include/gtkmm-3.0/gtkmm/entrycompletion.h \ + /usr/include/gtkmm-3.0/gtkmm/image.h \ + /usr/include/gtkmm-3.0/gtkmm/entrybuffer.h \ + /usr/include/gtkmm-3.0/gtkmm/tooltip.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/applicationwindow.h \ + /usr/include/gtkmm-3.0/gtkmm/arrow.h \ + /usr/include/gtkmm-3.0/gtkmm/aspectframe.h \ + /usr/include/gtkmm-3.0/gtkmm/frame.h \ + /usr/include/gtkmm-3.0/gtkmm/assistant.h \ + /usr/include/gtkmm-3.0/gtkmm/builder.h \ + /usr/include/gtkmm-3.0/gtkmm/cellareabox.h \ + /usr/include/gtkmm-3.0/gtkmm/cellview.h \ + /usr/include/gtkmm-3.0/gtkmm/checkbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/togglebutton.h \ + /usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h \ + /usr/include/gtkmm-3.0/gtkmm/colorbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/colorchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/colorselection.h \ + /usr/include/gtkmm-3.0/gtkmm/comboboxtext.h \ + /usr/include/gtkmm-3.0/gtkmm/cssprovider.h \ + /usr/include/gtkmm-3.0/gtkmm/csssection.h \ + /usr/include/gtkmm-3.0/gtkmm/drawingarea.h \ + /usr/include/gtkmm-3.0/gtkmm/expander.h \ + /usr/include/gtkmm-3.0/gtkmm/eventbox.h \ + /usr/include/gtkmm-3.0/gtkmm/eventcontroller.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooser.h \ + /usr/include/gtkmm-3.0/gtkmm/filefilter.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/filechoosernative.h \ + /usr/include/gtkmm-3.0/gtkmm/nativedialog.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/fixed.h \ + /usr/include/gtkmm-3.0/gtkmm/flowbox.h \ + /usr/include/gtkmm-3.0/gtkmm/flowboxchild.h \ + /usr/include/gtkmm-3.0/gtkmm/fontbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/fontchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/fontselection.h \ + /usr/include/gtkmm-3.0/gtkmm/gesture.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturedrag.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturesingle.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturepan.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturerotate.h \ + /usr/include/gtkmm-3.0/gtkmm/gestureswipe.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturezoom.h \ + /usr/include/gtkmm-3.0/gtkmm/glarea.h \ + /usr/include/gtkmm-3.0/gtkmm/grid.h \ + /usr/include/gtkmm-3.0/gtkmm/handlebox.h \ + /usr/include/gtkmm-3.0/gtkmm/hvpaned.h \ + /usr/include/gtkmm-3.0/gtkmm/paned.h \ + /usr/include/gtkmm-3.0/gtkmm/hvscale.h \ + /usr/include/gtkmm-3.0/gtkmm/scale.h \ + /usr/include/gtkmm-3.0/gtkmm/range.h \ + /usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h \ + /usr/include/gtkmm-3.0/gtkmm/scrollbar.h \ + /usr/include/gtkmm-3.0/gtkmm/hvseparator.h \ + /usr/include/gtkmm-3.0/gtkmm/separator.h \ + /usr/include/gtkmm-3.0/gtkmm/iconfactory.h \ + /usr/include/gtkmm-3.0/gtkmm/icontheme.h \ + /usr/include/gtkmm-3.0/gtkmm/iconinfo.h \ + /usr/include/gtkmm-3.0/gtkmm/iconview.h \ + /usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/infobar.h \ + /usr/include/gtkmm-3.0/gtkmm/calendar.h \ + /usr/include/gtkmm-3.0/gtkmm/invisible.h \ + /usr/include/gtkmm-3.0/gtkmm/layout.h \ + /usr/include/gtkmm-3.0/gtkmm/levelbar.h \ + /usr/include/gtkmm-3.0/gtkmm/listbox.h \ + /usr/include/gtkmm-3.0/gtkmm/listboxrow.h \ + /usr/include/gtkmm-3.0/gtkmm/liststore.h \ + /usr/include/gtkmm-3.0/gtkmm/treesortable.h \ + /usr/include/gtkmm-3.0/gtkmm/treedragdest.h \ + /usr/include/gtkmm-3.0/gtkmm/treedragsource.h \ + /usr/include/gtkmm-3.0/gtkmm/listviewtext.h \ + /usr/include/gtkmm-3.0/gtkmm/linkbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/main.h \ + /usr/include/gtkmm-3.0/gtkmm/menubar.h \ + /usr/include/gtkmm-3.0/gtkmm/menubutton.h \ + /usr/include/gtkmm-3.0/gtkmm/popover.h \ + /usr/include/gtkmm-3.0/gtkmm/messagedialog.h \ + /usr/include/gtkmm-3.0/gtkmm/modelbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/notebook.h \ + /usr/include/gtkmm-3.0/gtkmm/numerableicon.h \ + /usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h \ + /usr/include/gtkmm-3.0/gtkmm/overlay.h \ + /usr/include/gtkmm-3.0/gtkmm/pagesetup.h \ + /usr/include/gtkmm-3.0/gtkmm/papersize.h \ + /usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/printsettings.h \ + /usr/include/gtkmm-3.0/gtkmm/placessidebar.h \ + /usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h \ + /usr/include/gtkmm-3.0/gtkmm/popovermenu.h \ + /usr/include/gtkmm-3.0/gtkmm/printcontext.h \ + /usr/include/gtkmm-3.0/gtkmm/printer.h \ + /usr/include/gtkmm-3.0/gtkmm/printjob.h \ + /usr/include/gtkmm-3.0/gtkmm/printoperation.h \ + /usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h \ + /usr/include/gtkmm-3.0/gtkmm/printunixdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/progressbar.h \ + /usr/include/gtkmm-3.0/gtkmm/radiobutton.h \ + /usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/toolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/toolitem.h \ + /usr/include/gtkmm-3.0/gtkmm/sizegroup.h \ + /usr/include/gtkmm-3.0/gtkmm/recentaction.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/recentinfo.h \ + /usr/include/gtkmm-3.0/gtkmm/recentfilter.h \ + /usr/include/gtkmm-3.0/gtkmm/recentmanager.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/revealer.h \ + /usr/include/gtkmm-3.0/gtkmm/scalebutton.h \ + /usr/include/gtkmm-3.0/gtkmm/searchbar.h \ + /usr/include/gtkmm-3.0/gtkmm/searchentry.h \ + /usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h \ + /usr/include/gtkmm-3.0/gtkmm/settings.h \ + /usr/include/gtkmm-3.0/gtkmm/toolbar.h \ + /usr/include/gtkmm-3.0/gtkmm/toolshell.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutssection.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h \ + /usr/include/gtkmm-3.0/gtkmm/spinbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/spinner.h \ + /usr/include/gtkmm-3.0/gtkmm/stack.h \ + /usr/include/gtkmm-3.0/gtkmm/stacksidebar.h \ + /usr/include/gtkmm-3.0/gtkmm/stackswitcher.h \ + /usr/include/gtkmm-3.0/gtkmm/statusbar.h \ + /usr/include/gtkmm-3.0/gtkmm/statusicon.h \ + /usr/include/gtkmm-3.0/gtkmm/stock.h \ + /usr/include/gtkmm-3.0/gtkmm/stockitem.h \ + /usr/include/gtkmm-3.0/gtkmm/styleproperty.h \ + /usr/include/gtkmm-3.0/gtkmm/switch.h \ + /usr/include/gtkmm-3.0/gtkmm/table.h \ + /usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/textbuffer.h \ + /usr/include/gtkmm-3.0/gtkmm/texttagtable.h \ + /usr/include/gtkmm-3.0/gtkmm/texttag.h \ + /usr/include/gtkmm-3.0/gtkmm/textchildanchor.h \ + /usr/include/gtkmm-3.0/gtkmm/textmark.h \ + /usr/include/gtkmm-3.0/gtkmm/textiter.h \ + /usr/include/gtkmm-3.0/gtkmm/textattributes.h \ + /usr/include/gtkmm-3.0/gtkmm/textview.h \ + /usr/include/gtkmm-3.0/gtkmm/toolpalette.h \ + /usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodelsort.h \ + /usr/include/gtkmm-3.0/gtkmm/treerowreference.h \ + /usr/include/gtkmm-3.0/gtkmm/treestore.h \ + /usr/include/gtkmm-3.0/gtkmm/uimanager.h \ + /usr/include/gtkmm-3.0/gtkmm/viewport.h \ + /usr/include/gtkmm-3.0/gtkmm/volumebutton.h \ + /usr/include/c++/11.2.0/fstream \ + /usr/include/c++/11.2.0/bits/codecvt.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h \ + /usr/include/c++/11.2.0/bits/fstream.tcc \ + /usr/include/c++/11.2.0/filesystem \ + /usr/include/c++/11.2.0/bits/fs_fwd.h \ + /usr/include/c++/11.2.0/bits/fs_path.h \ + /usr/include/c++/11.2.0/locale \ + /usr/include/c++/11.2.0/bits/locale_facets_nonio.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h \ + /usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11.2.0/bits/locale_conv.h \ + /usr/include/c++/11.2.0/iomanip \ + /usr/include/c++/11.2.0/bits/quoted_string.h \ + /usr/include/c++/11.2.0/codecvt \ + /usr/include/c++/11.2.0/bits/fs_dir.h \ + /usr/include/c++/11.2.0/bits/fs_ops.h \ + /usr/include/gtkmm-3.0/gtkmm/plug.h \ + /usr/include/gtk-3.0/gtk/gtkx.h \ + /usr/include/gtk-3.0/gtk/gtksocket.h \ + /usr/include/gtk-3.0/gdk/gdkx.h \ + /usr/include/X11/Xlib.h \ + /usr/include/X11/X.h \ + /usr/include/X11/Xfuncproto.h \ + /usr/include/X11/Xosdefs.h \ + /usr/include/X11/Xutil.h \ + /usr/include/X11/keysym.h \ + /usr/include/X11/keysymdef.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11device.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11display.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11property.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11window.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h \ + /usr/include/gtk-3.0/gtk/gtkplug.h \ + /usr/include/gtk-3.0/gtk/gtkx-autocleanups.h \ + /usr/include/pwd.h \ + /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h + + +/usr/include/c++/11.2.0/bits/quoted_string.h: + +/usr/include/c++/11.2.0/iomanip: + +/usr/include/c++/11.2.0/bits/locale_conv.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h: + +/usr/include/c++/11.2.0/locale: + +/usr/include/c++/11.2.0/bits/fs_path.h: + +/usr/include/c++/11.2.0/bits/fs_fwd.h: + +/usr/include/c++/11.2.0/filesystem: + +/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h: + +/usr/include/gtk-3.0/gtk/gtkx-autocleanups.h: + +/usr/include/gtk-3.0/gtk/gtkplug.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11visual.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11selection.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11keys.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11device.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h: + +/usr/include/X11/keysymdef.h: + +/usr/include/X11/keysym.h: + +/usr/include/X11/Xutil.h: + +/usr/include/X11/Xosdefs.h: + +/usr/include/X11/Xlib.h: + +/usr/include/gtk-3.0/gdk/gdkx.h: + +/usr/include/gtk-3.0/gtk/gtksocket.h: + +/usr/include/gtkmm-3.0/gtkmm/plug.h: + +/usr/include/libintl.h: + +/usr/include/c++/11.2.0/fstream: + +/usr/include/gtkmm-3.0/gtkmm/volumebutton.h: + +/usr/include/gtkmm-3.0/gtkmm/treerowreference.h: + +/usr/include/gtkmm-3.0/gtkmm/treemodelsort.h: + +/usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h: + +/usr/include/gtkmm-3.0/gtkmm/toolpalette.h: + +/usr/include/gtkmm-3.0/gtkmm/textview.h: + +/usr/include/gtkmm-3.0/gtkmm/textattributes.h: + +/usr/include/gtkmm-3.0/gtkmm/textiter.h: + +/usr/include/gtkmm-3.0/gtkmm/textchildanchor.h: + +/usr/include/gtkmm-3.0/gtkmm/texttagtable.h: + +/usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h: + +/usr/include/gtkmm-3.0/gtkmm/stacksidebar.h: + +/usr/include/gtkmm-3.0/gtkmm/stack.h: + +/usr/include/gtkmm-3.0/gtkmm/spinbutton.h: + +/usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h: + +/usr/include/gtkmm-3.0/gtkmm/shortcutssection.h: + +/usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h: + +/usr/include/gtkmm-3.0/gtkmm/toolshell.h: + +/usr/include/gtkmm-3.0/gtkmm/searchentry.h: + +/usr/include/gtkmm-3.0/gtkmm/searchbar.h: + +/usr/include/gtkmm-3.0/gtkmm/revealer.h: + +/usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h: + +/usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h: + +/usr/include/gtkmm-3.0/gtkmm/recentmanager.h: + +/usr/include/gtkmm-3.0/gtkmm/recentinfo.h: + +/usr/include/gtkmm-3.0/gtkmm/recentchooser.h: + +/usr/include/gtkmm-3.0/gtkmm/recentaction.h: + +/usr/include/gtkmm-3.0/gtkmm/toolitem.h: + +/usr/include/gtkmm-3.0/gtkmm/toolbutton.h: + +/usr/include/gtkmm-3.0/gtkmm/scalebutton.h: + +/usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h: + +/usr/include/gtkmm-3.0/gtkmm/radiobutton.h: + +/usr/include/gtkmm-3.0/gtkmm/progressbar.h: + +/usr/include/gtkmm-3.0/gtkmm/printunixdialog.h: + +/usr/include/gtkmm-3.0/gtkmm/printoperation.h: + +/usr/include/gtkmm-3.0/gtkmm/printer.h: + +/usr/include/gtkmm-3.0/gtkmm/printcontext.h: + +/usr/include/gtkmm-3.0/gtkmm/popovermenu.h: + +/usr/include/gtkmm-3.0/gtkmm/printsettings.h: + +/usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h: + +/usr/include/gtkmm-3.0/gtkmm/papersize.h: + +/usr/include/gtkmm-3.0/gtkmm/pagesetup.h: + +/usr/include/gtkmm-3.0/gtkmm/notebook.h: + +/usr/include/gtkmm-3.0/gtkmm/modelbutton.h: + +/usr/include/gtkmm-3.0/gtkmm/messagedialog.h: + +/usr/include/gtkmm-3.0/gtkmm/popover.h: + +/usr/include/gtkmm-3.0/gtkmm/menubutton.h: + +/usr/include/gtkmm-3.0/gtkmm/main.h: + +/usr/include/gtkmm-3.0/gtkmm/treedragsource.h: + +/usr/include/gtkmm-3.0/gtkmm/treedragdest.h: + +/usr/include/gtkmm-3.0/gtkmm/treesortable.h: + +/usr/include/gtkmm-3.0/gtkmm/liststore.h: + +/usr/include/gtkmm-3.0/gtkmm/listboxrow.h: + +/usr/include/gtkmm-3.0/gtkmm/listbox.h: + +/usr/include/gtkmm-3.0/gtkmm/levelbar.h: + +/usr/include/gtkmm-3.0/gtkmm/infobar.h: + +/usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h: + +/usr/include/gtkmm-3.0/gtkmm/iconview.h: + +/usr/include/gtkmm-3.0/gtkmm/iconinfo.h: + +/usr/include/gtkmm-3.0/gtkmm/scrollbar.h: + +/usr/include/gtkmm-3.0/gtkmm/range.h: + +/usr/include/gtkmm-3.0/gtkmm/hvpaned.h: + +/usr/include/gtkmm-3.0/gtkmm/handlebox.h: + +/usr/include/gtkmm-3.0/gtkmm/grid.h: + +/usr/include/gtkmm-3.0/gtkmm/glarea.h: + +/usr/include/gtkmm-3.0/gtkmm/gesturezoom.h: + +/usr/include/gtkmm-3.0/gtkmm/gesturerotate.h: + +/usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h: + +/usr/include/gtkmm-3.0/gtkmm/fontselection.h: + +/usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h: + +/usr/include/gtkmm-3.0/gtkmm/fontbutton.h: + +/usr/include/gtkmm-3.0/gtkmm/paned.h: + +/usr/include/gtkmm-3.0/gtkmm/flowboxchild.h: + +/usr/include/gtkmm-3.0/gtkmm/flowbox.h: + +/usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h: + +/usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h: + +/usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h: + +/usr/include/gtkmm-3.0/gtkmm/filefilter.h: + +/usr/include/gtkmm-3.0/gtkmm/filechooser.h: + +/usr/include/gtkmm-3.0/gtkmm/eventcontroller.h: + +/usr/include/gtkmm-3.0/gtkmm/expander.h: + +/usr/include/gtkmm-3.0/gtkmm/drawingarea.h: + +/usr/include/gtkmm-3.0/gtkmm/csssection.h: + +/usr/include/gtkmm-3.0/gtkmm/cssprovider.h: + +/usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h: + +/usr/include/gtkmm-3.0/gtkmm/colorchooser.h: + +/usr/include/gtkmm-3.0/gtkmm/colorbutton.h: + +/usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h: + +/usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h: + +/usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h: + +/usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h: + +/usr/include/gtkmm-3.0/gtkmm/cellview.h: + +/usr/include/gtkmm-3.0/gtkmm/builder.h: + +/usr/include/gtkmm-3.0/gtkmm/frame.h: + +/usr/include/gtkmm-3.0/gtkmm/aspectframe.h: + +/usr/include/gtkmm-3.0/gtkmm/arrow.h: + +/usr/include/gtkmm-3.0/gtkmm/applicationwindow.h: + +/usr/include/gtkmm-3.0/gtkmm/sizegroup.h: + +/usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h: + +/usr/include/gtkmm-3.0/gtkmm/entrybuffer.h: + +/usr/include/gtkmm-3.0/gtkmm/entrycompletion.h: + +/usr/include/gtkmm-3.0/gtkmm/misc.h: + +/usr/include/gtkmm-3.0/gtkmm/label.h: + +/usr/include/gtkmm-3.0/gtkmm/accellabel.h: + +/usr/include/gtkmm-3.0/gtkmm/entry.h: + +/usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h: + +/usr/include/gtkmm-3.0/gtkmm/treeiter.h: + +/usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h: + +/usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h: + +/usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h: + +/usr/include/gtkmm-3.0/gtkmm/table.h: + +/usr/include/gtkmm-3.0/gtkmm/celleditable.h: + +/usr/include/gtkmm-3.0/gtkmm/celllayout.h: + +/usr/include/gtkmm-3.0/gtkmm/combobox.h: + +/usr/include/gtkmm-3.0/gtkmm/appchooser.h: + +/usr/include/gtkmm-3.0/gtkmm/adjustment.h: + +/usr/include/gtkmm-3.0/gtkmm/actionbar.h: + +/usr/include/gtkmm-3.0/gtkmm/cellarea.h: + +/usr/include/gtkmm-3.0/gtkmm/accelmap.h: + +/usr/include/gtkmm-3.0/gtkmm/headerbar.h: + +/usr/include/gtkmm-3.0/gtkmm/buttonbox.h: + +/usr/include/gtkmm-3.0/gtkmm/activatable.h: + +/usr/include/gtkmm-3.0/gtkmm/hvbox.h: + +/usr/include/gtkmm-3.0/gtkmm/orientable.h: + +/usr/include/gtkmm-3.0/gtkmm/box.h: + +/usr/include/gtkmm-3.0/gtkmm/actiongroup.h: + +/usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h: + +/usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h: + +/usr/include/gtkmm-3.0/gtkmm/container.h: + +/usr/include/gtkmm-3.0/gtkmm/bin.h: + +/usr/include/gtkmm-3.0/gtkmm/radioaction.h: + +/usr/include/gtkmm-3.0/gtkmm/accelgroup.h: + +/usr/include/gtkmm-3.0/gtkmm/widgetpath.h: + +/usr/include/gtkmm-3.0/gtkmm/iconset.h: + +/usr/include/gtkmm-3.0/gtkmm/iconsource.h: + +/usr/include/gtkmm-3.0/gtkmm/border.h: + +/usr/include/gtkmm-3.0/gtkmm/requisition.h: + +/usr/include/gtkmm-3.0/gtkmm/clipboard.h: + +/usr/include/gtkmm-3.0/gtkmm/targetentry.h: + +/usr/include/gtkmm-3.0/gtkmm/targetlist.h: + +/usr/include/gtk-3.0/gtk/gtk-autocleanups.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h: + +/usr/include/gtkmm-3.0/gtkmm/settings.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h: + +/usr/include/gtkmm-3.0/gtkmm/treestore.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h: + +/usr/include/gtkmm-3.0/gtkmm/gesture.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkstock.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkaction.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h: + +/usr/include/gtk-3.0/gtk/gtkwidgetpath.h: + +/usr/include/gtk-3.0/gtk/gtkvolumebutton.h: + +/usr/include/gtk-3.0/gtk/gtktypebuiltins.h: + +/usr/include/gtk-3.0/gtk/gtktreestore.h: + +/usr/include/gtk-3.0/gtk/gtktoolitemgroup.h: + +/usr/include/gtk-3.0/gtk/gtktoolbar.h: + +/usr/include/gtk-3.0/gtk/gtktextview.h: + +/usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h: + +/usr/include/gtk-3.0/gtk/gtkswitch.h: + +/usr/include/gtk-3.0/gtk/gtkstatusbar.h: + +/usr/include/gtk-3.0/gtk/gtkstackswitcher.h: + +/usr/include/gtk-3.0/gtk/gtkspinner.h: + +/usr/include/gtk-3.0/gtk/gtkspinbutton.h: + +/usr/include/gtk-3.0/gtk/gtksizerequest.h: + +/usr/include/gtk-3.0/gtk/gtkstack.h: + +/usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h: + +/usr/include/gtk-3.0/gtk/gtkshow.h: + +/usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h: + +/usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h: + +/usr/include/gtk-3.0/gtk/gtkshortcutlabel.h: + +/usr/include/gtkmm-3.0/gtkmm/toolbar.h: + +/usr/include/gtk-3.0/gtk/gtksettings.h: + +/usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h: + +/usr/include/gtk-3.0/gtk/gtksearchbar.h: + +/usr/include/gtk-3.0/gtk/gtkscrollable.h: + +/usr/include/gtk-3.0/gtk/gtkscale.h: + +/usr/include/gtk-3.0/gtk/gtkrevealer.h: + +/usr/include/gtk-3.0/gtk/gtkrender.h: + +/usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h: + +/usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h: + +/usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h: + +/usr/include/gtk-3.0/gtk/gtkrecentfilter.h: + +/usr/include/gtk-3.0/gtk/gtkrecentmanager.h: + +/usr/include/gtk-3.0/gtk/gtkrange.h: + +/usr/include/gtkmm-3.0/gtkmm/tooltip.h: + +/usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h: + +/usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h: + +/usr/include/gtk-3.0/gtk/gtkradiomenuitem.h: + +/usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h: + +/usr/include/gtk-3.0/gtk/gtkprintsettings.h: + +/usr/include/gtk-3.0/gtk/gtkprintcontext.h: + +/usr/include/gtk-3.0/gtk/gtkpopovermenu.h: + +/usr/include/gtk-3.0/gtk/gtkplacessidebar.h: + +/usr/include/gtk-3.0/gtk/gtkpaned.h: + +/usr/include/gtk-3.0/gtk/gtkpapersize.h: + +/usr/include/gtk-3.0/gtk/gtkpadcontroller.h: + +/usr/include/gtk-3.0/gtk/gtkoverlay.h: + +/usr/include/gtk-3.0/gtk/gtkorientable.h: + +/usr/include/gtk-3.0/gtk/gtknotebook.h: + +/usr/include/gtk-3.0/gtk/gtkshortcutssection.h: + +/usr/include/gtk-3.0/gtk/gtkmountoperation.h: + +/usr/include/gtk-3.0/gtk/gtkmodelbutton.h: + +/usr/include/gtk-3.0/gtk/gtkmessagedialog.h: + +/usr/include/gtk-3.0/gtk/gtktoolitem.h: + +/usr/include/gtk-3.0/gtk/gtktoolbutton.h: + +/usr/include/gtk-3.0/gtk/gtkmenubutton.h: + +/usr/include/gtk-3.0/gtk/gtkmain.h: + +/usr/include/gtk-3.0/gtk/gtklockbutton.h: + +/usr/include/gtk-3.0/gtk/gtklayout.h: + +/usr/include/gtk-3.0/gtk/gtkinvisible.h: + +/usr/include/gtk-3.0/gtk/gtkinfobar.h: + +/usr/include/gtkmm-3.0/gtkmm/hvseparator.h: + +/usr/include/gtkmm-3.0/gtkmm/treeselection.h: + +/usr/include/gtk-3.0/gtk/gtkimmulticontext.h: + +/usr/include/gtkmm-3.0/gtkmm/gestureswipe.h: + +/usr/include/gtk-3.0/gtk/gtktooltip.h: + +/usr/include/gtk-3.0/gtk/gtkiconview.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h: + +/usr/include/gtk-3.0/gtk/gtkstyleprovider.h: + +/usr/include/gtk-3.0/gtk/gtkstylecontext.h: + +/usr/include/gtk-3.0/gtk/gtkicontheme.h: + +/usr/include/gtk-3.0/gtk/gtkheaderbar.h: + +/usr/include/gtk-3.0/gtk/gtkgrid.h: + +/usr/include/gtk-3.0/gtk/gtkglarea.h: + +/usr/include/gtk-3.0/gtk/gtkgesturezoom.h: + +/usr/include/gtk-3.0/gtk/gtkgesturestylus.h: + +/usr/include/gtk-3.0/gtk/gtkgesturepan.h: + +/usr/include/gtk-3.0/gtk/gtkgesturelongpress.h: + +/usr/include/gtk-3.0/gtk/gtkgesture.h: + +/usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h: + +/usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h: + +/usr/include/gtk-3.0/gtk/gtkfontchooser.h: + +/usr/include/gtk-3.0/gtk/gtkfontbutton.h: + +/usr/include/gtkmm-3.0/gtkmm/cellrenderer.h: + +/usr/include/gtk-3.0/gtk/gtkflowbox.h: + +/usr/include/gtk-3.0/gtk/gtkgesturesingle.h: + +/usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h: + +/usr/include/gtk-3.0/gtk/gtknativedialog.h: + +/usr/include/gtk-3.0/gtk/gtkfilechoosernative.h: + +/usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h: + +/usr/include/gtk-3.0/gtk/gtkexpander.h: + +/usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h: + +/usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h: + +/usr/include/gtk-3.0/gtk/gtkeventcontroller.h: + +/usr/include/gtk-3.0/gtk/gtkdragsource.h: + +/usr/include/gtk-3.0/gtk/gtkdebug.h: + +/usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h: + +/usr/include/gtk-3.0/gtk/gtkcsssection.h: + +/usr/include/gtk-3.0/gtk/gtkcssprovider.h: + +/usr/include/gtk-3.0/gtk/gtkcomboboxtext.h: + +/usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h: + +/usr/include/gtk-3.0/gtk/gtkcolorchooser.h: + +/usr/include/gtk-3.0/gtk/gtkcolorbutton.h: + +/usr/include/gtk-3.0/gtk/gtkmenuitem.h: + +/usr/include/gtk-3.0/gtk/gtkcheckbutton.h: + +/usr/include/gtkmm-3.0/gtkmm/hvscale.h: + +/usr/include/gtk-3.0/gtk/gtkcellview.h: + +/usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h: + +/usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h: + +/usr/include/gtk-3.0/gtk/gtkstacksidebar.h: + +/usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h: + +/usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h: + +/usr/include/gtk-3.0/gtk/gtkcellrenderertext.h: + +/usr/include/gtk-3.0/gtk/gtkcellareacontext.h: + +/usr/include/gtk-3.0/gtk/gtkbutton.h: + +/usr/include/gtk-3.0/gtk/gtkbuilder.h: + +/usr/include/gtk-3.0/gtk/gtkbuildable.h: + +/usr/include/gtk-3.0/gtk/gtkbindings.h: + +/usr/include/gtk-3.0/gtk/gtkbbox.h: + +/usr/include/gtk-3.0/gtk/gtkshortcutswindow.h: + +/usr/include/gtk-3.0/gtk/gtkapplicationwindow.h: + +/usr/include/gtk-3.0/gtk/gtkliststore.h: + +/usr/include/gtk-3.0/gtk/gtktextmark.h: + +/usr/include/gtk-3.0/gtk/gtkimcontext.h: + +/usr/include/gtkmm-3.0/gtkmm/nativedialog.h: + +/usr/include/gtk-3.0/gtk/gtktexttag.h: + +/usr/include/gtk-3.0/gtk/gtktextchild.h: + +/usr/include/gtk-3.0/gtk/gtktextattributes.h: + +/usr/include/gtk-3.0/gtk/gtkselection.h: + +/usr/include/gtk-3.0/gtk/gtkdnd.h: + +/usr/include/gtk-3.0/gtk/gtkcellrenderer.h: + +/usr/include/gtk-3.0/gtk/gtktreeview.h: + +/usr/include/gtk-3.0/gtk/gtktreemodel.h: + +/usr/include/gtk-3.0/gtk/gtkappchooserbutton.h: + +/usr/include/gtk-3.0/gtk/gtkbox.h: + +/usr/include/gtk-3.0/gtk/gtkfilefilter.h: + +/usr/include/gtk-3.0/gtk/gtkappchooserdialog.h: + +/usr/include/gtk-3.0/gtk/gtkadjustment.h: + +/usr/include/gtk-3.0/gtk/gtkactionbar.h: + +/usr/include/gtk-3.0/gtk/gtkaccessible.h: + +/usr/include/gtk-3.0/gtk/gtkmenushell.h: + +/usr/include/glib-2.0/gio/gconverteroutputstream.h: + +/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h: + +/usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h: + +/usr/include/glib-2.0/gio/goutputstream.h: + +/usr/include/glib-2.0/gio/gfilteroutputstream.h: + +/usr/include/glib-2.0/gio/gfilterinputstream.h: + +/usr/include/glib-2.0/gio/gasyncresult.h: + +/usr/include/gtkmm-3.0/gtkmm/gesturedrag.h: + +/usr/include/glib-2.0/gio/gappinfo.h: + +/usr/include/glibmm-2.4/glibmm/varianttype.h: + +/usr/include/glib-2.0/gio/gio.h: + +/usr/include/bits/mathcalls-narrow.h: + +/usr/include/giomm-2.4/giomm/dbusobjectmanager.h: + +/usr/include/gtk-3.0/gtk/gtkcellarea.h: + +/usr/include/giomm-2.4/giomm/action.h: + +/usr/include/glibmm-2.4/glibmm/listhandle.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h: + +/usr/include/glib-2.0/gio/gsimpleasyncresult.h: + +/usr/include/glibmm-2.4/glibmm/weakref.h: + +/usr/include/glibmm-2.4/glibmm/variantdict.h: + +/usr/include/glibmm-2.4/glibmm/valuearray.h: + +/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc: + +/usr/include/glibmm-2.4/glibmm/uriutils.h: + +/usr/include/gtkmm-3.0/gtkmm/stockitem.h: + +/usr/include/gtkmm-3.0/gtkmm/application.h: + +/usr/include/glibmm-2.4/glibmm/stringutils.h: + +/usr/include/glib-2.0/gio/gpollableutils.h: + +/usr/include/glibmm-2.4/glibmm/slisthandle.h: + +/usr/include/gtk-3.0/gtk/gtktextbuffer.h: + +/usr/include/glibmm-2.4/glibmm/shell.h: + +/usr/include/glibmm-2.4/glibmm/pattern.h: + +/usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h: + +/usr/include/glib-2.0/gio/gfileicon.h: + +/usr/include/glibmm-2.4/glibmm/optionentry.h: + +/usr/include/gtkmm-3.0/gtkmm/image.h: + +/usr/include/glibmm-2.4/glibmm/nodetree.h: + +/usr/include/bits/sigaction.h: + +/usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h: + +/usr/include/glibmm-2.4/glibmm/sarray.h: + +/usr/include/atk-1.0/atk/atkrelation.h: + +/usr/include/glibmm-2.4/glibmm/priorities.h: + +/usr/include/gdkmm-3.0/gdkmm/displaymanager.h: + +/usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h: + +/usr/include/glibmm-2.4/glibmm/timezone.h: + +/usr/include/glibmm-2.4/glibmm/datetime.h: + +/usr/include/bits/types/locale_t.h: + +/usr/include/gtk-3.0/gtk/gtkclipboard.h: + +/usr/include/glibmm-2.4/glibmm/balancedtree.h: + +/usr/include/gtkmm-3.0/gtkmm/gesturesingle.h: + +/usr/include/bits/types.h: + +/usr/include/glibmm-2.4/glibmm/bytearray.h: + +/usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h: + +/usr/include/glibmm-2.4/glibmm/propertyproxy_base.h: + +/usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h: + +/usr/include/glibmm-2.4/glibmm/utility.h: + +/usr/include/c++/11.2.0/bits/stl_deque.h: + +/usr/include/c++/11.2.0/bits/gslice.h: + +/usr/include/gtk-3.0/gtk/gtkmodules.h: + +/usr/include/c++/11.2.0/algorithm: + +/usr/include/gtk-3.0/gtk/gtkimcontextinfo.h: + +/usr/include/c++/11.2.0/bits/parse_numbers.h: + +/usr/include/c++/11.2.0/bits/string_view.tcc: + +/usr/include/glib-2.0/gio/gdtlsserverconnection.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h: + +/usr/include/c++/11.2.0/chrono: + +/usr/include/glibmm-2.4/glibmm/debug.h: + +/usr/include/bits/struct_stat.h: + +/usr/include/c++/11.2.0/bits/alloc_traits.h: + +/usr/include/glibmm-2.4/glibmm/propertyproxy.h: + +/usr/include/ctype.h: + +/usr/include/c++/11.2.0/bits/unique_lock.h: + +/usr/include/harfbuzz/hb-buffer.h: + +/usr/include/c++/11.2.0/tr1/gamma.tcc: + +/usr/include/glibmm-2.4/glibmm/wrap.h: + +/usr/include/bits/byteswap.h: + +/usr/include/c++/11.2.0/bits/stl_map.h: + +/usr/include/c++/11.2.0/map: + +/usr/include/glib-2.0/gobject/gparamspecs.h: + +/usr/include/glib-2.0/gio/gdbusserver.h: + +/usr/include/gtk-3.0/gtk/gtkpagesetup.h: + +/usr/include/harfbuzz/hb-common.h: + +/usr/include/gtkmm-3.0/gtkmm/menu.h: + +/usr/include/freetype2/freetype/config/public-macros.h: + +/usr/include/glib-2.0/gio/gtlsbackend.h: + +/usr/include/glib-2.0/gio/gdataoutputstream.h: + +/usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h: + +/usr/include/giomm-2.4/giomm/socketsource.h: + +/usr/include/gtk-3.0/gdk/gdkdevicetool.h: + +/usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h: + +/usr/include/sigc++-2.0/sigc++/adaptors/hide.h: + +/usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h: + +/usr/include/glib-2.0/gio/gioerror.h: + +/usr/include/giomm-2.4/giomm/dbusauthobserver.h: + +/usr/include/atk-1.0/atk/atkcomponent.h: + +/usr/include/c++/11.2.0/bits/uniform_int_dist.h: + +/usr/include/glibmm-2.4/glibmm/exceptionhandler.h: + +/usr/include/c++/11.2.0/mutex: + +/usr/include/glibmm-2.4/glibmm/helperlist.h: + +/usr/include/gtk-3.0/gtk/gtkwindow.h: + +/usr/include/c++/11.2.0/bits/stl_algo.h: + +/usr/include/glib-2.0/gio/gsocketaddressenumerator.h: + +/usr/include/gtkmm-3.0/gtkmm/scrollable.h: + +/usr/include/glibmm-2.4/glibmm/init.h: + +/usr/include/c++/11.2.0/bits/erase_if.h: + +/usr/include/glib-2.0/gio/ginitable.h: + +/usr/include/c++/11.2.0/bits/stream_iterator.h: + +/usr/include/gtk-3.0/gtk/gtkradiobutton.h: + +/usr/include/gtk-3.0/gtk/gtkcombobox.h: + +/usr/include/sigc++-2.0/sigc++/reference_wrapper.h: + +/usr/include/glib-2.0/gio/gdbusconnection.h: + +/usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h: + +/usr/include/atk-1.0/atk/atkobject.h: + +/usr/include/glib-2.0/gio/gsocketconnectable.h: + +/usr/include/glibmm-2.4/glibmm/variant_basictypes.h: + +/usr/include/c++/11.2.0/bits/uses_allocator.h: + +/usr/include/pangomm-1.4/pangomm/layout.h: + +/usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h: + +/usr/include/gtk-3.0/gtk/gtkimage.h: + +/usr/include/bits/siginfo-consts-arch.h: + +/usr/include/glib-2.0/gio/gfileinfo.h: + +/usr/include/sigc++-2.0/sigc++/limit_reference.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h: + +/usr/include/c++/11.2.0/bits/stl_set.h: + +/usr/include/c++/11.2.0/string: + +/usr/include/atk-1.0/atk/atkstreamablecontent.h: + +/usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h: + +/usr/lib/sigc++-2.0/include/sigc++config.h: + +/usr/include/gtkmm-3.0/gtkmm/textbuffer.h: + +/usr/include/pangomm-1.4/pangomm/fontdescription.h: + +/usr/include/glibmm-2.4/glibmm/module.h: + +/usr/include/c++/11.2.0/list: + +/usr/include/sigc++-2.0/sigc++/signal.h: + +/usr/include/gtkmm-3.0/gtkmm/comboboxtext.h: + +/usr/include/sigc++-2.0/sigc++/adaptors/compose.h: + +/usr/include/gtk-3.0/gtk/gtkcalendar.h: + +/usr/include/sigc++-2.0/sigc++/sigc++.h: + +/usr/include/gtk-3.0/gtk/gtktextiter.h: + +/usr/include/glibmm-2.4/glibmm/timeval.h: + +/usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h: + +/usr/include/glibmm-2.4/glibmm/value_custom.h: + +/usr/include/c++/11.2.0/bits/stl_vector.h: + +/usr/include/glib-2.0/gio/gcontenttype.h: + +/usr/include/giomm-2.4/giomm/fileattributeinfo.h: + +/usr/include/c++/11.2.0/bits/locale_facets_nonio.h: + +/usr/include/glib-2.0/gobject/glib-enumtypes.h: + +/usr/include/glib-2.0/gio/gconverterinputstream.h: + +/usr/include/sigc++-2.0/sigc++/functors/slot_base.h: + +/usr/include/sigc++-2.0/sigc++/functors/mem_fun.h: + +/usr/include/glib-2.0/gobject/gbindinggroup.h: + +/usr/include/c++/11.2.0/bits/char_traits.h: + +/usr/include/glib-2.0/glib/gmappedfile.h: + +/usr/include/giomm-2.4/giomm/tlsclientconnection.h: + +/usr/include/gtk-3.0/gtk/gtkaccelmap.h: + +/usr/include/glib-2.0/gobject/gboxed.h: + +/usr/include/glib-2.0/gobject/gclosure.h: + +/usr/include/glib-2.0/gobject/gtype.h: + +/usr/include/glib-2.0/gobject/gobject.h: + +/usr/include/gtkmm-3.0/gtkmm/menubar.h: + +/usr/include/glib-2.0/glib/ggettext.h: + +/usr/include/glib-2.0/gobject/gbinding.h: + +/usr/include/giomm-2.4/giomm/volumemonitor.h: + +/usr/include/glibmm-2.4/glibmm/exception.h: + +/usr/include/c++/11.2.0/pstl/glue_memory_defs.h: + +/usr/include/gtkmm-3.0/gtkmm/numerableicon.h: + +/usr/include/sigc++-2.0/sigc++/type_traits.h: + +/usr/include/glib-2.0/gio/gtlspassword.h: + +/usr/include/glibmm-2.4/glibmm/date.h: + +/usr/include/glibmm-2.4/glibmm/unicode.h: + +/usr/include/glib-2.0/glib/glib-autocleanups.h: + +/usr/include/atk-1.0/atk/atkversion.h: + +/usr/include/bits/types/stack_t.h: + +/usr/include/c++/11.2.0/bits/mask_array.h: + +/usr/include/glib-2.0/glib/deprecated/gthread.h: + +/usr/include/glib-2.0/glib/deprecated/grel.h: + +/usr/include/glib-2.0/gio/ginputstream.h: + +/usr/include/c++/11.2.0/bits/indirect_array.h: + +/usr/include/glib-2.0/glib/deprecated/gcompletion.h: + +/usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h: + +/usr/include/c++/11.2.0/bits/align.h: + +/usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h: + +/usr/include/gtk-3.0/gtk/gtkscrolledwindow.h: + +/usr/include/glib-2.0/glib/deprecated/gcache.h: + +/usr/include/bits/timex.h: + +/usr/include/c++/11.2.0/bits/gslice_array.h: + +/usr/include/glib-2.0/glib/gtimer.h: + +/usr/include/gtkmm-3.0/gtkmm/styleproperty.h: + +/usr/include/dirent.h: + +/usr/include/gtk-3.0/gtk/gtkprintoperation.h: + +/usr/include/c++/11.2.0/unordered_map: + +/usr/include/cairo/cairo-pdf.h: + +/usr/include/glib-2.0/glib/grefstring.h: + +/usr/include/glib-2.0/glib/grcbox.h: + +/usr/include/c++/11.2.0/bits/list.tcc: + +/usr/include/glib-2.0/glib/gqsort.h: + +/usr/include/bits/types/__fpos_t.h: + +/usr/include/glib-2.0/glib/gpattern.h: + +/usr/include/glibmm-2.4/glibmm/objectbase.h: + +/usr/include/bits/statx-generic.h: + +/usr/include/glib-2.0/glib/gvariant.h: + +/usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h: + +/usr/include/glib-2.0/glib/gunicode.h: + +/usr/include/glib-2.0/gio/gactiongroupexporter.h: + +/usr/include/bits/types/wint_t.h: + +/usr/include/glib-2.0/glib/gslist.h: + +/usr/include/glib-2.0/gio/gcharsetconverter.h: + +/usr/include/glib-2.0/glib/giochannel.h: + +/usr/include/glib-2.0/glib/ghook.h: + +/usr/include/glib-2.0/glib/gnode.h: + +/usr/include/glib-2.0/glib/glist.h: + +/usr/include/glib-2.0/glib/genviron.h: + +/usr/include/c++/11.2.0/iterator: + +/usr/include/bits/dirent_ext.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h: + +/usr/include/glib-2.0/glib/gdir.h: + +/usr/include/glib-2.0/gio/gfilemonitor.h: + +/usr/include/linux/stat.h: + +/usr/include/glibmm-2.4/glibmm/optioncontext.h: + +/usr/include/glib-2.0/glib/gdate.h: + +/usr/include/glib-2.0/glib/gregex.h: + +/usr/include/glib-2.0/glib/gconvert.h: + +/usr/include/giomm-2.4/giomm/resource.h: + +/usr/include/glib-2.0/glib/gchecksum.h: + +/usr/include/glibmm-2.4/glibmm/streamiochannel.h: + +/usr/include/glib-2.0/glib/gdatetime.h: + +/usr/include/glib-2.0/glib/gbookmarkfile.h: + +/usr/include/glib-2.0/glib/goption.h: + +/usr/include/fontconfig/fontconfig.h: + +/usr/include/gdkmm-3.0/gdkmm/devicemanager.h: + +/usr/include/gtk-3.0/gtk/gtkgesturedrag.h: + +/usr/include/glib-2.0/glib/gbitlock.h: + +/usr/include/glib-2.0/gio/gproxy.h: + +/usr/include/gtkmm-3.0/gtkmm/icontheme.h: + +/usr/include/bits/types/struct_sigstack.h: + +/usr/include/bits/getopt_core.h: + +/usr/include/giomm-2.4/giomm/filterinputstream.h: + +/usr/include/glib-2.0/glib/gqueue.h: + +/usr/include/bits/environments.h: + +/usr/include/sigc++-2.0/sigc++/functors/slot.h: + +/usr/include/harfbuzz/hb-set.h: + +/usr/include/giomm-2.4/giomm/dbusutils.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/unistd.h: + +/usr/include/giomm-2.4/giomm/mountoperation.h: + +/usr/include/bits/sigstksz.h: + +/usr/include/alloca.h: + +/usr/include/gtk-3.0/gdk/gdkdrawingcontext.h: + +/usr/include/sys/single_threaded.h: + +/usr/include/gtkmm-3.0/gtkmm/treeview.h: + +/usr/include/glibmm-2.4/glibmm/optiongroup.h: + +/usr/include/glib-2.0/glib/gcharset.h: + +/usr/include/gtk-3.0/gtk/gtkcelllayout.h: + +/usr/include/glibmm-2.4/glibmm/error.h: + +/usr/include/bits/floatn-common.h: + +/usr/include/c++/11.2.0/typeinfo: + +/usr/include/glib-2.0/glib/gtrashstack.h: + +/usr/include/glib-2.0/gobject/gvaluearray.h: + +/usr/include/bits/time.h: + +/usr/include/c++/11.2.0/tr1/bessel_function.tcc: + +/usr/include/glibmm-2.4/glibmm/refptr.h: + +/usr/include/bits/types/__mbstate_t.h: + +/usr/include/giomm-2.4/giomm/dataoutputstream.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h: + +/usr/include/glibmm-2.4/glibmm/threads.h: + +/usr/include/c++/11.2.0/bits/std_function.h: + +/usr/include/glib-2.0/gio/gsocketclient.h: + +/usr/include/glib-2.0/glib/gtree.h: + +/usr/include/c++/11.2.0/bits/shared_ptr_base.h: + +/usr/include/glib-2.0/glib/gsequence.h: + +/usr/include/giomm-2.4/giomm/socketcontrolmessage.h: + +/usr/include/gtk-3.0/gtk/gtkgesturerotate.h: + +/usr/include/c++/11.2.0/bits/functional_hash.h: + +/usr/include/gtkmm-3.0/gtkmm/styleprovider.h: + +/usr/include/glibmm-2.4/glibmm/ustring.h: + +/usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h: + +/usr/include/bits/waitflags.h: + +/usr/include/glibmm-2.4/glibmm/containers.h: + +/usr/include/glib-2.0/glib/ghostutils.h: + +/usr/include/bits/locale.h: + +/usr/include/c++/11.2.0/bits/localefwd.h: + +/usr/include/bits/struct_mutex.h: + +/usr/include/c++/11.2.0/bits/ostream.tcc: + +/usr/include/gtkmm-3.0/gtkmm/listviewtext.h: + +/usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtktable.h: + +/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h: + +/usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h: + +/usr/include/c++/11.2.0/ext/string_conversions.h: + +/usr/include/glib-2.0/gobject/genums.h: + +/usr/include/c++/11.2.0/bits/node_handle.h: + +/usr/include/asm/types.h: + +/usr/include/c++/11.2.0/debug/debug.h: + +/usr/include/gtkmm-3.0/gtkmm/checkbutton.h: + +/usr/include/gtk-3.0/gtk/gtkcellareabox.h: + +/usr/include/wctype.h: + +/usr/include/c++/11.2.0/utility: + +/usr/include/gtk-3.0/gtk/deprecated/gtkrc.h: + +/usr/include/gtk-3.0/gtk/gtktoolpalette.h: + +/usr/include/glibmm-2.4/glibmm/containerhandle_shared.h: + +/usr/include/sigc++-2.0/sigc++/adaptors/retype.h: + +/usr/include/gtkmm-3.0/gtkmm/widget.h: + +/usr/include/giomm-2.4/giomm/liststore.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h: + +/usr/include/gtk-3.0/gdk/gdkcairo.h: + +/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h: + +/usr/include/bits/sigthread.h: + +/usr/include/c++/11.2.0/bits/invoke.h: + +/usr/include/gtk-3.0/gtk/gtkappchooser.h: + +/usr/include/glib-2.0/gio/gresource.h: + +/usr/include/bits/types/clock_t.h: + +/usr/include/bits/siginfo-consts.h: + +/usr/include/gtk-3.0/gtk/gtkscrollbar.h: + +/usr/include/glib-2.0/glib/gvarianttype.h: + +/usr/include/c++/11.2.0/ext/concurrence.h: + +/usr/include/c++/11.2.0/cctype: + +/usr/include/gtkmm-3.0/gtkmm/recentfilter.h: + +/usr/include/glibmm-2.4/glibmm/variantdbusstring.h: + +/usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h: + +/usr/include/bits/wchar.h: + +/usr/include/c++/11.2.0/bits/move.h: + +/usr/include/gnu/stubs.h: + +/usr/include/glib-2.0/gio/gdbusintrospection.h: + +/usr/include/pangomm-1.4/pangomm/coverage.h: + +/usr/include/c++/11.2.0/bits/nested_exception.h: + +/usr/include/glibmm-2.4/glibmm/timer.h: + +/usr/include/glib-2.0/glib/gslice.h: + +/usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h: + +/usr/include/c++/11.2.0/new: + +/usr/lib/glibmm-2.4/include/glibmmconfig.h: + +/usr/include/giomm-2.4/giomm/asyncresult.h: + +/usr/include/c++/11.2.0/bits/exception_defines.h: + +/usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h: + +/usr/include/glib-2.0/glib/gtestutils.h: + +/usr/include/c++/11.2.0/bits/exception_ptr.h: + +/usr/include/gtkmm-3.0/gtkmm/fontchooser.h: + +/usr/include/giomm-2.4/giomm/settings.h: + +/usr/include/gtk-3.0/gdk/gdktypes.h: + +/usr/include/pangomm-1.4/pangomm/color.h: + +/usr/include/gtkmm-3.0/gtkmm/texttag.h: + +/usr/include/glib-2.0/gobject/gvalue.h: + +/usr/include/glib-2.0/glib/gshell.h: + +/usr/include/locale.h: + +/usr/include/bits/setjmp.h: + +/usr/include/gtkmm-3.0/gtkmm/statusicon.h: + +/usr/include/bits/errno.h: + +/usr/include/bits/pthread_stack_min-dynamic.h: + +/usr/include/c++/11.2.0/backward/auto_ptr.h: + +/usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h: + +/usr/include/gtk-3.0/gtk/gtkrecentchooser.h: + +/usr/include/glib-2.0/gio/gioenumtypes.h: + +/usr/include/glib-2.0/glib/ghmac.h: + +/usr/include/c++/11.2.0/bits/basic_ios.tcc: + +/usr/include/gtk-3.0/gtk/gtksearchentry.h: + +/usr/include/bits/libc-header-start.h: + +/usr/include/glib-2.0/glib/grefcount.h: + +/usr/include/freetype2/freetype/config/ftstdlib.h: + +/usr/include/gtkmm-3.0/gtkmm/gesturepan.h: + +/usr/include/glib-2.0/glib/gtimezone.h: + +/usr/include/bits/local_lim.h: + +/usr/include/gtkmm-3.0/gtkmm/fixed.h: + +/usr/include/gtkmm-3.0/gtkmm/aboutdialog.h: + +/usr/include/c++/11.2.0/ostream: + +/usr/include/freetype2/freetype/config/ftconfig.h: + +/usr/include/glib-2.0/glib/gmem.h: + +/usr/include/bits/signal_ext.h: + +/usr/include/gtkmm-3.0/gtkmm/button.h: + +/usr/include/bits/types/cookie_io_functions_t.h: + +/usr/include/c++/11.2.0/bits/ios_base.h: + +/usr/include/bits/posix2_lim.h: + +/usr/include/giomm-2.4/giomm/simpleactiongroup.h: + +/usr/include/c++/11.2.0/bits/atomic_base.h: + +/usr/include/glib-2.0/gio/gsrvtarget.h: + +/usr/include/giomm-2.4/giomm/settingsschemakey.h: + +/usr/include/atk-1.0/atk/atk-enum-types.h: + +/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h: + +/usr/include/bits/types/struct_sched_param.h: + +/usr/include/giomm-2.4/giomm/resolver.h: + +/usr/include/giomm-2.4/giomm/tlsinteraction.h: + +/usr/include/gtkmm-3.0/gtkmm/eventbox.h: + +/usr/include/c++/11.2.0/bits/unordered_map.h: + +/usr/include/atk-1.0/atk/atknoopobjectfactory.h: + +/usr/include/atkmm-1.6/atkmm/implementor.h: + +/usr/include/glib-2.0/glib/gmain.h: + +/usr/include/sched.h: + +/usr/include/c++/11.2.0/cwctype: + +/usr/include/glib-2.0/glib/gutils.h: + +/usr/include/glib-2.0/gio/gnetworkaddress.h: + +/usr/include/giomm-2.4/giomm/menumodel.h: + +/usr/include/bits/types/__locale_t.h: + +/usr/include/pango-1.0/pango/pango-context.h: + +/usr/include/atk-1.0/atk/atkvalue.h: + +/usr/include/pangomm-1.4/pangomm/layoutiter.h: + +/usr/include/atk-1.0/atk/atkrelationset.h: + +/usr/include/sigc++-2.0/sigc++/functors/functor_trait.h: + +/usr/include/c++/11.2.0/bits/concept_check.h: + +/usr/include/glib-2.0/gio/gsubprocesslauncher.h: + +/usr/include/gtk-3.0/gtk/gtktreeselection.h: + +/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc: + +/usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h: + +/usr/include/glib-2.0/gio/gapplication.h: + +/usr/include/c++/11.2.0/codecvt: + +/usr/include/sys/ucontext.h: + +/usr/include/glib-2.0/gio/gdrive.h: + +/usr/include/pango-1.0/pango/pango-layout.h: + +/usr/include/c++/11.2.0/bits/charconv.h: + +/usr/include/giomm-2.4/giomm/pollableoutputstream.h: + +/usr/include/giomm-2.4/giomm/menuattributeiter.h: + +/usr/include/asm-generic/types.h: + +/usr/include/c++/11.2.0/bits/vector.tcc: + +/usr/include/gtk-3.0/gdk/x11/gdkx11screen.h: + +/usr/include/glibmm-2.4/glibmm/signalproxy.h: + +/usr/include/c++/11.2.0/sstream: + +/usr/include/glib-2.0/gobject/gobject-autocleanups.h: + +/usr/include/giomm-2.4/giomm/error.h: + +/usr/include/glib-2.0/glib/gbase64.h: + +/usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h: + +/usr/include/c++/11.2.0/pstl/pstl_config.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h: + +/usr/include/c++/11.2.0/clocale: + +/usr/include/glib-2.0/gio/gmenuexporter.h: + +/usr/include/gtkmm-3.0/gtkmm/treepath.h: + +/usr/include/glib-2.0/gio/gsubprocess.h: + +/usr/include/sigc++-2.0/sigc++/signal_base.h: + +/usr/include/giomm-2.4/giomm/settingsschema.h: + +/usr/include/gtk-3.0/gdk/gdkdevicepad.h: + +/usr/include/pango-1.0/pango/pango-glyph-item.h: + +/usr/include/bits/pthreadtypes-arch.h: + +/usr/include/pangomm-1.4/pangomm/fontmetrics.h: + +/usr/include/c++/11.2.0/limits: + +/usr/include/freetype2/freetype/fterrors.h: + +/usr/include/gtk-3.0/gtk/gtkmenu.h: + +/usr/include/c++/11.2.0/type_traits: + +/usr/include/freetype2/ft2build.h: + +/usr/include/bits/endian.h: + +/usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h: + +/usr/include/giomm-2.4/giomm.h: + +/usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h: + +/usr/include/glib-2.0/gio/gapplicationcommandline.h: + +/usr/include/c++/11.2.0/bits/valarray_array.h: + +/usr/include/gtk-3.0/gtk/gtkx.h: + +/usr/lib/gtkmm-3.0/include/gtkmmconfig.h: + +/usr/include/pangomm-1.4/pangomm/item.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h: + +/usr/include/sys/cdefs.h: + +/usr/include/bits/types/struct_itimerspec.h: + +/usr/include/glibmm-2.4/glibmm/arrayhandle.h: + +/usr/include/c++/11.2.0/ratio: + +/usr/include/c++/11.2.0/stdexcept: + +/usr/include/gtk-3.0/gtk/gtkwindowgroup.h: + +/usr/include/giomm-2.4/giomm/socketservice.h: + +/usr/include/glib-2.0/glib/gfileutils.h: + +/usr/include/glib-2.0/gobject/gparam.h: + +/usr/include/gtk-3.0/gdk/gdkmonitor.h: + +/usr/include/glibmm-2.4/glibmm/spawn.h: + +/usr/include/c++/11.2.0/bits/stl_algobase.h: + +/usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h: + +/usr/include/glib-2.0/glib/gkeyfile.h: + +/usr/include/bits/cpu-set.h: + +/usr/include/bits/typesizes.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h: + +/usr/include/c++/11.2.0/ext/new_allocator.h: + +/usr/include/glibmm-2.4/glibmm/variantiter.h: + +/usr/include/c++/11.2.0/cstdio: + +/usr/include/bits/types/sig_atomic_t.h: + +/usr/include/linux/close_range.h: + +/usr/include/glib-2.0/gio/ginetaddress.h: + +/usr/include/bits/uintn-identity.h: + +/usr/include/gtk-3.0/gdk/gdkvisual.h: + +/usr/include/bits/time64.h: + +/usr/include/sigc++-2.0/sigc++/visit_each.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h: + +/usr/include/bits/endianness.h: + +/usr/include/c++/11.2.0/bits/postypes.h: + +/usr/include/gtk-3.0/gtk/gtkdrawingarea.h: + +/usr/include/glib-2.0/gio/gcancellable.h: + +/usr/include/c++/11.2.0/vector: + +/usr/include/endian.h: + +/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h: + +/usr/include/bits/types/__FILE.h: + +/usr/include/gtkmm-3.0/gtkmm/stockid.h: + +/usr/include/glibmm-2.4/glibmm/threadpool.h: + +/usr/include/bits/types/siginfo_t.h: + +/usr/include/glib-2.0/glib/guuid.h: + +/usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h: + +/usr/include/atk-1.0/atk/atk-autocleanups.h: + +/usr/include/stdlib.h: + +/usr/include/glib-2.0/gio/gnativevolumemonitor.h: + +/usr/include/giomm-2.4/giomm/networkservice.h: + +/usr/include/c++/11.2.0/bits/fstream.tcc: + +/usr/include/c++/11.2.0/ext/type_traits.h: + +/usr/include/glib-2.0/gio/gnotification.h: + +/usr/include/bits/long-double.h: + +/usr/include/c++/11.2.0/bits/predefined_ops.h: + +/usr/include/glib-2.0/gio/gdbusinterface.h: + +/usr/include/gtk-3.0/gdk/gdkscreen.h: + +/usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h: + +/usr/include/atk-1.0/atk/atkhyperlinkimpl.h: + +/usr/include/gtk-3.0/gtk/gtktreemodelfilter.h: + +/usr/include/glibmm-2.4/glibmm/keyfile.h: + +/usr/include/c++/11.2.0/backward/binders.h: + +/usr/include/c++/11.2.0/bits/basic_string.h: + +/usr/include/glib-2.0/gio/gpollableinputstream.h: + +/usr/include/glib-2.0/gio/gdbusmessage.h: + +/usr/include/features-time64.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h: + +/usr/include/c++/11.2.0/bits/slice_array.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h: + +/usr/include/c++/11.2.0/bits/streambuf.tcc: + +/usr/include/glib-2.0/gobject/gsignal.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h: + +/usr/include/gtk-3.0/gdk/gdkseat.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h: + +/usr/include/c++/11.2.0/ios: + +/usr/include/sigc++-2.0/sigc++/adaptors/bind.h: + +/usr/include/glibmm-2.4/glibmm/quark.h: + +/usr/include/sys/types.h: + +/usr/include/gtk-3.0/gtk/gtkscalebutton.h: + +/usr/include/glib-2.0/gio/gbytesicon.h: + +/usr/include/c++/11.2.0/ext/numeric_traits.h: + +/usr/include/glibmm-2.4/glibmm/bytes.h: + +/usr/include/gtk-3.0/gtk/gtkentrybuffer.h: + +/usr/include/pango-1.0/pango/pango-attributes.h: + +/usr/include/signal.h: + +/usr/include/bits/atomic_wide_counter.h: + +/usr/include/c++/11.2.0/bits/shared_ptr_atomic.h: + +/usr/include/gdkmm-3.0/gdkmm/pixbuf.h: + +/usr/include/c++/11.2.0/tr1/poly_hermite.tcc: + +/usr/include/glib-2.0/glib/gerror.h: + +/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h: + +/usr/include/bits/types/struct___jmp_buf_tag.h: + +/usr/include/gtk-3.0/gtk/gtkimcontextsimple.h: + +/usr/include/giomm-2.4/giomm/filteroutputstream.h: + +/usr/include/c++/11.2.0/bits/exception.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h: + +/usr/include/glib-2.0/glib/garray.h: + +/usr/include/glib-2.0/glib/gatomic.h: + +/usr/include/c++/11.2.0/tr1/hypergeometric.tcc: + +/usr/include/bits/stdlib-bsearch.h: + +/usr/include/glibmm-2.4/glibmm/dispatcher.h: + +/usr/include/c++/11.2.0/bits/memoryfwd.h: + +/usr/include/c++/11.2.0/bits/sstream.tcc: + +/usr/include/features.h: + +/usr/include/atk-1.0/atk/atkutil.h: + +/usr/include/giomm-2.4/giomm/proxyresolver.h: + +/usr/include/bits/types/struct_timespec.h: + +/usr/include/glibmm-2.4/glibmm/main.h: + +/usr/include/pangomm-1.4/pangomm/fontface.h: + +/usr/include/time.h: + +/usr/include/c++/11.2.0/bits/ptr_traits.h: + +/usr/include/bits/types/time_t.h: + +/usr/include/c++/11.2.0/bits/std_mutex.h: + +/usr/include/gtkmm-3.0/gtkmm/base.h: + +/usr/include/c++/11.2.0/bits/std_abs.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/atk-1.0/atk/atkrange.h: + +/usr/include/gtk-3.0/gtk/gtktreesortable.h: + +/usr/include/c++/11.2.0/bits/stl_tempbuf.h: + +/usr/include/c++/11.2.0/bits/allocated_ptr.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h: + +/usr/include/gdkmm-3.0/gdkmm/timecoord.h: + +/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h: + +/usr/include/glib-2.0/glib/deprecated/gallocator.h: + +/usr/include/glib-2.0/gio/ginetaddressmask.h: + +/usr/include/gtkmm-3.0/gtkmm/treemodel.h: + +/usr/include/gtk-3.0/gdk/gdkselection.h: + +/usr/include/glib-2.0/glib/gstring.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/c++/11.2.0/bits/allocator.h: + +/usr/include/c++/11.2.0/iosfwd: + +/usr/include/c++/11.2.0/bits/codecvt.h: + +/usr/include/c++/11.2.0/bits/functexcept.h: + +/usr/include/c++/11.2.0/bits/stl_multimap.h: + +/usr/include/atk-1.0/atk/atkstate.h: + +/usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h: + +/usr/include/glib-2.0/glib/gthreadpool.h: + +/usr/include/sigc++-2.0/sigc++/slot.h: + +/usr/lib/glib-2.0/include/glibconfig.h: + +/usr/include/glibmm-2.4/glibmm/value.h: + +/usr/include/c++/11.2.0/exception: + +/usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h: + +/usr/include/giomm-2.4/giomm/permission.h: + +/usr/include/c++/11.2.0/pstl/execution_defs.h: + +/usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc: + +/usr/include/c++/11.2.0/bits/ostream_insert.h: + +/usr/include/bits/wctype-wchar.h: + +/usr/include/bits/stdint-intn.h: + +/usr/include/giomm-2.4/giomm/fileinputstream.h: + +/usr/include/bits/sched.h: + +/usr/include/c++/11.2.0/bits/cxxabi_forced.h: + +/usr/include/gdkmm-3.0/gdkmm.h: + +/usr/include/glib-2.0/gio/gbufferedoutputstream.h: + +/usr/include/c++/11.2.0/bits/stl_function.h: + +/usr/include/gtk-3.0/gdk/gdkframetimings.h: + +/usr/include/gtkmm-3.0/gtkmm/placessidebar.h: + +/usr/include/glib-2.0/glib/grand.h: + +/usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h: + +/usr/include/sigc++-2.0/sigc++/connection.h: + +/usr/include/c++/11.2.0/string_view: + +/usr/include/glibmm-2.4/glibmm/fileutils.h: + +/usr/include/c++/11.2.0/bits/cpp_type_traits.h: + +/usr/include/c++/11.2.0/bits/range_access.h: + +/usr/include/bits/unistd_ext.h: + +/usr/include/pango-1.0/pango/pango-utils.h: + +/usr/include/bits/types/struct_tm.h: + +/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h: + +/usr/include/gtk-3.0/gtk/gtkappchooserwidget.h: + +/usr/include/giomm-2.4/giomm/dbusmenumodel.h: + +/usr/include/c++/11.2.0/bits/shared_ptr.h: + +/usr/include/stdio.h: + +/usr/include/giomm-2.4/giomm/simplepermission.h: + +/usr/include/c++/11.2.0/initializer_list: + +/usr/include/glib-2.0/gio/gaction.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11utils.h: + +/usr/include/c++/11.2.0/bits/basic_string.tcc: + +/usr/include/c++/11.2.0/iostream: + +/usr/include/c++/11.2.0/cmath: + +/usr/include/c++/11.2.0/ext/alloc_traits.h: + +/usr/include/bits/ss_flags.h: + +/usr/include/gtkmm-3.0/gtkmm/menushell.h: + +/usr/include/c++/11.2.0/bits/stl_construct.h: + +/usr/include/gtk-3.0/gtk/gtkdragdest.h: + +/usr/include/glib-2.0/gio/gio-autocleanups.h: + +/usr/include/gtkmm-3.0/gtkmm/action.h: + +/usr/include/bits/select.h: + +/usr/include/c++/11.2.0/system_error: + +/usr/include/c++/11.2.0/functional: + +/usr/include/glib-2.0/gio/gtcpconnection.h: + +/usr/include/giomm-2.4/giomm/actiongroup.h: + +/usr/include/glib-2.0/gio/gactionmap.h: + +/usr/include/gtk-3.0/gtk/gtkaspectframe.h: + +/usr/include/pango-1.0/pango/pango-types.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11display.h: + +/usr/include/bits/types/clockid_t.h: + +/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h: + +/usr/include/bits/types/timer_t.h: + +/usr/include/glib-2.0/gio/gliststore.h: + +/usr/include/gtk-3.0/gtk/gtkfilechooser.h: + +/usr/lib/cairomm-1.0/include/cairommconfig.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/sys/select.h: + +/usr/include/bits/types/__sigval_t.h: + +/usr/include/bits/stdint-uintn.h: + +/usr/include/asm/errno.h: + +/usr/include/glib-2.0/gio/gfile.h: + +/usr/include/glibmm-2.4/glibmm/enums.h: + +/usr/include/bits/timesize.h: + +/usr/include/glib-2.0/gio/gconverter.h: + +/usr/include/giomm-2.4/giomm/dbusconnection.h: + +/usr/include/bits/types/struct_FILE.h: + +/usr/include/gtk-3.0/gtk/gtklabel.h: + +/usr/include/gtkmm-3.0/gtkmm/dialog.h: + +/usr/include/bits/stdio.h: + +/usr/include/c++/11.2.0/cerrno: + +/usr/include/giomm-2.4/giomm/dbusproxy.h: + +/usr/include/gtkmm-3.0/gtkmm/statusbar.h: + +/usr/include/gtk-3.0/gtk/gtkassistant.h: + +/usr/include/bits/getopt_posix.h: + +/usr/include/gtkmm-3.0/gtkmm/assistant.h: + +/usr/include/glib-2.0/glib/gquark.h: + +/usr/include/errno.h: + +/usr/include/linux/limits.h: + +/usr/include/giomm-2.4/giomm/menu.h: + +/usr/include/linux/errno.h: + +/usr/include/gtkmm-3.0/gtkmm/textmark.h: + +/usr/include/giomm-2.4/giomm/dbusinterfacevtable.h: + +/usr/include/c++/11.2.0/cwchar: + +/usr/include/giomm-2.4/giomm/application.h: + +/usr/include/gtk-3.0/gtk/gtkcontainer.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/gtkmm-3.0/gtkmm/separator.h: + +/usr/include/glibmm-2.4/glibmm/regex.h: + +/usr/include/atk-1.0/atk/atkselection.h: + +/usr/include/glib-2.0/glib/gmarkup.h: + +/usr/include/bits/types/error_t.h: + +/usr/include/c++/11.2.0/bits/hash_bytes.h: + +/usr/include/linux/stddef.h: + +/usr/include/bits/fp-logb.h: + +/usr/include/c++/11.2.0/bits/locale_classes.tcc: + +/usr/include/bits/fp-fast.h: + +/usr/include/gtkmm-3.0/gtkmm/toggleaction.h: + +/usr/include/pangomm-1.4/pangomm/font.h: + +/usr/include/glib-2.0/gio/gactiongroup.h: + +/usr/include/gtkmm-3.0/gtkmm/menuitem.h: + +/usr/include/c++/11.2.0/streambuf: + +/usr/include/c++/11.2.0/bits/hashtable_policy.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h: + +/usr/include/giomm-2.4/giomm/socketconnectable.h: + +/usr/include/gtk-3.0/gtk/gtkprogressbar.h: + +/usr/include/c++/11.2.0/bits/basic_ios.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h: + +/usr/include/glibmm-2.4/glibmm/variant.h: + +/usr/include/c++/11.2.0/bits/streambuf_iterator.h: + +/usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h: + +/usr/include/gtk-3.0/gtk/gtkactionable.h: + +/usr/include/c++/11.2.0/bits/locale_facets.tcc: + +/usr/include/giomm-2.4/giomm/volume.h: + +/usr/include/c++/11.2.0/istream: + +/usr/include/gtk-3.0/gdk/gdkmain.h: + +/usr/include/c++/11.2.0/bits/istream.tcc: + +/usr/include/bits/siginfo-arch.h: + +/usr/include/c++/11.2.0/bits/stl_uninitialized.h: + +/usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h: + +/usr/include/gtk-3.0/gtk/gtklevelbar.h: + +/usr/include/glib-2.0/gobject/glib-types.h: + +/usr/include/gtkmm-3.0/gtkmm.h: + +/usr/include/gtk-3.0/gtk/gtkgestureswipe.h: + +/usr/include/c++/11.2.0/bit: + +/usr/include/bits/sigstack.h: + +/usr/include/bits/signum-arch.h: + +/usr/lib/giomm-2.4/include/giommconfig.h: + +/usr/include/glib-2.0/gio/gcredentials.h: + +/usr/include/glib-2.0/gio/gtlscertificate.h: + +/usr/include/bits/types/__sigset_t.h: + +/usr/include/bits/thread-shared-types.h: + +/usr/include/giomm-2.4/giomm/simpleiostream.h: + +/usr/include/glib-2.0/glib/gscanner.h: + +/usr/include/pthread.h: + +/usr/include/glib-2.0/glib/gstringchunk.h: + +/usr/include/giomm-2.4/giomm/fileiostream.h: + +/usr/include/bits/types/sigset_t.h: + +/usr/include/glibmm-2.4/glibmm/base64.h: + +/usr/include/c++/11.2.0/tuple: + +/usr/include/giomm-2.4/giomm/inputstream.h: + +/usr/include/gtkmm-3.0/gtkmm/alignment.h: + +/usr/include/pango-1.0/pango/pango-glyph.h: + +/usr/include/c++/11.2.0/tr1/legendre_function.tcc: + +/usr/include/glib-2.0/gobject/gtypeplugin.h: + +/usr/include/glib-2.0/gobject/gmarshal.h: + +/usr/include/c++/11.2.0/ext/aligned_buffer.h: + +/usr/include/giomm-2.4/giomm/networkaddress.h: + +/usr/include/glib-2.0/glib.h: + +/usr/include/freetype2/freetype/fttypes.h: + +/usr/include/bits/types/__fpos64_t.h: + +/usr/include/glib-2.0/gio/gsimpleiostream.h: + +/usr/include/glibmm-2.4/glibmm/binding.h: + +/usr/include/gtkmm-3.0/gtkmm/stackswitcher.h: + +/usr/include/freetype2/freetype/config/ftheader.h: + +/usr/include/c++/11.2.0/bits/deque.tcc: + +/usr/include/giomm-2.4/giomm/actionmap.h: + +/usr/include/glib-2.0/glib/gspawn.h: + +/usr/include/cairomm-1.0/cairomm/pattern.h: + +/usr/include/pangomm-1.4/pangomm/layoutrun.h: + +/usr/include/glib-2.0/glib/galloca.h: + +/usr/include/gtk-3.0/gtk/gtkcellrendererspin.h: + +/usr/include/bits/floatn.h: + +/usr/include/glib-2.0/gobject/gvaluetypes.h: + +/usr/include/glib-2.0/glib/gmacros.h: + +/usr/include/giomm-2.4/giomm/loadableicon.h: + +/usr/include/glib-2.0/gio/gdatainputstream.h: + +/usr/include/wchar.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h: + +/usr/include/glib-2.0/glib/gbytes.h: + +/usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h: + +/usr/include/c++/11.2.0/bits/fs_ops.h: + +/usr/include/gtkmm-3.0/gtkmm/buildable.h: + +/usr/include/gtkmm-3.0/gtkmm/accelkey.h: + +/usr/include/c++/11.2.0/bits/stl_relops.h: + +/usr/include/bits/xopen_lim.h: + +/usr/include/bits/uio_lim.h: + +/usr/include/c++/11.2.0/tr1/exp_integral.tcc: + +/usr/include/glib-2.0/glib/gversion.h: + +/usr/include/glib-2.0/glib/gversionmacros.h: + +/usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h: + +/usr/include/pangomm-1.4/pangomm/layoutline.h: + +/usr/include/string.h: + +/usr/include/glib-2.0/glib/gthread.h: + +/usr/include/glib-2.0/glib/gbacktrace.h: + +/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h: + +/usr/include/glib-2.0/glib/gdataset.h: + +/usr/include/bits/signum-generic.h: + +/usr/include/giomm-2.4/giomm/simpleaction.h: + +/usr/include/c++/11.2.0/bits/refwrap.h: + +/usr/include/bits/types/sigval_t.h: + +/usr/include/giomm-2.4/giomm/memoryinputstream.h: + +/usr/include/glib-2.0/gio/gioenums.h: + +/usr/include/gtk-3.0/gtk/gtk.h: + +/usr/include/gdkmm-3.0/gdkmm/frameclock.h: + +/usr/include/stdc-predef.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h: + +/usr/include/atk-1.0/atk/atktext.h: + +/usr/include/glib-2.0/gio/gdbusactiongroup.h: + +/usr/include/glib-2.0/gio/gdbusaddress.h: + +/usr/include/gtkmm-3.0/gtkmm/colorselection.h: + +/usr/include/glib-2.0/gio/gdbusauthobserver.h: + +/usr/include/harfbuzz/hb-style.h: + +/usr/include/gtk-3.0/gtk/gtkcolorutils.h: + +/usr/include/glib-2.0/gio/gdbusmenumodel.h: + +/usr/include/glib-2.0/gio/gdbusnameowning.h: + +/usr/include/glib-2.0/glib/deprecated/gmain.h: + +/usr/include/c++/11.2.0/cstdint: + +/usr/include/atk-1.0/atk/atkplug.h: + +/usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h: + +/usr/include/bits/sigevent-consts.h: + +/usr/include/glib-2.0/gio/gdbusmethodinvocation.h: + +/usr/include/glib-2.0/gio/gdbusnamewatching.h: + +/usr/include/glib-2.0/gio/gasyncinitable.h: + +/usr/include/glib-2.0/gobject/gsourceclosure.h: + +/usr/include/gdkmm-3.0/gdkmm/visual.h: + +/usr/include/gtkmm-3.0/gtkmm/iconfactory.h: + +/usr/include/gtk-3.0/gtk/gtkentrycompletion.h: + +/usr/include/glib-2.0/gio/gdbusobjectmanager.h: + +/usr/include/gtkmm-3.0/gtkmm/uimanager.h: + +/usr/include/glib-2.0/gio/gfileiostream.h: + +/usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h: + +/usr/include/gtk-3.0/gtk/gtkborder.h: + +/usr/include/glib-2.0/gio/gdbusobjectproxy.h: + +/usr/include/glib-2.0/gio/gdebugcontroller.h: + +/usr/include/gtk-3.0/gdk/gdkconfig.h: + +/usr/include/gtk-3.0/gdk/gdkdnd.h: + +/usr/include/glib-2.0/gio/gdbusobjectskeleton.h: + +/usr/include/glib-2.0/gio/gdbusproxy.h: + +/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h: + +/usr/include/glib-2.0/glib/gstrvbuilder.h: + +/usr/include/c++/11.2.0/tr1/special_function_util.h: + +/usr/include/glib-2.0/gio/gdbusutils.h: + +/usr/include/glib-2.0/gio/gdebugcontrollerdbus.h: + +/usr/include/glib-2.0/gio/gdtlsclientconnection.h: + +/usr/include/glibmm-2.4/glibmm/markup.h: + +/usr/include/glib-2.0/gio/gdtlsconnection.h: + +/usr/include/c++/11.2.0/stdlib.h: + +/usr/include/glib-2.0/gio/gemblemedicon.h: + +/usr/include/glib-2.0/gio/gicon.h: + +/usr/include/linux/types.h: + +/usr/include/glib-2.0/gio/gemblem.h: + +/usr/include/glib-2.0/gio/gfileattribute.h: + +/usr/include/glibmm-2.4/glibmm/object.h: + +/usr/include/gtk-3.0/gtk/gtkenums.h: + +/usr/include/gtkmm-3.0/gtkmm/stylecontext.h: + +/usr/include/glib-2.0/gio/gfileinputstream.h: + +/usr/include/glib-2.0/gio/giostream.h: + +/usr/include/c++/11.2.0/stack: + +/usr/include/glib-2.0/gio/gfileoutputstream.h: + +/usr/include/glib-2.0/gio/ginetsocketaddress.h: + +/usr/include/giomm-2.4/giomm/filenamecompleter.h: + +/usr/include/glib-2.0/gio/gsocketaddress.h: + +/usr/include/glib-2.0/gmodule.h: + +/usr/include/glib-2.0/gio/gproxyresolver.h: + +/usr/include/glib-2.0/gio/glistmodel.h: + +/usr/include/pangomm-1.4/pangomm/language.h: + +/usr/include/gtk-3.0/gtk/gtktreemodelsort.h: + +/usr/include/freetype2/freetype/fterrdef.h: + +/usr/include/gtk-3.0/gdk/gdkenumtypes.h: + +/usr/include/atk-1.0/atk/atkaction.h: + +/usr/include/c++/11.2.0/bits/unique_ptr.h: + +/usr/include/glib-2.0/gio/gmemoryinputstream.h: + +/usr/include/glib-2.0/gio/gpollableoutputstream.h: + +/usr/include/glib-2.0/gio/gmemorymonitor.h: + +/usr/include/gtkmm-3.0/gtkmm/scale.h: + +/usr/include/glib-2.0/gio/gmemoryoutputstream.h: + +/usr/include/c++/11.2.0/bits/algorithmfwd.h: + +/usr/include/bits/stat.h: + +/usr/include/glib-2.0/gio/gmenu.h: + +/usr/include/glib-2.0/gio/gmenumodel.h: + +/usr/include/glib-2.0/gio/gmount.h: + +/usr/include/gtk-3.0/gtk/gtktoolshell.h: + +/usr/include/glib-2.0/gio/gmountoperation.h: + +/usr/include/gtkmm-3.0/gtkmm/filechoosernative.h: + +/usr/include/glib-2.0/glib/gmessages.h: + +/usr/include/pango-1.0/pango/pango-fontmap.h: + +/usr/include/glib-2.0/gio/gnativesocketaddress.h: + +/usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h: + +/usr/include/bits/dirent.h: + +/usr/include/glib-2.0/gio/gvolumemonitor.h: + +/usr/include/glib-2.0/gio/gnetworkmonitor.h: + +/usr/include/cairomm-1.0/cairomm/refptr.h: + +/usr/include/glib-2.0/gio/gnetworkservice.h: + +/usr/include/glib-2.0/gio/gpermission.h: + +/usr/include/glib-2.0/gio/gpowerprofilemonitor.h: + +/usr/include/sigc++-2.0/sigc++/trackable.h: + +/usr/include/glib-2.0/gio/gpropertyaction.h: + +/usr/include/glib-2.0/gio/gproxyaddress.h: + +/usr/include/giomm-2.4/giomm/contenttype.h: + +/usr/include/glib-2.0/gio/gproxyaddressenumerator.h: + +/usr/include/glib-2.0/gio/gresolver.h: + +/usr/include/pangomm-1.4/pangomm/tabarray.h: + +/usr/include/glib-2.0/gio/gseekable.h: + +/usr/include/giomm-2.4/giomm/iostream.h: + +/usr/include/c++/11.2.0/cstddef: + +/usr/include/glib-2.0/gio/gsettings.h: + +/usr/include/gtk-3.0/gtk/gtkpopover.h: + +/usr/include/atk-1.0/atk/atktablecell.h: + +/usr/include/glib-2.0/gio/gsettingsschema.h: + +/usr/include/glib-2.0/gio/gsimpleaction.h: + +/usr/include/glib-2.0/gio/gsimpleactiongroup.h: + +/usr/include/giomm-2.4/giomm/file.h: + +/usr/include/glib-2.0/gio/gsimplepermission.h: + +/usr/include/giomm-2.4/giomm/dbussubtreevtable.h: + +/usr/include/glibmm-2.4/glibmm/property.h: + +/usr/include/glib-2.0/gio/gsocket.h: + +/usr/include/glib-2.0/gio/gsocketconnection.h: + +/usr/include/glib-2.0/gio/gsocketcontrolmessage.h: + +/usr/include/glib-2.0/gio/gsocketlistener.h: + +/usr/include/giomm-2.4/giomm/fileicon.h: + +/usr/include/glib-2.0/gio/gsocketservice.h: + +/usr/include/gtk-3.0/gtk/gtkeventbox.h: + +/usr/include/glib-2.0/gio/gtask.h: + +/usr/include/giomm-2.4/giomm/dbusinterface.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h: + +/usr/include/gdkmm-3.0/gdkmm/seat.h: + +/usr/include/atk-1.0/atk/atkregistry.h: + +/usr/include/glib-2.0/glib-object.h: + +/usr/include/glib-2.0/gio/gtcpwrapperconnection.h: + +/usr/include/glib-2.0/gobject/gsignalgroup.h: + +/usr/include/glib-2.0/gio/gtestdbus.h: + +/usr/include/glibmm-2.4/glibmm/miscutils.h: + +/usr/include/limits.h: + +/usr/include/glib-2.0/gio/gthemedicon.h: + +/usr/include/glib-2.0/gio/gthreadedsocketservice.h: + +/usr/include/gdkmm-3.0/gdkmm/rectangle.h: + +/usr/include/glib-2.0/gio/gtlsclientconnection.h: + +/usr/include/glib-2.0/gio/gtlsconnection.h: + +/usr/include/glib-2.0/gio/gtlsinteraction.h: + +/usr/include/glib-2.0/gio/gtlsserverconnection.h: + +/usr/include/glib-2.0/gio/gvfs.h: + +/usr/include/giomm-2.4/giomm/dbuserrorutils.h: + +/usr/include/pangomm-1.4/pangomm/attriter.h: + +/usr/include/glib-2.0/gio/gzlibcompressor.h: + +/usr/include/glib-2.0/gio/gzlibdecompressor.h: + +/usr/include/X11/X.h: + +/usr/include/gtkmm-3.0/gtkmm/invisible.h: + +/usr/include/glib-2.0/glib/gasyncqueue.h: + +/usr/include/bits/confname.h: + +/usr/include/giomm-2.4/giomm/appinfo.h: + +/usr/include/giomm-2.4/giomm/proxyaddress.h: + +/usr/include/giomm-2.4/giomm/applaunchcontext.h: + +/usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h: + +/usr/include/giomm-2.4/giomm/tcpwrapperconnection.h: + +/usr/include/giomm-2.4/giomm/icon.h: + +/usr/include/giomm-2.4/giomm/cancellable.h: + +/usr/include/glibmm-2.4/glibmm/value_basictypes.h: + +/usr/include/giomm-2.4/giomm/applicationcommandline.h: + +/usr/include/giomm-2.4/giomm/fileattributeinfolist.h: + +/usr/include/giomm-2.4/giomm/fileenumerator.h: + +/usr/include/pwd.h: + +/usr/include/bits/mathcalls.h: + +/usr/include/giomm-2.4/giomm/fileinfo.h: + +/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: + +/usr/include/giomm-2.4/giomm/outputstream.h: + +/usr/include/giomm-2.4/giomm/filemonitor.h: + +/usr/include/giomm-2.4/giomm/fileoutputstream.h: + +/usr/include/c++/11.2.0/bits/valarray_array.tcc: + +/usr/include/gtk-3.0/gtk/gtkviewport.h: + +/usr/include/giomm-2.4/giomm/mount.h: + +/usr/include/gtkmm-3.0/gtkmm/togglebutton.h: + +/usr/include/bits/types/FILE.h: + +/usr/include/giomm-2.4/giomm/initable.h: + +/usr/include/cairomm-1.0/cairomm/device.h: + +/usr/include/giomm-2.4/giomm/asyncinitable.h: + +/usr/include/gtk-3.0/gtk/gtkframe.h: + +/usr/include/gdkmm-3.0/gdkmm/rgba.h: + +/usr/include/giomm-2.4/giomm/credentials.h: + +/usr/include/giomm-2.4/giomm/socketconnection.h: + +/usr/include/atk-1.0/atk/atkgobjectaccessible.h: + +/usr/include/giomm-2.4/giomm/dbusmethodinvocation.h: + +/usr/include/stdint.h: + +/usr/include/giomm-2.4/giomm/dbusmessage.h: + +/usr/include/giomm-2.4/giomm/unixfdlist.h: + +/usr/include/giomm-2.4/giomm/dbusobjectproxy.h: + +/usr/include/bits/struct_rwlock.h: + +/usr/include/giomm-2.4/giomm/dbusintrospection.h: + +/usr/include/glib-2.0/gio/gdatagrambased.h: + +/usr/include/giomm-2.4/giomm/notification.h: + +/usr/include/c++/11.2.0/ctime: + +/usr/include/giomm-2.4/giomm/bufferedinputstream.h: + +/usr/include/glibmm-2.4/glibmm/iochannel.h: + +/usr/include/giomm-2.4/giomm/bufferedoutputstream.h: + +/usr/include/giomm-2.4/giomm/charsetconverter.h: + +/usr/include/gdkmm-3.0/gdkmm/drawingcontext.h: + +/usr/include/giomm-2.4/giomm/converterinputstream.h: + +/usr/include/cairo/cairo.h: + +/usr/include/gtkmm-3.0/gtkmm/layout.h: + +/usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/gtk-3.0/gdk/gdkkeys.h: + +/usr/include/giomm-2.4/giomm/pollableinputstream.h: + +/usr/include/giomm-2.4/giomm/datainputstream.h: + +/usr/include/gtk-3.0/gdk/gdkwindow.h: + +/usr/include/atkmm-1.6/atkmm/relation.h: + +/usr/include/giomm-2.4/giomm/dbusactiongroup.h: + +/usr/include/gtkmm-3.0/gtkmm/cellareacontext.h: + +/usr/include/gtkmm-3.0/gtkmm/selectiondata.h: + +/usr/include/giomm-2.4/giomm/remoteactiongroup.h: + +/usr/include/giomm-2.4/giomm/dbusaddress.h: + +/usr/include/giomm-2.4/giomm/dbuserror.h: + +/usr/include/giomm-2.4/giomm/dbusobjectskeleton.h: + +/usr/include/bits/wordsize.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11window.h: + +/usr/include/giomm-2.4/giomm/dbusownname.h: + +/usr/include/giomm-2.4/giomm/dbusserver.h: + +/usr/include/giomm-2.4/giomm/drive.h: + +/usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h: + +/usr/include/c++/11.2.0/bits/stl_stack.h: + +/usr/include/giomm-2.4/giomm/dbuswatchname.h: + +/usr/include/gtk-3.0/gtk/gtklistbox.h: + +/usr/include/gtk-3.0/gtk/gtktogglebutton.h: + +/usr/include/gtk-3.0/gtk/gtkaccelgroup.h: + +/usr/include/giomm-2.4/giomm/desktopappinfo.h: + +/usr/include/c++/11.2.0/bits/stl_bvector.h: + +/usr/include/giomm-2.4/giomm/emblem.h: + +/usr/include/glibmm-2.4/glibmm/vectorutils.h: + +/usr/include/giomm-2.4/giomm/srvtarget.h: + +/usr/include/giomm-2.4/giomm/unixconnection.h: + +/usr/include/giomm-2.4/giomm/inetaddress.h: + +/usr/include/asm-generic/bitsperlong.h: + +/usr/include/giomm-2.4/giomm/inetsocketaddress.h: + +/usr/include/giomm-2.4/giomm/socketaddress.h: + +/usr/include/atk-1.0/atk/atkimage.h: + +/usr/include/c++/11.2.0/bits/stl_iterator.h: + +/usr/include/giomm-2.4/giomm/socketaddressenumerator.h: + +/usr/include/gtkmm-3.0/gtkmm/viewport.h: + +/usr/include/glibmm-2.4/glibmm/interface.h: + +/usr/include/giomm-2.4/giomm/init.h: + +/usr/include/giomm-2.4/giomm/wrap_init.h: + +/usr/include/giomm-2.4/giomm/listmodel.h: + +/usr/include/c++/11.2.0/bits/fs_dir.h: + +/usr/include/giomm-2.4/giomm/menulinkiter.h: + +/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h: + +/usr/include/atk-1.0/atk/atksocket.h: + +/usr/include/giomm-2.4/giomm/networkmonitor.h: + +/usr/include/giomm-2.4/giomm/proxy.h: + +/usr/include/giomm-2.4/giomm/settingsschemasource.h: + +/usr/include/glib-2.0/gio/gbufferedinputstream.h: + +/usr/include/giomm-2.4/giomm/socket.h: + +/usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h: + +/usr/include/giomm-2.4/giomm/socketclient.h: + +/usr/include/gtk-3.0/gtk/gtkversion.h: + +/usr/include/c++/11.2.0/bits/stl_multiset.h: + +/usr/include/glib-2.0/glib/gtypes.h: + +/usr/include/giomm-2.4/giomm/socketlistener.h: + +/usr/include/giomm-2.4/giomm/converteroutputstream.h: + +/usr/include/giomm-2.4/giomm/tcpconnection.h: + +/usr/include/setjmp.h: + +/usr/include/math.h: + +/usr/include/giomm-2.4/giomm/themedicon.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h: + +/usr/include/giomm-2.4/giomm/tlscertificate.h: + +/usr/include/gtk-3.0/gdk/gdkdisplay.h: + +/usr/include/giomm-2.4/giomm/tlsconnection.h: + +/usr/include/giomm-2.4/giomm/tlsdatabase.h: + +/usr/include/glib-2.0/gio/gdbuserror.h: + +/usr/include/pangomm-1.4/pangomm/glyph.h: + +/usr/include/pango-1.0/pango/pango-script.h: + +/usr/include/glib-2.0/glib/gpoll.h: + +/usr/include/giomm-2.4/giomm/tlspassword.h: + +/usr/include/giomm-2.4/giomm/tlsserverconnection.h: + +/usr/include/gtkmm-3.0/gtkmm/enums.h: + +/usr/include/giomm-2.4/giomm/unixfdmessage.h: + +/usr/include/c++/11.2.0/bits/stl_heap.h: + +/usr/include/giomm-2.4/giomm/unixinputstream.h: + +/usr/include/giomm-2.4/giomm/unixoutputstream.h: + +/usr/include/gtkmm-3.0/gtkmm/calendar.h: + +/usr/include/gdkmm-3.0/gdkmm/pixbufloader.h: + +/usr/include/pangomm-1.4/pangomm/rectangle.h: + +/usr/include/c++/11.2.0/ext/atomicity.h: + +/usr/include/pangomm-1.4/pangomm/attrlist.h: + +/usr/include/giomm-2.4/giomm/unixsocketaddress.h: + +/usr/include/gtkmm-3.0/gtkmm/cellareabox.h: + +/usr/include/gtk-3.0/gtk/gtkentry.h: + +/usr/include/giomm-2.4/giomm/zlibcompressor.h: + +/usr/include/glibmm-2.4/glibmm/checksum.h: + +/usr/include/giomm-2.4/giomm/zlibdecompressor.h: + +/usr/include/gdkmm-3.0/gdkmm/dragcontext.h: + +/usr/include/glibmm-2.4/glibmm/thread.h: + +/usr/include/gdkmm-3.0/gdkmm/color.h: + +/usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h: + +/usr/lib/pangomm-1.4/include/pangommconfig.h: + +/usr/include/pangomm-1.4/pangomm/types.h: + +/usr/include/gtkmm-3.0/gtkmm/window.h: + +/usr/include/pangomm-1.4/pangomm/context.h: + +/usr/include/gtk-3.0/gdk/gdk.h: + +/usr/include/glib-2.0/glib/ghash.h: + +/usr/include/gtk-3.0/gdk/gdkversionmacros.h: + +/usr/include/pango-1.0/pango/pango.h: + +/usr/include/c++/11.2.0/cstdlib: + +/usr/include/bits/statx.h: + +/usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h: + +/usr/include/pango-1.0/pango/pango-font.h: + +/usr/include/bits/types/mbstate_t.h: + +/usr/include/pango-1.0/pango/pango-version-macros.h: + +/usr/include/pango-1.0/pango/pango-features.h: + +/usr/include/harfbuzz/hb.h: + +/usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h: + +/usr/include/c++/11.2.0/bits/stl_tree.h: + +/usr/include/harfbuzz/hb-blob.h: + +/usr/include/harfbuzz/hb-unicode.h: + +/usr/include/gtkmm-3.0/gtkmm/stock.h: + +/usr/include/giomm-2.4/giomm/enums.h: + +/usr/include/harfbuzz/hb-font.h: + +/usr/include/pango-1.0/pango/pango-enum-types.h: + +/usr/include/harfbuzz/hb-face.h: + +/usr/include/harfbuzz/hb-draw.h: + +/usr/include/sigc++-2.0/sigc++/functors/functors.h: + +/usr/include/harfbuzz/hb-deprecated.h: + +/usr/include/gtk-3.0/gtk/gtkfixed.h: + +/usr/include/harfbuzz/hb-map.h: + +/usr/include/glib-2.0/glib/glib-typeof.h: + +/usr/include/harfbuzz/hb-shape.h: + +/usr/include/gtk-3.0/gtk/gtksizegroup.h: + +/usr/include/pango-1.0/pango/pango-gravity.h: + +/usr/include/glibmm-2.4/glibmm/class.h: + +/usr/include/pango-1.0/pango/pango-matrix.h: + +/usr/include/gtkmm-3.0/gtkmm/actionable.h: + +/usr/include/pango-1.0/pango/pango-bidi-type.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h: + +/usr/include/pango-1.0/pango/pango-direction.h: + +/usr/include/pango-1.0/pango/pango-color.h: + +/usr/include/pango-1.0/pango/pango-break.h: + +/usr/include/glib-2.0/glib/gstrfuncs.h: + +/usr/include/glibmm-2.4/glibmm.h: + +/usr/include/pango-1.0/pango/pango-item.h: + +/usr/include/pango-1.0/pango/pango-fontset.h: + +/usr/lib/gdkmm-3.0/include/gdkmmconfig.h: + +/usr/include/pango-1.0/pango/pango-engine.h: + +/usr/include/pango-1.0/pango/pango-fontset-simple.h: + +/usr/include/glibmm-2.4/glibmm/convert.h: + +/usr/include/c++/11.2.0/array: + +/usr/include/pango-1.0/pango/pango-tabs.h: + +/usr/include/gdkmm-3.0/gdkmm/event.h: + +/usr/include/pango-1.0/pango/pango-markup.h: + +/usr/include/gtk-3.0/gtk/gtktestutils.h: + +/usr/include/pango-1.0/pango/pango-renderer.h: + +/usr/include/c++/11.2.0/bits/locale_classes.h: + +/usr/include/gdkmm-3.0/gdkmm/monitor.h: + +/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h: + +/usr/include/cairo/cairo-features.h: + +/usr/include/giomm-2.4/giomm/emblemedicon.h: + +/usr/include/cairo/cairo-deprecated.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11property.h: + +/usr/include/gtk-3.0/gdk/gdkevents.h: + +/usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc: + +/usr/include/gtk-3.0/gdk/gdkdevicemanager.h: + +/usr/include/giomm-2.4/giomm/menuitem.h: + +/usr/include/gtk-3.0/gdk/gdkframeclock.h: + +/usr/include/gtkmm-3.0/gtkmm/overlay.h: + +/usr/include/bits/types/struct_timeval.h: + +/usr/include/gtk-3.0/gdk/gdkrectangle.h: + +/usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h: + +/usr/include/gtk-3.0/gdk/gdkpixbuf.h: + +/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h: + +/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: + +/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: + +/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h: + +/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: + +/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: + +/usr/include/gtk-3.0/gtk/gtktexttagtable.h: + +/usr/include/pango-1.0/pango/pangocairo.h: + +/usr/include/gtk-3.0/gdk/gdkcursor.h: + +/usr/include/gtk-3.0/gtk/gtkcelleditable.h: + +/usr/include/gtk-3.0/gdk/gdkdisplaymanager.h: + +/usr/include/gtk-3.0/gdk/gdkkeysyms.h: + +/usr/include/gtk-3.0/gdk/gdkpango.h: + +/usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h: + +/usr/include/gtk-3.0/gdk/gdktestutils.h: + +/usr/include/freetype2/freetype/ftimage.h: + +/usr/include/gtk-3.0/gdk/gdkthreads.h: + +/usr/include/gtk-3.0/gdk/gdk-autocleanup.h: + +/usr/include/gdkmm-3.0/gdkmm/pixbufformat.h: + +/usr/include/gdkmm-3.0/gdkmm/types.h: + +/usr/include/cairomm-1.0/cairomm/surface.h: + +/usr/include/c++/11.2.0/bits/hashtable.h: + +/usr/include/cairo/cairo-version.h: + +/usr/include/freetype2/freetype/freetype.h: + +/usr/include/c++/11.2.0/debug/assertions.h: + +/usr/include/cairomm-1.0/cairomm/enums.h: + +/usr/include/glib-2.0/gio/gvolume.h: + +/usr/include/cairo/cairo-ft.h: + +/usr/include/freetype2/freetype/config/ftoption.h: + +/usr/include/freetype2/freetype/config/integer-types.h: + +/usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h: + +/usr/include/harfbuzz/hb-version.h: + +/usr/include/freetype2/freetype/config/mac-support.h: + +/usr/include/gtkmm-3.0/gtkmm/switch.h: + +/usr/include/cairomm-1.0/cairomm/exception.h: + +/usr/include/glib-2.0/gio/gfileenumerator.h: + +/usr/include/freetype2/freetype/ftsystem.h: + +/usr/include/freetype2/freetype/ftmoderr.h: + +/usr/include/glibmm-2.4/glibmm/random.h: + +/usr/lib/atkmm-1.6/include/atkmmconfig.h: + +/usr/include/asm-generic/int-ll64.h: + +/usr/include/giomm-2.4/giomm/unixcredentialsmessage.h: + +/usr/include/asm/bitsperlong.h: + +/usr/include/linux/posix_types.h: + +/usr/include/asm/posix_types.h: + +/usr/include/gtk-3.0/gtk/gtklinkbutton.h: + +/usr/include/c++/11.2.0/bits/stringfwd.h: + +/usr/include/c++/11.2.0/set: + +/usr/include/asm/posix_types_64.h: + +/usr/include/asm-generic/posix_types.h: + +/usr/include/bits/types/struct_statx_timestamp.h: + +/usr/include/glib-2.0/gio/giomodule.h: + +/usr/include/bits/types/struct_statx.h: + +/usr/include/giomm-2.4/giomm/dbusobject.h: + +/usr/include/cairomm-1.0/cairomm/types.h: + +/usr/include/cairo/cairo-ps.h: + +/usr/include/cairo/cairo-svg.h: + +/usr/include/gtkmm-3.0/gtkmm/editable.h: + +/usr/include/c++/11.2.0/bits/stl_pair.h: + +/usr/include/glib-2.0/gio/gtlsdatabase.h: + +/usr/include/gdkmm-3.0/gdkmm/device.h: + +/usr/include/gdkmm-3.0/gdkmm/cursor.h: + +/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h: + +/usr/include/gdkmm-3.0/gdkmm/display.h: + +/usr/include/gdkmm-3.0/gdkmm/screen.h: + +/usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h: + +/usr/include/glib-2.0/gio/giotypes.h: + +/usr/include/bits/types/sigevent_t.h: + +/usr/include/glib-2.0/gio/gdbusobject.h: + +/usr/include/gdkmm-3.0/gdkmm/window.h: + +/usr/include/gtkmm-3.0/gtkmm/printjob.h: + +/usr/include/gtk-3.0/gtk/gtkeditable.h: + +/usr/include/cairomm-1.0/cairomm/region.h: + +/usr/include/cairomm-1.0/cairomm/context.h: + +/usr/include/cairomm-1.0/cairomm/fontface.h: + +/usr/include/cairomm-1.0/cairomm/matrix.h: + +/usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h: + +/usr/include/atk-1.0/atk/atkrelationtype.h: + +/usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h: + +/usr/include/gtk-3.0/gtk/gtkseparator.h: + +/usr/include/c++/11.2.0/bits/stl_list.h: + +/usr/include/cairomm-1.0/cairomm/path.h: + +/usr/include/cairomm-1.0/cairomm/scaledfont.h: + +/usr/include/glib-2.0/glib/guri.h: + +/usr/include/c++/11.2.0/valarray: + +/usr/include/gtkmm-3.0/gtkmm/spinner.h: + +/usr/include/glib-2.0/gio/gfilenamecompleter.h: + +/usr/include/bits/math-vector.h: + +/usr/include/c++/11.2.0/bits/locale_facets.h: + +/usr/include/glib-2.0/gio/gloadableicon.h: + +/usr/include/bits/libm-simd-decl-stubs.h: + +/usr/include/bits/flt-eval-method.h: + +/usr/include/giomm-2.4/giomm/converter.h: + +/usr/include/bits/mathcalls-helper-functions.h: + +/usr/include/giomm-2.4/giomm/seekable.h: + +/usr/include/bits/iscanonical.h: + +/usr/include/gtk-3.0/gtk/gtkmenubar.h: + +/usr/include/c++/11.2.0/bits/specfun.h: + +/usr/include/glib-2.0/gio/gioscheduler.h: + +/usr/include/c++/11.2.0/tr1/beta_function.tcc: + +/usr/include/pango-1.0/pango/pango-language.h: + +/usr/include/giomm-2.4/giomm/threadedsocketservice.h: + +/usr/include/c++/11.2.0/tr1/ell_integral.tcc: + +/usr/include/c++/11.2.0/tr1/poly_laguerre.tcc: + +/usr/include/X11/Xfuncproto.h: + +/usr/include/glib-2.0/gio/gtlsfiledatabase.h: + +/usr/include/cairomm-1.0/cairomm/fontoptions.h: + +/usr/include/c++/11.2.0/tr1/riemann_zeta.tcc: + +/usr/include/harfbuzz/hb-shape-plan.h: + +/usr/include/c++/11.2.0/bits/valarray_before.h: + +/usr/include/gtk-3.0/gtk/gtktreednd.h: + +/usr/include/c++/11.2.0/bits/valarray_after.h: + +/usr/include/glib-2.0/gio/gsimpleproxyresolver.h: + +/usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h: + +/usr/include/gdkmm-3.0/gdkmm/general.h: + +/usr/include/gdkmm-3.0/gdkmm/frametimings.h: + +/usr/include/gdkmm-3.0/gdkmm/glcontext.h: + +/usr/include/pangomm-1.4/pangomm/fontset.h: + +/usr/include/c++/11.2.0/deque: + +/usr/include/pangomm-1.4/pangomm/fontfamily.h: + +/usr/include/pangomm-1.4/pangomm/attributes.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/atkmm-1.6/atkmm/object.h: + +/usr/include/gtk-3.0/gdk/gdkdevice.h: + +/usr/include/giomm-2.4/giomm/memoryoutputstream.h: + +/usr/include/atkmm-1.6/atkmm/component.h: + +/usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h: + +/usr/include/gtkmm-3.0/gtkmm/object.h: + +/usr/include/sys/stat.h: + +/usr/include/gtk-3.0/gtk/gtkaboutdialog.h: + +/usr/include/strings.h: + +/usr/include/gtk-3.0/gtk/gtkdialog.h: + +/usr/include/gtk-3.0/gtk/gtkgesturemultipress.h: + +/usr/include/gtk-3.0/gtk/gtkapplication.h: + +/usr/include/gtk-3.0/gtk/gtkwidget.h: + +/usr/include/gtk-3.0/gtk/gtktypes.h: + +/usr/include/atk-1.0/atk/atkeditabletext.h: + +/usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h: + +/usr/include/c++/11.2.0/memory: + +/usr/include/atk-1.0/atk/atk.h: + +/usr/include/glib-2.0/gobject/gtypemodule.h: + +/usr/include/atk-1.0/atk/atkdocument.h: + +/usr/include/glib-2.0/gio/gremoteactiongroup.h: + +/usr/include/pangomm-1.4/pangomm/fontmap.h: + +/usr/include/atk-1.0/atk/atkhyperlink.h: + +/usr/include/gtk-3.0/gdk/gdkproperty.h: + +/usr/include/gtk-3.0/gdk/gdkglcontext.h: + +/usr/include/atk-1.0/atk/atkhypertext.h: + +/usr/include/atk-1.0/atk/atknoopobject.h: + +/usr/include/glib-2.0/glib/gprimes.h: + +/usr/include/atk-1.0/atk/atkobjectfactory.h: + +/usr/include/atk-1.0/atk/atkstateset.h: + +/usr/include/gtkmm-3.0/gtkmm/windowgroup.h: + +/usr/include/pango-1.0/pango/pango-coverage.h: + +/usr/include/atk-1.0/atk/atktable.h: + +/usr/include/atk-1.0/atk/atkmisc.h: + +/usr/include/gtk-3.0/gdk/gdkrgba.h: + +/usr/include/atk-1.0/atk/atkwindow.h: + +/usr/include/gtkmm-3.0/gtkmm/linkbutton.h: + +/usr/include/gtk-3.0/gtk/gtkbin.h: + +/usr/include/gtk-3.0/gtk/gtkaccellabel.h: diff --git a/compile/CMakeFiles/ublexec.dir/compiler_depend.ts b/compile/CMakeFiles/ublexec.dir/compiler_depend.ts new file mode 100644 index 0000000..fc19636 --- /dev/null +++ b/compile/CMakeFiles/ublexec.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for ublexec. diff --git a/compile/CMakeFiles/ublexec.dir/depend.make b/compile/CMakeFiles/ublexec.dir/depend.make new file mode 100644 index 0000000..b1df505 --- /dev/null +++ b/compile/CMakeFiles/ublexec.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for ublexec. +# This may be replaced when dependencies are built. diff --git a/compile/CMakeFiles/ublexec.dir/flags.make b/compile/CMakeFiles/ublexec.dir/flags.make new file mode 100644 index 0000000..a42e302 --- /dev/null +++ b/compile/CMakeFiles/ublexec.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.23 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/usr/include/gtkmm-3.0 -I/usr/lib/gtkmm-3.0/include -I/usr/include/giomm-2.4 -I/usr/lib/giomm-2.4/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/lzo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/cloudproviders -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/at-spi-2.0 -I/usr/include/cairomm-1.0 -I/usr/lib/cairomm-1.0/include -I/usr/include/pangomm-1.4 -I/usr/lib/pangomm-1.4/include -I/usr/include/atkmm-1.6 -I/usr/lib/atkmm-1.6/include -I/usr/include/gtk-3.0/unix-print -I/usr/include/gdkmm-3.0 -I/usr/lib/gdkmm-3.0/include + +CXX_FLAGS = -pedantic -Wmissing-declarations -fdiagnostics-color=always -O3 -DNDEBUG -pthread + diff --git a/compile/CMakeFiles/ublexec.dir/link.txt b/compile/CMakeFiles/ublexec.dir/link.txt new file mode 100644 index 0000000..5d24dcc --- /dev/null +++ b/compile/CMakeFiles/ublexec.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -pedantic -Wmissing-declarations -fdiagnostics-color=always -O3 -DNDEBUG CMakeFiles/ublexec.dir/main.cc.o CMakeFiles/ublexec.dir/ublexec.cc.o -o ublexec -lgtkmm-3.0 -latkmm-1.6 -lgdkmm-3.0 -lgiomm-2.4 -lgtk-3 -lgdk-3 -lz -latk-1.0 -lcairo-gobject -lgio-2.0 -lpangomm-1.4 -lglibmm-2.4 -lcairomm-1.0 -lsigc-2.0 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -lcairo -lgdk_pixbuf-2.0 -lgobject-2.0 -lglib-2.0 -lpthread diff --git a/compile/CMakeFiles/ublexec.dir/main.cc.o b/compile/CMakeFiles/ublexec.dir/main.cc.o new file mode 100644 index 0000000000000000000000000000000000000000..2eaa46283d27cf891d4f3a8cf4916d6928ee48ce GIT binary patch literal 51232 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 D?Mo&$ literal 0 HcmV?d00001 diff --git a/compile/CMakeFiles/ublexec.dir/main.cc.o.d b/compile/CMakeFiles/ublexec.dir/main.cc.o.d new file mode 100644 index 0000000..3dd0f93 --- /dev/null +++ b/compile/CMakeFiles/ublexec.dir/main.cc.o.d @@ -0,0 +1,1489 @@ +CMakeFiles/ublexec.dir/main.cc.o: \ + /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc \ + /usr/include/stdc-predef.h /usr/include/c++/11.2.0/cstddef \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/11.2.0/pstl/pstl_config.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \ + /usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/libc-header-start.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \ + /usr/include/bits/floatn-common.h /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/__locale_t.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \ + /usr/include/c++/11.2.0/bits/std_abs.h /usr/include/c++/11.2.0/iostream \ + /usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \ + /usr/include/c++/11.2.0/iosfwd /usr/include/c++/11.2.0/bits/stringfwd.h \ + /usr/include/c++/11.2.0/bits/memoryfwd.h \ + /usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \ + /usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/c++/11.2.0/exception \ + /usr/include/c++/11.2.0/bits/exception.h \ + /usr/include/c++/11.2.0/bits/exception_ptr.h \ + /usr/include/c++/11.2.0/bits/exception_defines.h \ + /usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \ + /usr/include/c++/11.2.0/typeinfo \ + /usr/include/c++/11.2.0/bits/hash_bytes.h /usr/include/c++/11.2.0/new \ + /usr/include/c++/11.2.0/bits/nested_exception.h \ + /usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \ + /usr/include/c++/11.2.0/bits/char_traits.h \ + /usr/include/c++/11.2.0/bits/stl_algobase.h \ + /usr/include/c++/11.2.0/bits/functexcept.h \ + /usr/include/c++/11.2.0/bits/cpp_type_traits.h \ + /usr/include/c++/11.2.0/ext/type_traits.h \ + /usr/include/c++/11.2.0/ext/numeric_traits.h \ + /usr/include/c++/11.2.0/bits/stl_pair.h \ + /usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \ + /usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11.2.0/bits/concept_check.h \ + /usr/include/c++/11.2.0/debug/assertions.h \ + /usr/include/c++/11.2.0/bits/stl_iterator.h \ + /usr/include/c++/11.2.0/bits/ptr_traits.h \ + /usr/include/c++/11.2.0/debug/debug.h \ + /usr/include/c++/11.2.0/bits/predefined_ops.h \ + /usr/include/c++/11.2.0/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/stdint-uintn.h \ + /usr/include/c++/11.2.0/bits/localefwd.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/11.2.0/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/11.2.0/cctype \ + /usr/include/ctype.h /usr/include/c++/11.2.0/bits/ios_base.h \ + /usr/include/c++/11.2.0/ext/atomicity.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/11.2.0/bits/locale_classes.h \ + /usr/include/c++/11.2.0/string /usr/include/c++/11.2.0/bits/allocator.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/11.2.0/ext/new_allocator.h \ + /usr/include/c++/11.2.0/bits/ostream_insert.h \ + /usr/include/c++/11.2.0/bits/cxxabi_forced.h \ + /usr/include/c++/11.2.0/bits/stl_function.h \ + /usr/include/c++/11.2.0/backward/binders.h \ + /usr/include/c++/11.2.0/bits/range_access.h \ + /usr/include/c++/11.2.0/initializer_list \ + /usr/include/c++/11.2.0/bits/basic_string.h \ + /usr/include/c++/11.2.0/ext/alloc_traits.h \ + /usr/include/c++/11.2.0/bits/alloc_traits.h \ + /usr/include/c++/11.2.0/bits/stl_construct.h \ + /usr/include/c++/11.2.0/string_view \ + /usr/include/c++/11.2.0/bits/functional_hash.h \ + /usr/include/c++/11.2.0/bits/string_view.tcc \ + /usr/include/c++/11.2.0/ext/string_conversions.h \ + /usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + /usr/include/c++/11.2.0/cerrno /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \ + /usr/include/c++/11.2.0/bits/charconv.h \ + /usr/include/c++/11.2.0/bits/basic_string.tcc \ + /usr/include/c++/11.2.0/bits/locale_classes.tcc \ + /usr/include/c++/11.2.0/system_error \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \ + /usr/include/c++/11.2.0/bits/streambuf.tcc \ + /usr/include/c++/11.2.0/bits/basic_ios.h \ + /usr/include/c++/11.2.0/bits/locale_facets.h \ + /usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/11.2.0/bits/streambuf_iterator.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/11.2.0/bits/locale_facets.tcc \ + /usr/include/c++/11.2.0/bits/basic_ios.tcc \ + /usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/istream \ + /usr/include/c++/11.2.0/bits/istream.tcc /usr/include/c++/11.2.0/memory \ + /usr/include/c++/11.2.0/bits/stl_uninitialized.h \ + /usr/include/c++/11.2.0/bits/stl_tempbuf.h \ + /usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11.2.0/bits/align.h /usr/include/c++/11.2.0/bit \ + /usr/include/c++/11.2.0/bits/uses_allocator.h \ + /usr/include/c++/11.2.0/bits/unique_ptr.h \ + /usr/include/c++/11.2.0/utility \ + /usr/include/c++/11.2.0/bits/stl_relops.h /usr/include/c++/11.2.0/tuple \ + /usr/include/c++/11.2.0/array /usr/include/c++/11.2.0/bits/invoke.h \ + /usr/include/c++/11.2.0/bits/shared_ptr.h \ + /usr/include/c++/11.2.0/bits/shared_ptr_base.h \ + /usr/include/c++/11.2.0/bits/allocated_ptr.h \ + /usr/include/c++/11.2.0/bits/refwrap.h \ + /usr/include/c++/11.2.0/ext/aligned_buffer.h \ + /usr/include/c++/11.2.0/ext/concurrence.h \ + /usr/include/c++/11.2.0/bits/shared_ptr_atomic.h \ + /usr/include/c++/11.2.0/bits/atomic_base.h \ + /usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11.2.0/backward/auto_ptr.h \ + /usr/include/c++/11.2.0/pstl/glue_memory_defs.h \ + /usr/include/c++/11.2.0/pstl/execution_defs.h \ + /usr/include/gtkmm-3.0/gtkmm.h /usr/include/glibmm-2.4/glibmm.h \ + /usr/lib/glibmm-2.4/include/glibmmconfig.h \ + /usr/include/glibmm-2.4/glibmm/thread.h /usr/include/glib-2.0/glib.h \ + /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ + /usr/lib/glib-2.0/include/glibconfig.h \ + /usr/include/glib-2.0/glib/gmacros.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h \ + /usr/include/glib-2.0/glib/gversionmacros.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/glib-2.0/glib/garray.h \ + /usr/include/glib-2.0/glib/gasyncqueue.h \ + /usr/include/glib-2.0/glib/gthread.h \ + /usr/include/glib-2.0/glib/gatomic.h \ + /usr/include/glib-2.0/glib/glib-typeof.h \ + /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ + /usr/include/glib-2.0/glib/gutils.h /usr/include/c++/11.2.0/stdlib.h \ + /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ + /usr/include/bits/signum-generic.h /usr/include/bits/signum-arch.h \ + /usr/include/bits/types/sig_atomic_t.h \ + /usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \ + /usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \ + /usr/include/bits/siginfo-consts-arch.h \ + /usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \ + /usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \ + /usr/include/bits/sigstksz.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/bits/ss_flags.h \ + /usr/include/bits/types/struct_sigstack.h /usr/include/bits/sigthread.h \ + /usr/include/bits/signal_ext.h /usr/include/glib-2.0/glib/gbase64.h \ + /usr/include/glib-2.0/glib/gbitlock.h \ + /usr/include/glib-2.0/glib/gbookmarkfile.h \ + /usr/include/glib-2.0/glib/gdatetime.h \ + /usr/include/glib-2.0/glib/gtimezone.h \ + /usr/include/glib-2.0/glib/gbytes.h \ + /usr/include/glib-2.0/glib/gcharset.h \ + /usr/include/glib-2.0/glib/gchecksum.h \ + /usr/include/glib-2.0/glib/gconvert.h \ + /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ + /usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \ + /usr/include/glib-2.0/glib/genviron.h \ + /usr/include/glib-2.0/glib/gfileutils.h \ + /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \ + /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ + /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \ + /usr/include/glib-2.0/glib/gchecksum.h \ + /usr/include/glib-2.0/glib/ghook.h \ + /usr/include/glib-2.0/glib/ghostutils.h \ + /usr/include/glib-2.0/glib/giochannel.h \ + /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ + /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ + /usr/include/glib-2.0/glib/gunicode.h \ + /usr/include/glib-2.0/glib/gkeyfile.h \ + /usr/include/glib-2.0/glib/gmappedfile.h \ + /usr/include/glib-2.0/glib/gmarkup.h \ + /usr/include/glib-2.0/glib/gmessages.h \ + /usr/include/glib-2.0/glib/gvariant.h \ + /usr/include/glib-2.0/glib/gvarianttype.h \ + /usr/include/glib-2.0/glib/goption.h \ + /usr/include/glib-2.0/glib/gpattern.h \ + /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ + /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ + /usr/include/glib-2.0/glib/grcbox.h \ + /usr/include/glib-2.0/glib/grefcount.h \ + /usr/include/glib-2.0/glib/grefstring.h \ + /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \ + /usr/include/glib-2.0/glib/gregex.h \ + /usr/include/glib-2.0/glib/gscanner.h \ + /usr/include/glib-2.0/glib/gsequence.h \ + /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \ + /usr/include/glib-2.0/glib/gspawn.h \ + /usr/include/glib-2.0/glib/gstrfuncs.h \ + /usr/include/glib-2.0/glib/gstringchunk.h \ + /usr/include/glib-2.0/glib/gstrvbuilder.h \ + /usr/include/glib-2.0/glib/gtestutils.h \ + /usr/include/glib-2.0/glib/gthreadpool.h \ + /usr/include/glib-2.0/glib/gtimer.h \ + /usr/include/glib-2.0/glib/gtrashstack.h \ + /usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \ + /usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \ + /usr/include/glib-2.0/glib/deprecated/gallocator.h \ + /usr/include/glib-2.0/glib/deprecated/gcache.h \ + /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ + /usr/include/glib-2.0/glib/deprecated/gmain.h \ + /usr/include/glib-2.0/glib/deprecated/grel.h \ + /usr/include/glib-2.0/glib/deprecated/gthread.h \ + /usr/include/glib-2.0/glib/glib-autocleanups.h \ + /usr/include/glibmm-2.4/glibmm/error.h \ + /usr/include/glibmm-2.4/glibmm/exception.h \ + /usr/include/glibmm-2.4/glibmm/ustring.h \ + /usr/include/glibmm-2.4/glibmm/unicode.h \ + /usr/include/c++/11.2.0/iterator \ + /usr/include/c++/11.2.0/bits/stream_iterator.h \ + /usr/include/c++/11.2.0/sstream /usr/include/c++/11.2.0/bits/sstream.tcc \ + /usr/include/glibmm-2.4/glibmm/value.h \ + /usr/include/glibmm-2.4/glibmm/refptr.h \ + /usr/include/glibmm-2.4/glibmm/enums.h \ + /usr/include/glib-2.0/glib-object.h \ + /usr/include/glib-2.0/gobject/gbinding.h \ + /usr/include/glib-2.0/gobject/gobject.h \ + /usr/include/glib-2.0/gobject/gtype.h \ + /usr/include/glib-2.0/gobject/gvalue.h \ + /usr/include/glib-2.0/gobject/gparam.h \ + /usr/include/glib-2.0/gobject/gclosure.h \ + /usr/include/glib-2.0/gobject/gsignal.h \ + /usr/include/glib-2.0/gobject/gmarshal.h \ + /usr/include/glib-2.0/gobject/gboxed.h \ + /usr/include/glib-2.0/gobject/glib-types.h \ + /usr/include/glib-2.0/gobject/gbindinggroup.h \ + /usr/include/glib-2.0/gobject/genums.h \ + /usr/include/glib-2.0/gobject/glib-enumtypes.h \ + /usr/include/glib-2.0/gobject/gparamspecs.h \ + /usr/include/glib-2.0/gobject/gsignalgroup.h \ + /usr/include/glib-2.0/gobject/gsourceclosure.h \ + /usr/include/glib-2.0/gobject/gtypemodule.h \ + /usr/include/glib-2.0/gobject/gtypeplugin.h \ + /usr/include/glib-2.0/gobject/gvaluearray.h \ + /usr/include/glib-2.0/gobject/gvaluetypes.h \ + /usr/include/glib-2.0/gobject/gobject-autocleanups.h \ + /usr/include/c++/11.2.0/vector /usr/include/c++/11.2.0/bits/stl_vector.h \ + /usr/include/c++/11.2.0/bits/stl_bvector.h \ + /usr/include/c++/11.2.0/bits/vector.tcc \ + /usr/include/glibmm-2.4/glibmm/value_custom.h \ + /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ + /usr/include/glibmm-2.4/glibmm/timeval.h \ + /usr/include/sigc++-2.0/sigc++/sigc++.h \ + /usr/include/sigc++-2.0/sigc++/signal.h /usr/include/c++/11.2.0/list \ + /usr/include/c++/11.2.0/bits/stl_list.h \ + /usr/include/c++/11.2.0/bits/list.tcc \ + /usr/include/sigc++-2.0/sigc++/signal_base.h \ + /usr/lib/sigc++-2.0/include/sigc++config.h \ + /usr/include/sigc++-2.0/sigc++/type_traits.h \ + /usr/include/sigc++-2.0/sigc++/trackable.h \ + /usr/include/sigc++-2.0/sigc++/functors/slot.h \ + /usr/include/sigc++-2.0/sigc++/visit_each.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ + /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ + /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ + /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ + /usr/include/sigc++-2.0/sigc++/limit_reference.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ + /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ + /usr/include/sigc++-2.0/sigc++/connection.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ + /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ + /usr/include/c++/11.2.0/functional \ + /usr/include/c++/11.2.0/bits/std_function.h \ + /usr/include/c++/11.2.0/unordered_map \ + /usr/include/c++/11.2.0/bits/hashtable.h \ + /usr/include/c++/11.2.0/bits/hashtable_policy.h \ + /usr/include/c++/11.2.0/bits/node_handle.h \ + /usr/include/c++/11.2.0/bits/unordered_map.h \ + /usr/include/c++/11.2.0/bits/erase_if.h \ + /usr/include/c++/11.2.0/bits/stl_algo.h \ + /usr/include/c++/11.2.0/bits/algorithmfwd.h \ + /usr/include/c++/11.2.0/bits/stl_heap.h \ + /usr/include/c++/11.2.0/bits/uniform_int_dist.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h \ + /usr/include/sigc++-2.0/sigc++/functors/functors.h \ + /usr/include/glibmm-2.4/glibmm/threads.h \ + /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ + /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ + /usr/include/glibmm-2.4/glibmm/variant.h \ + /usr/include/glibmm-2.4/glibmm/varianttype.h \ + /usr/include/glibmm-2.4/glibmm/variantiter.h \ + /usr/include/glibmm-2.4/glibmm/variantdbusstring.h \ + /usr/include/c++/11.2.0/map /usr/include/c++/11.2.0/bits/stl_tree.h \ + /usr/include/c++/11.2.0/bits/stl_map.h \ + /usr/include/c++/11.2.0/bits/stl_multimap.h \ + /usr/include/glibmm-2.4/glibmm/variant_basictypes.h \ + /usr/include/glibmm-2.4/glibmm/wrap.h \ + /usr/include/glibmm-2.4/glibmm/objectbase.h \ + /usr/include/glibmm-2.4/glibmm/class.h \ + /usr/include/glibmm-2.4/glibmm/signalproxy.h \ + /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ + /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ + /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ + /usr/include/glibmm-2.4/glibmm/quark.h \ + /usr/include/glibmm-2.4/glibmm/debug.h /usr/include/c++/11.2.0/mutex \ + /usr/include/c++/11.2.0/chrono /usr/include/c++/11.2.0/ratio \ + /usr/include/c++/11.2.0/limits /usr/include/c++/11.2.0/ctime \ + /usr/include/c++/11.2.0/bits/parse_numbers.h \ + /usr/include/c++/11.2.0/bits/std_mutex.h \ + /usr/include/c++/11.2.0/bits/unique_lock.h \ + /usr/include/c++/11.2.0/algorithm \ + /usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h \ + /usr/include/c++/11.2.0/deque /usr/include/c++/11.2.0/bits/stl_deque.h \ + /usr/include/c++/11.2.0/bits/deque.tcc \ + /usr/include/glibmm-2.4/glibmm/balancedtree.h \ + /usr/include/glibmm-2.4/glibmm/base64.h \ + /usr/include/glibmm-2.4/glibmm/binding.h \ + /usr/include/glibmm-2.4/glibmm/object.h \ + /usr/include/glibmm-2.4/glibmm/utility.h \ + /usr/include/glibmm-2.4/glibmm/bytearray.h \ + /usr/include/sigc++-2.0/sigc++/slot.h \ + /usr/include/glibmm-2.4/glibmm/bytes.h \ + /usr/include/glibmm-2.4/glibmm/checksum.h \ + /usr/include/glibmm-2.4/glibmm/convert.h \ + /usr/include/glibmm-2.4/glibmm/date.h \ + /usr/include/glibmm-2.4/glibmm/datetime.h \ + /usr/include/glibmm-2.4/glibmm/timezone.h \ + /usr/include/glibmm-2.4/glibmm/dispatcher.h \ + /usr/include/glibmm-2.4/glibmm/main.h \ + /usr/include/glibmm-2.4/glibmm/priorities.h \ + /usr/include/glibmm-2.4/glibmm/iochannel.h \ + /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ + /usr/include/glibmm-2.4/glibmm/fileutils.h \ + /usr/include/glibmm-2.4/glibmm/helperlist.h \ + /usr/include/glibmm-2.4/glibmm/containers.h \ + /usr/include/glibmm-2.4/glibmm/sarray.h \ + /usr/include/glibmm-2.4/glibmm/interface.h \ + /usr/include/glibmm-2.4/glibmm/init.h \ + /usr/include/glibmm-2.4/glibmm/keyfile.h \ + /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ + /usr/include/glibmm-2.4/glibmm/listhandle.h \ + /usr/include/glibmm-2.4/glibmm/markup.h \ + /usr/include/glibmm-2.4/glibmm/miscutils.h \ + /usr/include/glibmm-2.4/glibmm/module.h \ + /usr/include/glibmm-2.4/glibmm/nodetree.h /usr/include/c++/11.2.0/stack \ + /usr/include/c++/11.2.0/bits/stl_stack.h \ + /usr/include/glibmm-2.4/glibmm/optioncontext.h \ + /usr/include/glibmm-2.4/glibmm/optionentry.h \ + /usr/include/glibmm-2.4/glibmm/optiongroup.h \ + /usr/include/glibmm-2.4/glibmm/pattern.h \ + /usr/include/glibmm-2.4/glibmm/property.h \ + /usr/include/glibmm-2.4/glibmm/random.h \ + /usr/include/glibmm-2.4/glibmm/regex.h \ + /usr/include/glibmm-2.4/glibmm/shell.h \ + /usr/include/glibmm-2.4/glibmm/slisthandle.h \ + /usr/include/glibmm-2.4/glibmm/spawn.h \ + /usr/include/glibmm-2.4/glibmm/stringutils.h \ + /usr/include/glibmm-2.4/glibmm/threadpool.h \ + /usr/include/glibmm-2.4/glibmm/timer.h \ + /usr/include/glibmm-2.4/glibmm/uriutils.h \ + /usr/include/glibmm-2.4/glibmm/valuearray.h \ + /usr/include/glibmm-2.4/glibmm/variantdict.h \ + /usr/include/glibmm-2.4/glibmm/vectorutils.h \ + /usr/include/glibmm-2.4/glibmm/weakref.h /usr/include/giomm-2.4/giomm.h \ + /usr/include/giomm-2.4/giomm/action.h \ + /usr/lib/giomm-2.4/include/giommconfig.h /usr/include/glib-2.0/gio/gio.h \ + /usr/include/glib-2.0/gio/giotypes.h \ + /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/gio/gaction.h \ + /usr/include/glib-2.0/gio/gactiongroup.h \ + /usr/include/glib-2.0/gio/gactiongroupexporter.h \ + /usr/include/glib-2.0/gio/gactionmap.h \ + /usr/include/glib-2.0/gio/gappinfo.h \ + /usr/include/glib-2.0/gio/gapplication.h \ + /usr/include/glib-2.0/gio/gapplicationcommandline.h \ + /usr/include/glib-2.0/gio/gasyncinitable.h \ + /usr/include/glib-2.0/gio/ginitable.h \ + /usr/include/glib-2.0/gio/gasyncresult.h \ + /usr/include/glib-2.0/gio/gbufferedinputstream.h \ + /usr/include/glib-2.0/gio/gfilterinputstream.h \ + /usr/include/glib-2.0/gio/ginputstream.h \ + /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ + /usr/include/glib-2.0/gio/gfilteroutputstream.h \ + /usr/include/glib-2.0/gio/goutputstream.h \ + /usr/include/glib-2.0/gio/gbytesicon.h \ + /usr/include/glib-2.0/gio/gcancellable.h \ + /usr/include/glib-2.0/gio/gcharsetconverter.h \ + /usr/include/glib-2.0/gio/gconverter.h \ + /usr/include/glib-2.0/gio/gcontenttype.h \ + /usr/include/glib-2.0/gio/gconverterinputstream.h \ + /usr/include/glib-2.0/gio/gconverteroutputstream.h \ + /usr/include/glib-2.0/gio/gcredentials.h \ + /usr/include/glib-2.0/gio/gdatagrambased.h \ + /usr/include/glib-2.0/gio/gdatainputstream.h \ + /usr/include/glib-2.0/gio/gdataoutputstream.h \ + /usr/include/glib-2.0/gio/gdbusactiongroup.h \ + /usr/include/glib-2.0/gio/giotypes.h \ + /usr/include/glib-2.0/gio/gdbusaddress.h \ + /usr/include/glib-2.0/gio/gdbusauthobserver.h \ + /usr/include/glib-2.0/gio/gdbusconnection.h \ + /usr/include/glib-2.0/gio/gdbuserror.h \ + /usr/include/glib-2.0/gio/gdbusinterface.h \ + /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ + /usr/include/glib-2.0/gio/gdbusintrospection.h \ + /usr/include/glib-2.0/gio/gdbusmenumodel.h \ + /usr/include/glib-2.0/gio/gdbusmessage.h \ + /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ + /usr/include/glib-2.0/gio/gdbusnameowning.h \ + /usr/include/glib-2.0/gio/gdbusnamewatching.h \ + /usr/include/glib-2.0/gio/gdbusobject.h \ + /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ + /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ + /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ + /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ + /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ + /usr/include/glib-2.0/gio/gdbusproxy.h \ + /usr/include/glib-2.0/gio/gdbusserver.h \ + /usr/include/glib-2.0/gio/gdbusutils.h \ + /usr/include/glib-2.0/gio/gdebugcontroller.h \ + /usr/include/glib-2.0/gio/gdebugcontrollerdbus.h \ + /usr/include/glib-2.0/gio/gdrive.h \ + /usr/include/glib-2.0/gio/gdtlsclientconnection.h \ + /usr/include/glib-2.0/gio/gdtlsconnection.h \ + /usr/include/glib-2.0/gio/gdtlsserverconnection.h \ + /usr/include/glib-2.0/gio/gemblemedicon.h \ + /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ + /usr/include/glib-2.0/gio/gfile.h \ + /usr/include/glib-2.0/gio/gfileattribute.h \ + /usr/include/glib-2.0/gio/gfileenumerator.h \ + /usr/include/glib-2.0/gio/gfileicon.h \ + /usr/include/glib-2.0/gio/gfileinfo.h \ + /usr/include/glib-2.0/gio/gfileinputstream.h \ + /usr/include/glib-2.0/gio/gfileiostream.h \ + /usr/include/glib-2.0/gio/giostream.h \ + /usr/include/glib-2.0/gio/gioerror.h \ + /usr/include/glib-2.0/gio/gfilemonitor.h \ + /usr/include/glib-2.0/gio/gfilenamecompleter.h \ + /usr/include/glib-2.0/gio/gfileoutputstream.h \ + /usr/include/glib-2.0/gio/ginetaddress.h \ + /usr/include/glib-2.0/gio/ginetaddressmask.h \ + /usr/include/glib-2.0/gio/ginetsocketaddress.h \ + /usr/include/glib-2.0/gio/gsocketaddress.h \ + /usr/include/glib-2.0/gio/gioenumtypes.h \ + /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ + /usr/include/glib-2.0/gio/gioscheduler.h \ + /usr/include/glib-2.0/gio/glistmodel.h \ + /usr/include/glib-2.0/gio/gliststore.h \ + /usr/include/glib-2.0/gio/gloadableicon.h \ + /usr/include/glib-2.0/gio/gmemoryinputstream.h \ + /usr/include/glib-2.0/gio/gmemorymonitor.h \ + /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ + /usr/include/glib-2.0/gio/gmenu.h /usr/include/glib-2.0/gio/gmenumodel.h \ + /usr/include/glib-2.0/gio/gmenuexporter.h \ + /usr/include/glib-2.0/gio/gmount.h \ + /usr/include/glib-2.0/gio/gmountoperation.h \ + /usr/include/glib-2.0/gio/gnativesocketaddress.h \ + /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ + /usr/include/glib-2.0/gio/gvolumemonitor.h \ + /usr/include/glib-2.0/gio/gnetworkaddress.h \ + /usr/include/glib-2.0/gio/gnetworkmonitor.h \ + /usr/include/glib-2.0/gio/gnetworkservice.h \ + /usr/include/glib-2.0/gio/gnotification.h \ + /usr/include/glib-2.0/gio/gpermission.h \ + /usr/include/glib-2.0/gio/gpollableinputstream.h \ + /usr/include/glib-2.0/gio/gpollableoutputstream.h \ + /usr/include/glib-2.0/gio/gpollableutils.h \ + /usr/include/glib-2.0/gio/gpowerprofilemonitor.h \ + /usr/include/glib-2.0/gio/gpropertyaction.h \ + /usr/include/glib-2.0/gio/gproxy.h \ + /usr/include/glib-2.0/gio/gproxyaddress.h \ + /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ + /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ + /usr/include/glib-2.0/gio/gproxyresolver.h \ + /usr/include/glib-2.0/gio/gremoteactiongroup.h \ + /usr/include/glib-2.0/gio/gresolver.h \ + /usr/include/glib-2.0/gio/gresource.h \ + /usr/include/glib-2.0/gio/gseekable.h \ + /usr/include/glib-2.0/gio/gsettings.h \ + /usr/include/glib-2.0/gio/gsettingsschema.h \ + /usr/include/glib-2.0/gio/gsimpleaction.h \ + /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ + /usr/include/glib-2.0/gio/gactiongroup.h \ + /usr/include/glib-2.0/gio/gactionmap.h \ + /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ + /usr/include/glib-2.0/gio/gsimpleiostream.h \ + /usr/include/glib-2.0/gio/gsimplepermission.h \ + /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ + /usr/include/glib-2.0/gio/gsocket.h \ + /usr/include/glib-2.0/gio/gsocketclient.h \ + /usr/include/glib-2.0/gio/gsocketconnectable.h \ + /usr/include/glib-2.0/gio/gsocketconnection.h \ + /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ + /usr/include/glib-2.0/gio/gsocketlistener.h \ + /usr/include/glib-2.0/gio/gsocketservice.h \ + /usr/include/glib-2.0/gio/gsrvtarget.h \ + /usr/include/glib-2.0/gio/gsubprocess.h \ + /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ + /usr/include/glib-2.0/gio/gtask.h \ + /usr/include/glib-2.0/gio/gtcpconnection.h \ + /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ + /usr/include/glib-2.0/gio/gtestdbus.h \ + /usr/include/glib-2.0/gio/gthemedicon.h \ + /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ + /usr/include/glib-2.0/gio/gtlsbackend.h \ + /usr/include/glib-2.0/gio/gtlscertificate.h \ + /usr/include/glib-2.0/gio/gtlsclientconnection.h \ + /usr/include/glib-2.0/gio/gtlsconnection.h \ + /usr/include/glib-2.0/gio/gtlsdatabase.h \ + /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ + /usr/include/glib-2.0/gio/gtlsinteraction.h \ + /usr/include/glib-2.0/gio/gtlspassword.h \ + /usr/include/glib-2.0/gio/gtlsserverconnection.h \ + /usr/include/glib-2.0/gio/gvfs.h /usr/include/glib-2.0/gio/gvolume.h \ + /usr/include/glib-2.0/gio/gzlibcompressor.h \ + /usr/include/glib-2.0/gio/gzlibdecompressor.h \ + /usr/include/glib-2.0/gio/gio-autocleanups.h \ + /usr/include/giomm-2.4/giomm/actiongroup.h \ + /usr/include/giomm-2.4/giomm/actionmap.h \ + /usr/include/giomm-2.4/giomm/simpleaction.h \ + /usr/include/giomm-2.4/giomm/appinfo.h \ + /usr/include/giomm-2.4/giomm/applaunchcontext.h \ + /usr/include/giomm-2.4/giomm/icon.h \ + /usr/include/giomm-2.4/giomm/asyncresult.h \ + /usr/include/giomm-2.4/giomm/cancellable.h \ + /usr/include/giomm-2.4/giomm/application.h \ + /usr/include/giomm-2.4/giomm/applicationcommandline.h \ + /usr/include/giomm-2.4/giomm/file.h \ + /usr/include/giomm-2.4/giomm/fileattributeinfolist.h \ + /usr/include/giomm-2.4/giomm/fileattributeinfo.h \ + /usr/include/giomm-2.4/giomm/fileenumerator.h \ + /usr/include/giomm-2.4/giomm/fileinfo.h \ + /usr/include/giomm-2.4/giomm/fileinputstream.h \ + /usr/include/giomm-2.4/giomm/inputstream.h \ + /usr/include/giomm-2.4/giomm/seekable.h \ + /usr/include/giomm-2.4/giomm/fileiostream.h \ + /usr/include/giomm-2.4/giomm/iostream.h \ + /usr/include/giomm-2.4/giomm/outputstream.h \ + /usr/include/giomm-2.4/giomm/filemonitor.h \ + /usr/include/giomm-2.4/giomm/fileoutputstream.h \ + /usr/include/giomm-2.4/giomm/mountoperation.h \ + /usr/include/giomm-2.4/giomm/drive.h \ + /usr/include/giomm-2.4/giomm/mount.h \ + /usr/include/giomm-2.4/giomm/error.h \ + /usr/include/giomm-2.4/giomm/dbusconnection.h \ + /usr/include/giomm-2.4/giomm/initable.h \ + /usr/include/giomm-2.4/giomm/asyncinitable.h \ + /usr/include/giomm-2.4/giomm/dbusauthobserver.h \ + /usr/include/giomm-2.4/giomm/credentials.h \ + /usr/include/giomm-2.4/giomm/dbusmethodinvocation.h \ + /usr/include/giomm-2.4/giomm/dbusmessage.h \ + /usr/include/giomm-2.4/giomm/unixfdlist.h \ + /usr/include/giomm-2.4/giomm/dbusintrospection.h \ + /usr/include/giomm-2.4/giomm/dbussubtreevtable.h \ + /usr/include/giomm-2.4/giomm/dbusinterfacevtable.h \ + /usr/include/giomm-2.4/giomm/notification.h \ + /usr/include/giomm-2.4/giomm/bufferedinputstream.h \ + /usr/include/giomm-2.4/giomm/filterinputstream.h \ + /usr/include/giomm-2.4/giomm/bufferedoutputstream.h \ + /usr/include/giomm-2.4/giomm/filteroutputstream.h \ + /usr/include/giomm-2.4/giomm/charsetconverter.h \ + /usr/include/giomm-2.4/giomm/converter.h \ + /usr/include/giomm-2.4/giomm/contenttype.h \ + /usr/include/giomm-2.4/giomm/converterinputstream.h \ + /usr/include/giomm-2.4/giomm/pollableinputstream.h \ + /usr/include/giomm-2.4/giomm/converteroutputstream.h \ + /usr/include/giomm-2.4/giomm/pollableoutputstream.h \ + /usr/include/giomm-2.4/giomm/datainputstream.h \ + /usr/include/giomm-2.4/giomm/enums.h \ + /usr/include/giomm-2.4/giomm/dataoutputstream.h \ + /usr/include/giomm-2.4/giomm/dbusactiongroup.h \ + /usr/include/giomm-2.4/giomm/remoteactiongroup.h \ + /usr/include/giomm-2.4/giomm/dbusaddress.h \ + /usr/include/giomm-2.4/giomm/dbuserror.h \ + /usr/include/giomm-2.4/giomm/dbuserrorutils.h \ + /usr/include/giomm-2.4/giomm/dbusinterface.h \ + /usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h \ + /usr/include/giomm-2.4/giomm/dbusmenumodel.h \ + /usr/include/giomm-2.4/giomm/menumodel.h \ + /usr/include/giomm-2.4/giomm/dbusobject.h \ + /usr/include/giomm-2.4/giomm/dbusobjectmanager.h \ + /usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h \ + /usr/include/giomm-2.4/giomm/dbusobjectproxy.h \ + /usr/include/giomm-2.4/giomm/dbusproxy.h \ + /usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h \ + /usr/include/giomm-2.4/giomm/dbusobjectskeleton.h \ + /usr/include/giomm-2.4/giomm/dbusownname.h \ + /usr/include/giomm-2.4/giomm/dbusserver.h \ + /usr/include/giomm-2.4/giomm/dbusutils.h \ + /usr/include/giomm-2.4/giomm/dbuswatchname.h \ + /usr/include/giomm-2.4/giomm/desktopappinfo.h \ + /usr/include/giomm-2.4/giomm/emblem.h \ + /usr/include/giomm-2.4/giomm/emblemedicon.h \ + /usr/include/giomm-2.4/giomm/fileicon.h \ + /usr/include/giomm-2.4/giomm/loadableicon.h \ + /usr/include/giomm-2.4/giomm/filenamecompleter.h \ + /usr/include/giomm-2.4/giomm/inetaddress.h \ + /usr/include/giomm-2.4/giomm/inetsocketaddress.h \ + /usr/include/giomm-2.4/giomm/socketaddress.h \ + /usr/include/giomm-2.4/giomm/socketconnectable.h \ + /usr/include/giomm-2.4/giomm/socketaddressenumerator.h \ + /usr/include/giomm-2.4/giomm/init.h \ + /usr/include/giomm-2.4/giomm/wrap_init.h \ + /usr/include/giomm-2.4/giomm/listmodel.h \ + /usr/include/giomm-2.4/giomm/liststore.h \ + /usr/include/giomm-2.4/giomm/memoryinputstream.h \ + /usr/include/giomm-2.4/giomm/memoryoutputstream.h \ + /usr/include/giomm-2.4/giomm/menu.h \ + /usr/include/giomm-2.4/giomm/menuitem.h \ + /usr/include/giomm-2.4/giomm/menuattributeiter.h \ + /usr/include/giomm-2.4/giomm/menulinkiter.h \ + /usr/include/giomm-2.4/giomm/networkaddress.h \ + /usr/include/giomm-2.4/giomm/networkmonitor.h \ + /usr/include/giomm-2.4/giomm/networkservice.h \ + /usr/include/giomm-2.4/giomm/permission.h \ + /usr/include/giomm-2.4/giomm/proxy.h \ + /usr/include/giomm-2.4/giomm/proxyaddress.h \ + /usr/include/giomm-2.4/giomm/proxyresolver.h \ + /usr/include/giomm-2.4/giomm/resolver.h \ + /usr/include/giomm-2.4/giomm/srvtarget.h \ + /usr/include/giomm-2.4/giomm/resource.h \ + /usr/include/giomm-2.4/giomm/settings.h \ + /usr/include/giomm-2.4/giomm/settingsschema.h \ + /usr/include/giomm-2.4/giomm/settingsschemakey.h \ + /usr/include/giomm-2.4/giomm/settingsschemasource.h \ + /usr/include/giomm-2.4/giomm/simpleactiongroup.h \ + /usr/include/giomm-2.4/giomm/simpleiostream.h \ + /usr/include/giomm-2.4/giomm/simplepermission.h \ + /usr/include/giomm-2.4/giomm/socket.h \ + /usr/include/giomm-2.4/giomm/socketclient.h \ + /usr/include/giomm-2.4/giomm/socketconnection.h \ + /usr/include/giomm-2.4/giomm/socketcontrolmessage.h \ + /usr/include/c++/11.2.0/set /usr/include/c++/11.2.0/bits/stl_set.h \ + /usr/include/c++/11.2.0/bits/stl_multiset.h \ + /usr/include/giomm-2.4/giomm/socketlistener.h \ + /usr/include/giomm-2.4/giomm/socketservice.h \ + /usr/include/giomm-2.4/giomm/socketsource.h \ + /usr/include/giomm-2.4/giomm/tcpconnection.h \ + /usr/include/giomm-2.4/giomm/tcpwrapperconnection.h \ + /usr/include/giomm-2.4/giomm/themedicon.h \ + /usr/include/giomm-2.4/giomm/threadedsocketservice.h \ + /usr/include/giomm-2.4/giomm/tlscertificate.h \ + /usr/include/giomm-2.4/giomm/tlsclientconnection.h \ + /usr/include/giomm-2.4/giomm/tlsconnection.h \ + /usr/include/giomm-2.4/giomm/tlsdatabase.h \ + /usr/include/giomm-2.4/giomm/tlsinteraction.h \ + /usr/include/giomm-2.4/giomm/tlspassword.h \ + /usr/include/giomm-2.4/giomm/tlsserverconnection.h \ + /usr/include/giomm-2.4/giomm/unixconnection.h \ + /usr/include/giomm-2.4/giomm/unixcredentialsmessage.h \ + /usr/include/giomm-2.4/giomm/unixfdmessage.h \ + /usr/include/giomm-2.4/giomm/unixinputstream.h \ + /usr/include/giomm-2.4/giomm/unixoutputstream.h \ + /usr/include/giomm-2.4/giomm/unixsocketaddress.h \ + /usr/include/giomm-2.4/giomm/volume.h \ + /usr/include/giomm-2.4/giomm/volumemonitor.h \ + /usr/include/giomm-2.4/giomm/zlibcompressor.h \ + /usr/include/giomm-2.4/giomm/zlibdecompressor.h \ + /usr/include/gdkmm-3.0/gdkmm/dragcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/color.h \ + /usr/lib/gdkmm-3.0/include/gdkmmconfig.h \ + /usr/lib/pangomm-1.4/include/pangommconfig.h \ + /usr/include/gtk-3.0/gdk/gdk.h /usr/include/gtk-3.0/gdk/gdkconfig.h \ + /usr/include/gtk-3.0/gdk/gdkversionmacros.h \ + /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h \ + /usr/include/gtk-3.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ + /usr/include/pango-1.0/pango/pango-attributes.h \ + /usr/include/pango-1.0/pango/pango-font.h \ + /usr/include/pango-1.0/pango/pango-coverage.h \ + /usr/include/pango-1.0/pango/pango-version-macros.h \ + /usr/include/pango-1.0/pango/pango-features.h /usr/include/harfbuzz/hb.h \ + /usr/include/harfbuzz/hb-blob.h /usr/include/harfbuzz/hb-common.h \ + /usr/include/harfbuzz/hb-buffer.h /usr/include/harfbuzz/hb-unicode.h \ + /usr/include/harfbuzz/hb-font.h /usr/include/harfbuzz/hb-face.h \ + /usr/include/harfbuzz/hb-set.h /usr/include/harfbuzz/hb-draw.h \ + /usr/include/harfbuzz/hb.h /usr/include/harfbuzz/hb-deprecated.h \ + /usr/include/harfbuzz/hb-map.h /usr/include/harfbuzz/hb-shape.h \ + /usr/include/harfbuzz/hb-shape-plan.h /usr/include/harfbuzz/hb-style.h \ + /usr/include/harfbuzz/hb-version.h \ + /usr/include/pango-1.0/pango/pango-types.h \ + /usr/include/pango-1.0/pango/pango-gravity.h \ + /usr/include/pango-1.0/pango/pango-matrix.h \ + /usr/include/pango-1.0/pango/pango-script.h \ + /usr/include/pango-1.0/pango/pango-language.h \ + /usr/include/pango-1.0/pango/pango-bidi-type.h \ + /usr/include/pango-1.0/pango/pango-direction.h \ + /usr/include/pango-1.0/pango/pango-color.h \ + /usr/include/pango-1.0/pango/pango-break.h \ + /usr/include/pango-1.0/pango/pango-item.h \ + /usr/include/pango-1.0/pango/pango-context.h \ + /usr/include/pango-1.0/pango/pango-fontmap.h \ + /usr/include/pango-1.0/pango/pango-fontset.h \ + /usr/include/pango-1.0/pango/pango-engine.h \ + /usr/include/pango-1.0/pango/pango-glyph.h \ + /usr/include/pango-1.0/pango/pango-enum-types.h \ + /usr/include/pango-1.0/pango/pango-fontset-simple.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-layout.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/include/pango-1.0/pango/pango-markup.h \ + /usr/include/pango-1.0/pango/pango-renderer.h \ + /usr/include/pango-1.0/pango/pango-utils.h /usr/include/cairo/cairo.h \ + /usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \ + /usr/include/cairo/cairo-deprecated.h \ + /usr/include/gtk-3.0/gdk/gdkscreen.h \ + /usr/include/gtk-3.0/gdk/gdkdisplay.h \ + /usr/include/gtk-3.0/gdk/gdkevents.h /usr/include/gtk-3.0/gdk/gdkdnd.h \ + /usr/include/gtk-3.0/gdk/gdkdevice.h \ + /usr/include/gtk-3.0/gdk/gdkdevicetool.h \ + /usr/include/gtk-3.0/gdk/gdkdevicemanager.h \ + /usr/include/gtk-3.0/gdk/gdkseat.h /usr/include/gtk-3.0/gdk/gdkwindow.h \ + /usr/include/gtk-3.0/gdk/gdkdrawingcontext.h \ + /usr/include/gtk-3.0/gdk/gdkframeclock.h \ + /usr/include/gtk-3.0/gdk/gdkframetimings.h \ + /usr/include/gtk-3.0/gdk/gdkmonitor.h \ + /usr/include/gtk-3.0/gdk/gdkrectangle.h \ + /usr/include/gtk-3.0/gdk/gdkcairo.h \ + /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h \ + /usr/include/gtk-3.0/gdk/gdkrgba.h /usr/include/gtk-3.0/gdk/gdkpixbuf.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h \ + /usr/include/pango-1.0/pango/pangocairo.h \ + /usr/include/gtk-3.0/gdk/gdkcursor.h \ + /usr/include/gtk-3.0/gdk/gdkdevicepad.h \ + /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h \ + /usr/include/gtk-3.0/gdk/gdkenumtypes.h \ + /usr/include/gtk-3.0/gdk/gdkglcontext.h \ + /usr/include/gtk-3.0/gdk/gdkkeys.h /usr/include/gtk-3.0/gdk/gdkkeysyms.h \ + /usr/include/gtk-3.0/gdk/gdkmain.h /usr/include/gtk-3.0/gdk/gdkpango.h \ + /usr/include/gtk-3.0/gdk/gdkproperty.h \ + /usr/include/gtk-3.0/gdk/gdkselection.h \ + /usr/include/gtk-3.0/gdk/gdktestutils.h \ + /usr/include/gtk-3.0/gdk/gdkthreads.h \ + /usr/include/gtk-3.0/gdk/gdkvisual.h \ + /usr/include/gtk-3.0/gdk/gdk-autocleanup.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbuf.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufformat.h \ + /usr/include/gdkmm-3.0/gdkmm/types.h \ + /usr/include/cairomm-1.0/cairomm/surface.h \ + /usr/include/cairomm-1.0/cairomm/enums.h /usr/include/cairo/cairo-ft.h \ + /usr/include/cairo/cairo.h /usr/include/freetype2/ft2build.h \ + /usr/include/freetype2/freetype/config/ftheader.h \ + /usr/include/freetype2/freetype/freetype.h \ + /usr/include/freetype2/freetype/config/ftconfig.h \ + /usr/include/freetype2/freetype/config/ftoption.h \ + /usr/include/freetype2/freetype/config/ftstdlib.h /usr/include/setjmp.h \ + /usr/include/freetype2/freetype/config/integer-types.h \ + /usr/include/freetype2/freetype/config/public-macros.h \ + /usr/include/freetype2/freetype/config/mac-support.h \ + /usr/include/freetype2/freetype/fttypes.h \ + /usr/include/freetype2/freetype/ftsystem.h \ + /usr/include/freetype2/freetype/ftimage.h \ + /usr/include/freetype2/freetype/fterrors.h \ + /usr/include/freetype2/freetype/ftmoderr.h \ + /usr/include/freetype2/freetype/fterrdef.h \ + /usr/include/fontconfig/fontconfig.h /usr/include/sys/stat.h \ + /usr/include/bits/stat.h /usr/include/bits/struct_stat.h \ + /usr/include/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \ + /usr/include/linux/posix_types.h /usr/include/linux/stddef.h \ + /usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \ + /usr/include/bits/types/struct_statx_timestamp.h \ + /usr/include/bits/types/struct_statx.h \ + /usr/include/cairomm-1.0/cairomm/exception.h \ + /usr/lib/cairomm-1.0/include/cairommconfig.h \ + /usr/include/cairomm-1.0/cairomm/device.h \ + /usr/include/cairomm-1.0/cairomm/types.h \ + /usr/include/cairomm-1.0/cairomm/refptr.h \ + /usr/include/cairomm-1.0/cairomm/fontoptions.h \ + /usr/include/cairo/cairo-pdf.h /usr/include/cairo/cairo-ps.h \ + /usr/include/cairo/cairo-svg.h /usr/include/gdkmm-3.0/gdkmm/device.h \ + /usr/include/gdkmm-3.0/gdkmm/cursor.h \ + /usr/include/gdkmm-3.0/gdkmm/display.h \ + /usr/include/gdkmm-3.0/gdkmm/screen.h \ + /usr/include/gdkmm-3.0/gdkmm/rectangle.h \ + /usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/event.h \ + /usr/include/gdkmm-3.0/gdkmm/timecoord.h /usr/include/gdkmm-3.0/gdkmm.h \ + /usr/include/gdkmm-3.0/gdkmm/visual.h \ + /usr/include/gdkmm-3.0/gdkmm/window.h \ + /usr/include/cairomm-1.0/cairomm/region.h \ + /usr/include/cairomm-1.0/cairomm/pattern.h \ + /usr/include/gdkmm-3.0/gdkmm/rgba.h \ + /usr/include/cairomm-1.0/cairomm/context.h \ + /usr/include/cairomm-1.0/cairomm/fontface.h \ + /usr/include/cairomm-1.0/cairomm/matrix.h \ + /usr/include/cairomm-1.0/cairomm/path.h \ + /usr/include/cairomm-1.0/cairomm/scaledfont.h \ + /usr/include/c++/11.2.0/valarray /usr/include/c++/11.2.0/cmath \ + /usr/include/math.h /usr/include/bits/math-vector.h \ + /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/11.2.0/bits/specfun.h \ + /usr/include/c++/11.2.0/tr1/gamma.tcc \ + /usr/include/c++/11.2.0/tr1/special_function_util.h \ + /usr/include/c++/11.2.0/tr1/bessel_function.tcc \ + /usr/include/c++/11.2.0/tr1/beta_function.tcc \ + /usr/include/c++/11.2.0/tr1/ell_integral.tcc \ + /usr/include/c++/11.2.0/tr1/exp_integral.tcc \ + /usr/include/c++/11.2.0/tr1/hypergeometric.tcc \ + /usr/include/c++/11.2.0/tr1/legendre_function.tcc \ + /usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc \ + /usr/include/c++/11.2.0/tr1/poly_hermite.tcc \ + /usr/include/c++/11.2.0/tr1/poly_laguerre.tcc \ + /usr/include/c++/11.2.0/tr1/riemann_zeta.tcc \ + /usr/include/c++/11.2.0/bits/valarray_array.h \ + /usr/include/c++/11.2.0/bits/valarray_array.tcc \ + /usr/include/c++/11.2.0/bits/valarray_before.h \ + /usr/include/c++/11.2.0/bits/slice_array.h \ + /usr/include/c++/11.2.0/bits/valarray_after.h \ + /usr/include/c++/11.2.0/bits/gslice.h \ + /usr/include/c++/11.2.0/bits/gslice_array.h \ + /usr/include/c++/11.2.0/bits/mask_array.h \ + /usr/include/c++/11.2.0/bits/indirect_array.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufloader.h \ + /usr/include/gdkmm-3.0/gdkmm/drawingcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/frameclock.h \ + /usr/include/gdkmm-3.0/gdkmm/frametimings.h \ + /usr/include/gdkmm-3.0/gdkmm/glcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/displaymanager.h \ + /usr/include/gdkmm-3.0/gdkmm/devicemanager.h \ + /usr/include/gdkmm-3.0/gdkmm/seat.h \ + /usr/include/gdkmm-3.0/gdkmm/monitor.h \ + /usr/include/gdkmm-3.0/gdkmm/general.h \ + /usr/include/gtkmm-3.0/gtkmm/toggleaction.h \ + /usr/include/gtkmm-3.0/gtkmm/action.h \ + /usr/lib/gtkmm-3.0/include/gtkmmconfig.h \ + /usr/include/gtkmm-3.0/gtkmm/widget.h \ + /usr/include/pangomm-1.4/pangomm/context.h \ + /usr/include/pangomm-1.4/pangomm/fontdescription.h \ + /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ + /usr/include/pangomm-1.4/pangomm/fontset.h \ + /usr/include/pangomm-1.4/pangomm/language.h \ + /usr/include/pangomm-1.4/pangomm/font.h \ + /usr/include/pangomm-1.4/pangomm/rectangle.h \ + /usr/include/pangomm-1.4/pangomm/glyph.h \ + /usr/include/pangomm-1.4/pangomm/coverage.h \ + /usr/include/pangomm-1.4/pangomm/fontmap.h \ + /usr/include/pangomm-1.4/pangomm/fontfamily.h \ + /usr/include/pangomm-1.4/pangomm/fontface.h \ + /usr/include/pangomm-1.4/pangomm/item.h \ + /usr/include/pangomm-1.4/pangomm/attributes.h \ + /usr/include/pangomm-1.4/pangomm/color.h \ + /usr/include/pangomm-1.4/pangomm/attrlist.h \ + /usr/include/pangomm-1.4/pangomm/attriter.h \ + /usr/include/pangomm-1.4/pangomm/types.h \ + /usr/include/pangomm-1.4/pangomm/layout.h \ + /usr/include/pangomm-1.4/pangomm/tabarray.h \ + /usr/include/pangomm-1.4/pangomm/layoutline.h \ + /usr/include/pangomm-1.4/pangomm/layoutiter.h \ + /usr/include/pangomm-1.4/pangomm/layoutrun.h \ + /usr/include/atkmm-1.6/atkmm/object.h \ + /usr/include/atkmm-1.6/atkmm/component.h \ + /usr/lib/atkmm-1.6/include/atkmmconfig.h \ + /usr/include/atkmm-1.6/atkmm/relation.h \ + /usr/include/atkmm-1.6/atkmm/implementor.h \ + /usr/include/gtkmm-3.0/gtkmm/object.h \ + /usr/include/gtkmm-3.0/gtkmm/base.h \ + /usr/include/gtkmm-3.0/gtkmm/buildable.h \ + /usr/include/gtkmm-3.0/gtkmm/enums.h /usr/include/gtk-3.0/gtk/gtk.h \ + /usr/include/gtk-3.0/gtk/gtkaboutdialog.h \ + /usr/include/gtk-3.0/gtk/gtkdialog.h \ + /usr/include/gtk-3.0/gtk/gtkwindow.h \ + /usr/include/gtk-3.0/gtk/gtkapplication.h \ + /usr/include/gtk-3.0/gtk/gtkwidget.h \ + /usr/include/gtk-3.0/gtk/gtkaccelgroup.h \ + /usr/include/gtk-3.0/gtk/gtkenums.h /usr/include/gtk-3.0/gtk/gtkborder.h \ + /usr/include/gtk-3.0/gtk/gtktypes.h /usr/include/atk-1.0/atk/atk.h \ + /usr/include/atk-1.0/atk/atkobject.h \ + /usr/include/atk-1.0/atk/atkversion.h \ + /usr/include/atk-1.0/atk/atkstate.h \ + /usr/include/atk-1.0/atk/atkrelationtype.h \ + /usr/include/atk-1.0/atk/atkaction.h \ + /usr/include/atk-1.0/atk/atkcomponent.h \ + /usr/include/atk-1.0/atk/atkutil.h \ + /usr/include/atk-1.0/atk/atkdocument.h \ + /usr/include/atk-1.0/atk/atkeditabletext.h \ + /usr/include/atk-1.0/atk/atktext.h \ + /usr/include/atk-1.0/atk/atk-enum-types.h \ + /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ + /usr/include/atk-1.0/atk/atkhyperlink.h \ + /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ + /usr/include/atk-1.0/atk/atkhypertext.h \ + /usr/include/atk-1.0/atk/atkimage.h \ + /usr/include/atk-1.0/atk/atknoopobject.h \ + /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ + /usr/include/atk-1.0/atk/atkobjectfactory.h \ + /usr/include/atk-1.0/atk/atkplug.h /usr/include/atk-1.0/atk/atkrange.h \ + /usr/include/atk-1.0/atk/atkregistry.h \ + /usr/include/atk-1.0/atk/atkobjectfactory.h \ + /usr/include/atk-1.0/atk/atkrelation.h \ + /usr/include/atk-1.0/atk/atkrelationset.h \ + /usr/include/atk-1.0/atk/atkselection.h \ + /usr/include/atk-1.0/atk/atksocket.h \ + /usr/include/atk-1.0/atk/atkstateset.h \ + /usr/include/atk-1.0/atk/atkstreamablecontent.h \ + /usr/include/atk-1.0/atk/atktable.h \ + /usr/include/atk-1.0/atk/atktablecell.h \ + /usr/include/atk-1.0/atk/atkmisc.h /usr/include/atk-1.0/atk/atkvalue.h \ + /usr/include/atk-1.0/atk/atkwindow.h \ + /usr/include/atk-1.0/atk/atk-autocleanups.h \ + /usr/include/gtk-3.0/gtk/gtkbin.h \ + /usr/include/gtk-3.0/gtk/gtkcontainer.h \ + /usr/include/gtk-3.0/gtk/gtkaccellabel.h \ + /usr/include/gtk-3.0/gtk/gtklabel.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h \ + /usr/include/gtk-3.0/gtk/gtkmenu.h \ + /usr/include/gtk-3.0/gtk/gtkmenushell.h \ + /usr/include/gtk-3.0/gtk/gtkaccelmap.h \ + /usr/include/gtk-3.0/gtk/gtkaccessible.h \ + /usr/include/gtk-3.0/gtk/gtkactionable.h \ + /usr/include/gtk-3.0/gtk/gtkactionbar.h \ + /usr/include/gtk-3.0/gtk/gtkadjustment.h \ + /usr/include/gtk-3.0/gtk/gtkappchooser.h \ + /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkbox.h \ + /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h \ + /usr/include/gtk-3.0/gtk/gtkcombobox.h \ + /usr/include/gtk-3.0/gtk/gtktreemodel.h \ + /usr/include/gtk-3.0/gtk/gtktreeview.h \ + /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderer.h \ + /usr/include/gtk-3.0/gtk/gtkcelleditable.h \ + /usr/include/gtk-3.0/gtk/gtktreesortable.h \ + /usr/include/gtk-3.0/gtk/gtkcellarea.h /usr/include/gtk-3.0/gtk/gtkdnd.h \ + /usr/include/gtk-3.0/gtk/gtkselection.h \ + /usr/include/gtk-3.0/gtk/gtktextiter.h \ + /usr/include/gtk-3.0/gtk/gtktextattributes.h \ + /usr/include/gtk-3.0/gtk/gtktextchild.h \ + /usr/include/gtk-3.0/gtk/gtktexttag.h \ + /usr/include/gtk-3.0/gtk/gtkentry.h \ + /usr/include/gtk-3.0/gtk/gtkeditable.h \ + /usr/include/gtk-3.0/gtk/gtkimcontext.h \ + /usr/include/gtk-3.0/gtk/gtkentrybuffer.h \ + /usr/include/gtk-3.0/gtk/gtkentrycompletion.h \ + /usr/include/gtk-3.0/gtk/gtkliststore.h \ + /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h \ + /usr/include/gtk-3.0/gtk/gtkimage.h \ + /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutswindow.h \ + /usr/include/gtk-3.0/gtk/gtkaspectframe.h \ + /usr/include/gtk-3.0/gtk/gtkframe.h \ + /usr/include/gtk-3.0/gtk/gtkassistant.h \ + /usr/include/gtk-3.0/gtk/gtkbbox.h \ + /usr/include/gtk-3.0/gtk/gtkbindings.h \ + /usr/include/gtk-3.0/gtk/gtkbuildable.h \ + /usr/include/gtk-3.0/gtk/gtkbuilder.h \ + /usr/include/gtk-3.0/gtk/gtkbutton.h \ + /usr/include/gtk-3.0/gtk/gtkcalendar.h \ + /usr/include/gtk-3.0/gtk/gtkcellareabox.h \ + /usr/include/gtk-3.0/gtk/gtkcellareacontext.h \ + /usr/include/gtk-3.0/gtk/gtkcelllayout.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h \ + /usr/include/gtk-3.0/gtk/gtkcellview.h \ + /usr/include/gtk-3.0/gtk/gtkcheckbutton.h \ + /usr/include/gtk-3.0/gtk/gtktogglebutton.h \ + /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkmenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkclipboard.h \ + /usr/include/gtk-3.0/gtk/gtkcolorbutton.h \ + /usr/include/gtk-3.0/gtk/gtkcolorchooser.h \ + /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkcolorutils.h \ + /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h \ + /usr/include/gtk-3.0/gtk/gtkcssprovider.h \ + /usr/include/gtk-3.0/gtk/gtkcsssection.h \ + /usr/include/gtk-3.0/gtk/gtkdebug.h \ + /usr/include/gtk-3.0/gtk/gtkdragdest.h \ + /usr/include/gtk-3.0/gtk/gtkdragsource.h \ + /usr/include/gtk-3.0/gtk/gtkdrawingarea.h \ + /usr/include/gtk-3.0/gtk/gtkeventbox.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontroller.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h \ + /usr/include/gtk-3.0/gtk/gtkexpander.h \ + /usr/include/gtk-3.0/gtk/gtkfixed.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooser.h \ + /usr/include/gtk-3.0/gtk/gtkfilefilter.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkfilechoosernative.h \ + /usr/include/gtk-3.0/gtk/gtknativedialog.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkflowbox.h \ + /usr/include/gtk-3.0/gtk/gtkfontbutton.h \ + /usr/include/gtk-3.0/gtk/gtkfontchooser.h \ + /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkgesture.h \ + /usr/include/gtk-3.0/gtk/gtkgesturedrag.h \ + /usr/include/gtk-3.0/gtk/gtkgesturesingle.h \ + /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h \ + /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h \ + /usr/include/gtk-3.0/gtk/gtkgesturepan.h \ + /usr/include/gtk-3.0/gtk/gtkgesturerotate.h \ + /usr/include/gtk-3.0/gtk/gtkgesturestylus.h \ + /usr/include/gtk-3.0/gtk/gtkgestureswipe.h \ + /usr/include/gtk-3.0/gtk/gtkgesturezoom.h \ + /usr/include/gtk-3.0/gtk/gtkglarea.h /usr/include/gtk-3.0/gtk/gtkgrid.h \ + /usr/include/gtk-3.0/gtk/gtkheaderbar.h \ + /usr/include/gtk-3.0/gtk/gtkicontheme.h \ + /usr/include/gtk-3.0/gtk/gtkstylecontext.h \ + /usr/include/gtk-3.0/gtk/gtkstyleprovider.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h \ + /usr/include/gtk-3.0/gtk/gtkiconview.h \ + /usr/include/gtk-3.0/gtk/gtktooltip.h \ + /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h \ + /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h \ + /usr/include/gtk-3.0/gtk/gtkimmulticontext.h \ + /usr/include/gtk-3.0/gtk/gtkinfobar.h \ + /usr/include/gtk-3.0/gtk/gtkinvisible.h \ + /usr/include/gtk-3.0/gtk/gtklayout.h \ + /usr/include/gtk-3.0/gtk/gtklevelbar.h \ + /usr/include/gtk-3.0/gtk/gtklinkbutton.h \ + /usr/include/gtk-3.0/gtk/gtklistbox.h \ + /usr/include/gtk-3.0/gtk/gtklockbutton.h \ + /usr/include/gtk-3.0/gtk/gtkmain.h /usr/include/gtk-3.0/gtk/gtkmenubar.h \ + /usr/include/gtk-3.0/gtk/gtkmenubutton.h \ + /usr/include/gtk-3.0/gtk/gtkpopover.h \ + /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtktoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtktoolitem.h \ + /usr/include/gtk-3.0/gtk/gtksizegroup.h \ + /usr/include/gtk-3.0/gtk/gtkmessagedialog.h \ + /usr/include/gtk-3.0/gtk/gtkmodelbutton.h \ + /usr/include/gtk-3.0/gtk/gtkmodules.h \ + /usr/include/gtk-3.0/gtk/gtkmountoperation.h \ + /usr/include/gtk-3.0/gtk/gtknotebook.h \ + /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h \ + /usr/include/gtk-3.0/gtk/gtkorientable.h \ + /usr/include/gtk-3.0/gtk/gtkoverlay.h \ + /usr/include/gtk-3.0/gtk/gtkpadcontroller.h \ + /usr/include/gtk-3.0/gtk/gtkpagesetup.h \ + /usr/include/gtk-3.0/gtk/gtkpapersize.h \ + /usr/include/gtk-3.0/gtk/gtkpaned.h \ + /usr/include/gtk-3.0/gtk/gtkplacessidebar.h \ + /usr/include/gtk-3.0/gtk/gtkpopovermenu.h \ + /usr/include/gtk-3.0/gtk/gtkprintcontext.h \ + /usr/include/gtk-3.0/gtk/gtkprintoperation.h \ + /usr/include/gtk-3.0/gtk/gtkprintsettings.h \ + /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h \ + /usr/include/gtk-3.0/gtk/gtkprogressbar.h \ + /usr/include/gtk-3.0/gtk/gtkradiobutton.h \ + /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtkrange.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchooser.h \ + /usr/include/gtk-3.0/gtk/gtkrecentmanager.h \ + /usr/include/gtk-3.0/gtk/gtkrecentfilter.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkrender.h \ + /usr/include/gtk-3.0/gtk/gtkrevealer.h \ + /usr/include/gtk-3.0/gtk/gtkscale.h \ + /usr/include/gtk-3.0/gtk/gtkscalebutton.h \ + /usr/include/gtk-3.0/gtk/gtkscrollable.h \ + /usr/include/gtk-3.0/gtk/gtkscrollbar.h \ + /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h \ + /usr/include/gtk-3.0/gtk/gtksearchbar.h \ + /usr/include/gtk-3.0/gtk/gtksearchentry.h \ + /usr/include/gtk-3.0/gtk/gtkseparator.h \ + /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h \ + /usr/include/gtk-3.0/gtk/gtksettings.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutlabel.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutssection.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h \ + /usr/include/gtk-3.0/gtk/gtkshow.h \ + /usr/include/gtk-3.0/gtk/gtkstacksidebar.h \ + /usr/include/gtk-3.0/gtk/gtkstack.h \ + /usr/include/gtk-3.0/gtk/gtksizerequest.h \ + /usr/include/gtk-3.0/gtk/gtkspinbutton.h \ + /usr/include/gtk-3.0/gtk/gtkspinner.h \ + /usr/include/gtk-3.0/gtk/gtkstackswitcher.h \ + /usr/include/gtk-3.0/gtk/gtkstatusbar.h \ + /usr/include/gtk-3.0/gtk/gtkswitch.h \ + /usr/include/gtk-3.0/gtk/gtktextbuffer.h \ + /usr/include/gtk-3.0/gtk/gtktexttagtable.h \ + /usr/include/gtk-3.0/gtk/gtktextmark.h \ + /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h \ + /usr/include/gtk-3.0/gtk/gtktextview.h \ + /usr/include/gtk-3.0/gtk/gtktoolbar.h \ + /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h \ + /usr/include/gtk-3.0/gtk/gtktoolpalette.h \ + /usr/include/gtk-3.0/gtk/gtktoolshell.h \ + /usr/include/gtk-3.0/gtk/gtktestutils.h \ + /usr/include/gtk-3.0/gtk/gtktreednd.h \ + /usr/include/gtk-3.0/gtk/gtktreemodelsort.h \ + /usr/include/gtk-3.0/gtk/gtktreeselection.h \ + /usr/include/gtk-3.0/gtk/gtktreestore.h \ + /usr/include/gtk-3.0/gtk/gtktypebuiltins.h \ + /usr/include/gtk-3.0/gtk/gtkversion.h \ + /usr/include/gtk-3.0/gtk/gtkviewport.h \ + /usr/include/gtk-3.0/gtk/gtkvolumebutton.h \ + /usr/include/gtk-3.0/gtk/gtkwidgetpath.h \ + /usr/include/gtk-3.0/gtk/gtkwindowgroup.h \ + /usr/include/gtk-3.0/gtk/gtkwindow.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtktable.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h \ + /usr/include/gtk-3.0/gtk/gtk-autocleanups.h \ + /usr/include/gtkmm-3.0/gtkmm/targetlist.h \ + /usr/include/gtkmm-3.0/gtkmm/targetentry.h \ + /usr/include/gtkmm-3.0/gtkmm/clipboard.h \ + /usr/include/gtkmm-3.0/gtkmm/selectiondata.h \ + /usr/include/gtkmm-3.0/gtkmm/requisition.h \ + /usr/include/gtkmm-3.0/gtkmm/stylecontext.h \ + /usr/include/gtkmm-3.0/gtkmm/styleprovider.h \ + /usr/include/gtkmm-3.0/gtkmm/border.h \ + /usr/include/gtkmm-3.0/gtkmm/iconsource.h \ + /usr/include/gtkmm-3.0/gtkmm/iconset.h \ + /usr/include/gtkmm-3.0/gtkmm/stockid.h \ + /usr/include/gtkmm-3.0/gtkmm/widgetpath.h \ + /usr/include/gtkmm-3.0/gtkmm/accelgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/radioaction.h \ + /usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h \ + /usr/include/gtkmm-3.0/gtkmm/aboutdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/dialog.h \ + /usr/include/gtkmm-3.0/gtkmm/window.h /usr/include/gtkmm-3.0/gtkmm/bin.h \ + /usr/include/gtkmm-3.0/gtkmm/container.h \ + /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h \ + /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h \ + /usr/include/gtkmm-3.0/gtkmm/application.h \ + /usr/include/gtkmm-3.0/gtkmm/actiongroup.h \ + /usr/include/gtkmm-3.0/gtkmm/accelkey.h \ + /usr/include/gtkmm-3.0/gtkmm/windowgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/box.h \ + /usr/include/gtkmm-3.0/gtkmm/orientable.h \ + /usr/include/gtkmm-3.0/gtkmm/hvbox.h \ + /usr/include/gtkmm-3.0/gtkmm/button.h \ + /usr/include/gtkmm-3.0/gtkmm/activatable.h \ + /usr/include/gtkmm-3.0/gtkmm/buttonbox.h \ + /usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h \ + /usr/include/gtkmm-3.0/gtkmm/headerbar.h \ + /usr/include/gtkmm-3.0/gtkmm/accelmap.h \ + /usr/include/gtkmm-3.0/gtkmm/actionable.h \ + /usr/include/gtkmm-3.0/gtkmm/actionbar.h \ + /usr/include/gtkmm-3.0/gtkmm/adjustment.h \ + /usr/include/gtkmm-3.0/gtkmm/alignment.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/combobox.h \ + /usr/include/gtkmm-3.0/gtkmm/celllayout.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderer.h \ + /usr/include/gtkmm-3.0/gtkmm/celleditable.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodel.h \ + /usr/include/gtkmm-3.0/gtkmm/treeiter.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h \ + /usr/include/gtkmm-3.0/gtkmm/cellarea.h \ + /usr/include/gtkmm-3.0/gtkmm/cellareacontext.h \ + /usr/include/gtkmm-3.0/gtkmm/treeview.h \ + /usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h \ + /usr/include/gtkmm-3.0/gtkmm/treeselection.h \ + /usr/include/gtkmm-3.0/gtkmm/treepath.h \ + /usr/include/gtkmm-3.0/gtkmm/scrollable.h \ + /usr/include/gtkmm-3.0/gtkmm/entry.h \ + /usr/include/gtkmm-3.0/gtkmm/editable.h \ + /usr/include/gtkmm-3.0/gtkmm/menu.h \ + /usr/include/gtkmm-3.0/gtkmm/menushell.h \ + /usr/include/gtkmm-3.0/gtkmm/menuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/accellabel.h \ + /usr/include/gtkmm-3.0/gtkmm/label.h /usr/include/gtkmm-3.0/gtkmm/misc.h \ + /usr/include/gtkmm-3.0/gtkmm/entrycompletion.h \ + /usr/include/gtkmm-3.0/gtkmm/image.h \ + /usr/include/gtkmm-3.0/gtkmm/entrybuffer.h \ + /usr/include/gtkmm-3.0/gtkmm/tooltip.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/applicationwindow.h \ + /usr/include/gtkmm-3.0/gtkmm/arrow.h \ + /usr/include/gtkmm-3.0/gtkmm/aspectframe.h \ + /usr/include/gtkmm-3.0/gtkmm/frame.h \ + /usr/include/gtkmm-3.0/gtkmm/assistant.h \ + /usr/include/gtkmm-3.0/gtkmm/builder.h \ + /usr/include/gtkmm-3.0/gtkmm/cellareabox.h \ + /usr/include/gtkmm-3.0/gtkmm/cellview.h \ + /usr/include/gtkmm-3.0/gtkmm/checkbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/togglebutton.h \ + /usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h \ + /usr/include/gtkmm-3.0/gtkmm/colorbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/colorchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/colorselection.h \ + /usr/include/gtkmm-3.0/gtkmm/comboboxtext.h \ + /usr/include/gtkmm-3.0/gtkmm/cssprovider.h \ + /usr/include/gtkmm-3.0/gtkmm/csssection.h \ + /usr/include/gtkmm-3.0/gtkmm/drawingarea.h \ + /usr/include/gtkmm-3.0/gtkmm/expander.h \ + /usr/include/gtkmm-3.0/gtkmm/eventbox.h \ + /usr/include/gtkmm-3.0/gtkmm/eventcontroller.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooser.h \ + /usr/include/gtkmm-3.0/gtkmm/filefilter.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/filechoosernative.h \ + /usr/include/gtkmm-3.0/gtkmm/nativedialog.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/fixed.h \ + /usr/include/gtkmm-3.0/gtkmm/flowbox.h \ + /usr/include/gtkmm-3.0/gtkmm/flowboxchild.h \ + /usr/include/gtkmm-3.0/gtkmm/fontbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/fontchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/fontselection.h \ + /usr/include/gtkmm-3.0/gtkmm/gesture.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturedrag.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturesingle.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturepan.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturerotate.h \ + /usr/include/gtkmm-3.0/gtkmm/gestureswipe.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturezoom.h \ + /usr/include/gtkmm-3.0/gtkmm/glarea.h \ + /usr/include/gtkmm-3.0/gtkmm/grid.h \ + /usr/include/gtkmm-3.0/gtkmm/handlebox.h \ + /usr/include/gtkmm-3.0/gtkmm/hvpaned.h \ + /usr/include/gtkmm-3.0/gtkmm/paned.h \ + /usr/include/gtkmm-3.0/gtkmm/hvscale.h \ + /usr/include/gtkmm-3.0/gtkmm/scale.h \ + /usr/include/gtkmm-3.0/gtkmm/range.h \ + /usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h \ + /usr/include/gtkmm-3.0/gtkmm/scrollbar.h \ + /usr/include/gtkmm-3.0/gtkmm/hvseparator.h \ + /usr/include/gtkmm-3.0/gtkmm/separator.h \ + /usr/include/gtkmm-3.0/gtkmm/iconfactory.h \ + /usr/include/gtkmm-3.0/gtkmm/icontheme.h \ + /usr/include/gtkmm-3.0/gtkmm/iconinfo.h \ + /usr/include/gtkmm-3.0/gtkmm/iconview.h \ + /usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/infobar.h \ + /usr/include/gtkmm-3.0/gtkmm/calendar.h \ + /usr/include/gtkmm-3.0/gtkmm/invisible.h \ + /usr/include/gtkmm-3.0/gtkmm/layout.h \ + /usr/include/gtkmm-3.0/gtkmm/levelbar.h \ + /usr/include/gtkmm-3.0/gtkmm/listbox.h \ + /usr/include/gtkmm-3.0/gtkmm/listboxrow.h \ + /usr/include/gtkmm-3.0/gtkmm/liststore.h \ + /usr/include/gtkmm-3.0/gtkmm/treesortable.h \ + /usr/include/gtkmm-3.0/gtkmm/treedragdest.h \ + /usr/include/gtkmm-3.0/gtkmm/treedragsource.h \ + /usr/include/gtkmm-3.0/gtkmm/listviewtext.h \ + /usr/include/gtkmm-3.0/gtkmm/linkbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/main.h \ + /usr/include/gtkmm-3.0/gtkmm/menubar.h \ + /usr/include/gtkmm-3.0/gtkmm/menubutton.h \ + /usr/include/gtkmm-3.0/gtkmm/popover.h \ + /usr/include/gtkmm-3.0/gtkmm/messagedialog.h \ + /usr/include/gtkmm-3.0/gtkmm/modelbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/notebook.h \ + /usr/include/gtkmm-3.0/gtkmm/numerableicon.h \ + /usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h \ + /usr/include/gtkmm-3.0/gtkmm/overlay.h \ + /usr/include/gtkmm-3.0/gtkmm/pagesetup.h \ + /usr/include/gtkmm-3.0/gtkmm/papersize.h \ + /usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/printsettings.h \ + /usr/include/gtkmm-3.0/gtkmm/placessidebar.h \ + /usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h \ + /usr/include/gtkmm-3.0/gtkmm/popovermenu.h \ + /usr/include/gtkmm-3.0/gtkmm/printcontext.h \ + /usr/include/gtkmm-3.0/gtkmm/printer.h \ + /usr/include/gtkmm-3.0/gtkmm/printjob.h \ + /usr/include/gtkmm-3.0/gtkmm/printoperation.h \ + /usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h \ + /usr/include/gtkmm-3.0/gtkmm/printunixdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/progressbar.h \ + /usr/include/gtkmm-3.0/gtkmm/radiobutton.h \ + /usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/toolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/toolitem.h \ + /usr/include/gtkmm-3.0/gtkmm/sizegroup.h \ + /usr/include/gtkmm-3.0/gtkmm/recentaction.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/recentinfo.h \ + /usr/include/gtkmm-3.0/gtkmm/recentfilter.h \ + /usr/include/gtkmm-3.0/gtkmm/recentmanager.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/revealer.h \ + /usr/include/gtkmm-3.0/gtkmm/scalebutton.h \ + /usr/include/gtkmm-3.0/gtkmm/searchbar.h \ + /usr/include/gtkmm-3.0/gtkmm/searchentry.h \ + /usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h \ + /usr/include/gtkmm-3.0/gtkmm/settings.h \ + /usr/include/gtkmm-3.0/gtkmm/toolbar.h \ + /usr/include/gtkmm-3.0/gtkmm/toolshell.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutssection.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h \ + /usr/include/gtkmm-3.0/gtkmm/spinbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/spinner.h \ + /usr/include/gtkmm-3.0/gtkmm/stack.h \ + /usr/include/gtkmm-3.0/gtkmm/stacksidebar.h \ + /usr/include/gtkmm-3.0/gtkmm/stackswitcher.h \ + /usr/include/gtkmm-3.0/gtkmm/statusbar.h \ + /usr/include/gtkmm-3.0/gtkmm/statusicon.h \ + /usr/include/gtkmm-3.0/gtkmm/stock.h \ + /usr/include/gtkmm-3.0/gtkmm/stockitem.h \ + /usr/include/gtkmm-3.0/gtkmm/styleproperty.h \ + /usr/include/gtkmm-3.0/gtkmm/switch.h \ + /usr/include/gtkmm-3.0/gtkmm/table.h \ + /usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/textbuffer.h \ + /usr/include/gtkmm-3.0/gtkmm/texttagtable.h \ + /usr/include/gtkmm-3.0/gtkmm/texttag.h \ + /usr/include/gtkmm-3.0/gtkmm/textchildanchor.h \ + /usr/include/gtkmm-3.0/gtkmm/textmark.h \ + /usr/include/gtkmm-3.0/gtkmm/textiter.h \ + /usr/include/gtkmm-3.0/gtkmm/textattributes.h \ + /usr/include/gtkmm-3.0/gtkmm/textview.h \ + /usr/include/gtkmm-3.0/gtkmm/toolpalette.h \ + /usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodelsort.h \ + /usr/include/gtkmm-3.0/gtkmm/treerowreference.h \ + /usr/include/gtkmm-3.0/gtkmm/treestore.h \ + /usr/include/gtkmm-3.0/gtkmm/uimanager.h \ + /usr/include/gtkmm-3.0/gtkmm/viewport.h \ + /usr/include/gtkmm-3.0/gtkmm/volumebutton.h \ + /usr/include/c++/11.2.0/fstream /usr/include/c++/11.2.0/bits/codecvt.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h \ + /usr/include/c++/11.2.0/bits/fstream.tcc /usr/include/libintl.h \ + /usr/include/gtkmm-3.0/gtkmm/plug.h /usr/include/gtk-3.0/gtk/gtkx.h \ + /usr/include/gtk-3.0/gtk/gtksocket.h /usr/include/gtk-3.0/gdk/gdkx.h \ + /usr/include/X11/Xlib.h /usr/include/X11/X.h \ + /usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \ + /usr/include/X11/Xutil.h /usr/include/X11/keysym.h \ + /usr/include/X11/keysymdef.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11device.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11display.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11property.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11window.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h \ + /usr/include/gtk-3.0/gtk/gtkplug.h \ + /usr/include/gtk-3.0/gtk/gtkx-autocleanups.h /usr/include/pwd.h \ + /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h \ + /usr/include/c++/11.2.0/filesystem /usr/include/c++/11.2.0/bits/fs_fwd.h \ + /usr/include/c++/11.2.0/bits/fs_path.h /usr/include/c++/11.2.0/locale \ + /usr/include/c++/11.2.0/bits/locale_facets_nonio.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11.2.0/bits/locale_conv.h \ + /usr/include/c++/11.2.0/iomanip \ + /usr/include/c++/11.2.0/bits/quoted_string.h \ + /usr/include/c++/11.2.0/codecvt /usr/include/c++/11.2.0/bits/fs_dir.h \ + /usr/include/c++/11.2.0/bits/fs_ops.h diff --git a/compile/CMakeFiles/ublexec.dir/progress.make b/compile/CMakeFiles/ublexec.dir/progress.make new file mode 100644 index 0000000..6a9dc74 --- /dev/null +++ b/compile/CMakeFiles/ublexec.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 + diff --git a/compile/CMakeFiles/ublexec.dir/ublexec.cc.o.d b/compile/CMakeFiles/ublexec.dir/ublexec.cc.o.d new file mode 100644 index 0000000..28b346d --- /dev/null +++ b/compile/CMakeFiles/ublexec.dir/ublexec.cc.o.d @@ -0,0 +1,1490 @@ +CMakeFiles/ublexec.dir/ublexec.cc.o: \ + /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc \ + /usr/include/stdc-predef.h /usr/include/c++/11.2.0/cstddef \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/11.2.0/pstl/pstl_config.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \ + /usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/libc-header-start.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \ + /usr/include/bits/floatn-common.h /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/__locale_t.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \ + /usr/include/c++/11.2.0/bits/std_abs.h /usr/include/c++/11.2.0/iostream \ + /usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \ + /usr/include/c++/11.2.0/iosfwd /usr/include/c++/11.2.0/bits/stringfwd.h \ + /usr/include/c++/11.2.0/bits/memoryfwd.h \ + /usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \ + /usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/c++/11.2.0/exception \ + /usr/include/c++/11.2.0/bits/exception.h \ + /usr/include/c++/11.2.0/bits/exception_ptr.h \ + /usr/include/c++/11.2.0/bits/exception_defines.h \ + /usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \ + /usr/include/c++/11.2.0/typeinfo \ + /usr/include/c++/11.2.0/bits/hash_bytes.h /usr/include/c++/11.2.0/new \ + /usr/include/c++/11.2.0/bits/nested_exception.h \ + /usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \ + /usr/include/c++/11.2.0/bits/char_traits.h \ + /usr/include/c++/11.2.0/bits/stl_algobase.h \ + /usr/include/c++/11.2.0/bits/functexcept.h \ + /usr/include/c++/11.2.0/bits/cpp_type_traits.h \ + /usr/include/c++/11.2.0/ext/type_traits.h \ + /usr/include/c++/11.2.0/ext/numeric_traits.h \ + /usr/include/c++/11.2.0/bits/stl_pair.h \ + /usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \ + /usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11.2.0/bits/concept_check.h \ + /usr/include/c++/11.2.0/debug/assertions.h \ + /usr/include/c++/11.2.0/bits/stl_iterator.h \ + /usr/include/c++/11.2.0/bits/ptr_traits.h \ + /usr/include/c++/11.2.0/debug/debug.h \ + /usr/include/c++/11.2.0/bits/predefined_ops.h \ + /usr/include/c++/11.2.0/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/stdint-uintn.h \ + /usr/include/c++/11.2.0/bits/localefwd.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/11.2.0/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/11.2.0/cctype \ + /usr/include/ctype.h /usr/include/c++/11.2.0/bits/ios_base.h \ + /usr/include/c++/11.2.0/ext/atomicity.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/11.2.0/bits/locale_classes.h \ + /usr/include/c++/11.2.0/string /usr/include/c++/11.2.0/bits/allocator.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/11.2.0/ext/new_allocator.h \ + /usr/include/c++/11.2.0/bits/ostream_insert.h \ + /usr/include/c++/11.2.0/bits/cxxabi_forced.h \ + /usr/include/c++/11.2.0/bits/stl_function.h \ + /usr/include/c++/11.2.0/backward/binders.h \ + /usr/include/c++/11.2.0/bits/range_access.h \ + /usr/include/c++/11.2.0/initializer_list \ + /usr/include/c++/11.2.0/bits/basic_string.h \ + /usr/include/c++/11.2.0/ext/alloc_traits.h \ + /usr/include/c++/11.2.0/bits/alloc_traits.h \ + /usr/include/c++/11.2.0/bits/stl_construct.h \ + /usr/include/c++/11.2.0/string_view \ + /usr/include/c++/11.2.0/bits/functional_hash.h \ + /usr/include/c++/11.2.0/bits/string_view.tcc \ + /usr/include/c++/11.2.0/ext/string_conversions.h \ + /usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + /usr/include/c++/11.2.0/cerrno /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \ + /usr/include/c++/11.2.0/bits/charconv.h \ + /usr/include/c++/11.2.0/bits/basic_string.tcc \ + /usr/include/c++/11.2.0/bits/locale_classes.tcc \ + /usr/include/c++/11.2.0/system_error \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \ + /usr/include/c++/11.2.0/bits/streambuf.tcc \ + /usr/include/c++/11.2.0/bits/basic_ios.h \ + /usr/include/c++/11.2.0/bits/locale_facets.h \ + /usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/11.2.0/bits/streambuf_iterator.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/11.2.0/bits/locale_facets.tcc \ + /usr/include/c++/11.2.0/bits/basic_ios.tcc \ + /usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/istream \ + /usr/include/c++/11.2.0/bits/istream.tcc /usr/include/c++/11.2.0/memory \ + /usr/include/c++/11.2.0/bits/stl_uninitialized.h \ + /usr/include/c++/11.2.0/bits/stl_tempbuf.h \ + /usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11.2.0/bits/align.h /usr/include/c++/11.2.0/bit \ + /usr/include/c++/11.2.0/bits/uses_allocator.h \ + /usr/include/c++/11.2.0/bits/unique_ptr.h \ + /usr/include/c++/11.2.0/utility \ + /usr/include/c++/11.2.0/bits/stl_relops.h /usr/include/c++/11.2.0/tuple \ + /usr/include/c++/11.2.0/array /usr/include/c++/11.2.0/bits/invoke.h \ + /usr/include/c++/11.2.0/bits/shared_ptr.h \ + /usr/include/c++/11.2.0/bits/shared_ptr_base.h \ + /usr/include/c++/11.2.0/bits/allocated_ptr.h \ + /usr/include/c++/11.2.0/bits/refwrap.h \ + /usr/include/c++/11.2.0/ext/aligned_buffer.h \ + /usr/include/c++/11.2.0/ext/concurrence.h \ + /usr/include/c++/11.2.0/bits/shared_ptr_atomic.h \ + /usr/include/c++/11.2.0/bits/atomic_base.h \ + /usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11.2.0/backward/auto_ptr.h \ + /usr/include/c++/11.2.0/pstl/glue_memory_defs.h \ + /usr/include/c++/11.2.0/pstl/execution_defs.h \ + /usr/include/gtkmm-3.0/gtkmm.h /usr/include/glibmm-2.4/glibmm.h \ + /usr/lib/glibmm-2.4/include/glibmmconfig.h \ + /usr/include/glibmm-2.4/glibmm/thread.h /usr/include/glib-2.0/glib.h \ + /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ + /usr/lib/glib-2.0/include/glibconfig.h \ + /usr/include/glib-2.0/glib/gmacros.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h \ + /usr/include/glib-2.0/glib/gversionmacros.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/glib-2.0/glib/garray.h \ + /usr/include/glib-2.0/glib/gasyncqueue.h \ + /usr/include/glib-2.0/glib/gthread.h \ + /usr/include/glib-2.0/glib/gatomic.h \ + /usr/include/glib-2.0/glib/glib-typeof.h \ + /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ + /usr/include/glib-2.0/glib/gutils.h /usr/include/c++/11.2.0/stdlib.h \ + /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ + /usr/include/bits/signum-generic.h /usr/include/bits/signum-arch.h \ + /usr/include/bits/types/sig_atomic_t.h \ + /usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \ + /usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \ + /usr/include/bits/siginfo-consts-arch.h \ + /usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \ + /usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \ + /usr/include/bits/sigstksz.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/bits/ss_flags.h \ + /usr/include/bits/types/struct_sigstack.h /usr/include/bits/sigthread.h \ + /usr/include/bits/signal_ext.h /usr/include/glib-2.0/glib/gbase64.h \ + /usr/include/glib-2.0/glib/gbitlock.h \ + /usr/include/glib-2.0/glib/gbookmarkfile.h \ + /usr/include/glib-2.0/glib/gdatetime.h \ + /usr/include/glib-2.0/glib/gtimezone.h \ + /usr/include/glib-2.0/glib/gbytes.h \ + /usr/include/glib-2.0/glib/gcharset.h \ + /usr/include/glib-2.0/glib/gchecksum.h \ + /usr/include/glib-2.0/glib/gconvert.h \ + /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ + /usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \ + /usr/include/glib-2.0/glib/genviron.h \ + /usr/include/glib-2.0/glib/gfileutils.h \ + /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \ + /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ + /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \ + /usr/include/glib-2.0/glib/gchecksum.h \ + /usr/include/glib-2.0/glib/ghook.h \ + /usr/include/glib-2.0/glib/ghostutils.h \ + /usr/include/glib-2.0/glib/giochannel.h \ + /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ + /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ + /usr/include/glib-2.0/glib/gunicode.h \ + /usr/include/glib-2.0/glib/gkeyfile.h \ + /usr/include/glib-2.0/glib/gmappedfile.h \ + /usr/include/glib-2.0/glib/gmarkup.h \ + /usr/include/glib-2.0/glib/gmessages.h \ + /usr/include/glib-2.0/glib/gvariant.h \ + /usr/include/glib-2.0/glib/gvarianttype.h \ + /usr/include/glib-2.0/glib/goption.h \ + /usr/include/glib-2.0/glib/gpattern.h \ + /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ + /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ + /usr/include/glib-2.0/glib/grcbox.h \ + /usr/include/glib-2.0/glib/grefcount.h \ + /usr/include/glib-2.0/glib/grefstring.h \ + /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \ + /usr/include/glib-2.0/glib/gregex.h \ + /usr/include/glib-2.0/glib/gscanner.h \ + /usr/include/glib-2.0/glib/gsequence.h \ + /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \ + /usr/include/glib-2.0/glib/gspawn.h \ + /usr/include/glib-2.0/glib/gstrfuncs.h \ + /usr/include/glib-2.0/glib/gstringchunk.h \ + /usr/include/glib-2.0/glib/gstrvbuilder.h \ + /usr/include/glib-2.0/glib/gtestutils.h \ + /usr/include/glib-2.0/glib/gthreadpool.h \ + /usr/include/glib-2.0/glib/gtimer.h \ + /usr/include/glib-2.0/glib/gtrashstack.h \ + /usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \ + /usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \ + /usr/include/glib-2.0/glib/deprecated/gallocator.h \ + /usr/include/glib-2.0/glib/deprecated/gcache.h \ + /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ + /usr/include/glib-2.0/glib/deprecated/gmain.h \ + /usr/include/glib-2.0/glib/deprecated/grel.h \ + /usr/include/glib-2.0/glib/deprecated/gthread.h \ + /usr/include/glib-2.0/glib/glib-autocleanups.h \ + /usr/include/glibmm-2.4/glibmm/error.h \ + /usr/include/glibmm-2.4/glibmm/exception.h \ + /usr/include/glibmm-2.4/glibmm/ustring.h \ + /usr/include/glibmm-2.4/glibmm/unicode.h \ + /usr/include/c++/11.2.0/iterator \ + /usr/include/c++/11.2.0/bits/stream_iterator.h \ + /usr/include/c++/11.2.0/sstream /usr/include/c++/11.2.0/bits/sstream.tcc \ + /usr/include/glibmm-2.4/glibmm/value.h \ + /usr/include/glibmm-2.4/glibmm/refptr.h \ + /usr/include/glibmm-2.4/glibmm/enums.h \ + /usr/include/glib-2.0/glib-object.h \ + /usr/include/glib-2.0/gobject/gbinding.h \ + /usr/include/glib-2.0/gobject/gobject.h \ + /usr/include/glib-2.0/gobject/gtype.h \ + /usr/include/glib-2.0/gobject/gvalue.h \ + /usr/include/glib-2.0/gobject/gparam.h \ + /usr/include/glib-2.0/gobject/gclosure.h \ + /usr/include/glib-2.0/gobject/gsignal.h \ + /usr/include/glib-2.0/gobject/gmarshal.h \ + /usr/include/glib-2.0/gobject/gboxed.h \ + /usr/include/glib-2.0/gobject/glib-types.h \ + /usr/include/glib-2.0/gobject/gbindinggroup.h \ + /usr/include/glib-2.0/gobject/genums.h \ + /usr/include/glib-2.0/gobject/glib-enumtypes.h \ + /usr/include/glib-2.0/gobject/gparamspecs.h \ + /usr/include/glib-2.0/gobject/gsignalgroup.h \ + /usr/include/glib-2.0/gobject/gsourceclosure.h \ + /usr/include/glib-2.0/gobject/gtypemodule.h \ + /usr/include/glib-2.0/gobject/gtypeplugin.h \ + /usr/include/glib-2.0/gobject/gvaluearray.h \ + /usr/include/glib-2.0/gobject/gvaluetypes.h \ + /usr/include/glib-2.0/gobject/gobject-autocleanups.h \ + /usr/include/c++/11.2.0/vector /usr/include/c++/11.2.0/bits/stl_vector.h \ + /usr/include/c++/11.2.0/bits/stl_bvector.h \ + /usr/include/c++/11.2.0/bits/vector.tcc \ + /usr/include/glibmm-2.4/glibmm/value_custom.h \ + /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ + /usr/include/glibmm-2.4/glibmm/timeval.h \ + /usr/include/sigc++-2.0/sigc++/sigc++.h \ + /usr/include/sigc++-2.0/sigc++/signal.h /usr/include/c++/11.2.0/list \ + /usr/include/c++/11.2.0/bits/stl_list.h \ + /usr/include/c++/11.2.0/bits/list.tcc \ + /usr/include/sigc++-2.0/sigc++/signal_base.h \ + /usr/lib/sigc++-2.0/include/sigc++config.h \ + /usr/include/sigc++-2.0/sigc++/type_traits.h \ + /usr/include/sigc++-2.0/sigc++/trackable.h \ + /usr/include/sigc++-2.0/sigc++/functors/slot.h \ + /usr/include/sigc++-2.0/sigc++/visit_each.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ + /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ + /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ + /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ + /usr/include/sigc++-2.0/sigc++/limit_reference.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ + /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ + /usr/include/sigc++-2.0/sigc++/connection.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ + /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ + /usr/include/c++/11.2.0/functional \ + /usr/include/c++/11.2.0/bits/std_function.h \ + /usr/include/c++/11.2.0/unordered_map \ + /usr/include/c++/11.2.0/bits/hashtable.h \ + /usr/include/c++/11.2.0/bits/hashtable_policy.h \ + /usr/include/c++/11.2.0/bits/node_handle.h \ + /usr/include/c++/11.2.0/bits/unordered_map.h \ + /usr/include/c++/11.2.0/bits/erase_if.h \ + /usr/include/c++/11.2.0/bits/stl_algo.h \ + /usr/include/c++/11.2.0/bits/algorithmfwd.h \ + /usr/include/c++/11.2.0/bits/stl_heap.h \ + /usr/include/c++/11.2.0/bits/uniform_int_dist.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ + /usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h \ + /usr/include/sigc++-2.0/sigc++/functors/functors.h \ + /usr/include/glibmm-2.4/glibmm/threads.h \ + /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ + /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ + /usr/include/glibmm-2.4/glibmm/variant.h \ + /usr/include/glibmm-2.4/glibmm/varianttype.h \ + /usr/include/glibmm-2.4/glibmm/variantiter.h \ + /usr/include/glibmm-2.4/glibmm/variantdbusstring.h \ + /usr/include/c++/11.2.0/map /usr/include/c++/11.2.0/bits/stl_tree.h \ + /usr/include/c++/11.2.0/bits/stl_map.h \ + /usr/include/c++/11.2.0/bits/stl_multimap.h \ + /usr/include/glibmm-2.4/glibmm/variant_basictypes.h \ + /usr/include/glibmm-2.4/glibmm/wrap.h \ + /usr/include/glibmm-2.4/glibmm/objectbase.h \ + /usr/include/glibmm-2.4/glibmm/class.h \ + /usr/include/glibmm-2.4/glibmm/signalproxy.h \ + /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ + /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ + /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ + /usr/include/glibmm-2.4/glibmm/quark.h \ + /usr/include/glibmm-2.4/glibmm/debug.h /usr/include/c++/11.2.0/mutex \ + /usr/include/c++/11.2.0/chrono /usr/include/c++/11.2.0/ratio \ + /usr/include/c++/11.2.0/limits /usr/include/c++/11.2.0/ctime \ + /usr/include/c++/11.2.0/bits/parse_numbers.h \ + /usr/include/c++/11.2.0/bits/std_mutex.h \ + /usr/include/c++/11.2.0/bits/unique_lock.h \ + /usr/include/c++/11.2.0/algorithm \ + /usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h \ + /usr/include/c++/11.2.0/deque /usr/include/c++/11.2.0/bits/stl_deque.h \ + /usr/include/c++/11.2.0/bits/deque.tcc \ + /usr/include/glibmm-2.4/glibmm/balancedtree.h \ + /usr/include/glibmm-2.4/glibmm/base64.h \ + /usr/include/glibmm-2.4/glibmm/binding.h \ + /usr/include/glibmm-2.4/glibmm/object.h \ + /usr/include/glibmm-2.4/glibmm/utility.h \ + /usr/include/glibmm-2.4/glibmm/bytearray.h \ + /usr/include/sigc++-2.0/sigc++/slot.h \ + /usr/include/glibmm-2.4/glibmm/bytes.h \ + /usr/include/glibmm-2.4/glibmm/checksum.h \ + /usr/include/glibmm-2.4/glibmm/convert.h \ + /usr/include/glibmm-2.4/glibmm/date.h \ + /usr/include/glibmm-2.4/glibmm/datetime.h \ + /usr/include/glibmm-2.4/glibmm/timezone.h \ + /usr/include/glibmm-2.4/glibmm/dispatcher.h \ + /usr/include/glibmm-2.4/glibmm/main.h \ + /usr/include/glibmm-2.4/glibmm/priorities.h \ + /usr/include/glibmm-2.4/glibmm/iochannel.h \ + /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ + /usr/include/glibmm-2.4/glibmm/fileutils.h \ + /usr/include/glibmm-2.4/glibmm/helperlist.h \ + /usr/include/glibmm-2.4/glibmm/containers.h \ + /usr/include/glibmm-2.4/glibmm/sarray.h \ + /usr/include/glibmm-2.4/glibmm/interface.h \ + /usr/include/glibmm-2.4/glibmm/init.h \ + /usr/include/glibmm-2.4/glibmm/keyfile.h \ + /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ + /usr/include/glibmm-2.4/glibmm/listhandle.h \ + /usr/include/glibmm-2.4/glibmm/markup.h \ + /usr/include/glibmm-2.4/glibmm/miscutils.h \ + /usr/include/glibmm-2.4/glibmm/module.h \ + /usr/include/glibmm-2.4/glibmm/nodetree.h /usr/include/c++/11.2.0/stack \ + /usr/include/c++/11.2.0/bits/stl_stack.h \ + /usr/include/glibmm-2.4/glibmm/optioncontext.h \ + /usr/include/glibmm-2.4/glibmm/optionentry.h \ + /usr/include/glibmm-2.4/glibmm/optiongroup.h \ + /usr/include/glibmm-2.4/glibmm/pattern.h \ + /usr/include/glibmm-2.4/glibmm/property.h \ + /usr/include/glibmm-2.4/glibmm/random.h \ + /usr/include/glibmm-2.4/glibmm/regex.h \ + /usr/include/glibmm-2.4/glibmm/shell.h \ + /usr/include/glibmm-2.4/glibmm/slisthandle.h \ + /usr/include/glibmm-2.4/glibmm/spawn.h \ + /usr/include/glibmm-2.4/glibmm/stringutils.h \ + /usr/include/glibmm-2.4/glibmm/threadpool.h \ + /usr/include/glibmm-2.4/glibmm/timer.h \ + /usr/include/glibmm-2.4/glibmm/uriutils.h \ + /usr/include/glibmm-2.4/glibmm/valuearray.h \ + /usr/include/glibmm-2.4/glibmm/variantdict.h \ + /usr/include/glibmm-2.4/glibmm/vectorutils.h \ + /usr/include/glibmm-2.4/glibmm/weakref.h /usr/include/giomm-2.4/giomm.h \ + /usr/include/giomm-2.4/giomm/action.h \ + /usr/lib/giomm-2.4/include/giommconfig.h /usr/include/glib-2.0/gio/gio.h \ + /usr/include/glib-2.0/gio/giotypes.h \ + /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/gio/gaction.h \ + /usr/include/glib-2.0/gio/gactiongroup.h \ + /usr/include/glib-2.0/gio/gactiongroupexporter.h \ + /usr/include/glib-2.0/gio/gactionmap.h \ + /usr/include/glib-2.0/gio/gappinfo.h \ + /usr/include/glib-2.0/gio/gapplication.h \ + /usr/include/glib-2.0/gio/gapplicationcommandline.h \ + /usr/include/glib-2.0/gio/gasyncinitable.h \ + /usr/include/glib-2.0/gio/ginitable.h \ + /usr/include/glib-2.0/gio/gasyncresult.h \ + /usr/include/glib-2.0/gio/gbufferedinputstream.h \ + /usr/include/glib-2.0/gio/gfilterinputstream.h \ + /usr/include/glib-2.0/gio/ginputstream.h \ + /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ + /usr/include/glib-2.0/gio/gfilteroutputstream.h \ + /usr/include/glib-2.0/gio/goutputstream.h \ + /usr/include/glib-2.0/gio/gbytesicon.h \ + /usr/include/glib-2.0/gio/gcancellable.h \ + /usr/include/glib-2.0/gio/gcharsetconverter.h \ + /usr/include/glib-2.0/gio/gconverter.h \ + /usr/include/glib-2.0/gio/gcontenttype.h \ + /usr/include/glib-2.0/gio/gconverterinputstream.h \ + /usr/include/glib-2.0/gio/gconverteroutputstream.h \ + /usr/include/glib-2.0/gio/gcredentials.h \ + /usr/include/glib-2.0/gio/gdatagrambased.h \ + /usr/include/glib-2.0/gio/gdatainputstream.h \ + /usr/include/glib-2.0/gio/gdataoutputstream.h \ + /usr/include/glib-2.0/gio/gdbusactiongroup.h \ + /usr/include/glib-2.0/gio/giotypes.h \ + /usr/include/glib-2.0/gio/gdbusaddress.h \ + /usr/include/glib-2.0/gio/gdbusauthobserver.h \ + /usr/include/glib-2.0/gio/gdbusconnection.h \ + /usr/include/glib-2.0/gio/gdbuserror.h \ + /usr/include/glib-2.0/gio/gdbusinterface.h \ + /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ + /usr/include/glib-2.0/gio/gdbusintrospection.h \ + /usr/include/glib-2.0/gio/gdbusmenumodel.h \ + /usr/include/glib-2.0/gio/gdbusmessage.h \ + /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ + /usr/include/glib-2.0/gio/gdbusnameowning.h \ + /usr/include/glib-2.0/gio/gdbusnamewatching.h \ + /usr/include/glib-2.0/gio/gdbusobject.h \ + /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ + /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ + /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ + /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ + /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ + /usr/include/glib-2.0/gio/gdbusproxy.h \ + /usr/include/glib-2.0/gio/gdbusserver.h \ + /usr/include/glib-2.0/gio/gdbusutils.h \ + /usr/include/glib-2.0/gio/gdebugcontroller.h \ + /usr/include/glib-2.0/gio/gdebugcontrollerdbus.h \ + /usr/include/glib-2.0/gio/gdrive.h \ + /usr/include/glib-2.0/gio/gdtlsclientconnection.h \ + /usr/include/glib-2.0/gio/gdtlsconnection.h \ + /usr/include/glib-2.0/gio/gdtlsserverconnection.h \ + /usr/include/glib-2.0/gio/gemblemedicon.h \ + /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ + /usr/include/glib-2.0/gio/gfile.h \ + /usr/include/glib-2.0/gio/gfileattribute.h \ + /usr/include/glib-2.0/gio/gfileenumerator.h \ + /usr/include/glib-2.0/gio/gfileicon.h \ + /usr/include/glib-2.0/gio/gfileinfo.h \ + /usr/include/glib-2.0/gio/gfileinputstream.h \ + /usr/include/glib-2.0/gio/gfileiostream.h \ + /usr/include/glib-2.0/gio/giostream.h \ + /usr/include/glib-2.0/gio/gioerror.h \ + /usr/include/glib-2.0/gio/gfilemonitor.h \ + /usr/include/glib-2.0/gio/gfilenamecompleter.h \ + /usr/include/glib-2.0/gio/gfileoutputstream.h \ + /usr/include/glib-2.0/gio/ginetaddress.h \ + /usr/include/glib-2.0/gio/ginetaddressmask.h \ + /usr/include/glib-2.0/gio/ginetsocketaddress.h \ + /usr/include/glib-2.0/gio/gsocketaddress.h \ + /usr/include/glib-2.0/gio/gioenumtypes.h \ + /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ + /usr/include/glib-2.0/gio/gioscheduler.h \ + /usr/include/glib-2.0/gio/glistmodel.h \ + /usr/include/glib-2.0/gio/gliststore.h \ + /usr/include/glib-2.0/gio/gloadableicon.h \ + /usr/include/glib-2.0/gio/gmemoryinputstream.h \ + /usr/include/glib-2.0/gio/gmemorymonitor.h \ + /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ + /usr/include/glib-2.0/gio/gmenu.h /usr/include/glib-2.0/gio/gmenumodel.h \ + /usr/include/glib-2.0/gio/gmenuexporter.h \ + /usr/include/glib-2.0/gio/gmount.h \ + /usr/include/glib-2.0/gio/gmountoperation.h \ + /usr/include/glib-2.0/gio/gnativesocketaddress.h \ + /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ + /usr/include/glib-2.0/gio/gvolumemonitor.h \ + /usr/include/glib-2.0/gio/gnetworkaddress.h \ + /usr/include/glib-2.0/gio/gnetworkmonitor.h \ + /usr/include/glib-2.0/gio/gnetworkservice.h \ + /usr/include/glib-2.0/gio/gnotification.h \ + /usr/include/glib-2.0/gio/gpermission.h \ + /usr/include/glib-2.0/gio/gpollableinputstream.h \ + /usr/include/glib-2.0/gio/gpollableoutputstream.h \ + /usr/include/glib-2.0/gio/gpollableutils.h \ + /usr/include/glib-2.0/gio/gpowerprofilemonitor.h \ + /usr/include/glib-2.0/gio/gpropertyaction.h \ + /usr/include/glib-2.0/gio/gproxy.h \ + /usr/include/glib-2.0/gio/gproxyaddress.h \ + /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ + /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ + /usr/include/glib-2.0/gio/gproxyresolver.h \ + /usr/include/glib-2.0/gio/gremoteactiongroup.h \ + /usr/include/glib-2.0/gio/gresolver.h \ + /usr/include/glib-2.0/gio/gresource.h \ + /usr/include/glib-2.0/gio/gseekable.h \ + /usr/include/glib-2.0/gio/gsettings.h \ + /usr/include/glib-2.0/gio/gsettingsschema.h \ + /usr/include/glib-2.0/gio/gsimpleaction.h \ + /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ + /usr/include/glib-2.0/gio/gactiongroup.h \ + /usr/include/glib-2.0/gio/gactionmap.h \ + /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ + /usr/include/glib-2.0/gio/gsimpleiostream.h \ + /usr/include/glib-2.0/gio/gsimplepermission.h \ + /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ + /usr/include/glib-2.0/gio/gsocket.h \ + /usr/include/glib-2.0/gio/gsocketclient.h \ + /usr/include/glib-2.0/gio/gsocketconnectable.h \ + /usr/include/glib-2.0/gio/gsocketconnection.h \ + /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ + /usr/include/glib-2.0/gio/gsocketlistener.h \ + /usr/include/glib-2.0/gio/gsocketservice.h \ + /usr/include/glib-2.0/gio/gsrvtarget.h \ + /usr/include/glib-2.0/gio/gsubprocess.h \ + /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ + /usr/include/glib-2.0/gio/gtask.h \ + /usr/include/glib-2.0/gio/gtcpconnection.h \ + /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ + /usr/include/glib-2.0/gio/gtestdbus.h \ + /usr/include/glib-2.0/gio/gthemedicon.h \ + /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ + /usr/include/glib-2.0/gio/gtlsbackend.h \ + /usr/include/glib-2.0/gio/gtlscertificate.h \ + /usr/include/glib-2.0/gio/gtlsclientconnection.h \ + /usr/include/glib-2.0/gio/gtlsconnection.h \ + /usr/include/glib-2.0/gio/gtlsdatabase.h \ + /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ + /usr/include/glib-2.0/gio/gtlsinteraction.h \ + /usr/include/glib-2.0/gio/gtlspassword.h \ + /usr/include/glib-2.0/gio/gtlsserverconnection.h \ + /usr/include/glib-2.0/gio/gvfs.h /usr/include/glib-2.0/gio/gvolume.h \ + /usr/include/glib-2.0/gio/gzlibcompressor.h \ + /usr/include/glib-2.0/gio/gzlibdecompressor.h \ + /usr/include/glib-2.0/gio/gio-autocleanups.h \ + /usr/include/giomm-2.4/giomm/actiongroup.h \ + /usr/include/giomm-2.4/giomm/actionmap.h \ + /usr/include/giomm-2.4/giomm/simpleaction.h \ + /usr/include/giomm-2.4/giomm/appinfo.h \ + /usr/include/giomm-2.4/giomm/applaunchcontext.h \ + /usr/include/giomm-2.4/giomm/icon.h \ + /usr/include/giomm-2.4/giomm/asyncresult.h \ + /usr/include/giomm-2.4/giomm/cancellable.h \ + /usr/include/giomm-2.4/giomm/application.h \ + /usr/include/giomm-2.4/giomm/applicationcommandline.h \ + /usr/include/giomm-2.4/giomm/file.h \ + /usr/include/giomm-2.4/giomm/fileattributeinfolist.h \ + /usr/include/giomm-2.4/giomm/fileattributeinfo.h \ + /usr/include/giomm-2.4/giomm/fileenumerator.h \ + /usr/include/giomm-2.4/giomm/fileinfo.h \ + /usr/include/giomm-2.4/giomm/fileinputstream.h \ + /usr/include/giomm-2.4/giomm/inputstream.h \ + /usr/include/giomm-2.4/giomm/seekable.h \ + /usr/include/giomm-2.4/giomm/fileiostream.h \ + /usr/include/giomm-2.4/giomm/iostream.h \ + /usr/include/giomm-2.4/giomm/outputstream.h \ + /usr/include/giomm-2.4/giomm/filemonitor.h \ + /usr/include/giomm-2.4/giomm/fileoutputstream.h \ + /usr/include/giomm-2.4/giomm/mountoperation.h \ + /usr/include/giomm-2.4/giomm/drive.h \ + /usr/include/giomm-2.4/giomm/mount.h \ + /usr/include/giomm-2.4/giomm/error.h \ + /usr/include/giomm-2.4/giomm/dbusconnection.h \ + /usr/include/giomm-2.4/giomm/initable.h \ + /usr/include/giomm-2.4/giomm/asyncinitable.h \ + /usr/include/giomm-2.4/giomm/dbusauthobserver.h \ + /usr/include/giomm-2.4/giomm/credentials.h \ + /usr/include/giomm-2.4/giomm/dbusmethodinvocation.h \ + /usr/include/giomm-2.4/giomm/dbusmessage.h \ + /usr/include/giomm-2.4/giomm/unixfdlist.h \ + /usr/include/giomm-2.4/giomm/dbusintrospection.h \ + /usr/include/giomm-2.4/giomm/dbussubtreevtable.h \ + /usr/include/giomm-2.4/giomm/dbusinterfacevtable.h \ + /usr/include/giomm-2.4/giomm/notification.h \ + /usr/include/giomm-2.4/giomm/bufferedinputstream.h \ + /usr/include/giomm-2.4/giomm/filterinputstream.h \ + /usr/include/giomm-2.4/giomm/bufferedoutputstream.h \ + /usr/include/giomm-2.4/giomm/filteroutputstream.h \ + /usr/include/giomm-2.4/giomm/charsetconverter.h \ + /usr/include/giomm-2.4/giomm/converter.h \ + /usr/include/giomm-2.4/giomm/contenttype.h \ + /usr/include/giomm-2.4/giomm/converterinputstream.h \ + /usr/include/giomm-2.4/giomm/pollableinputstream.h \ + /usr/include/giomm-2.4/giomm/converteroutputstream.h \ + /usr/include/giomm-2.4/giomm/pollableoutputstream.h \ + /usr/include/giomm-2.4/giomm/datainputstream.h \ + /usr/include/giomm-2.4/giomm/enums.h \ + /usr/include/giomm-2.4/giomm/dataoutputstream.h \ + /usr/include/giomm-2.4/giomm/dbusactiongroup.h \ + /usr/include/giomm-2.4/giomm/remoteactiongroup.h \ + /usr/include/giomm-2.4/giomm/dbusaddress.h \ + /usr/include/giomm-2.4/giomm/dbuserror.h \ + /usr/include/giomm-2.4/giomm/dbuserrorutils.h \ + /usr/include/giomm-2.4/giomm/dbusinterface.h \ + /usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h \ + /usr/include/giomm-2.4/giomm/dbusmenumodel.h \ + /usr/include/giomm-2.4/giomm/menumodel.h \ + /usr/include/giomm-2.4/giomm/dbusobject.h \ + /usr/include/giomm-2.4/giomm/dbusobjectmanager.h \ + /usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h \ + /usr/include/giomm-2.4/giomm/dbusobjectproxy.h \ + /usr/include/giomm-2.4/giomm/dbusproxy.h \ + /usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h \ + /usr/include/giomm-2.4/giomm/dbusobjectskeleton.h \ + /usr/include/giomm-2.4/giomm/dbusownname.h \ + /usr/include/giomm-2.4/giomm/dbusserver.h \ + /usr/include/giomm-2.4/giomm/dbusutils.h \ + /usr/include/giomm-2.4/giomm/dbuswatchname.h \ + /usr/include/giomm-2.4/giomm/desktopappinfo.h \ + /usr/include/giomm-2.4/giomm/emblem.h \ + /usr/include/giomm-2.4/giomm/emblemedicon.h \ + /usr/include/giomm-2.4/giomm/fileicon.h \ + /usr/include/giomm-2.4/giomm/loadableicon.h \ + /usr/include/giomm-2.4/giomm/filenamecompleter.h \ + /usr/include/giomm-2.4/giomm/inetaddress.h \ + /usr/include/giomm-2.4/giomm/inetsocketaddress.h \ + /usr/include/giomm-2.4/giomm/socketaddress.h \ + /usr/include/giomm-2.4/giomm/socketconnectable.h \ + /usr/include/giomm-2.4/giomm/socketaddressenumerator.h \ + /usr/include/giomm-2.4/giomm/init.h \ + /usr/include/giomm-2.4/giomm/wrap_init.h \ + /usr/include/giomm-2.4/giomm/listmodel.h \ + /usr/include/giomm-2.4/giomm/liststore.h \ + /usr/include/giomm-2.4/giomm/memoryinputstream.h \ + /usr/include/giomm-2.4/giomm/memoryoutputstream.h \ + /usr/include/giomm-2.4/giomm/menu.h \ + /usr/include/giomm-2.4/giomm/menuitem.h \ + /usr/include/giomm-2.4/giomm/menuattributeiter.h \ + /usr/include/giomm-2.4/giomm/menulinkiter.h \ + /usr/include/giomm-2.4/giomm/networkaddress.h \ + /usr/include/giomm-2.4/giomm/networkmonitor.h \ + /usr/include/giomm-2.4/giomm/networkservice.h \ + /usr/include/giomm-2.4/giomm/permission.h \ + /usr/include/giomm-2.4/giomm/proxy.h \ + /usr/include/giomm-2.4/giomm/proxyaddress.h \ + /usr/include/giomm-2.4/giomm/proxyresolver.h \ + /usr/include/giomm-2.4/giomm/resolver.h \ + /usr/include/giomm-2.4/giomm/srvtarget.h \ + /usr/include/giomm-2.4/giomm/resource.h \ + /usr/include/giomm-2.4/giomm/settings.h \ + /usr/include/giomm-2.4/giomm/settingsschema.h \ + /usr/include/giomm-2.4/giomm/settingsschemakey.h \ + /usr/include/giomm-2.4/giomm/settingsschemasource.h \ + /usr/include/giomm-2.4/giomm/simpleactiongroup.h \ + /usr/include/giomm-2.4/giomm/simpleiostream.h \ + /usr/include/giomm-2.4/giomm/simplepermission.h \ + /usr/include/giomm-2.4/giomm/socket.h \ + /usr/include/giomm-2.4/giomm/socketclient.h \ + /usr/include/giomm-2.4/giomm/socketconnection.h \ + /usr/include/giomm-2.4/giomm/socketcontrolmessage.h \ + /usr/include/c++/11.2.0/set /usr/include/c++/11.2.0/bits/stl_set.h \ + /usr/include/c++/11.2.0/bits/stl_multiset.h \ + /usr/include/giomm-2.4/giomm/socketlistener.h \ + /usr/include/giomm-2.4/giomm/socketservice.h \ + /usr/include/giomm-2.4/giomm/socketsource.h \ + /usr/include/giomm-2.4/giomm/tcpconnection.h \ + /usr/include/giomm-2.4/giomm/tcpwrapperconnection.h \ + /usr/include/giomm-2.4/giomm/themedicon.h \ + /usr/include/giomm-2.4/giomm/threadedsocketservice.h \ + /usr/include/giomm-2.4/giomm/tlscertificate.h \ + /usr/include/giomm-2.4/giomm/tlsclientconnection.h \ + /usr/include/giomm-2.4/giomm/tlsconnection.h \ + /usr/include/giomm-2.4/giomm/tlsdatabase.h \ + /usr/include/giomm-2.4/giomm/tlsinteraction.h \ + /usr/include/giomm-2.4/giomm/tlspassword.h \ + /usr/include/giomm-2.4/giomm/tlsserverconnection.h \ + /usr/include/giomm-2.4/giomm/unixconnection.h \ + /usr/include/giomm-2.4/giomm/unixcredentialsmessage.h \ + /usr/include/giomm-2.4/giomm/unixfdmessage.h \ + /usr/include/giomm-2.4/giomm/unixinputstream.h \ + /usr/include/giomm-2.4/giomm/unixoutputstream.h \ + /usr/include/giomm-2.4/giomm/unixsocketaddress.h \ + /usr/include/giomm-2.4/giomm/volume.h \ + /usr/include/giomm-2.4/giomm/volumemonitor.h \ + /usr/include/giomm-2.4/giomm/zlibcompressor.h \ + /usr/include/giomm-2.4/giomm/zlibdecompressor.h \ + /usr/include/gdkmm-3.0/gdkmm/dragcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/color.h \ + /usr/lib/gdkmm-3.0/include/gdkmmconfig.h \ + /usr/lib/pangomm-1.4/include/pangommconfig.h \ + /usr/include/gtk-3.0/gdk/gdk.h /usr/include/gtk-3.0/gdk/gdkconfig.h \ + /usr/include/gtk-3.0/gdk/gdkversionmacros.h \ + /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h \ + /usr/include/gtk-3.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ + /usr/include/pango-1.0/pango/pango-attributes.h \ + /usr/include/pango-1.0/pango/pango-font.h \ + /usr/include/pango-1.0/pango/pango-coverage.h \ + /usr/include/pango-1.0/pango/pango-version-macros.h \ + /usr/include/pango-1.0/pango/pango-features.h /usr/include/harfbuzz/hb.h \ + /usr/include/harfbuzz/hb-blob.h /usr/include/harfbuzz/hb-common.h \ + /usr/include/harfbuzz/hb-buffer.h /usr/include/harfbuzz/hb-unicode.h \ + /usr/include/harfbuzz/hb-font.h /usr/include/harfbuzz/hb-face.h \ + /usr/include/harfbuzz/hb-set.h /usr/include/harfbuzz/hb-draw.h \ + /usr/include/harfbuzz/hb.h /usr/include/harfbuzz/hb-deprecated.h \ + /usr/include/harfbuzz/hb-map.h /usr/include/harfbuzz/hb-shape.h \ + /usr/include/harfbuzz/hb-shape-plan.h /usr/include/harfbuzz/hb-style.h \ + /usr/include/harfbuzz/hb-version.h \ + /usr/include/pango-1.0/pango/pango-types.h \ + /usr/include/pango-1.0/pango/pango-gravity.h \ + /usr/include/pango-1.0/pango/pango-matrix.h \ + /usr/include/pango-1.0/pango/pango-script.h \ + /usr/include/pango-1.0/pango/pango-language.h \ + /usr/include/pango-1.0/pango/pango-bidi-type.h \ + /usr/include/pango-1.0/pango/pango-direction.h \ + /usr/include/pango-1.0/pango/pango-color.h \ + /usr/include/pango-1.0/pango/pango-break.h \ + /usr/include/pango-1.0/pango/pango-item.h \ + /usr/include/pango-1.0/pango/pango-context.h \ + /usr/include/pango-1.0/pango/pango-fontmap.h \ + /usr/include/pango-1.0/pango/pango-fontset.h \ + /usr/include/pango-1.0/pango/pango-engine.h \ + /usr/include/pango-1.0/pango/pango-glyph.h \ + /usr/include/pango-1.0/pango/pango-enum-types.h \ + /usr/include/pango-1.0/pango/pango-fontset-simple.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-layout.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/include/pango-1.0/pango/pango-markup.h \ + /usr/include/pango-1.0/pango/pango-renderer.h \ + /usr/include/pango-1.0/pango/pango-utils.h /usr/include/cairo/cairo.h \ + /usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \ + /usr/include/cairo/cairo-deprecated.h \ + /usr/include/gtk-3.0/gdk/gdkscreen.h \ + /usr/include/gtk-3.0/gdk/gdkdisplay.h \ + /usr/include/gtk-3.0/gdk/gdkevents.h /usr/include/gtk-3.0/gdk/gdkdnd.h \ + /usr/include/gtk-3.0/gdk/gdkdevice.h \ + /usr/include/gtk-3.0/gdk/gdkdevicetool.h \ + /usr/include/gtk-3.0/gdk/gdkdevicemanager.h \ + /usr/include/gtk-3.0/gdk/gdkseat.h /usr/include/gtk-3.0/gdk/gdkwindow.h \ + /usr/include/gtk-3.0/gdk/gdkdrawingcontext.h \ + /usr/include/gtk-3.0/gdk/gdkframeclock.h \ + /usr/include/gtk-3.0/gdk/gdkframetimings.h \ + /usr/include/gtk-3.0/gdk/gdkmonitor.h \ + /usr/include/gtk-3.0/gdk/gdkrectangle.h \ + /usr/include/gtk-3.0/gdk/gdkcairo.h \ + /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h \ + /usr/include/gtk-3.0/gdk/gdkrgba.h /usr/include/gtk-3.0/gdk/gdkpixbuf.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ + /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h \ + /usr/include/pango-1.0/pango/pangocairo.h \ + /usr/include/gtk-3.0/gdk/gdkcursor.h \ + /usr/include/gtk-3.0/gdk/gdkdevicepad.h \ + /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h \ + /usr/include/gtk-3.0/gdk/gdkenumtypes.h \ + /usr/include/gtk-3.0/gdk/gdkglcontext.h \ + /usr/include/gtk-3.0/gdk/gdkkeys.h /usr/include/gtk-3.0/gdk/gdkkeysyms.h \ + /usr/include/gtk-3.0/gdk/gdkmain.h /usr/include/gtk-3.0/gdk/gdkpango.h \ + /usr/include/gtk-3.0/gdk/gdkproperty.h \ + /usr/include/gtk-3.0/gdk/gdkselection.h \ + /usr/include/gtk-3.0/gdk/gdktestutils.h \ + /usr/include/gtk-3.0/gdk/gdkthreads.h \ + /usr/include/gtk-3.0/gdk/gdkvisual.h \ + /usr/include/gtk-3.0/gdk/gdk-autocleanup.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbuf.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufformat.h \ + /usr/include/gdkmm-3.0/gdkmm/types.h \ + /usr/include/cairomm-1.0/cairomm/surface.h \ + /usr/include/cairomm-1.0/cairomm/enums.h /usr/include/cairo/cairo-ft.h \ + /usr/include/cairo/cairo.h /usr/include/freetype2/ft2build.h \ + /usr/include/freetype2/freetype/config/ftheader.h \ + /usr/include/freetype2/freetype/freetype.h \ + /usr/include/freetype2/freetype/config/ftconfig.h \ + /usr/include/freetype2/freetype/config/ftoption.h \ + /usr/include/freetype2/freetype/config/ftstdlib.h /usr/include/setjmp.h \ + /usr/include/freetype2/freetype/config/integer-types.h \ + /usr/include/freetype2/freetype/config/public-macros.h \ + /usr/include/freetype2/freetype/config/mac-support.h \ + /usr/include/freetype2/freetype/fttypes.h \ + /usr/include/freetype2/freetype/ftsystem.h \ + /usr/include/freetype2/freetype/ftimage.h \ + /usr/include/freetype2/freetype/fterrors.h \ + /usr/include/freetype2/freetype/ftmoderr.h \ + /usr/include/freetype2/freetype/fterrdef.h \ + /usr/include/fontconfig/fontconfig.h /usr/include/sys/stat.h \ + /usr/include/bits/stat.h /usr/include/bits/struct_stat.h \ + /usr/include/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \ + /usr/include/linux/posix_types.h /usr/include/linux/stddef.h \ + /usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \ + /usr/include/bits/types/struct_statx_timestamp.h \ + /usr/include/bits/types/struct_statx.h \ + /usr/include/cairomm-1.0/cairomm/exception.h \ + /usr/lib/cairomm-1.0/include/cairommconfig.h \ + /usr/include/cairomm-1.0/cairomm/device.h \ + /usr/include/cairomm-1.0/cairomm/types.h \ + /usr/include/cairomm-1.0/cairomm/refptr.h \ + /usr/include/cairomm-1.0/cairomm/fontoptions.h \ + /usr/include/cairo/cairo-pdf.h /usr/include/cairo/cairo-ps.h \ + /usr/include/cairo/cairo-svg.h /usr/include/gdkmm-3.0/gdkmm/device.h \ + /usr/include/gdkmm-3.0/gdkmm/cursor.h \ + /usr/include/gdkmm-3.0/gdkmm/display.h \ + /usr/include/gdkmm-3.0/gdkmm/screen.h \ + /usr/include/gdkmm-3.0/gdkmm/rectangle.h \ + /usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/event.h \ + /usr/include/gdkmm-3.0/gdkmm/timecoord.h /usr/include/gdkmm-3.0/gdkmm.h \ + /usr/include/gdkmm-3.0/gdkmm/visual.h \ + /usr/include/gdkmm-3.0/gdkmm/window.h \ + /usr/include/cairomm-1.0/cairomm/region.h \ + /usr/include/cairomm-1.0/cairomm/pattern.h \ + /usr/include/gdkmm-3.0/gdkmm/rgba.h \ + /usr/include/cairomm-1.0/cairomm/context.h \ + /usr/include/cairomm-1.0/cairomm/fontface.h \ + /usr/include/cairomm-1.0/cairomm/matrix.h \ + /usr/include/cairomm-1.0/cairomm/path.h \ + /usr/include/cairomm-1.0/cairomm/scaledfont.h \ + /usr/include/c++/11.2.0/valarray /usr/include/c++/11.2.0/cmath \ + /usr/include/math.h /usr/include/bits/math-vector.h \ + /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/11.2.0/bits/specfun.h \ + /usr/include/c++/11.2.0/tr1/gamma.tcc \ + /usr/include/c++/11.2.0/tr1/special_function_util.h \ + /usr/include/c++/11.2.0/tr1/bessel_function.tcc \ + /usr/include/c++/11.2.0/tr1/beta_function.tcc \ + /usr/include/c++/11.2.0/tr1/ell_integral.tcc \ + /usr/include/c++/11.2.0/tr1/exp_integral.tcc \ + /usr/include/c++/11.2.0/tr1/hypergeometric.tcc \ + /usr/include/c++/11.2.0/tr1/legendre_function.tcc \ + /usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc \ + /usr/include/c++/11.2.0/tr1/poly_hermite.tcc \ + /usr/include/c++/11.2.0/tr1/poly_laguerre.tcc \ + /usr/include/c++/11.2.0/tr1/riemann_zeta.tcc \ + /usr/include/c++/11.2.0/bits/valarray_array.h \ + /usr/include/c++/11.2.0/bits/valarray_array.tcc \ + /usr/include/c++/11.2.0/bits/valarray_before.h \ + /usr/include/c++/11.2.0/bits/slice_array.h \ + /usr/include/c++/11.2.0/bits/valarray_after.h \ + /usr/include/c++/11.2.0/bits/gslice.h \ + /usr/include/c++/11.2.0/bits/gslice_array.h \ + /usr/include/c++/11.2.0/bits/mask_array.h \ + /usr/include/c++/11.2.0/bits/indirect_array.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h \ + /usr/include/gdkmm-3.0/gdkmm/pixbufloader.h \ + /usr/include/gdkmm-3.0/gdkmm/drawingcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/frameclock.h \ + /usr/include/gdkmm-3.0/gdkmm/frametimings.h \ + /usr/include/gdkmm-3.0/gdkmm/glcontext.h \ + /usr/include/gdkmm-3.0/gdkmm/displaymanager.h \ + /usr/include/gdkmm-3.0/gdkmm/devicemanager.h \ + /usr/include/gdkmm-3.0/gdkmm/seat.h \ + /usr/include/gdkmm-3.0/gdkmm/monitor.h \ + /usr/include/gdkmm-3.0/gdkmm/general.h \ + /usr/include/gtkmm-3.0/gtkmm/toggleaction.h \ + /usr/include/gtkmm-3.0/gtkmm/action.h \ + /usr/lib/gtkmm-3.0/include/gtkmmconfig.h \ + /usr/include/gtkmm-3.0/gtkmm/widget.h \ + /usr/include/pangomm-1.4/pangomm/context.h \ + /usr/include/pangomm-1.4/pangomm/fontdescription.h \ + /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ + /usr/include/pangomm-1.4/pangomm/fontset.h \ + /usr/include/pangomm-1.4/pangomm/language.h \ + /usr/include/pangomm-1.4/pangomm/font.h \ + /usr/include/pangomm-1.4/pangomm/rectangle.h \ + /usr/include/pangomm-1.4/pangomm/glyph.h \ + /usr/include/pangomm-1.4/pangomm/coverage.h \ + /usr/include/pangomm-1.4/pangomm/fontmap.h \ + /usr/include/pangomm-1.4/pangomm/fontfamily.h \ + /usr/include/pangomm-1.4/pangomm/fontface.h \ + /usr/include/pangomm-1.4/pangomm/item.h \ + /usr/include/pangomm-1.4/pangomm/attributes.h \ + /usr/include/pangomm-1.4/pangomm/color.h \ + /usr/include/pangomm-1.4/pangomm/attrlist.h \ + /usr/include/pangomm-1.4/pangomm/attriter.h \ + /usr/include/pangomm-1.4/pangomm/types.h \ + /usr/include/pangomm-1.4/pangomm/layout.h \ + /usr/include/pangomm-1.4/pangomm/tabarray.h \ + /usr/include/pangomm-1.4/pangomm/layoutline.h \ + /usr/include/pangomm-1.4/pangomm/layoutiter.h \ + /usr/include/pangomm-1.4/pangomm/layoutrun.h \ + /usr/include/atkmm-1.6/atkmm/object.h \ + /usr/include/atkmm-1.6/atkmm/component.h \ + /usr/lib/atkmm-1.6/include/atkmmconfig.h \ + /usr/include/atkmm-1.6/atkmm/relation.h \ + /usr/include/atkmm-1.6/atkmm/implementor.h \ + /usr/include/gtkmm-3.0/gtkmm/object.h \ + /usr/include/gtkmm-3.0/gtkmm/base.h \ + /usr/include/gtkmm-3.0/gtkmm/buildable.h \ + /usr/include/gtkmm-3.0/gtkmm/enums.h /usr/include/gtk-3.0/gtk/gtk.h \ + /usr/include/gtk-3.0/gtk/gtkaboutdialog.h \ + /usr/include/gtk-3.0/gtk/gtkdialog.h \ + /usr/include/gtk-3.0/gtk/gtkwindow.h \ + /usr/include/gtk-3.0/gtk/gtkapplication.h \ + /usr/include/gtk-3.0/gtk/gtkwidget.h \ + /usr/include/gtk-3.0/gtk/gtkaccelgroup.h \ + /usr/include/gtk-3.0/gtk/gtkenums.h /usr/include/gtk-3.0/gtk/gtkborder.h \ + /usr/include/gtk-3.0/gtk/gtktypes.h /usr/include/atk-1.0/atk/atk.h \ + /usr/include/atk-1.0/atk/atkobject.h \ + /usr/include/atk-1.0/atk/atkversion.h \ + /usr/include/atk-1.0/atk/atkstate.h \ + /usr/include/atk-1.0/atk/atkrelationtype.h \ + /usr/include/atk-1.0/atk/atkaction.h \ + /usr/include/atk-1.0/atk/atkcomponent.h \ + /usr/include/atk-1.0/atk/atkutil.h \ + /usr/include/atk-1.0/atk/atkdocument.h \ + /usr/include/atk-1.0/atk/atkeditabletext.h \ + /usr/include/atk-1.0/atk/atktext.h \ + /usr/include/atk-1.0/atk/atk-enum-types.h \ + /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ + /usr/include/atk-1.0/atk/atkhyperlink.h \ + /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ + /usr/include/atk-1.0/atk/atkhypertext.h \ + /usr/include/atk-1.0/atk/atkimage.h \ + /usr/include/atk-1.0/atk/atknoopobject.h \ + /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ + /usr/include/atk-1.0/atk/atkobjectfactory.h \ + /usr/include/atk-1.0/atk/atkplug.h /usr/include/atk-1.0/atk/atkrange.h \ + /usr/include/atk-1.0/atk/atkregistry.h \ + /usr/include/atk-1.0/atk/atkobjectfactory.h \ + /usr/include/atk-1.0/atk/atkrelation.h \ + /usr/include/atk-1.0/atk/atkrelationset.h \ + /usr/include/atk-1.0/atk/atkselection.h \ + /usr/include/atk-1.0/atk/atksocket.h \ + /usr/include/atk-1.0/atk/atkstateset.h \ + /usr/include/atk-1.0/atk/atkstreamablecontent.h \ + /usr/include/atk-1.0/atk/atktable.h \ + /usr/include/atk-1.0/atk/atktablecell.h \ + /usr/include/atk-1.0/atk/atkmisc.h /usr/include/atk-1.0/atk/atkvalue.h \ + /usr/include/atk-1.0/atk/atkwindow.h \ + /usr/include/atk-1.0/atk/atk-autocleanups.h \ + /usr/include/gtk-3.0/gtk/gtkbin.h \ + /usr/include/gtk-3.0/gtk/gtkcontainer.h \ + /usr/include/gtk-3.0/gtk/gtkaccellabel.h \ + /usr/include/gtk-3.0/gtk/gtklabel.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h \ + /usr/include/gtk-3.0/gtk/gtkmenu.h \ + /usr/include/gtk-3.0/gtk/gtkmenushell.h \ + /usr/include/gtk-3.0/gtk/gtkaccelmap.h \ + /usr/include/gtk-3.0/gtk/gtkaccessible.h \ + /usr/include/gtk-3.0/gtk/gtkactionable.h \ + /usr/include/gtk-3.0/gtk/gtkactionbar.h \ + /usr/include/gtk-3.0/gtk/gtkadjustment.h \ + /usr/include/gtk-3.0/gtk/gtkappchooser.h \ + /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkbox.h \ + /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h \ + /usr/include/gtk-3.0/gtk/gtkcombobox.h \ + /usr/include/gtk-3.0/gtk/gtktreemodel.h \ + /usr/include/gtk-3.0/gtk/gtktreeview.h \ + /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderer.h \ + /usr/include/gtk-3.0/gtk/gtkcelleditable.h \ + /usr/include/gtk-3.0/gtk/gtktreesortable.h \ + /usr/include/gtk-3.0/gtk/gtkcellarea.h /usr/include/gtk-3.0/gtk/gtkdnd.h \ + /usr/include/gtk-3.0/gtk/gtkselection.h \ + /usr/include/gtk-3.0/gtk/gtktextiter.h \ + /usr/include/gtk-3.0/gtk/gtktextattributes.h \ + /usr/include/gtk-3.0/gtk/gtktextchild.h \ + /usr/include/gtk-3.0/gtk/gtktexttag.h \ + /usr/include/gtk-3.0/gtk/gtkentry.h \ + /usr/include/gtk-3.0/gtk/gtkeditable.h \ + /usr/include/gtk-3.0/gtk/gtkimcontext.h \ + /usr/include/gtk-3.0/gtk/gtkentrybuffer.h \ + /usr/include/gtk-3.0/gtk/gtkentrycompletion.h \ + /usr/include/gtk-3.0/gtk/gtkliststore.h \ + /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h \ + /usr/include/gtk-3.0/gtk/gtkimage.h \ + /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutswindow.h \ + /usr/include/gtk-3.0/gtk/gtkaspectframe.h \ + /usr/include/gtk-3.0/gtk/gtkframe.h \ + /usr/include/gtk-3.0/gtk/gtkassistant.h \ + /usr/include/gtk-3.0/gtk/gtkbbox.h \ + /usr/include/gtk-3.0/gtk/gtkbindings.h \ + /usr/include/gtk-3.0/gtk/gtkbuildable.h \ + /usr/include/gtk-3.0/gtk/gtkbuilder.h \ + /usr/include/gtk-3.0/gtk/gtkbutton.h \ + /usr/include/gtk-3.0/gtk/gtkcalendar.h \ + /usr/include/gtk-3.0/gtk/gtkcellareabox.h \ + /usr/include/gtk-3.0/gtk/gtkcellareacontext.h \ + /usr/include/gtk-3.0/gtk/gtkcelllayout.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h \ + /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h \ + /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h \ + /usr/include/gtk-3.0/gtk/gtkcellview.h \ + /usr/include/gtk-3.0/gtk/gtkcheckbutton.h \ + /usr/include/gtk-3.0/gtk/gtktogglebutton.h \ + /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkmenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkclipboard.h \ + /usr/include/gtk-3.0/gtk/gtkcolorbutton.h \ + /usr/include/gtk-3.0/gtk/gtkcolorchooser.h \ + /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkcolorutils.h \ + /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h \ + /usr/include/gtk-3.0/gtk/gtkcssprovider.h \ + /usr/include/gtk-3.0/gtk/gtkcsssection.h \ + /usr/include/gtk-3.0/gtk/gtkdebug.h \ + /usr/include/gtk-3.0/gtk/gtkdragdest.h \ + /usr/include/gtk-3.0/gtk/gtkdragsource.h \ + /usr/include/gtk-3.0/gtk/gtkdrawingarea.h \ + /usr/include/gtk-3.0/gtk/gtkeventbox.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontroller.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h \ + /usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h \ + /usr/include/gtk-3.0/gtk/gtkexpander.h \ + /usr/include/gtk-3.0/gtk/gtkfixed.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooser.h \ + /usr/include/gtk-3.0/gtk/gtkfilefilter.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkfilechoosernative.h \ + /usr/include/gtk-3.0/gtk/gtknativedialog.h \ + /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkflowbox.h \ + /usr/include/gtk-3.0/gtk/gtkfontbutton.h \ + /usr/include/gtk-3.0/gtk/gtkfontchooser.h \ + /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkgesture.h \ + /usr/include/gtk-3.0/gtk/gtkgesturedrag.h \ + /usr/include/gtk-3.0/gtk/gtkgesturesingle.h \ + /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h \ + /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h \ + /usr/include/gtk-3.0/gtk/gtkgesturepan.h \ + /usr/include/gtk-3.0/gtk/gtkgesturerotate.h \ + /usr/include/gtk-3.0/gtk/gtkgesturestylus.h \ + /usr/include/gtk-3.0/gtk/gtkgestureswipe.h \ + /usr/include/gtk-3.0/gtk/gtkgesturezoom.h \ + /usr/include/gtk-3.0/gtk/gtkglarea.h /usr/include/gtk-3.0/gtk/gtkgrid.h \ + /usr/include/gtk-3.0/gtk/gtkheaderbar.h \ + /usr/include/gtk-3.0/gtk/gtkicontheme.h \ + /usr/include/gtk-3.0/gtk/gtkstylecontext.h \ + /usr/include/gtk-3.0/gtk/gtkstyleprovider.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h \ + /usr/include/gtk-3.0/gtk/gtkiconview.h \ + /usr/include/gtk-3.0/gtk/gtktooltip.h \ + /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h \ + /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h \ + /usr/include/gtk-3.0/gtk/gtkimmulticontext.h \ + /usr/include/gtk-3.0/gtk/gtkinfobar.h \ + /usr/include/gtk-3.0/gtk/gtkinvisible.h \ + /usr/include/gtk-3.0/gtk/gtklayout.h \ + /usr/include/gtk-3.0/gtk/gtklevelbar.h \ + /usr/include/gtk-3.0/gtk/gtklinkbutton.h \ + /usr/include/gtk-3.0/gtk/gtklistbox.h \ + /usr/include/gtk-3.0/gtk/gtklockbutton.h \ + /usr/include/gtk-3.0/gtk/gtkmain.h /usr/include/gtk-3.0/gtk/gtkmenubar.h \ + /usr/include/gtk-3.0/gtk/gtkmenubutton.h \ + /usr/include/gtk-3.0/gtk/gtkpopover.h \ + /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtktoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtktoolitem.h \ + /usr/include/gtk-3.0/gtk/gtksizegroup.h \ + /usr/include/gtk-3.0/gtk/gtkmessagedialog.h \ + /usr/include/gtk-3.0/gtk/gtkmodelbutton.h \ + /usr/include/gtk-3.0/gtk/gtkmodules.h \ + /usr/include/gtk-3.0/gtk/gtkmountoperation.h \ + /usr/include/gtk-3.0/gtk/gtknotebook.h \ + /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h \ + /usr/include/gtk-3.0/gtk/gtkorientable.h \ + /usr/include/gtk-3.0/gtk/gtkoverlay.h \ + /usr/include/gtk-3.0/gtk/gtkpadcontroller.h \ + /usr/include/gtk-3.0/gtk/gtkpagesetup.h \ + /usr/include/gtk-3.0/gtk/gtkpapersize.h \ + /usr/include/gtk-3.0/gtk/gtkpaned.h \ + /usr/include/gtk-3.0/gtk/gtkplacessidebar.h \ + /usr/include/gtk-3.0/gtk/gtkpopovermenu.h \ + /usr/include/gtk-3.0/gtk/gtkprintcontext.h \ + /usr/include/gtk-3.0/gtk/gtkprintoperation.h \ + /usr/include/gtk-3.0/gtk/gtkprintsettings.h \ + /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h \ + /usr/include/gtk-3.0/gtk/gtkprogressbar.h \ + /usr/include/gtk-3.0/gtk/gtkradiobutton.h \ + /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h \ + /usr/include/gtk-3.0/gtk/gtkrange.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchooser.h \ + /usr/include/gtk-3.0/gtk/gtkrecentmanager.h \ + /usr/include/gtk-3.0/gtk/gtkrecentfilter.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h \ + /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h \ + /usr/include/gtk-3.0/gtk/gtkrender.h \ + /usr/include/gtk-3.0/gtk/gtkrevealer.h \ + /usr/include/gtk-3.0/gtk/gtkscale.h \ + /usr/include/gtk-3.0/gtk/gtkscalebutton.h \ + /usr/include/gtk-3.0/gtk/gtkscrollable.h \ + /usr/include/gtk-3.0/gtk/gtkscrollbar.h \ + /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h \ + /usr/include/gtk-3.0/gtk/gtksearchbar.h \ + /usr/include/gtk-3.0/gtk/gtksearchentry.h \ + /usr/include/gtk-3.0/gtk/gtkseparator.h \ + /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h \ + /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h \ + /usr/include/gtk-3.0/gtk/gtksettings.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutlabel.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutssection.h \ + /usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h \ + /usr/include/gtk-3.0/gtk/gtkshow.h \ + /usr/include/gtk-3.0/gtk/gtkstacksidebar.h \ + /usr/include/gtk-3.0/gtk/gtkstack.h \ + /usr/include/gtk-3.0/gtk/gtksizerequest.h \ + /usr/include/gtk-3.0/gtk/gtkspinbutton.h \ + /usr/include/gtk-3.0/gtk/gtkspinner.h \ + /usr/include/gtk-3.0/gtk/gtkstackswitcher.h \ + /usr/include/gtk-3.0/gtk/gtkstatusbar.h \ + /usr/include/gtk-3.0/gtk/gtkswitch.h \ + /usr/include/gtk-3.0/gtk/gtktextbuffer.h \ + /usr/include/gtk-3.0/gtk/gtktexttagtable.h \ + /usr/include/gtk-3.0/gtk/gtktextmark.h \ + /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h \ + /usr/include/gtk-3.0/gtk/gtktextview.h \ + /usr/include/gtk-3.0/gtk/gtktoolbar.h \ + /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h \ + /usr/include/gtk-3.0/gtk/gtktoolpalette.h \ + /usr/include/gtk-3.0/gtk/gtktoolshell.h \ + /usr/include/gtk-3.0/gtk/gtktestutils.h \ + /usr/include/gtk-3.0/gtk/gtktreednd.h \ + /usr/include/gtk-3.0/gtk/gtktreemodelsort.h \ + /usr/include/gtk-3.0/gtk/gtktreeselection.h \ + /usr/include/gtk-3.0/gtk/gtktreestore.h \ + /usr/include/gtk-3.0/gtk/gtktypebuiltins.h \ + /usr/include/gtk-3.0/gtk/gtkversion.h \ + /usr/include/gtk-3.0/gtk/gtkviewport.h \ + /usr/include/gtk-3.0/gtk/gtkvolumebutton.h \ + /usr/include/gtk-3.0/gtk/gtkwidgetpath.h \ + /usr/include/gtk-3.0/gtk/gtkwindowgroup.h \ + /usr/include/gtk-3.0/gtk/gtkwindow.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtktable.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h \ + /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h \ + /usr/include/gtk-3.0/gtk/gtk-autocleanups.h \ + /usr/include/gtkmm-3.0/gtkmm/targetlist.h \ + /usr/include/gtkmm-3.0/gtkmm/targetentry.h \ + /usr/include/gtkmm-3.0/gtkmm/clipboard.h \ + /usr/include/gtkmm-3.0/gtkmm/selectiondata.h \ + /usr/include/gtkmm-3.0/gtkmm/requisition.h \ + /usr/include/gtkmm-3.0/gtkmm/stylecontext.h \ + /usr/include/gtkmm-3.0/gtkmm/styleprovider.h \ + /usr/include/gtkmm-3.0/gtkmm/border.h \ + /usr/include/gtkmm-3.0/gtkmm/iconsource.h \ + /usr/include/gtkmm-3.0/gtkmm/iconset.h \ + /usr/include/gtkmm-3.0/gtkmm/stockid.h \ + /usr/include/gtkmm-3.0/gtkmm/widgetpath.h \ + /usr/include/gtkmm-3.0/gtkmm/accelgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/radioaction.h \ + /usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h \ + /usr/include/gtkmm-3.0/gtkmm/aboutdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/dialog.h \ + /usr/include/gtkmm-3.0/gtkmm/window.h /usr/include/gtkmm-3.0/gtkmm/bin.h \ + /usr/include/gtkmm-3.0/gtkmm/container.h \ + /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h \ + /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h \ + /usr/include/gtkmm-3.0/gtkmm/application.h \ + /usr/include/gtkmm-3.0/gtkmm/actiongroup.h \ + /usr/include/gtkmm-3.0/gtkmm/accelkey.h \ + /usr/include/gtkmm-3.0/gtkmm/windowgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/box.h \ + /usr/include/gtkmm-3.0/gtkmm/orientable.h \ + /usr/include/gtkmm-3.0/gtkmm/hvbox.h \ + /usr/include/gtkmm-3.0/gtkmm/button.h \ + /usr/include/gtkmm-3.0/gtkmm/activatable.h \ + /usr/include/gtkmm-3.0/gtkmm/buttonbox.h \ + /usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h \ + /usr/include/gtkmm-3.0/gtkmm/headerbar.h \ + /usr/include/gtkmm-3.0/gtkmm/accelmap.h \ + /usr/include/gtkmm-3.0/gtkmm/actionable.h \ + /usr/include/gtkmm-3.0/gtkmm/actionbar.h \ + /usr/include/gtkmm-3.0/gtkmm/adjustment.h \ + /usr/include/gtkmm-3.0/gtkmm/alignment.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/combobox.h \ + /usr/include/gtkmm-3.0/gtkmm/celllayout.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderer.h \ + /usr/include/gtkmm-3.0/gtkmm/celleditable.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodel.h \ + /usr/include/gtkmm-3.0/gtkmm/treeiter.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h \ + /usr/include/gtkmm-3.0/gtkmm/cellarea.h \ + /usr/include/gtkmm-3.0/gtkmm/cellareacontext.h \ + /usr/include/gtkmm-3.0/gtkmm/treeview.h \ + /usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h \ + /usr/include/gtkmm-3.0/gtkmm/treeselection.h \ + /usr/include/gtkmm-3.0/gtkmm/treepath.h \ + /usr/include/gtkmm-3.0/gtkmm/scrollable.h \ + /usr/include/gtkmm-3.0/gtkmm/entry.h \ + /usr/include/gtkmm-3.0/gtkmm/editable.h \ + /usr/include/gtkmm-3.0/gtkmm/menu.h \ + /usr/include/gtkmm-3.0/gtkmm/menushell.h \ + /usr/include/gtkmm-3.0/gtkmm/menuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/accellabel.h \ + /usr/include/gtkmm-3.0/gtkmm/label.h /usr/include/gtkmm-3.0/gtkmm/misc.h \ + /usr/include/gtkmm-3.0/gtkmm/entrycompletion.h \ + /usr/include/gtkmm-3.0/gtkmm/image.h \ + /usr/include/gtkmm-3.0/gtkmm/entrybuffer.h \ + /usr/include/gtkmm-3.0/gtkmm/tooltip.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/applicationwindow.h \ + /usr/include/gtkmm-3.0/gtkmm/arrow.h \ + /usr/include/gtkmm-3.0/gtkmm/aspectframe.h \ + /usr/include/gtkmm-3.0/gtkmm/frame.h \ + /usr/include/gtkmm-3.0/gtkmm/assistant.h \ + /usr/include/gtkmm-3.0/gtkmm/builder.h \ + /usr/include/gtkmm-3.0/gtkmm/cellareabox.h \ + /usr/include/gtkmm-3.0/gtkmm/cellview.h \ + /usr/include/gtkmm-3.0/gtkmm/checkbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/togglebutton.h \ + /usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h \ + /usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h \ + /usr/include/gtkmm-3.0/gtkmm/colorbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/colorchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/colorselection.h \ + /usr/include/gtkmm-3.0/gtkmm/comboboxtext.h \ + /usr/include/gtkmm-3.0/gtkmm/cssprovider.h \ + /usr/include/gtkmm-3.0/gtkmm/csssection.h \ + /usr/include/gtkmm-3.0/gtkmm/drawingarea.h \ + /usr/include/gtkmm-3.0/gtkmm/expander.h \ + /usr/include/gtkmm-3.0/gtkmm/eventbox.h \ + /usr/include/gtkmm-3.0/gtkmm/eventcontroller.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooser.h \ + /usr/include/gtkmm-3.0/gtkmm/filefilter.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/filechoosernative.h \ + /usr/include/gtkmm-3.0/gtkmm/nativedialog.h \ + /usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/fixed.h \ + /usr/include/gtkmm-3.0/gtkmm/flowbox.h \ + /usr/include/gtkmm-3.0/gtkmm/flowboxchild.h \ + /usr/include/gtkmm-3.0/gtkmm/fontbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/fontchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/fontselection.h \ + /usr/include/gtkmm-3.0/gtkmm/gesture.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturedrag.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturesingle.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturepan.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturerotate.h \ + /usr/include/gtkmm-3.0/gtkmm/gestureswipe.h \ + /usr/include/gtkmm-3.0/gtkmm/gesturezoom.h \ + /usr/include/gtkmm-3.0/gtkmm/glarea.h \ + /usr/include/gtkmm-3.0/gtkmm/grid.h \ + /usr/include/gtkmm-3.0/gtkmm/handlebox.h \ + /usr/include/gtkmm-3.0/gtkmm/hvpaned.h \ + /usr/include/gtkmm-3.0/gtkmm/paned.h \ + /usr/include/gtkmm-3.0/gtkmm/hvscale.h \ + /usr/include/gtkmm-3.0/gtkmm/scale.h \ + /usr/include/gtkmm-3.0/gtkmm/range.h \ + /usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h \ + /usr/include/gtkmm-3.0/gtkmm/scrollbar.h \ + /usr/include/gtkmm-3.0/gtkmm/hvseparator.h \ + /usr/include/gtkmm-3.0/gtkmm/separator.h \ + /usr/include/gtkmm-3.0/gtkmm/iconfactory.h \ + /usr/include/gtkmm-3.0/gtkmm/icontheme.h \ + /usr/include/gtkmm-3.0/gtkmm/iconinfo.h \ + /usr/include/gtkmm-3.0/gtkmm/iconview.h \ + /usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/infobar.h \ + /usr/include/gtkmm-3.0/gtkmm/calendar.h \ + /usr/include/gtkmm-3.0/gtkmm/invisible.h \ + /usr/include/gtkmm-3.0/gtkmm/layout.h \ + /usr/include/gtkmm-3.0/gtkmm/levelbar.h \ + /usr/include/gtkmm-3.0/gtkmm/listbox.h \ + /usr/include/gtkmm-3.0/gtkmm/listboxrow.h \ + /usr/include/gtkmm-3.0/gtkmm/liststore.h \ + /usr/include/gtkmm-3.0/gtkmm/treesortable.h \ + /usr/include/gtkmm-3.0/gtkmm/treedragdest.h \ + /usr/include/gtkmm-3.0/gtkmm/treedragsource.h \ + /usr/include/gtkmm-3.0/gtkmm/listviewtext.h \ + /usr/include/gtkmm-3.0/gtkmm/linkbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/main.h \ + /usr/include/gtkmm-3.0/gtkmm/menubar.h \ + /usr/include/gtkmm-3.0/gtkmm/menubutton.h \ + /usr/include/gtkmm-3.0/gtkmm/popover.h \ + /usr/include/gtkmm-3.0/gtkmm/messagedialog.h \ + /usr/include/gtkmm-3.0/gtkmm/modelbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/notebook.h \ + /usr/include/gtkmm-3.0/gtkmm/numerableicon.h \ + /usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h \ + /usr/include/gtkmm-3.0/gtkmm/overlay.h \ + /usr/include/gtkmm-3.0/gtkmm/pagesetup.h \ + /usr/include/gtkmm-3.0/gtkmm/papersize.h \ + /usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/printsettings.h \ + /usr/include/gtkmm-3.0/gtkmm/placessidebar.h \ + /usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h \ + /usr/include/gtkmm-3.0/gtkmm/popovermenu.h \ + /usr/include/gtkmm-3.0/gtkmm/printcontext.h \ + /usr/include/gtkmm-3.0/gtkmm/printer.h \ + /usr/include/gtkmm-3.0/gtkmm/printjob.h \ + /usr/include/gtkmm-3.0/gtkmm/printoperation.h \ + /usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h \ + /usr/include/gtkmm-3.0/gtkmm/printunixdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/progressbar.h \ + /usr/include/gtkmm-3.0/gtkmm/radiobutton.h \ + /usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/toolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/toolitem.h \ + /usr/include/gtkmm-3.0/gtkmm/sizegroup.h \ + /usr/include/gtkmm-3.0/gtkmm/recentaction.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchooser.h \ + /usr/include/gtkmm-3.0/gtkmm/recentinfo.h \ + /usr/include/gtkmm-3.0/gtkmm/recentfilter.h \ + /usr/include/gtkmm-3.0/gtkmm/recentmanager.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h \ + /usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h \ + /usr/include/gtkmm-3.0/gtkmm/revealer.h \ + /usr/include/gtkmm-3.0/gtkmm/scalebutton.h \ + /usr/include/gtkmm-3.0/gtkmm/searchbar.h \ + /usr/include/gtkmm-3.0/gtkmm/searchentry.h \ + /usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h \ + /usr/include/gtkmm-3.0/gtkmm/settings.h \ + /usr/include/gtkmm-3.0/gtkmm/toolbar.h \ + /usr/include/gtkmm-3.0/gtkmm/toolshell.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutssection.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h \ + /usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h \ + /usr/include/gtkmm-3.0/gtkmm/spinbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/spinner.h \ + /usr/include/gtkmm-3.0/gtkmm/stack.h \ + /usr/include/gtkmm-3.0/gtkmm/stacksidebar.h \ + /usr/include/gtkmm-3.0/gtkmm/stackswitcher.h \ + /usr/include/gtkmm-3.0/gtkmm/statusbar.h \ + /usr/include/gtkmm-3.0/gtkmm/statusicon.h \ + /usr/include/gtkmm-3.0/gtkmm/stock.h \ + /usr/include/gtkmm-3.0/gtkmm/stockitem.h \ + /usr/include/gtkmm-3.0/gtkmm/styleproperty.h \ + /usr/include/gtkmm-3.0/gtkmm/switch.h \ + /usr/include/gtkmm-3.0/gtkmm/table.h \ + /usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h \ + /usr/include/gtkmm-3.0/gtkmm/textbuffer.h \ + /usr/include/gtkmm-3.0/gtkmm/texttagtable.h \ + /usr/include/gtkmm-3.0/gtkmm/texttag.h \ + /usr/include/gtkmm-3.0/gtkmm/textchildanchor.h \ + /usr/include/gtkmm-3.0/gtkmm/textmark.h \ + /usr/include/gtkmm-3.0/gtkmm/textiter.h \ + /usr/include/gtkmm-3.0/gtkmm/textattributes.h \ + /usr/include/gtkmm-3.0/gtkmm/textview.h \ + /usr/include/gtkmm-3.0/gtkmm/toolpalette.h \ + /usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h \ + /usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h \ + /usr/include/gtkmm-3.0/gtkmm/treemodelsort.h \ + /usr/include/gtkmm-3.0/gtkmm/treerowreference.h \ + /usr/include/gtkmm-3.0/gtkmm/treestore.h \ + /usr/include/gtkmm-3.0/gtkmm/uimanager.h \ + /usr/include/gtkmm-3.0/gtkmm/viewport.h \ + /usr/include/gtkmm-3.0/gtkmm/volumebutton.h \ + /usr/include/c++/11.2.0/fstream /usr/include/c++/11.2.0/bits/codecvt.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h \ + /usr/include/c++/11.2.0/bits/fstream.tcc \ + /usr/include/c++/11.2.0/filesystem /usr/include/c++/11.2.0/bits/fs_fwd.h \ + /usr/include/c++/11.2.0/bits/fs_path.h /usr/include/c++/11.2.0/locale \ + /usr/include/c++/11.2.0/bits/locale_facets_nonio.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h \ + /usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11.2.0/bits/locale_conv.h \ + /usr/include/c++/11.2.0/iomanip \ + /usr/include/c++/11.2.0/bits/quoted_string.h \ + /usr/include/c++/11.2.0/codecvt /usr/include/c++/11.2.0/bits/fs_dir.h \ + /usr/include/c++/11.2.0/bits/fs_ops.h \ + /usr/include/gtkmm-3.0/gtkmm/plug.h /usr/include/gtk-3.0/gtk/gtkx.h \ + /usr/include/gtk-3.0/gtk/gtksocket.h /usr/include/gtk-3.0/gdk/gdkx.h \ + /usr/include/X11/Xlib.h /usr/include/X11/X.h \ + /usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \ + /usr/include/X11/Xutil.h /usr/include/X11/keysym.h \ + /usr/include/X11/keysymdef.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11device.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11display.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11property.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx11window.h \ + /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h \ + /usr/include/gtk-3.0/gtk/gtkplug.h \ + /usr/include/gtk-3.0/gtk/gtkx-autocleanups.h /usr/include/pwd.h \ + /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h diff --git a/compile/Makefile b/compile/Makefile new file mode 100644 index 0000000..812b91e --- /dev/null +++ b/compile/Makefile @@ -0,0 +1,257 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.23 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." + /usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named ublexec + +# Build rule for target. +ublexec: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ublexec +.PHONY : ublexec + +# fast build rule for target. +ublexec/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/build +.PHONY : ublexec/fast + +main.o: main.cc.o +.PHONY : main.o + +# target to build an object file +main.cc.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/main.cc.o +.PHONY : main.cc.o + +main.i: main.cc.i +.PHONY : main.i + +# target to preprocess a source file +main.cc.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/main.cc.i +.PHONY : main.cc.i + +main.s: main.cc.s +.PHONY : main.s + +# target to generate assembly for a file +main.cc.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/main.cc.s +.PHONY : main.cc.s + +ublexec.o: ublexec.cc.o +.PHONY : ublexec.o + +# target to build an object file +ublexec.cc.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/ublexec.cc.o +.PHONY : ublexec.cc.o + +ublexec.i: ublexec.cc.i +.PHONY : ublexec.i + +# target to preprocess a source file +ublexec.cc.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/ublexec.cc.i +.PHONY : ublexec.cc.i + +ublexec.s: ublexec.cc.s +.PHONY : ublexec.s + +# target to generate assembly for a file +ublexec.cc.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/ublexec.cc.s +.PHONY : ublexec.cc.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... ublexec" + @echo "... main.o" + @echo "... main.i" + @echo "... main.s" + @echo "... ublexec.o" + @echo "... ublexec.i" + @echo "... ublexec.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/compile/cmake_install.cmake b/compile/cmake_install.cmake new file mode 100644 index 0000000..1283f0d --- /dev/null +++ b/compile/cmake_install.cmake @@ -0,0 +1,70 @@ +# Install script for directory: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/ublexec" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/ublexec") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/ublexec" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/ublexec") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/ublexec" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/ublexec") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/ublexec") + endif() + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/source/ublexec.cc b/source/ublexec.cc index 3e6b702..7dc3963 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -208,17 +208,34 @@ void MainWindow::event(){ btnMessageErrorOk->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::message_gui_close)); btnStartMenuOK->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::start_menu_entry_app)); btnStartMenuExit->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::close_start_menu)); - iconGraphics->signal_item_activated().connect(sigc::mem_fun(*this,&MainWindow::on_item_activated) ); + iconGraphics->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Graphics)); } -void MainWindow::on_item_activated(const Gtk::TreeModel::Path& path){ - +void MainWindow::select_Graphics(){ + this->tempate_icon_select(iconGraphics,list_Graphics); +} + +void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtr >k_list){ + typedef std::list type_list_paths; + type_list_paths selected = icon->get_selected_items(); + if(!selected.empty()) + { + const Gtk::TreeModel::Path& path = *selected.begin(); + Gtk::TreeModel::iterator iter = gtk_list->get_iter(path); + Gtk::TreeModel::Row row = *iter; + + //const std::string filename = row[m_Columns.m_col_filename]; + const Glib::ustring description = row[m_Columns.m_col_description]; + name_app = description; + txtCmd->set_text(name_app); + } } + + void MainWindow::settings(){ this->pars_apps(); - this->get_builder(); this->event(); this->localization(); @@ -286,15 +303,9 @@ void MainWindow::tempalte_row(string name, string path, Glib::RefPtrget_model(); string path = ""; for ( const auto &str_app : list_app){ for ( const auto &str_categor : str_app.Categories){ diff --git a/source/ublexec.h b/source/ublexec.h index 399867d..16253c9 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -86,10 +86,11 @@ public: void pars_dir_bin(); void pars_users(); void pars_apps(); + void select_Graphics(); void tmp_desktop(string cmd_name); void on_item_activated(const Gtk::TreeModel::Path& path); void tempalte_row(string name, string path, Glib::RefPtr &dtk_list); - + void tempate_icon_select(Gtk::IconView *icon, Glib::RefPtr >k_list); vector split(const std::string &s, char delim); public: @@ -191,6 +192,7 @@ public: public: string execute_cmd = ""; string path_file = ""; + string name_app = ""; bool flag_pkexec = false; bool flag_su = false; bool flag_sudo = false; From e88d53e22fcaa702d1f5cf9dc910f3a2d5e8a783 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Thu, 2 Feb 2023 09:25:00 +0600 Subject: [PATCH 03/31] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B0=20=D0=B2=D0=BE=D0=B7=D0=BC=D0=BE=D0=B6=D0=BD?= =?UTF-8?q?=D0=BE=D1=81=D1=82=D1=8C=20=D0=B2=D1=8B=D0=B1=D0=BE=D1=80=D0=B0?= =?UTF-8?q?=20=D0=BF=D1=80=D0=B8=D0=BB=D0=BE=D0=B6=D0=B5=D0=BD=D0=B8=D0=B9?= =?UTF-8?q?=20=D1=87=D0=B5=D1=80=D0=B5=D0=B7=20GUI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- compile/CMakeCache.txt | 526 -- .../CMakeFiles/3.23.0/CMakeCCompiler.cmake | 72 - .../CMakeFiles/3.23.0/CMakeCXXCompiler.cmake | 83 - .../3.23.0/CMakeDetermineCompilerABI_C.bin | Bin 15936 -> 0 bytes .../3.23.0/CMakeDetermineCompilerABI_CXX.bin | Bin 15960 -> 0 bytes compile/CMakeFiles/3.23.0/CMakeSystem.cmake | 15 - .../3.23.0/CompilerIdC/CMakeCCompilerId.c | 828 --- compile/CMakeFiles/3.23.0/CompilerIdC/a.out | Bin 16056 -> 0 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 816 -- compile/CMakeFiles/3.23.0/CompilerIdCXX/a.out | Bin 16064 -> 0 bytes .../CMakeDirectoryInformation.cmake | 16 - compile/CMakeFiles/CMakeOutput.log | 411 - compile/CMakeFiles/Makefile.cmake | 129 - compile/CMakeFiles/Makefile2 | 112 - compile/CMakeFiles/Progress/2 | 1 - compile/CMakeFiles/Progress/count.txt | 1 - compile/CMakeFiles/TargetDirectories.txt | 7 - compile/CMakeFiles/cmake.check_cache | 1 - compile/CMakeFiles/progress.marks | 1 - .../CMakeFiles/ublexec.dir/DependInfo.cmake | 20 - compile/CMakeFiles/ublexec.dir/build.make | 126 - .../CMakeFiles/ublexec.dir/cmake_clean.cmake | 13 - .../ublexec.dir/compiler_depend.internal | 3323 --------- .../ublexec.dir/compiler_depend.make | 6619 ----------------- .../CMakeFiles/ublexec.dir/compiler_depend.ts | 2 - compile/CMakeFiles/ublexec.dir/depend.make | 2 - compile/CMakeFiles/ublexec.dir/flags.make | 10 - compile/CMakeFiles/ublexec.dir/link.txt | 1 - compile/CMakeFiles/ublexec.dir/main.cc.o | Bin 51232 -> 0 bytes compile/CMakeFiles/ublexec.dir/main.cc.o.d | 1489 ---- compile/CMakeFiles/ublexec.dir/progress.make | 4 - compile/CMakeFiles/ublexec.dir/ublexec.cc.o.d | 1490 ---- compile/Makefile | 257 - compile/cmake_install.cmake | 70 - source/ublexec.cc | 48 +- source/ublexec.h | 10 + ublexec.glade | 4 + 37 files changed, 58 insertions(+), 16449 deletions(-) delete mode 100644 compile/CMakeCache.txt delete mode 100644 compile/CMakeFiles/3.23.0/CMakeCCompiler.cmake delete mode 100644 compile/CMakeFiles/3.23.0/CMakeCXXCompiler.cmake delete mode 100755 compile/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_C.bin delete mode 100755 compile/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_CXX.bin delete mode 100644 compile/CMakeFiles/3.23.0/CMakeSystem.cmake delete mode 100644 compile/CMakeFiles/3.23.0/CompilerIdC/CMakeCCompilerId.c delete mode 100755 compile/CMakeFiles/3.23.0/CompilerIdC/a.out delete mode 100644 compile/CMakeFiles/3.23.0/CompilerIdCXX/CMakeCXXCompilerId.cpp delete mode 100755 compile/CMakeFiles/3.23.0/CompilerIdCXX/a.out delete mode 100644 compile/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 compile/CMakeFiles/CMakeOutput.log delete mode 100644 compile/CMakeFiles/Makefile.cmake delete mode 100644 compile/CMakeFiles/Makefile2 delete mode 100644 compile/CMakeFiles/Progress/2 delete mode 100644 compile/CMakeFiles/Progress/count.txt delete mode 100644 compile/CMakeFiles/TargetDirectories.txt delete mode 100644 compile/CMakeFiles/cmake.check_cache delete mode 100644 compile/CMakeFiles/progress.marks delete mode 100644 compile/CMakeFiles/ublexec.dir/DependInfo.cmake delete mode 100644 compile/CMakeFiles/ublexec.dir/build.make delete mode 100644 compile/CMakeFiles/ublexec.dir/cmake_clean.cmake delete mode 100644 compile/CMakeFiles/ublexec.dir/compiler_depend.internal delete mode 100644 compile/CMakeFiles/ublexec.dir/compiler_depend.make delete mode 100644 compile/CMakeFiles/ublexec.dir/compiler_depend.ts delete mode 100644 compile/CMakeFiles/ublexec.dir/depend.make delete mode 100644 compile/CMakeFiles/ublexec.dir/flags.make delete mode 100644 compile/CMakeFiles/ublexec.dir/link.txt delete mode 100644 compile/CMakeFiles/ublexec.dir/main.cc.o delete mode 100644 compile/CMakeFiles/ublexec.dir/main.cc.o.d delete mode 100644 compile/CMakeFiles/ublexec.dir/progress.make delete mode 100644 compile/CMakeFiles/ublexec.dir/ublexec.cc.o.d delete mode 100644 compile/Makefile delete mode 100644 compile/cmake_install.cmake diff --git a/compile/CMakeCache.txt b/compile/CMakeCache.txt deleted file mode 100644 index 256e72d..0000000 --- a/compile/CMakeCache.txt +++ /dev/null @@ -1,526 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile -# It was generated by CMake: /usr/bin/cmake -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//Choose the type of build, options are: None Debug Release RelWithDebInfo -// MinSizeRel ... -CMAKE_BUILD_TYPE:STRING=Release - -//Enable/Disable color output during build. -CMAKE_COLOR_MAKEFILE:BOOL=ON - -//CXX compiler -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib - -//Flags used by the CXX compiler during all build types. -CMAKE_CXX_FLAGS:STRING= - -//Flags used by the CXX compiler during DEBUG builds. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g - -//Flags used by the CXX compiler during MINSIZEREL builds. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the CXX compiler during RELEASE builds. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the CXX compiler during RELWITHDEBINFO builds. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//C compiler -CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib - -//Flags used by the C compiler during all build types. -CMAKE_C_FLAGS:STRING= - -//Flags used by the C compiler during DEBUG builds. -CMAKE_C_FLAGS_DEBUG:STRING=-g - -//Flags used by the C compiler during MINSIZEREL builds. -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the C compiler during RELEASE builds. -CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the C compiler during RELWITHDEBINFO builds. -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Flags used by the linker during all build types. -CMAKE_EXE_LINKER_FLAGS:STRING= - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Enable/Disable output of compile commands during generation. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/usr - -//Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld - -//Path to a program. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=ublexec - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/usr/bin/readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - -//Arguments to supply to pkg-config -PKG_CONFIG_ARGN:STRING= - -//pkg-config executable -PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config - -//Path to a library. -pkgcfg_lib_GTK_atk-1.0:FILEPATH=/usr/lib/libatk-1.0.so - -//Path to a library. -pkgcfg_lib_GTK_atkmm-1.6:FILEPATH=/usr/lib/libatkmm-1.6.so - -//Path to a library. -pkgcfg_lib_GTK_cairo:FILEPATH=/usr/lib/libcairo.so - -//Path to a library. -pkgcfg_lib_GTK_cairo-gobject:FILEPATH=/usr/lib/libcairo-gobject.so - -//Path to a library. -pkgcfg_lib_GTK_cairomm-1.0:FILEPATH=/usr/lib/libcairomm-1.0.so - -//Path to a library. -pkgcfg_lib_GTK_gdk-3:FILEPATH=/usr/lib/libgdk-3.so - -//Path to a library. -pkgcfg_lib_GTK_gdk_pixbuf-2.0:FILEPATH=/usr/lib/libgdk_pixbuf-2.0.so - -//Path to a library. -pkgcfg_lib_GTK_gdkmm-3.0:FILEPATH=/usr/lib/libgdkmm-3.0.so - -//Path to a library. -pkgcfg_lib_GTK_gio-2.0:FILEPATH=/usr/lib/libgio-2.0.so - -//Path to a library. -pkgcfg_lib_GTK_giomm-2.4:FILEPATH=/usr/lib/libgiomm-2.4.so - -//Path to a library. -pkgcfg_lib_GTK_glib-2.0:FILEPATH=/usr/lib/libglib-2.0.so - -//Path to a library. -pkgcfg_lib_GTK_glibmm-2.4:FILEPATH=/usr/lib/libglibmm-2.4.so - -//Path to a library. -pkgcfg_lib_GTK_gobject-2.0:FILEPATH=/usr/lib/libgobject-2.0.so - -//Path to a library. -pkgcfg_lib_GTK_gtk-3:FILEPATH=/usr/lib/libgtk-3.so - -//Path to a library. -pkgcfg_lib_GTK_gtkmm-3.0:FILEPATH=/usr/lib/libgtkmm-3.0.so - -//Path to a library. -pkgcfg_lib_GTK_harfbuzz:FILEPATH=/usr/lib/libharfbuzz.so - -//Path to a library. -pkgcfg_lib_GTK_pango-1.0:FILEPATH=/usr/lib/libpango-1.0.so - -//Path to a library. -pkgcfg_lib_GTK_pangocairo-1.0:FILEPATH=/usr/lib/libpangocairo-1.0.so - -//Path to a library. -pkgcfg_lib_GTK_pangomm-1.4:FILEPATH=/usr/lib/libpangomm-1.4.so - -//Path to a library. -pkgcfg_lib_GTK_sigc-2.0:FILEPATH=/usr/lib/libsigc-2.0.so - -//Path to a library. -pkgcfg_lib_GTK_z:FILEPATH=/usr/lib/libz.so - -//Value Computed by CMake -ublexec_BINARY_DIR:STATIC=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile - -//Value Computed by CMake -ublexec_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -ublexec_SOURCE_DIR:STATIC=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=23 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 -//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE -CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/usr/bin/cmake -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest -//ADVANCED property for variable: CMAKE_CXX_COMPILER -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_AR -CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Path to cache edit program executable. -CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Unix Makefiles -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source -//Install .so files without execute permission. -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/usr/share/cmake -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -//Details about finding PkgConfig -FIND_PACKAGE_MESSAGE_DETAILS_PkgConfig:INTERNAL=[/usr/bin/pkg-config][v1.8.0()] -GTK_CFLAGS:INTERNAL=-I/usr/include/gtkmm-3.0;-I/usr/lib/gtkmm-3.0/include;-I/usr/include/giomm-2.4;-I/usr/lib/giomm-2.4/include;-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/include;-I/usr/include/sysprof-4;-I/usr/include/libmount;-I/usr/include/blkid;-I/usr/include/glibmm-2.4;-I/usr/lib/glibmm-2.4/include;-I/usr/include/sigc++-2.0;-I/usr/lib/sigc++-2.0/include;-I/usr/include/gtk-3.0;-I/usr/include/pango-1.0;-I/usr/include/harfbuzz;-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/fribidi;-I/usr/include/cairo;-I/usr/include/lzo;-I/usr/include/pixman-1;-I/usr/include/gdk-pixbuf-2.0;-I/usr/include/gio-unix-2.0;-I/usr/include/cloudproviders;-I/usr/include/atk-1.0;-I/usr/include/at-spi2-atk/2.0;-I/usr/include/dbus-1.0;-I/usr/lib/dbus-1.0/include;-I/usr/include/at-spi-2.0;-I/usr/include/cairomm-1.0;-I/usr/lib/cairomm-1.0/include;-I/usr/include/pangomm-1.4;-I/usr/lib/pangomm-1.4/include;-I/usr/include/atkmm-1.6;-I/usr/lib/atkmm-1.6/include;-I/usr/include/gtk-3.0/unix-print;-I/usr/include/gdkmm-3.0;-I/usr/lib/gdkmm-3.0/include;-pthread -GTK_CFLAGS_I:INTERNAL= -GTK_CFLAGS_OTHER:INTERNAL=-pthread -GTK_FOUND:INTERNAL=1 -GTK_INCLUDEDIR:INTERNAL=/usr/include -GTK_INCLUDE_DIRS:INTERNAL=/usr/include/gtkmm-3.0;/usr/lib/gtkmm-3.0/include;/usr/include/giomm-2.4;/usr/lib/giomm-2.4/include;/usr/include/glib-2.0;/usr/lib/glib-2.0/include;/usr/include/sysprof-4;/usr/include/libmount;/usr/include/blkid;/usr/include/glibmm-2.4;/usr/lib/glibmm-2.4/include;/usr/include/sigc++-2.0;/usr/lib/sigc++-2.0/include;/usr/include/gtk-3.0;/usr/include/pango-1.0;/usr/include/harfbuzz;/usr/include/freetype2;/usr/include/libpng16;/usr/include/fribidi;/usr/include/cairo;/usr/include/lzo;/usr/include/pixman-1;/usr/include/gdk-pixbuf-2.0;/usr/include/gio-unix-2.0;/usr/include/cloudproviders;/usr/include/atk-1.0;/usr/include/at-spi2-atk/2.0;/usr/include/dbus-1.0;/usr/lib/dbus-1.0/include;/usr/include/at-spi-2.0;/usr/include/cairomm-1.0;/usr/lib/cairomm-1.0/include;/usr/include/pangomm-1.4;/usr/lib/pangomm-1.4/include;/usr/include/atkmm-1.6;/usr/lib/atkmm-1.6/include;/usr/include/gtk-3.0/unix-print;/usr/include/gdkmm-3.0;/usr/lib/gdkmm-3.0/include -GTK_LDFLAGS:INTERNAL=-L/usr/lib;-lgtkmm-3.0;-latkmm-1.6;-lgdkmm-3.0;-lgiomm-2.4;-lgtk-3;-lgdk-3;-lz;-latk-1.0;-lcairo-gobject;-lgio-2.0;-lpangomm-1.4;-lglibmm-2.4;-lcairomm-1.0;-lsigc-2.0;-lpangocairo-1.0;-lpango-1.0;-lharfbuzz;-lcairo;-lgdk_pixbuf-2.0;-lgobject-2.0;-lglib-2.0 -GTK_LDFLAGS_OTHER:INTERNAL= -GTK_LIBDIR:INTERNAL=/usr/lib -GTK_LIBRARIES:INTERNAL=gtkmm-3.0;atkmm-1.6;gdkmm-3.0;giomm-2.4;gtk-3;gdk-3;z;atk-1.0;cairo-gobject;gio-2.0;pangomm-1.4;glibmm-2.4;cairomm-1.0;sigc-2.0;pangocairo-1.0;pango-1.0;harfbuzz;cairo;gdk_pixbuf-2.0;gobject-2.0;glib-2.0 -GTK_LIBRARY_DIRS:INTERNAL=/usr/lib -GTK_LIBS:INTERNAL= -GTK_LIBS_L:INTERNAL= -GTK_LIBS_OTHER:INTERNAL= -GTK_LIBS_PATHS:INTERNAL= -GTK_MODULE_NAME:INTERNAL=gtkmm-3.0 -GTK_PREFIX:INTERNAL=/usr -GTK_STATIC_CFLAGS:INTERNAL=-I/usr/include/gtkmm-3.0;-I/usr/lib/gtkmm-3.0/include;-I/usr/include/giomm-2.4;-I/usr/lib/giomm-2.4/include;-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/include;-I/usr/include/sysprof-4;-I/usr/include/libmount;-I/usr/include/blkid;-I/usr/include/glibmm-2.4;-I/usr/lib/glibmm-2.4/include;-I/usr/include/sigc++-2.0;-I/usr/lib/sigc++-2.0/include;-I/usr/include/gtk-3.0;-I/usr/include/pango-1.0;-I/usr/include/harfbuzz;-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/fribidi;-I/usr/include/cairo;-I/usr/include/lzo;-I/usr/include/pixman-1;-I/usr/include/gdk-pixbuf-2.0;-I/usr/include/gio-unix-2.0;-I/usr/include/cloudproviders;-I/usr/include/atk-1.0;-I/usr/include/at-spi2-atk/2.0;-I/usr/include/dbus-1.0;-I/usr/lib/dbus-1.0/include;-I/usr/include/at-spi-2.0;-I/usr/include/cairomm-1.0;-I/usr/lib/cairomm-1.0/include;-I/usr/include/pangomm-1.4;-I/usr/lib/pangomm-1.4/include;-I/usr/include/atkmm-1.6;-I/usr/lib/atkmm-1.6/include;-I/usr/include/gtk-3.0/unix-print;-I/usr/include/gdkmm-3.0;-I/usr/lib/gdkmm-3.0/include;-pthread -GTK_STATIC_CFLAGS_I:INTERNAL= -GTK_STATIC_CFLAGS_OTHER:INTERNAL=-pthread -GTK_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/gtkmm-3.0;/usr/lib/gtkmm-3.0/include;/usr/include/giomm-2.4;/usr/lib/giomm-2.4/include;/usr/include/glib-2.0;/usr/lib/glib-2.0/include;/usr/include/sysprof-4;/usr/include/libmount;/usr/include/blkid;/usr/include/glibmm-2.4;/usr/lib/glibmm-2.4/include;/usr/include/sigc++-2.0;/usr/lib/sigc++-2.0/include;/usr/include/gtk-3.0;/usr/include/pango-1.0;/usr/include/harfbuzz;/usr/include/freetype2;/usr/include/libpng16;/usr/include/fribidi;/usr/include/cairo;/usr/include/lzo;/usr/include/pixman-1;/usr/include/gdk-pixbuf-2.0;/usr/include/gio-unix-2.0;/usr/include/cloudproviders;/usr/include/atk-1.0;/usr/include/at-spi2-atk/2.0;/usr/include/dbus-1.0;/usr/lib/dbus-1.0/include;/usr/include/at-spi-2.0;/usr/include/cairomm-1.0;/usr/lib/cairomm-1.0/include;/usr/include/pangomm-1.4;/usr/lib/pangomm-1.4/include;/usr/include/atkmm-1.6;/usr/lib/atkmm-1.6/include;/usr/include/gtk-3.0/unix-print;/usr/include/gdkmm-3.0;/usr/lib/gdkmm-3.0/include -GTK_STATIC_LDFLAGS:INTERNAL=-L/usr/lib;-lgtkmm-3.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lglibmm-2.4;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lz;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangocairo-1.0;-lm;-lpango-1.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-lm;-L/usr/lib;-lm;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lepoxy;-ldl;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-latk-1.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lgdk_pixbuf-2.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lsystemd;-ldbus-1;-lsystemd;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-L/usr/lib;-lffi;-ldl;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lpangoft2-1.0;-lm;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lcairomm-1.0;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangomm-1.4;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangocairo-1.0;-lm;-lpango-1.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-lpangoft2-1.0;-lm;-L/usr/lib;-lm;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-latkmm-1.6;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lz;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangocairo-1.0;-lm;-lpango-1.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-lm;-L/usr/lib;-lm;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lepoxy;-ldl;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-latk-1.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lgdk_pixbuf-2.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lsystemd;-ldbus-1;-lsystemd;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-L/usr/lib;-lffi;-ldl;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lpangoft2-1.0;-lm;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-latk-1.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lgdk_pixbuf-2.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lgdkmm-3.0;-lgiomm-2.4;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lglibmm-2.4;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lgtk-3;-lgdk-3;-lz;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangocairo-1.0;-lm;-lpango-1.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-lm;-L/usr/lib;-lm;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXrandr;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXcursor;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXcomposite;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXdamage;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXinerama;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-pthread;-L/usr/lib;-lffi;-lm;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lepoxy;-ldl;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lcloudproviders;-latk-1.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lgdk_pixbuf-2.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-lzstd;-llzma;-ljbig;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-latk-bridge-2.0;-L/usr/lib;-lsystemd;-latspi;-ldbus-1;-lsystemd;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXtst;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXi;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXfixes;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-latk-1.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-Wl,--export-dynamic;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-lxkbcommon;-lwayland-cursor;-L/usr/lib;-lm;-pthread;-L/usr/lib;-lffi;-lwayland-egl;-lwayland-client;-lm;-pthread;-L/usr/lib;-lffi;-lepoxy;-ldl;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lGL;-lEGL;-lpangoft2-1.0;-lm;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-L/usr/lib;-lblkid;-pthread;-lcairomm-1.0;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangomm-1.4;-lglibmm-2.4;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lcairomm-1.0;-lsigc-2.0;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lpangocairo-1.0;-lm;-lpango-1.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-L/usr/lib;-lpangoft2-1.0;-lm;-L/usr/lib;-lpango-1.0;-lm;-L/usr/lib;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lm;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lcairo;-lm;-ldl;-L/usr/lib;-llzo2;-lz;-lm;-lm;-lz;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXext;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-L/usr/lib;-lXau;-lxcb;-L/usr/lib;-lXau;-lxcb-render;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lxcb-shm;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lpixman-1;-lm;-pthread;-lharfbuzz-gobject;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-L/usr/lib;-lbrotlicommon;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-pthread;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-L/usr/lib;-lblkid;-pthread;-lfribidi;-lthai;-L/usr/lib;-ldatrie;-pthread;-lm;-L/usr/lib;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXft;-L/usr/lib;-lXrender;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-L/usr/lib;-lX11;-lpthread;-L/usr/lib;-lxcb;-L/usr/lib;-lXau;-lXdmcp;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lm;-lm;-lz;-pthread;-lm;-L/usr/lib;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lharfbuzz-gobject;-lharfbuzz;-pthread;-lm;-L/usr/lib;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-lgraphite2;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-lgdk_pixbuf-2.0;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lpng16;-lm;-lz;-lm;-L/usr/lib;-L/usr/lib;-lz;-ljpeg;-ltiff;-lzstd;-llzma;-ljbig;-ljpeg;-lm;-pthread;-lm;-L/usr/lib;-lpcre;-lgmodule-2.0;-pthread;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgio-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-lgobject-2.0;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-pthread;-L/usr/lib;-lffi;-L/usr/lib;-lgmodule-2.0;-pthread;-L/usr/lib;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-lz;-lmount;-L/usr/lib;-lblkid;-lsysprof-capture-4;-pthread -GTK_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-Wl,--export-dynamic;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread -GTK_STATIC_LIBDIR:INTERNAL= -GTK_STATIC_LIBRARIES:INTERNAL=gtkmm-3.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;glibmm-2.4;m;pcre;ffi;z;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangocairo-1.0;m;pango-1.0;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;freetype;bz2;z;m;m;brotlicommon;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;m;bz2;z;png16;m;m;z;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fontconfig;freetype;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;wayland-client;m;ffi;m;ffi;m;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;X11;pthread;xcb;Xau;pthread;xcb;Xau;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;epoxy;dl;pthread;xcb;Xau;atk-1.0;m;pcre;gobject-2.0;m;pcre;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;png16;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;gdk_pixbuf-2.0;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;glib-2.0;m;pcre;z;blkid;m;pcre;gobject-2.0;m;pcre;ffi;systemd;dbus-1;systemd;glib-2.0;m;pcre;m;pcre;ffi;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gmodule-2.0;glib-2.0;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;wayland-client;m;ffi;m;ffi;m;ffi;dl;pthread;xcb;Xau;pangoft2-1.0;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;bz2;z;m;m;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;cairomm-1.0;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangomm-1.4;m;pcre;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangocairo-1.0;m;pango-1.0;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangoft2-1.0;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;freetype;bz2;z;m;m;brotlicommon;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;m;freetype;bz2;z;png16;m;m;z;brotlicommon;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;atkmm-1.6;m;pcre;ffi;m;pcre;gobject-2.0;m;pcre;ffi;z;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangocairo-1.0;m;pango-1.0;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;freetype;bz2;z;m;m;brotlicommon;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;m;bz2;z;png16;m;m;z;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fontconfig;freetype;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;wayland-client;m;ffi;m;ffi;m;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;X11;pthread;xcb;Xau;pthread;xcb;Xau;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;epoxy;dl;pthread;xcb;Xau;atk-1.0;m;pcre;gobject-2.0;m;pcre;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;png16;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;gdk_pixbuf-2.0;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;glib-2.0;m;pcre;z;blkid;m;pcre;gobject-2.0;m;pcre;ffi;systemd;dbus-1;systemd;glib-2.0;m;pcre;m;pcre;ffi;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gmodule-2.0;glib-2.0;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;wayland-client;m;ffi;m;ffi;m;ffi;dl;pthread;xcb;Xau;pangoft2-1.0;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;bz2;z;m;m;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;blkid;atk-1.0;m;pcre;gobject-2.0;m;pcre;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;png16;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;gdk_pixbuf-2.0;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;gdkmm-3.0;giomm-2.4;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;glibmm-2.4;m;pcre;ffi;gtk-3;gdk-3;z;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangocairo-1.0;m;pango-1.0;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;freetype;bz2;z;m;m;brotlicommon;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;m;bz2;z;png16;m;m;z;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fontconfig;freetype;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xrandr;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xcursor;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xcomposite;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xdamage;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xinerama;X11;pthread;xcb;Xau;pthread;xcb;Xau;wayland-client;m;ffi;m;ffi;m;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;X11;pthread;xcb;Xau;pthread;xcb;Xau;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;epoxy;dl;pthread;xcb;Xau;cloudproviders;atk-1.0;m;pcre;gobject-2.0;m;pcre;ffi;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo-gobject;m;dl;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;png16;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;gdk_pixbuf-2.0;m;m;pcre;ffi;m;z;m;z;jpeg;zstd;lzma;jbig;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;glib-2.0;m;pcre;z;blkid;m;pcre;gobject-2.0;m;pcre;ffi;atk-bridge-2.0;systemd;atspi;dbus-1;systemd;glib-2.0;m;pcre;m;pcre;ffi;X11;pthread;xcb;Xau;Xtst;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xi;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xfixes;X11;pthread;xcb;Xau;atk-1.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gmodule-2.0;glib-2.0;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;wayland-client;m;ffi;xkbcommon;wayland-cursor;m;ffi;wayland-egl;wayland-client;m;ffi;epoxy;dl;pthread;xcb;Xau;GL;EGL;pangoft2-1.0;m;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;harfbuzz-gobject;m;bz2;z;m;m;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;blkid;cairomm-1.0;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangomm-1.4;glibmm-2.4;m;pcre;ffi;cairomm-1.0;sigc-2.0;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangocairo-1.0;m;pango-1.0;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;glib-2.0;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pangoft2-1.0;m;pango-1.0;m;m;pcre;ffi;m;bz2;z;m;m;brotlicommon;graphite2;glib-2.0;m;pcre;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;freetype;bz2;z;m;m;m;glib-2.0;m;pcre;brotlidec;brotlicommon;expat;m;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;m;pcre;z;blkid;fribidi;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;m;graphite2;m;pcre;brotlidec;brotlicommon;cairo;m;dl;lzo2;z;m;m;z;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;X11;pthread;xcb;Xau;Xext;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb-render;xcb;Xau;xcb-shm;xcb;Xau;pixman-1;m;harfbuzz-gobject;m;freetype;bz2;z;m;m;brotlicommon;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;m;pcre;ffi;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;m;pcre;z;blkid;fribidi;thai;datrie;m;bz2;z;m;m;z;brotlicommon;graphite2;m;pcre;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;Xft;Xrender;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xdmcp;fontconfig;freetype;bz2;z;m;m;z;m;graphite2;m;pcre;brotlidec;brotlicommon;expat;m;freetype;bz2;z;m;m;z;m;m;pcre;brotlidec;brotlicommon;harfbuzz-gobject;harfbuzz;m;freetype;bz2;z;png16;m;m;z;brotlidec;brotlicommon;graphite2;m;pcre;glib-2.0;m;pcre;gobject-2.0;m;pcre;ffi;gdk_pixbuf-2.0;m;m;pcre;ffi;png16;m;z;m;z;jpeg;tiff;zstd;lzma;jbig;jpeg;m;m;pcre;gmodule-2.0;glib-2.0;m;pcre;gio-2.0;m;pcre;gobject-2.0;glib-2.0;m;pcre;ffi;gmodule-2.0;glib-2.0;m;pcre;z;mount;blkid;sysprof-capture-4 -GTK_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib -GTK_STATIC_LIBS:INTERNAL= -GTK_STATIC_LIBS_L:INTERNAL= -GTK_STATIC_LIBS_OTHER:INTERNAL= -GTK_STATIC_LIBS_PATHS:INTERNAL= -GTK_VERSION:INTERNAL=3.24.5 -GTK_gtkmm-3.0_INCLUDEDIR:INTERNAL= -GTK_gtkmm-3.0_LIBDIR:INTERNAL= -GTK_gtkmm-3.0_PREFIX:INTERNAL= -GTK_gtkmm-3.0_VERSION:INTERNAL= -//ADVANCED property for variable: PKG_CONFIG_ARGN -PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE -PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1 -__pkg_config_arguments_GTK:INTERNAL=REQUIRED;gtkmm-3.0 -__pkg_config_checked_GTK:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_atk-1.0 -pkgcfg_lib_GTK_atk-1.0-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_atkmm-1.6 -pkgcfg_lib_GTK_atkmm-1.6-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_cairo -pkgcfg_lib_GTK_cairo-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_cairo-gobject -pkgcfg_lib_GTK_cairo-gobject-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_cairomm-1.0 -pkgcfg_lib_GTK_cairomm-1.0-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_gdk-3 -pkgcfg_lib_GTK_gdk-3-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_gdk_pixbuf-2.0 -pkgcfg_lib_GTK_gdk_pixbuf-2.0-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_gdkmm-3.0 -pkgcfg_lib_GTK_gdkmm-3.0-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_gio-2.0 -pkgcfg_lib_GTK_gio-2.0-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_giomm-2.4 -pkgcfg_lib_GTK_giomm-2.4-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_glib-2.0 -pkgcfg_lib_GTK_glib-2.0-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_glibmm-2.4 -pkgcfg_lib_GTK_glibmm-2.4-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_gobject-2.0 -pkgcfg_lib_GTK_gobject-2.0-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_gtk-3 -pkgcfg_lib_GTK_gtk-3-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_gtkmm-3.0 -pkgcfg_lib_GTK_gtkmm-3.0-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_harfbuzz -pkgcfg_lib_GTK_harfbuzz-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_pango-1.0 -pkgcfg_lib_GTK_pango-1.0-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_pangocairo-1.0 -pkgcfg_lib_GTK_pangocairo-1.0-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_pangomm-1.4 -pkgcfg_lib_GTK_pangomm-1.4-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_sigc-2.0 -pkgcfg_lib_GTK_sigc-2.0-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_GTK_z -pkgcfg_lib_GTK_z-ADVANCED:INTERNAL=1 -prefix_result:INTERNAL=/usr/lib - diff --git a/compile/CMakeFiles/3.23.0/CMakeCCompiler.cmake b/compile/CMakeFiles/3.23.0/CMakeCCompiler.cmake deleted file mode 100644 index ef0634e..0000000 --- a/compile/CMakeFiles/3.23.0/CMakeCCompiler.cmake +++ /dev/null @@ -1,72 +0,0 @@ -set(CMAKE_C_COMPILER "/usr/bin/cc") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "11.2.0") -set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -set(CMAKE_C_COMPILER_WRAPPER "") -set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") -set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") -set(CMAKE_C17_COMPILE_FEATURES "c_std_17") -set(CMAKE_C23_COMPILE_FEATURES "c_std_23") - -set(CMAKE_C_PLATFORM_ID "Linux") -set(CMAKE_C_SIMULATE_ID "") -set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") -set(CMAKE_C_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_COMPILER_IS_GNUCC 1) -set(CMAKE_C_COMPILER_LOADED 1) -set(CMAKE_C_COMPILER_WORKS TRUE) -set(CMAKE_C_ABI_COMPILED TRUE) - -set(CMAKE_C_COMPILER_ENV_VAR "CC") - -set(CMAKE_C_COMPILER_ID_RUN 1) -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_C_LINKER_PREFERENCE 10) - -# Save compiler ABI information. -set(CMAKE_C_SIZEOF_DATA_PTR "8") -set(CMAKE_C_COMPILER_ABI "ELF") -set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_C_LIBRARY_ARCHITECTURE "") - -if(CMAKE_C_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_C_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") -endif() - -if(CMAKE_C_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed;/usr/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0;/usr/lib;/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/compile/CMakeFiles/3.23.0/CMakeCXXCompiler.cmake b/compile/CMakeFiles/3.23.0/CMakeCXXCompiler.cmake deleted file mode 100644 index 409828e..0000000 --- a/compile/CMakeFiles/3.23.0/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,83 +0,0 @@ -set(CMAKE_CXX_COMPILER "/usr/bin/c++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "11.2.0") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") - -set(CMAKE_CXX_PLATFORM_ID "Linux") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_COMPILER_IS_GNUCXX 1) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "ELF") -set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11.2.0;/usr/include/c++/11.2.0/x86_64-pc-linux-gnu;/usr/include/c++/11.2.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed;/usr/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0;/usr/lib;/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/compile/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_C.bin b/compile/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_C.bin deleted file mode 100755 index c3922cbdd14070e6955b757aa89ff9adca5de09d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15936 zcmeHOU2Ggz6~4Q68mGkZ4{>nok}Lrs7vYVaxW)uIU3nDvhB5&PrL z&K5foU=gTlML}*WK~+%{1TP34K#Hh@1UNFZDo^AA6yU`mB3cwk5EL1Ryqq(0zV+;| zhN?)sFxT2S_k8Dk=iWJUXZL#M-p`~a#-fpkLTONE6l<|o4@rn2@d2rjNT@;8Ovgu5 zmwJHoMi=w!2~UvKE4QMxvPtj;lFaMmN*(!#2U8nfK@V9nZ?Cew&$B=(IS=N!CeeXI zz9+hEYL@>kWzaK1@8$%bP8@%x9&& zy{^M8$tR?!>O{`U4D_GKWqWc~p}gF)JUGxZ&>t@q<0suNaKC!#!((cE>b#1sstv}# zkElqE9u=Kj+`_(x>BDJfe&t)&pX++zv)31HJorRM<B0t6=1;OD3t5=sCUQ7`CJ54XdD7 z=R6On@rm?EQa>3#8Go!=Kh>}F^z5XbHEnajDmkV-JDJQC3+Akm$#J-ae6b+mbkDV} zqoNy-t`Yrt13yAK_ZQ=){IGR^ug?1gyZ+1pdUtA0OL3T)rB8(ZXt&fiMGM2Eq)483;2F zW+2SK|62zB+;a5q+T}Y<+Le93IH8pG`3)yp`KfmKM@^e&3?ds4k$)VEm9I^f~A8$GKIoF@?n;hrrzMru8;I`92p`Vn{2P#`F$5z>K zQzZF+)%Abu1s0F)XlwVh8-ILUyRqG%MPAl!?l^}jKuQ8MRkr3^j*af}xqque7s;&3 zr_O7ahmLbqTf6NvYgdNOkW%SrrQ>UJl}hF1ef?C8T-@C4@83%7wq(iK0cL7k4_CM*U#l=Rvc3= z+Vsxu!bEy@b|R&xrbg4lQ{>^=jf{1H)*&z<($(-Ge)r40TEAPV@cXv4dzH!zNiO`( zluP8&Sru7sjdUH{-?UCI&KPIj3~}De4x{_sH*bvf)2EMOe3J3uL#0P7pEo)K#mkBiemILms+X3^JWUF1We zW8Gwz==c}xVbQUElK*ex0{a^~l_KjKvgi?O8JA?SBd?$2vL*HhJyks|@@*nJMRtgU z*e{hq35<3(1gFKIZUO%v6|X-8x~@B-HwmBKAiMoVp6K6CSKpTY{!MiM8cu2Ae=4x9 ze6L1h3C}W~OrDN)(<23ggkUD)kgqxLw>2z@K&f z+Z4t(@b6Hi-g*7l^*^K%G0*d;C)5_nh&rS`9`gVZYDe%@0chobTlUJ&emaqeq9nXa z9DSl*e>zg>pYEar5KoR1UTx8${IEl$Pbe~C)=~v>9@dnoK#Q!1rzI2~ek?{`U+@GNT zHsLXleX>1Tf8Bi#;q6iS77W}Mik`jo6pD@+pQFX|r09;Zpsa%B5HM#uC8ta)WaiZF zdVAf;>vO!~zC?s@o75uq{cNlX?(&=CaDc8XWGLfY3iI+m@n$P4;l50wLpQhmQnZ@ zQ_ganoLOU~lcq+;&JIty&n0!*HZc0pso}|Vl3@DA(^HyQwb8RmAD@^W8J^Im$Hva3 zX7$I?F^*U?rqSsrJ}xQ6tcYU zAw5lAS*xIzOJUr=c4EJg%6)&yi z9V0{1u|2tnnpL138A~eej;Mt~Ilg2UmrUDP@j;ogMcZnutUz=Ldw9&n*?rL{Evk5S zr9e%1(y=|ulcrs=iiH|QC!1~N3?`^J4;2-6%w;~ym z%| zfqA-waoa+j<%{(3^YMEJxfDoP@aN}i0X}}eA@P3%x5Xtme!f8%H-Yn4F;ck1+@tz} zC#pw*t2)om{QPxsfW-I%A=v&81N?6bA95B%k;p&bSE<5tIl1ks^GEDg4EjTd{26gu ze0cD?Z2EO)aAM-!#KfT7up~B;j3wXGWzbA}cz{h^JTPN6?_P=_f zdITTxE?NA1l@M1M__$9I06fU;03Y+bPT`}UK|XYzS92`%AM>nk;iDb+OFE#c1_Brp z_bLv4a4rnKUslI%m911l0&Ymh`2S=69|`?IUJek3zWeCjOHTq$1%jhp__poAKgB-` LR1O9R0ag7IwhZIb diff --git a/compile/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_CXX.bin b/compile/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100755 index 8acb2ff48f818e63b598e8b59eccad41d9f511d8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15960 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 Q{D<*}0n)w@A*70b0(_1BWB>pF diff --git a/compile/CMakeFiles/3.23.0/CMakeSystem.cmake b/compile/CMakeFiles/3.23.0/CMakeSystem.cmake deleted file mode 100644 index 7116ac5..0000000 --- a/compile/CMakeFiles/3.23.0/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Linux-5.17.6-2-ublinux") -set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "5.17.6-2-ublinux") -set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") - - - -set(CMAKE_SYSTEM "Linux-5.17.6-2-ublinux") -set(CMAKE_SYSTEM_NAME "Linux") -set(CMAKE_SYSTEM_VERSION "5.17.6-2-ublinux") -set(CMAKE_SYSTEM_PROCESSOR "x86_64") - -set(CMAKE_CROSSCOMPILING "FALSE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/compile/CMakeFiles/3.23.0/CompilerIdC/CMakeCCompilerId.c b/compile/CMakeFiles/3.23.0/CompilerIdC/CMakeCCompilerId.c deleted file mode 100644 index 26b2f9e..0000000 --- a/compile/CMakeFiles/3.23.0/CompilerIdC/CMakeCCompilerId.c +++ /dev/null @@ -1,828 +0,0 @@ -#ifdef __cplusplus -# error "A C++ compiler has been selected for C." -#endif - -#if defined(__18CXX) -# define ID_VOID_MAIN -#endif -#if defined(__CLASSIC_C__) -/* cv-qualifiers did not exist in K&R C */ -# define const -# define volatile -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_C) -# define COMPILER_ID "SunPro" -# if __SUNPRO_C >= 0x5100 - /* __SUNPRO_C = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# endif - -#elif defined(__HP_cc) -# define COMPILER_ID "HP" - /* __HP_cc = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) - -#elif defined(__DECC) -# define COMPILER_ID "Compaq" - /* __DECC_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) - -#elif defined(__IBMC__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -# define COMPILER_ID "XL" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TINYC__) -# define COMPILER_ID "TinyCC" - -#elif defined(__BCC__) -# define COMPILER_ID "Bruce" - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(1) -# if defined(__LCC__) -# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) -# endif -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) -# define COMPILER_ID "GNU" -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) -# define COMPILER_ID "ADSP" -#if defined(__VISUALDSPVERSION__) - /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ -# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) -# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - -#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -# define COMPILER_ID "SDCC" -# if defined(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -# else - /* SDCC = VRP */ -# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#if !defined(__STDC__) && !defined(__clang__) -# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) -# define C_VERSION "90" -# else -# define C_VERSION -# endif -#elif __STDC_VERSION__ > 201710L -# define C_VERSION "23" -#elif __STDC_VERSION__ >= 201710L -# define C_VERSION "17" -#elif __STDC_VERSION__ >= 201000L -# define C_VERSION "11" -#elif __STDC_VERSION__ >= 199901L -# define C_VERSION "99" -#else -# define C_VERSION "90" -#endif -const char* info_language_standard_default = - "INFO" ":" "standard_default[" C_VERSION "]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -#ifdef ID_VOID_MAIN -void main() {} -#else -# if defined(__CLASSIC_C__) -int main(argc, argv) int argc; char *argv[]; -# else -int main(int argc, char* argv[]) -# endif -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} -#endif diff --git a/compile/CMakeFiles/3.23.0/CompilerIdC/a.out b/compile/CMakeFiles/3.23.0/CompilerIdC/a.out deleted file mode 100755 index b007c9432446c32aa9116428d966392c17ef4bb5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16056 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 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(1) -# if defined(__LCC__) -# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) -# endif -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) -# define COMPILER_ID "ADSP" -#if defined(__VISUALDSPVERSION__) - /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ -# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) -# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L -# if defined(__INTEL_CXX11_MODE__) -# if defined(__cpp_aggregate_nsdmi) -# define CXX_STD 201402L -# else -# define CXX_STD 201103L -# endif -# else -# define CXX_STD 199711L -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# define CXX_STD _MSVC_LANG -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_standard_default = "INFO" ":" "standard_default[" -#if CXX_STD > 202002L - "23" -#elif CXX_STD > 201703L - "20" -#elif CXX_STD >= 201703L - "17" -#elif CXX_STD >= 201402L - "14" -#elif CXX_STD >= 201103L - "11" -#else - "98" -#endif -"]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} diff --git a/compile/CMakeFiles/3.23.0/CompilerIdCXX/a.out b/compile/CMakeFiles/3.23.0/CompilerIdCXX/a.out deleted file mode 100755 index 60376f710d90dc5cc90bbfbeda0ecb81765c0595..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16064 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 X&beMyigWbZ{2${F1EfZcpsC_t>9#hx diff --git a/compile/CMakeFiles/CMakeDirectoryInformation.cmake b/compile/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index f6435ee..0000000 --- a/compile/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.23 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/compile/CMakeFiles/CMakeOutput.log b/compile/CMakeFiles/CMakeOutput.log deleted file mode 100644 index 09e3d4c..0000000 --- a/compile/CMakeFiles/CMakeOutput.log +++ /dev/null @@ -1,411 +0,0 @@ -The system is: Linux - 5.17.6-2-ublinux - x86_64 -Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -Compiler: /usr/bin/cc -Build flags: -Id flags: - -The output was: -0 - - -Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" - -The C compiler identification is GNU, found in "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/3.23.0/CompilerIdC/a.out" - -Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -Compiler: /usr/bin/c++ -Build flags: -Id flags: - -The output was: -0 - - -Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - -The CXX compiler identification is GNU, found in "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/3.23.0/CompilerIdCXX/a.out" - -Detecting C compiler ABI info compiled with the following output: -Change Dir: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/make -f Makefile cmTC_603ff/fast && make[1]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' -/usr/bin/make -f CMakeFiles/cmTC_603ff.dir/build.make CMakeFiles/cmTC_603ff.dir/build -make[2]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -/usr/bin/cc -v -o CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -Target: x86_64-pc-linux-gnu -Configured with: /build/gcc/src/gcc/configure --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc -Thread model: posix -Supported LTO compression algorithms: zlib zstd -gcc version 11.2.0 (GCC) -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_603ff.dir/' - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/cc1 -quiet -v /usr/share/cmake/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_603ff.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/ccvO5zcs.s -GNU C17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu) - compiled by GNU C version 11.2.0, GMP version 6.2.1, MPFR version 4.1.0-p13, MPC version 1.2.1, isl version isl-0.24-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../x86_64-pc-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include - /usr/local/include - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed - /usr/include -End of search list. -GNU C17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu) - compiled by GNU C version 11.2.0, GMP version 6.2.1, MPFR version 4.1.0-p13, MPC version 1.2.1, isl version isl-0.24-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: 65a5ec6b673b24273c0fdde359680a16 -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_603ff.dir/' - as -v --64 -o CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o /tmp/ccvO5zcs.s -GNU assembler version 2.38 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.38 -COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.' -Linking C executable cmTC_603ff -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_603ff.dir/link.txt --verbose=1 -/usr/bin/cc -v CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -o cmTC_603ff -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper -Target: x86_64-pc-linux-gnu -Configured with: /build/gcc/src/gcc/configure --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc -Thread model: posix -Supported LTO compression algorithms: zlib zstd -gcc version 11.2.0 (GCC) -COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_603ff' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_603ff.' - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cchexM3T.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_603ff /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../.. CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_603ff' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_603ff.' -make[2]: Leaving directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' -make[1]: Leaving directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' - - - -Parsed C implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] - add: [/usr/local/include] - add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] - add: [/usr/include] - end of search list found - collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed;/usr/include] - - -Parsed C implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp] - ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_603ff/fast && make[1]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp'] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_603ff.dir/build.make CMakeFiles/cmTC_603ff.dir/build] - ignore line: [make[2]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [Target: x86_64-pc-linux-gnu] - ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=c c++ ada fortran go lto objc obj-c++ d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 11.2.0 (GCC) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_603ff.dir/'] - ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/cc1 -quiet -v /usr/share/cmake/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_603ff.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/ccvO5zcs.s] - ignore line: [GNU C17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu)] - ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.2.1 MPFR version 4.1.0-p13 MPC version 1.2.1 isl version isl-0.24-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../x86_64-pc-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu)] - ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.2.1 MPFR version 4.1.0-p13 MPC version 1.2.1 isl version isl-0.24-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: 65a5ec6b673b24273c0fdde359680a16] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_603ff.dir/'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o /tmp/ccvO5zcs.s] - ignore line: [GNU assembler version 2.38 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.38] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.'] - ignore line: [Linking C executable cmTC_603ff] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_603ff.dir/link.txt --verbose=1] - ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -o cmTC_603ff ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper] - ignore line: [Target: x86_64-pc-linux-gnu] - ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=c c++ ada fortran go lto objc obj-c++ d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 11.2.0 (GCC) ] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_603ff' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_603ff.'] - link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cchexM3T.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_603ff /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../.. CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/cchexM3T.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-o] ==> ignore - arg [cmTC_603ff] ==> ignore - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o] - arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] - arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../..] - arg [CMakeFiles/cmTC_603ff.dir/CMakeCCompilerABI.c.o] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] - collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o] - collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o] ==> [/usr/lib/crti.o] - collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o] - collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] - collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../..] ==> [/usr/lib] - implicit libs: [gcc;gcc_s;c;gcc;gcc_s] - implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o;/usr/lib/crtn.o] - implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0;/usr/lib;/lib] - implicit fwks: [] - - -Detecting CXX compiler ABI info compiled with the following output: -Change Dir: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/make -f Makefile cmTC_f1cb4/fast && make[1]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' -/usr/bin/make -f CMakeFiles/cmTC_f1cb4.dir/build.make CMakeFiles/cmTC_f1cb4.dir/build -make[2]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -/usr/bin/c++ -v -o CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -Target: x86_64-pc-linux-gnu -Configured with: /build/gcc/src/gcc/configure --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc -Thread model: posix -Supported LTO compression algorithms: zlib zstd -gcc version 11.2.0 (GCC) -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f1cb4.dir/' - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_f1cb4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -o /tmp/ccjngT5y.s -GNU C++17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu) - compiled by GNU C version 11.2.0, GMP version 6.2.1, MPFR version 4.1.0-p13, MPC version 1.2.1, isl version isl-0.24-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../x86_64-pc-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0 - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/x86_64-pc-linux-gnu - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/backward - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include - /usr/local/include - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed - /usr/include -End of search list. -GNU C++17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu) - compiled by GNU C version 11.2.0, GMP version 6.2.1, MPFR version 4.1.0-p13, MPC version 1.2.1, isl version isl-0.24-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: 37973183ac4df241cfcce263334987c1 -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f1cb4.dir/' - as -v --64 -o CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccjngT5y.s -GNU assembler version 2.38 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.38 -COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.' -Linking CXX executable cmTC_f1cb4 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f1cb4.dir/link.txt --verbose=1 -/usr/bin/c++ -v CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_f1cb4 -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper -Target: x86_64-pc-linux-gnu -Configured with: /build/gcc/src/gcc/configure --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc -Thread model: posix -Supported LTO compression algorithms: zlib zstd -gcc version 11.2.0 (GCC) -COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f1cb4' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_f1cb4.' - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccB3qYgI.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_f1cb4 /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../.. CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f1cb4' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_f1cb4.' -make[2]: Leaving directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' -make[1]: Leaving directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp' - - - -Parsed CXX implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0] - add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/x86_64-pc-linux-gnu] - add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/backward] - add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] - add: [/usr/local/include] - add: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] - add: [/usr/include] - end of search list found - collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0] ==> [/usr/include/c++/11.2.0] - collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/x86_64-pc-linux-gnu] ==> [/usr/include/c++/11.2.0/x86_64-pc-linux-gnu] - collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/backward] ==> [/usr/include/c++/11.2.0/backward] - collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/include/c++/11.2.0;/usr/include/c++/11.2.0/x86_64-pc-linux-gnu;/usr/include/c++/11.2.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed;/usr/include] - - -Parsed CXX implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp] - ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_f1cb4/fast && make[1]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp'] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_f1cb4.dir/build.make CMakeFiles/cmTC_f1cb4.dir/build] - ignore line: [make[2]: Entering directory '/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [Target: x86_64-pc-linux-gnu] - ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=c c++ ada fortran go lto objc obj-c++ d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 11.2.0 (GCC) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f1cb4.dir/'] - ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_f1cb4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -o /tmp/ccjngT5y.s] - ignore line: [GNU C++17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu)] - ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.2.1 MPFR version 4.1.0-p13 MPC version 1.2.1 isl version isl-0.24-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../x86_64-pc-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0] - ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/x86_64-pc-linux-gnu] - ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../include/c++/11.2.0/backward] - ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C++17 (GCC) version 11.2.0 (x86_64-pc-linux-gnu)] - ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.2.1 MPFR version 4.1.0-p13 MPC version 1.2.1 isl version isl-0.24-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: 37973183ac4df241cfcce263334987c1] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f1cb4.dir/'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccjngT5y.s] - ignore line: [GNU assembler version 2.38 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.38] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.'] - ignore line: [Linking CXX executable cmTC_f1cb4] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f1cb4.dir/link.txt --verbose=1] - ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_f1cb4 ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper] - ignore line: [Target: x86_64-pc-linux-gnu] - ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=c c++ ada fortran go lto objc obj-c++ d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --with-build-config=bootstrap-lto --enable-link-serialization=1 gdc_include_dir=/usr/include/dlang/gdc] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 11.2.0 (GCC) ] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f1cb4' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_f1cb4.'] - link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccB3qYgI.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_f1cb4 /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../.. CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccB3qYgI.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-o] ==> ignore - arg [cmTC_f1cb4] ==> ignore - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o] - arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] - arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../..] - arg [CMakeFiles/cmTC_f1cb4.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] - collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o] - collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crti.o] ==> [/usr/lib/crti.o] - collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o] - collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0] - collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/../../..] ==> [/usr/lib] - implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] - implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/crtendS.o;/usr/lib/crtn.o] - implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0;/usr/lib;/lib] - implicit fwks: [] - - diff --git a/compile/CMakeFiles/Makefile.cmake b/compile/CMakeFiles/Makefile.cmake deleted file mode 100644 index c9729c9..0000000 --- a/compile/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,129 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.23 - -# The generator used is: -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") - -# The top level Makefile was generated from the following files: -set(CMAKE_MAKEFILE_DEPENDS - "CMakeCache.txt" - "CMakeFiles/3.23.0/CMakeCCompiler.cmake" - "CMakeFiles/3.23.0/CMakeCXXCompiler.cmake" - "CMakeFiles/3.23.0/CMakeSystem.cmake" - "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/CMakeLists.txt" - "/usr/share/cmake/Modules/CMakeCCompiler.cmake.in" - "/usr/share/cmake/Modules/CMakeCCompilerABI.c" - "/usr/share/cmake/Modules/CMakeCInformation.cmake" - "/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in" - "/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - "/usr/share/cmake/Modules/CMakeCXXInformation.cmake" - "/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" - "/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake" - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake" - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake" - "/usr/share/cmake/Modules/CMakeDetermineCompileFeatures.cmake" - "/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake" - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake" - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake" - "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake" - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake" - "/usr/share/cmake/Modules/CMakeGenericSystem.cmake" - "/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake" - "/usr/share/cmake/Modules/CMakeLanguageInformation.cmake" - "/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake" - "/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake" - "/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake" - "/usr/share/cmake/Modules/CMakeSystem.cmake.in" - "/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" - "/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake" - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake" - "/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake" - "/usr/share/cmake/Modules/CMakeUnixFindMake.cmake" - "/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - "/usr/share/cmake/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/GNU-C.cmake" - "/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake" - "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake" - "/usr/share/cmake/Modules/Compiler/GNU.cmake" - "/usr/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" - "/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - "/usr/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - "/usr/share/cmake/Modules/FindPackageMessage.cmake" - "/usr/share/cmake/Modules/FindPkgConfig.cmake" - "/usr/share/cmake/Modules/Internal/FeatureTesting.cmake" - "/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake" - "/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake" - "/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake" - "/usr/share/cmake/Modules/Platform/Linux-GNU.cmake" - "/usr/share/cmake/Modules/Platform/Linux.cmake" - "/usr/share/cmake/Modules/Platform/UnixPaths.cmake" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - "CMakeFiles/3.23.0/CMakeSystem.cmake" - "CMakeFiles/3.23.0/CMakeCCompiler.cmake" - "CMakeFiles/3.23.0/CMakeCXXCompiler.cmake" - "CMakeFiles/3.23.0/CMakeCCompiler.cmake" - "CMakeFiles/3.23.0/CMakeCXXCompiler.cmake" - "CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/ublexec.dir/DependInfo.cmake" - ) diff --git a/compile/CMakeFiles/Makefile2 b/compile/CMakeFiles/Makefile2 deleted file mode 100644 index 5bda377..0000000 --- a/compile/CMakeFiles/Makefile2 +++ /dev/null @@ -1,112 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.23 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: CMakeFiles/ublexec.dir/all -.PHONY : all - -# The main recursive "preinstall" target. -preinstall: -.PHONY : preinstall - -# The main recursive "clean" target. -clean: CMakeFiles/ublexec.dir/clean -.PHONY : clean - -#============================================================================= -# Target rules for target CMakeFiles/ublexec.dir - -# All Build rule for target. -CMakeFiles/ublexec.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles --progress-num=1,2,3 "Built target ublexec" -.PHONY : CMakeFiles/ublexec.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/ublexec.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles 3 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/ublexec.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles 0 -.PHONY : CMakeFiles/ublexec.dir/rule - -# Convenience name for target. -ublexec: CMakeFiles/ublexec.dir/rule -.PHONY : ublexec - -# clean rule for target. -CMakeFiles/ublexec.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/clean -.PHONY : CMakeFiles/ublexec.dir/clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/compile/CMakeFiles/Progress/2 b/compile/CMakeFiles/Progress/2 deleted file mode 100644 index 7b4d68d..0000000 --- a/compile/CMakeFiles/Progress/2 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/compile/CMakeFiles/Progress/count.txt b/compile/CMakeFiles/Progress/count.txt deleted file mode 100644 index 00750ed..0000000 --- a/compile/CMakeFiles/Progress/count.txt +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/compile/CMakeFiles/TargetDirectories.txt b/compile/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 0f479a0..0000000 --- a/compile/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,7 +0,0 @@ -/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/ublexec.dir -/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/edit_cache.dir -/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/rebuild_cache.dir -/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/list_install_components.dir -/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/install.dir -/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/install/local.dir -/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/install/strip.dir diff --git a/compile/CMakeFiles/cmake.check_cache b/compile/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd73..0000000 --- a/compile/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/compile/CMakeFiles/progress.marks b/compile/CMakeFiles/progress.marks deleted file mode 100644 index 00750ed..0000000 --- a/compile/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/compile/CMakeFiles/ublexec.dir/DependInfo.cmake b/compile/CMakeFiles/ublexec.dir/DependInfo.cmake deleted file mode 100644 index cd616f7..0000000 --- a/compile/CMakeFiles/ublexec.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc" "CMakeFiles/ublexec.dir/main.cc.o" "gcc" "CMakeFiles/ublexec.dir/main.cc.o.d" - "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc" "CMakeFiles/ublexec.dir/ublexec.cc.o" "gcc" "CMakeFiles/ublexec.dir/ublexec.cc.o.d" - ) - -# Targets to which this target links. -set(CMAKE_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/compile/CMakeFiles/ublexec.dir/build.make b/compile/CMakeFiles/ublexec.dir/build.make deleted file mode 100644 index b137c42..0000000 --- a/compile/CMakeFiles/ublexec.dir/build.make +++ /dev/null @@ -1,126 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.23 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile - -# Include any dependencies generated for this target. -include CMakeFiles/ublexec.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include CMakeFiles/ublexec.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/ublexec.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/ublexec.dir/flags.make - -CMakeFiles/ublexec.dir/main.cc.o: CMakeFiles/ublexec.dir/flags.make -CMakeFiles/ublexec.dir/main.cc.o: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc -CMakeFiles/ublexec.dir/main.cc.o: CMakeFiles/ublexec.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/ublexec.dir/main.cc.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/ublexec.dir/main.cc.o -MF CMakeFiles/ublexec.dir/main.cc.o.d -o CMakeFiles/ublexec.dir/main.cc.o -c /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc - -CMakeFiles/ublexec.dir/main.cc.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/ublexec.dir/main.cc.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc > CMakeFiles/ublexec.dir/main.cc.i - -CMakeFiles/ublexec.dir/main.cc.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/ublexec.dir/main.cc.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc -o CMakeFiles/ublexec.dir/main.cc.s - -CMakeFiles/ublexec.dir/ublexec.cc.o: CMakeFiles/ublexec.dir/flags.make -CMakeFiles/ublexec.dir/ublexec.cc.o: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc -CMakeFiles/ublexec.dir/ublexec.cc.o: CMakeFiles/ublexec.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/ublexec.dir/ublexec.cc.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/ublexec.dir/ublexec.cc.o -MF CMakeFiles/ublexec.dir/ublexec.cc.o.d -o CMakeFiles/ublexec.dir/ublexec.cc.o -c /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc - -CMakeFiles/ublexec.dir/ublexec.cc.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/ublexec.dir/ublexec.cc.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc > CMakeFiles/ublexec.dir/ublexec.cc.i - -CMakeFiles/ublexec.dir/ublexec.cc.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/ublexec.dir/ublexec.cc.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc -o CMakeFiles/ublexec.dir/ublexec.cc.s - -# Object files for target ublexec -ublexec_OBJECTS = \ -"CMakeFiles/ublexec.dir/main.cc.o" \ -"CMakeFiles/ublexec.dir/ublexec.cc.o" - -# External object files for target ublexec -ublexec_EXTERNAL_OBJECTS = - -ublexec: CMakeFiles/ublexec.dir/main.cc.o -ublexec: CMakeFiles/ublexec.dir/ublexec.cc.o -ublexec: CMakeFiles/ublexec.dir/build.make -ublexec: CMakeFiles/ublexec.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX executable ublexec" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/ublexec.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/ublexec.dir/build: ublexec -.PHONY : CMakeFiles/ublexec.dir/build - -CMakeFiles/ublexec.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/ublexec.dir/cmake_clean.cmake -.PHONY : CMakeFiles/ublexec.dir/clean - -CMakeFiles/ublexec.dir/depend: - cd /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles/ublexec.dir/DependInfo.cmake --color=$(COLOR) -.PHONY : CMakeFiles/ublexec.dir/depend - diff --git a/compile/CMakeFiles/ublexec.dir/cmake_clean.cmake b/compile/CMakeFiles/ublexec.dir/cmake_clean.cmake deleted file mode 100644 index 1b4890b..0000000 --- a/compile/CMakeFiles/ublexec.dir/cmake_clean.cmake +++ /dev/null @@ -1,13 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/ublexec.dir/main.cc.o" - "CMakeFiles/ublexec.dir/main.cc.o.d" - "CMakeFiles/ublexec.dir/ublexec.cc.o" - "CMakeFiles/ublexec.dir/ublexec.cc.o.d" - "ublexec" - "ublexec.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/ublexec.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/compile/CMakeFiles/ublexec.dir/compiler_depend.internal b/compile/CMakeFiles/ublexec.dir/compiler_depend.internal deleted file mode 100644 index 389a26a..0000000 --- a/compile/CMakeFiles/ublexec.dir/compiler_depend.internal +++ /dev/null @@ -1,3323 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.23 - -CMakeFiles/ublexec.dir/main.cc.o - /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc - /usr/include/stdc-predef.h - /usr/include/c++/11.2.0/cstddef - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h - /usr/include/features.h - /usr/include/features-time64.h - /usr/include/bits/wordsize.h - /usr/include/bits/timesize.h - /usr/include/sys/cdefs.h - /usr/include/bits/long-double.h - /usr/include/gnu/stubs.h - /usr/include/gnu/stubs-64.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h - /usr/include/c++/11.2.0/pstl/pstl_config.h - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h - /usr/include/c++/11.2.0/cstdlib - /usr/include/stdlib.h - /usr/include/bits/libc-header-start.h - /usr/include/bits/waitflags.h - /usr/include/bits/waitstatus.h - /usr/include/bits/floatn.h - /usr/include/bits/floatn-common.h - /usr/include/bits/types/locale_t.h - /usr/include/bits/types/__locale_t.h - /usr/include/sys/types.h - /usr/include/bits/types.h - /usr/include/bits/typesizes.h - /usr/include/bits/time64.h - /usr/include/bits/types/clock_t.h - /usr/include/bits/types/clockid_t.h - /usr/include/bits/types/time_t.h - /usr/include/bits/types/timer_t.h - /usr/include/bits/stdint-intn.h - /usr/include/endian.h - /usr/include/bits/endian.h - /usr/include/bits/endianness.h - /usr/include/bits/byteswap.h - /usr/include/bits/uintn-identity.h - /usr/include/sys/select.h - /usr/include/bits/select.h - /usr/include/bits/types/sigset_t.h - /usr/include/bits/types/__sigset_t.h - /usr/include/bits/types/struct_timeval.h - /usr/include/bits/types/struct_timespec.h - /usr/include/bits/pthreadtypes.h - /usr/include/bits/thread-shared-types.h - /usr/include/bits/pthreadtypes-arch.h - /usr/include/bits/atomic_wide_counter.h - /usr/include/bits/struct_mutex.h - /usr/include/bits/struct_rwlock.h - /usr/include/alloca.h - /usr/include/bits/stdlib-bsearch.h - /usr/include/bits/stdlib-float.h - /usr/include/c++/11.2.0/bits/std_abs.h - /usr/include/c++/11.2.0/iostream - /usr/include/c++/11.2.0/ostream - /usr/include/c++/11.2.0/ios - /usr/include/c++/11.2.0/iosfwd - /usr/include/c++/11.2.0/bits/stringfwd.h - /usr/include/c++/11.2.0/bits/memoryfwd.h - /usr/include/c++/11.2.0/bits/postypes.h - /usr/include/c++/11.2.0/cwchar - /usr/include/wchar.h - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h - /usr/include/bits/wchar.h - /usr/include/bits/types/wint_t.h - /usr/include/bits/types/mbstate_t.h - /usr/include/bits/types/__mbstate_t.h - /usr/include/bits/types/__FILE.h - /usr/include/bits/types/FILE.h - /usr/include/c++/11.2.0/exception - /usr/include/c++/11.2.0/bits/exception.h - /usr/include/c++/11.2.0/bits/exception_ptr.h - /usr/include/c++/11.2.0/bits/exception_defines.h - /usr/include/c++/11.2.0/bits/cxxabi_init_exception.h - /usr/include/c++/11.2.0/typeinfo - /usr/include/c++/11.2.0/bits/hash_bytes.h - /usr/include/c++/11.2.0/new - /usr/include/c++/11.2.0/bits/nested_exception.h - /usr/include/c++/11.2.0/bits/move.h - /usr/include/c++/11.2.0/type_traits - /usr/include/c++/11.2.0/bits/char_traits.h - /usr/include/c++/11.2.0/bits/stl_algobase.h - /usr/include/c++/11.2.0/bits/functexcept.h - /usr/include/c++/11.2.0/bits/cpp_type_traits.h - /usr/include/c++/11.2.0/ext/type_traits.h - /usr/include/c++/11.2.0/ext/numeric_traits.h - /usr/include/c++/11.2.0/bits/stl_pair.h - /usr/include/c++/11.2.0/bits/stl_iterator_base_types.h - /usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h - /usr/include/c++/11.2.0/bits/concept_check.h - /usr/include/c++/11.2.0/debug/assertions.h - /usr/include/c++/11.2.0/bits/stl_iterator.h - /usr/include/c++/11.2.0/bits/ptr_traits.h - /usr/include/c++/11.2.0/debug/debug.h - /usr/include/c++/11.2.0/bits/predefined_ops.h - /usr/include/c++/11.2.0/cstdint - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h - /usr/include/stdint.h - /usr/include/bits/stdint-uintn.h - /usr/include/c++/11.2.0/bits/localefwd.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h - /usr/include/c++/11.2.0/clocale - /usr/include/locale.h - /usr/include/bits/locale.h - /usr/include/c++/11.2.0/cctype - /usr/include/ctype.h - /usr/include/c++/11.2.0/bits/ios_base.h - /usr/include/c++/11.2.0/ext/atomicity.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h - /usr/include/pthread.h - /usr/include/sched.h - /usr/include/bits/sched.h - /usr/include/bits/types/struct_sched_param.h - /usr/include/bits/cpu-set.h - /usr/include/time.h - /usr/include/bits/time.h - /usr/include/bits/timex.h - /usr/include/bits/types/struct_tm.h - /usr/include/bits/types/struct_itimerspec.h - /usr/include/bits/setjmp.h - /usr/include/bits/types/struct___jmp_buf_tag.h - /usr/include/bits/pthread_stack_min-dynamic.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h - /usr/include/sys/single_threaded.h - /usr/include/c++/11.2.0/bits/locale_classes.h - /usr/include/c++/11.2.0/string - /usr/include/c++/11.2.0/bits/allocator.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h - /usr/include/c++/11.2.0/ext/new_allocator.h - /usr/include/c++/11.2.0/bits/ostream_insert.h - /usr/include/c++/11.2.0/bits/cxxabi_forced.h - /usr/include/c++/11.2.0/bits/stl_function.h - /usr/include/c++/11.2.0/backward/binders.h - /usr/include/c++/11.2.0/bits/range_access.h - /usr/include/c++/11.2.0/initializer_list - /usr/include/c++/11.2.0/bits/basic_string.h - /usr/include/c++/11.2.0/ext/alloc_traits.h - /usr/include/c++/11.2.0/bits/alloc_traits.h - /usr/include/c++/11.2.0/bits/stl_construct.h - /usr/include/c++/11.2.0/string_view - /usr/include/c++/11.2.0/bits/functional_hash.h - /usr/include/c++/11.2.0/bits/string_view.tcc - /usr/include/c++/11.2.0/ext/string_conversions.h - /usr/include/c++/11.2.0/cstdio - /usr/include/stdio.h - /usr/include/bits/types/__fpos_t.h - /usr/include/bits/types/__fpos64_t.h - /usr/include/bits/types/struct_FILE.h - /usr/include/bits/types/cookie_io_functions_t.h - /usr/include/bits/stdio_lim.h - /usr/include/bits/stdio.h - /usr/include/c++/11.2.0/cerrno - /usr/include/errno.h - /usr/include/bits/errno.h - /usr/include/linux/errno.h - /usr/include/asm/errno.h - /usr/include/asm-generic/errno.h - /usr/include/asm-generic/errno-base.h - /usr/include/bits/types/error_t.h - /usr/include/c++/11.2.0/bits/charconv.h - /usr/include/c++/11.2.0/bits/basic_string.tcc - /usr/include/c++/11.2.0/bits/locale_classes.tcc - /usr/include/c++/11.2.0/system_error - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h - /usr/include/c++/11.2.0/stdexcept - /usr/include/c++/11.2.0/streambuf - /usr/include/c++/11.2.0/bits/streambuf.tcc - /usr/include/c++/11.2.0/bits/basic_ios.h - /usr/include/c++/11.2.0/bits/locale_facets.h - /usr/include/c++/11.2.0/cwctype - /usr/include/wctype.h - /usr/include/bits/wctype-wchar.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h - /usr/include/c++/11.2.0/bits/streambuf_iterator.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h - /usr/include/c++/11.2.0/bits/locale_facets.tcc - /usr/include/c++/11.2.0/bits/basic_ios.tcc - /usr/include/c++/11.2.0/bits/ostream.tcc - /usr/include/c++/11.2.0/istream - /usr/include/c++/11.2.0/bits/istream.tcc - /usr/include/c++/11.2.0/memory - /usr/include/c++/11.2.0/bits/stl_uninitialized.h - /usr/include/c++/11.2.0/bits/stl_tempbuf.h - /usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h - /usr/include/c++/11.2.0/bits/align.h - /usr/include/c++/11.2.0/bit - /usr/include/c++/11.2.0/bits/uses_allocator.h - /usr/include/c++/11.2.0/bits/unique_ptr.h - /usr/include/c++/11.2.0/utility - /usr/include/c++/11.2.0/bits/stl_relops.h - /usr/include/c++/11.2.0/tuple - /usr/include/c++/11.2.0/array - /usr/include/c++/11.2.0/bits/invoke.h - /usr/include/c++/11.2.0/bits/shared_ptr.h - /usr/include/c++/11.2.0/bits/shared_ptr_base.h - /usr/include/c++/11.2.0/bits/allocated_ptr.h - /usr/include/c++/11.2.0/bits/refwrap.h - /usr/include/c++/11.2.0/ext/aligned_buffer.h - /usr/include/c++/11.2.0/ext/concurrence.h - /usr/include/c++/11.2.0/bits/shared_ptr_atomic.h - /usr/include/c++/11.2.0/bits/atomic_base.h - /usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h - /usr/include/c++/11.2.0/backward/auto_ptr.h - /usr/include/c++/11.2.0/pstl/glue_memory_defs.h - /usr/include/c++/11.2.0/pstl/execution_defs.h - /usr/include/gtkmm-3.0/gtkmm.h - /usr/include/glibmm-2.4/glibmm.h - /usr/lib/glibmm-2.4/include/glibmmconfig.h - /usr/include/glibmm-2.4/glibmm/thread.h - /usr/include/glib-2.0/glib.h - /usr/include/glib-2.0/glib/galloca.h - /usr/include/glib-2.0/glib/gtypes.h - /usr/lib/glib-2.0/include/glibconfig.h - /usr/include/glib-2.0/glib/gmacros.h - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h - /usr/include/limits.h - /usr/include/bits/posix1_lim.h - /usr/include/bits/local_lim.h - /usr/include/linux/limits.h - /usr/include/bits/posix2_lim.h - /usr/include/bits/xopen_lim.h - /usr/include/bits/uio_lim.h - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h - /usr/include/glib-2.0/glib/gversionmacros.h - /usr/include/string.h - /usr/include/strings.h - /usr/include/glib-2.0/glib/garray.h - /usr/include/glib-2.0/glib/gasyncqueue.h - /usr/include/glib-2.0/glib/gthread.h - /usr/include/glib-2.0/glib/gatomic.h - /usr/include/glib-2.0/glib/glib-typeof.h - /usr/include/glib-2.0/glib/gerror.h - /usr/include/glib-2.0/glib/gquark.h - /usr/include/glib-2.0/glib/gutils.h - /usr/include/c++/11.2.0/stdlib.h - /usr/include/glib-2.0/glib/gbacktrace.h - /usr/include/signal.h - /usr/include/bits/signum-generic.h - /usr/include/bits/signum-arch.h - /usr/include/bits/types/sig_atomic_t.h - /usr/include/bits/types/siginfo_t.h - /usr/include/bits/types/__sigval_t.h - /usr/include/bits/siginfo-arch.h - /usr/include/bits/siginfo-consts.h - /usr/include/bits/siginfo-consts-arch.h - /usr/include/bits/types/sigval_t.h - /usr/include/bits/types/sigevent_t.h - /usr/include/bits/sigevent-consts.h - /usr/include/bits/sigaction.h - /usr/include/bits/sigcontext.h - /usr/include/bits/types/stack_t.h - /usr/include/sys/ucontext.h - /usr/include/bits/sigstack.h - /usr/include/bits/sigstksz.h - /usr/include/unistd.h - /usr/include/bits/posix_opt.h - /usr/include/bits/environments.h - /usr/include/bits/confname.h - /usr/include/bits/getopt_posix.h - /usr/include/bits/getopt_core.h - /usr/include/bits/unistd_ext.h - /usr/include/linux/close_range.h - /usr/include/bits/ss_flags.h - /usr/include/bits/types/struct_sigstack.h - /usr/include/bits/sigthread.h - /usr/include/bits/signal_ext.h - /usr/include/glib-2.0/glib/gbase64.h - /usr/include/glib-2.0/glib/gbitlock.h - /usr/include/glib-2.0/glib/gbookmarkfile.h - /usr/include/glib-2.0/glib/gdatetime.h - /usr/include/glib-2.0/glib/gtimezone.h - /usr/include/glib-2.0/glib/gbytes.h - /usr/include/glib-2.0/glib/gcharset.h - /usr/include/glib-2.0/glib/gchecksum.h - /usr/include/glib-2.0/glib/gconvert.h - /usr/include/glib-2.0/glib/gdataset.h - /usr/include/glib-2.0/glib/gdate.h - /usr/include/glib-2.0/glib/gdir.h - /usr/include/dirent.h - /usr/include/bits/dirent.h - /usr/include/bits/dirent_ext.h - /usr/include/glib-2.0/glib/genviron.h - /usr/include/glib-2.0/glib/gfileutils.h - /usr/include/glib-2.0/glib/ggettext.h - /usr/include/glib-2.0/glib/ghash.h - /usr/include/glib-2.0/glib/glist.h - /usr/include/glib-2.0/glib/gmem.h - /usr/include/glib-2.0/glib/gnode.h - /usr/include/glib-2.0/glib/ghmac.h - /usr/include/glib-2.0/glib/gchecksum.h - /usr/include/glib-2.0/glib/ghook.h - /usr/include/glib-2.0/glib/ghostutils.h - /usr/include/glib-2.0/glib/giochannel.h - /usr/include/glib-2.0/glib/gmain.h - /usr/include/glib-2.0/glib/gpoll.h - /usr/include/glib-2.0/glib/gslist.h - /usr/include/glib-2.0/glib/gstring.h - /usr/include/glib-2.0/glib/gunicode.h - /usr/include/glib-2.0/glib/gkeyfile.h - /usr/include/glib-2.0/glib/gmappedfile.h - /usr/include/glib-2.0/glib/gmarkup.h - /usr/include/glib-2.0/glib/gmessages.h - /usr/include/glib-2.0/glib/gvariant.h - /usr/include/glib-2.0/glib/gvarianttype.h - /usr/include/glib-2.0/glib/goption.h - /usr/include/glib-2.0/glib/gpattern.h - /usr/include/glib-2.0/glib/gprimes.h - /usr/include/glib-2.0/glib/gqsort.h - /usr/include/glib-2.0/glib/gqueue.h - /usr/include/glib-2.0/glib/grand.h - /usr/include/glib-2.0/glib/grcbox.h - /usr/include/glib-2.0/glib/grefcount.h - /usr/include/glib-2.0/glib/grefstring.h - /usr/include/glib-2.0/glib/gmem.h - /usr/include/glib-2.0/glib/gmacros.h - /usr/include/glib-2.0/glib/gregex.h - /usr/include/glib-2.0/glib/gscanner.h - /usr/include/glib-2.0/glib/gsequence.h - /usr/include/glib-2.0/glib/gshell.h - /usr/include/glib-2.0/glib/gslice.h - /usr/include/glib-2.0/glib/gspawn.h - /usr/include/glib-2.0/glib/gstrfuncs.h - /usr/include/glib-2.0/glib/gstringchunk.h - /usr/include/glib-2.0/glib/gstrvbuilder.h - /usr/include/glib-2.0/glib/gtestutils.h - /usr/include/glib-2.0/glib/gthreadpool.h - /usr/include/glib-2.0/glib/gtimer.h - /usr/include/glib-2.0/glib/gtrashstack.h - /usr/include/glib-2.0/glib/gtree.h - /usr/include/glib-2.0/glib/guri.h - /usr/include/glib-2.0/glib/guuid.h - /usr/include/glib-2.0/glib/gversion.h - /usr/include/glib-2.0/glib/deprecated/gallocator.h - /usr/include/glib-2.0/glib/deprecated/gcache.h - /usr/include/glib-2.0/glib/deprecated/gcompletion.h - /usr/include/glib-2.0/glib/deprecated/gmain.h - /usr/include/glib-2.0/glib/deprecated/grel.h - /usr/include/glib-2.0/glib/deprecated/gthread.h - /usr/include/glib-2.0/glib/glib-autocleanups.h - /usr/include/glibmm-2.4/glibmm/error.h - /usr/include/glibmm-2.4/glibmm/exception.h - /usr/include/glibmm-2.4/glibmm/ustring.h - /usr/include/glibmm-2.4/glibmm/unicode.h - /usr/include/c++/11.2.0/iterator - /usr/include/c++/11.2.0/bits/stream_iterator.h - /usr/include/c++/11.2.0/sstream - /usr/include/c++/11.2.0/bits/sstream.tcc - /usr/include/glibmm-2.4/glibmm/value.h - /usr/include/glibmm-2.4/glibmm/refptr.h - /usr/include/glibmm-2.4/glibmm/enums.h - /usr/include/glib-2.0/glib-object.h - /usr/include/glib-2.0/gobject/gbinding.h - /usr/include/glib-2.0/gobject/gobject.h - /usr/include/glib-2.0/gobject/gtype.h - /usr/include/glib-2.0/gobject/gvalue.h - /usr/include/glib-2.0/gobject/gparam.h - /usr/include/glib-2.0/gobject/gclosure.h - /usr/include/glib-2.0/gobject/gsignal.h - /usr/include/glib-2.0/gobject/gmarshal.h - /usr/include/glib-2.0/gobject/gboxed.h - /usr/include/glib-2.0/gobject/glib-types.h - /usr/include/glib-2.0/gobject/gbindinggroup.h - /usr/include/glib-2.0/gobject/genums.h - /usr/include/glib-2.0/gobject/glib-enumtypes.h - /usr/include/glib-2.0/gobject/gparamspecs.h - /usr/include/glib-2.0/gobject/gsignalgroup.h - /usr/include/glib-2.0/gobject/gsourceclosure.h - /usr/include/glib-2.0/gobject/gtypemodule.h - /usr/include/glib-2.0/gobject/gtypeplugin.h - /usr/include/glib-2.0/gobject/gvaluearray.h - /usr/include/glib-2.0/gobject/gvaluetypes.h - /usr/include/glib-2.0/gobject/gobject-autocleanups.h - /usr/include/c++/11.2.0/vector - /usr/include/c++/11.2.0/bits/stl_vector.h - /usr/include/c++/11.2.0/bits/stl_bvector.h - /usr/include/c++/11.2.0/bits/vector.tcc - /usr/include/glibmm-2.4/glibmm/value_custom.h - /usr/include/glibmm-2.4/glibmm/value_basictypes.h - /usr/include/glibmm-2.4/glibmm/timeval.h - /usr/include/sigc++-2.0/sigc++/sigc++.h - /usr/include/sigc++-2.0/sigc++/signal.h - /usr/include/c++/11.2.0/list - /usr/include/c++/11.2.0/bits/stl_list.h - /usr/include/c++/11.2.0/bits/list.tcc - /usr/include/sigc++-2.0/sigc++/signal_base.h - /usr/lib/sigc++-2.0/include/sigc++config.h - /usr/include/sigc++-2.0/sigc++/type_traits.h - /usr/include/sigc++-2.0/sigc++/trackable.h - /usr/include/sigc++-2.0/sigc++/functors/slot.h - /usr/include/sigc++-2.0/sigc++/visit_each.h - /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h - /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h - /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h - /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h - /usr/include/sigc++-2.0/sigc++/limit_reference.h - /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h - /usr/include/sigc++-2.0/sigc++/functors/slot_base.h - /usr/include/sigc++-2.0/sigc++/connection.h - /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h - /usr/include/sigc++-2.0/sigc++/adaptors/bind.h - /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h - /usr/include/sigc++-2.0/sigc++/reference_wrapper.h - /usr/include/c++/11.2.0/functional - /usr/include/c++/11.2.0/bits/std_function.h - /usr/include/c++/11.2.0/unordered_map - /usr/include/c++/11.2.0/bits/hashtable.h - /usr/include/c++/11.2.0/bits/hashtable_policy.h - /usr/include/c++/11.2.0/bits/node_handle.h - /usr/include/c++/11.2.0/bits/unordered_map.h - /usr/include/c++/11.2.0/bits/erase_if.h - /usr/include/c++/11.2.0/bits/stl_algo.h - /usr/include/c++/11.2.0/bits/algorithmfwd.h - /usr/include/c++/11.2.0/bits/stl_heap.h - /usr/include/c++/11.2.0/bits/uniform_int_dist.h - /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h - /usr/include/sigc++-2.0/sigc++/adaptors/hide.h - /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h - /usr/include/sigc++-2.0/sigc++/adaptors/retype.h - /usr/include/sigc++-2.0/sigc++/adaptors/compose.h - /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h - /usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h - /usr/include/sigc++-2.0/sigc++/functors/functors.h - /usr/include/glibmm-2.4/glibmm/threads.h - /usr/include/glibmm-2.4/glibmm/arrayhandle.h - /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h - /usr/include/glibmm-2.4/glibmm/variant.h - /usr/include/glibmm-2.4/glibmm/varianttype.h - /usr/include/glibmm-2.4/glibmm/variantiter.h - /usr/include/glibmm-2.4/glibmm/variantdbusstring.h - /usr/include/c++/11.2.0/map - /usr/include/c++/11.2.0/bits/stl_tree.h - /usr/include/c++/11.2.0/bits/stl_map.h - /usr/include/c++/11.2.0/bits/stl_multimap.h - /usr/include/glibmm-2.4/glibmm/variant_basictypes.h - /usr/include/glibmm-2.4/glibmm/wrap.h - /usr/include/glibmm-2.4/glibmm/objectbase.h - /usr/include/glibmm-2.4/glibmm/class.h - /usr/include/glibmm-2.4/glibmm/signalproxy.h - /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h - /usr/include/glibmm-2.4/glibmm/propertyproxy.h - /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h - /usr/include/glibmm-2.4/glibmm/quark.h - /usr/include/glibmm-2.4/glibmm/debug.h - /usr/include/c++/11.2.0/mutex - /usr/include/c++/11.2.0/chrono - /usr/include/c++/11.2.0/ratio - /usr/include/c++/11.2.0/limits - /usr/include/c++/11.2.0/ctime - /usr/include/c++/11.2.0/bits/parse_numbers.h - /usr/include/c++/11.2.0/bits/std_mutex.h - /usr/include/c++/11.2.0/bits/unique_lock.h - /usr/include/c++/11.2.0/algorithm - /usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h - /usr/include/c++/11.2.0/deque - /usr/include/c++/11.2.0/bits/stl_deque.h - /usr/include/c++/11.2.0/bits/deque.tcc - /usr/include/glibmm-2.4/glibmm/balancedtree.h - /usr/include/glibmm-2.4/glibmm/base64.h - /usr/include/glibmm-2.4/glibmm/binding.h - /usr/include/glibmm-2.4/glibmm/object.h - /usr/include/glibmm-2.4/glibmm/utility.h - /usr/include/glibmm-2.4/glibmm/bytearray.h - /usr/include/sigc++-2.0/sigc++/slot.h - /usr/include/glibmm-2.4/glibmm/bytes.h - /usr/include/glibmm-2.4/glibmm/checksum.h - /usr/include/glibmm-2.4/glibmm/convert.h - /usr/include/glibmm-2.4/glibmm/date.h - /usr/include/glibmm-2.4/glibmm/datetime.h - /usr/include/glibmm-2.4/glibmm/timezone.h - /usr/include/glibmm-2.4/glibmm/dispatcher.h - /usr/include/glibmm-2.4/glibmm/main.h - /usr/include/glibmm-2.4/glibmm/priorities.h - /usr/include/glibmm-2.4/glibmm/iochannel.h - /usr/include/glibmm-2.4/glibmm/exceptionhandler.h - /usr/include/glibmm-2.4/glibmm/fileutils.h - /usr/include/glibmm-2.4/glibmm/helperlist.h - /usr/include/glibmm-2.4/glibmm/containers.h - /usr/include/glibmm-2.4/glibmm/sarray.h - /usr/include/glibmm-2.4/glibmm/interface.h - /usr/include/glibmm-2.4/glibmm/init.h - /usr/include/glibmm-2.4/glibmm/keyfile.h - /usr/include/glibmm-2.4/glibmm/streamiochannel.h - /usr/include/glibmm-2.4/glibmm/listhandle.h - /usr/include/glibmm-2.4/glibmm/markup.h - /usr/include/glibmm-2.4/glibmm/miscutils.h - /usr/include/glibmm-2.4/glibmm/module.h - /usr/include/glibmm-2.4/glibmm/nodetree.h - /usr/include/c++/11.2.0/stack - /usr/include/c++/11.2.0/bits/stl_stack.h - /usr/include/glibmm-2.4/glibmm/optioncontext.h - /usr/include/glibmm-2.4/glibmm/optionentry.h - /usr/include/glibmm-2.4/glibmm/optiongroup.h - /usr/include/glibmm-2.4/glibmm/pattern.h - /usr/include/glibmm-2.4/glibmm/property.h - /usr/include/glibmm-2.4/glibmm/random.h - /usr/include/glibmm-2.4/glibmm/regex.h - /usr/include/glibmm-2.4/glibmm/shell.h - /usr/include/glibmm-2.4/glibmm/slisthandle.h - /usr/include/glibmm-2.4/glibmm/spawn.h - /usr/include/glibmm-2.4/glibmm/stringutils.h - /usr/include/glibmm-2.4/glibmm/threadpool.h - /usr/include/glibmm-2.4/glibmm/timer.h - /usr/include/glibmm-2.4/glibmm/uriutils.h - /usr/include/glibmm-2.4/glibmm/valuearray.h - /usr/include/glibmm-2.4/glibmm/variantdict.h - /usr/include/glibmm-2.4/glibmm/vectorutils.h - /usr/include/glibmm-2.4/glibmm/weakref.h - /usr/include/giomm-2.4/giomm.h - /usr/include/giomm-2.4/giomm/action.h - /usr/lib/giomm-2.4/include/giommconfig.h - /usr/include/glib-2.0/gio/gio.h - /usr/include/glib-2.0/gio/giotypes.h - /usr/include/glib-2.0/gio/gioenums.h - /usr/include/glib-2.0/gio/gaction.h - /usr/include/glib-2.0/gio/gactiongroup.h - /usr/include/glib-2.0/gio/gactiongroupexporter.h - /usr/include/glib-2.0/gio/gactionmap.h - /usr/include/glib-2.0/gio/gappinfo.h - /usr/include/glib-2.0/gio/gapplication.h - /usr/include/glib-2.0/gio/gapplicationcommandline.h - /usr/include/glib-2.0/gio/gasyncinitable.h - /usr/include/glib-2.0/gio/ginitable.h - /usr/include/glib-2.0/gio/gasyncresult.h - /usr/include/glib-2.0/gio/gbufferedinputstream.h - /usr/include/glib-2.0/gio/gfilterinputstream.h - /usr/include/glib-2.0/gio/ginputstream.h - /usr/include/glib-2.0/gio/gbufferedoutputstream.h - /usr/include/glib-2.0/gio/gfilteroutputstream.h - /usr/include/glib-2.0/gio/goutputstream.h - /usr/include/glib-2.0/gio/gbytesicon.h - /usr/include/glib-2.0/gio/gcancellable.h - /usr/include/glib-2.0/gio/gcharsetconverter.h - /usr/include/glib-2.0/gio/gconverter.h - /usr/include/glib-2.0/gio/gcontenttype.h - /usr/include/glib-2.0/gio/gconverterinputstream.h - /usr/include/glib-2.0/gio/gconverteroutputstream.h - /usr/include/glib-2.0/gio/gcredentials.h - /usr/include/glib-2.0/gio/gdatagrambased.h - /usr/include/glib-2.0/gio/gdatainputstream.h - /usr/include/glib-2.0/gio/gdataoutputstream.h - /usr/include/glib-2.0/gio/gdbusactiongroup.h - /usr/include/glib-2.0/gio/giotypes.h - /usr/include/glib-2.0/gio/gdbusaddress.h - /usr/include/glib-2.0/gio/gdbusauthobserver.h - /usr/include/glib-2.0/gio/gdbusconnection.h - /usr/include/glib-2.0/gio/gdbuserror.h - /usr/include/glib-2.0/gio/gdbusinterface.h - /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h - /usr/include/glib-2.0/gio/gdbusintrospection.h - /usr/include/glib-2.0/gio/gdbusmenumodel.h - /usr/include/glib-2.0/gio/gdbusmessage.h - /usr/include/glib-2.0/gio/gdbusmethodinvocation.h - /usr/include/glib-2.0/gio/gdbusnameowning.h - /usr/include/glib-2.0/gio/gdbusnamewatching.h - /usr/include/glib-2.0/gio/gdbusobject.h - /usr/include/glib-2.0/gio/gdbusobjectmanager.h - /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h - /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h - /usr/include/glib-2.0/gio/gdbusobjectproxy.h - /usr/include/glib-2.0/gio/gdbusobjectskeleton.h - /usr/include/glib-2.0/gio/gdbusproxy.h - /usr/include/glib-2.0/gio/gdbusserver.h - /usr/include/glib-2.0/gio/gdbusutils.h - /usr/include/glib-2.0/gio/gdebugcontroller.h - /usr/include/glib-2.0/gio/gdebugcontrollerdbus.h - /usr/include/glib-2.0/gio/gdrive.h - /usr/include/glib-2.0/gio/gdtlsclientconnection.h - /usr/include/glib-2.0/gio/gdtlsconnection.h - /usr/include/glib-2.0/gio/gdtlsserverconnection.h - /usr/include/glib-2.0/gio/gemblemedicon.h - /usr/include/glib-2.0/gio/gicon.h - /usr/include/glib-2.0/gio/gemblem.h - /usr/include/glib-2.0/gio/gfile.h - /usr/include/glib-2.0/gio/gfileattribute.h - /usr/include/glib-2.0/gio/gfileenumerator.h - /usr/include/glib-2.0/gio/gfileicon.h - /usr/include/glib-2.0/gio/gfileinfo.h - /usr/include/glib-2.0/gio/gfileinputstream.h - /usr/include/glib-2.0/gio/gfileiostream.h - /usr/include/glib-2.0/gio/giostream.h - /usr/include/glib-2.0/gio/gioerror.h - /usr/include/glib-2.0/gio/gfilemonitor.h - /usr/include/glib-2.0/gio/gfilenamecompleter.h - /usr/include/glib-2.0/gio/gfileoutputstream.h - /usr/include/glib-2.0/gio/ginetaddress.h - /usr/include/glib-2.0/gio/ginetaddressmask.h - /usr/include/glib-2.0/gio/ginetsocketaddress.h - /usr/include/glib-2.0/gio/gsocketaddress.h - /usr/include/glib-2.0/gio/gioenumtypes.h - /usr/include/glib-2.0/gio/giomodule.h - /usr/include/glib-2.0/gmodule.h - /usr/include/glib-2.0/gio/gioscheduler.h - /usr/include/glib-2.0/gio/glistmodel.h - /usr/include/glib-2.0/gio/gliststore.h - /usr/include/glib-2.0/gio/gloadableicon.h - /usr/include/glib-2.0/gio/gmemoryinputstream.h - /usr/include/glib-2.0/gio/gmemorymonitor.h - /usr/include/glib-2.0/gio/gmemoryoutputstream.h - /usr/include/glib-2.0/gio/gmenu.h - /usr/include/glib-2.0/gio/gmenumodel.h - /usr/include/glib-2.0/gio/gmenuexporter.h - /usr/include/glib-2.0/gio/gmount.h - /usr/include/glib-2.0/gio/gmountoperation.h - /usr/include/glib-2.0/gio/gnativesocketaddress.h - /usr/include/glib-2.0/gio/gnativevolumemonitor.h - /usr/include/glib-2.0/gio/gvolumemonitor.h - /usr/include/glib-2.0/gio/gnetworkaddress.h - /usr/include/glib-2.0/gio/gnetworkmonitor.h - /usr/include/glib-2.0/gio/gnetworkservice.h - /usr/include/glib-2.0/gio/gnotification.h - /usr/include/glib-2.0/gio/gpermission.h - /usr/include/glib-2.0/gio/gpollableinputstream.h - /usr/include/glib-2.0/gio/gpollableoutputstream.h - /usr/include/glib-2.0/gio/gpollableutils.h - /usr/include/glib-2.0/gio/gpowerprofilemonitor.h - /usr/include/glib-2.0/gio/gpropertyaction.h - /usr/include/glib-2.0/gio/gproxy.h - /usr/include/glib-2.0/gio/gproxyaddress.h - /usr/include/glib-2.0/gio/gproxyaddressenumerator.h - /usr/include/glib-2.0/gio/gsocketaddressenumerator.h - /usr/include/glib-2.0/gio/gproxyresolver.h - /usr/include/glib-2.0/gio/gremoteactiongroup.h - /usr/include/glib-2.0/gio/gresolver.h - /usr/include/glib-2.0/gio/gresource.h - /usr/include/glib-2.0/gio/gseekable.h - /usr/include/glib-2.0/gio/gsettings.h - /usr/include/glib-2.0/gio/gsettingsschema.h - /usr/include/glib-2.0/gio/gsimpleaction.h - /usr/include/glib-2.0/gio/gsimpleactiongroup.h - /usr/include/glib-2.0/gio/gactiongroup.h - /usr/include/glib-2.0/gio/gactionmap.h - /usr/include/glib-2.0/gio/gsimpleasyncresult.h - /usr/include/glib-2.0/gio/gsimpleiostream.h - /usr/include/glib-2.0/gio/gsimplepermission.h - /usr/include/glib-2.0/gio/gsimpleproxyresolver.h - /usr/include/glib-2.0/gio/gsocket.h - /usr/include/glib-2.0/gio/gsocketclient.h - /usr/include/glib-2.0/gio/gsocketconnectable.h - /usr/include/glib-2.0/gio/gsocketconnection.h - /usr/include/glib-2.0/gio/gsocketcontrolmessage.h - /usr/include/glib-2.0/gio/gsocketlistener.h - /usr/include/glib-2.0/gio/gsocketservice.h - /usr/include/glib-2.0/gio/gsrvtarget.h - /usr/include/glib-2.0/gio/gsubprocess.h - /usr/include/glib-2.0/gio/gsubprocesslauncher.h - /usr/include/glib-2.0/gio/gtask.h - /usr/include/glib-2.0/gio/gtcpconnection.h - /usr/include/glib-2.0/gio/gtcpwrapperconnection.h - /usr/include/glib-2.0/gio/gtestdbus.h - /usr/include/glib-2.0/gio/gthemedicon.h - /usr/include/glib-2.0/gio/gthreadedsocketservice.h - /usr/include/glib-2.0/gio/gtlsbackend.h - /usr/include/glib-2.0/gio/gtlscertificate.h - /usr/include/glib-2.0/gio/gtlsclientconnection.h - /usr/include/glib-2.0/gio/gtlsconnection.h - /usr/include/glib-2.0/gio/gtlsdatabase.h - /usr/include/glib-2.0/gio/gtlsfiledatabase.h - /usr/include/glib-2.0/gio/gtlsinteraction.h - /usr/include/glib-2.0/gio/gtlspassword.h - /usr/include/glib-2.0/gio/gtlsserverconnection.h - /usr/include/glib-2.0/gio/gvfs.h - /usr/include/glib-2.0/gio/gvolume.h - /usr/include/glib-2.0/gio/gzlibcompressor.h - /usr/include/glib-2.0/gio/gzlibdecompressor.h - /usr/include/glib-2.0/gio/gio-autocleanups.h - /usr/include/giomm-2.4/giomm/actiongroup.h - /usr/include/giomm-2.4/giomm/actionmap.h - /usr/include/giomm-2.4/giomm/simpleaction.h - /usr/include/giomm-2.4/giomm/appinfo.h - /usr/include/giomm-2.4/giomm/applaunchcontext.h - /usr/include/giomm-2.4/giomm/icon.h - /usr/include/giomm-2.4/giomm/asyncresult.h - /usr/include/giomm-2.4/giomm/cancellable.h - /usr/include/giomm-2.4/giomm/application.h - /usr/include/giomm-2.4/giomm/applicationcommandline.h - /usr/include/giomm-2.4/giomm/file.h - /usr/include/giomm-2.4/giomm/fileattributeinfolist.h - /usr/include/giomm-2.4/giomm/fileattributeinfo.h - /usr/include/giomm-2.4/giomm/fileenumerator.h - /usr/include/giomm-2.4/giomm/fileinfo.h - /usr/include/giomm-2.4/giomm/fileinputstream.h - /usr/include/giomm-2.4/giomm/inputstream.h - /usr/include/giomm-2.4/giomm/seekable.h - /usr/include/giomm-2.4/giomm/fileiostream.h - /usr/include/giomm-2.4/giomm/iostream.h - /usr/include/giomm-2.4/giomm/outputstream.h - /usr/include/giomm-2.4/giomm/filemonitor.h - /usr/include/giomm-2.4/giomm/fileoutputstream.h - /usr/include/giomm-2.4/giomm/mountoperation.h - /usr/include/giomm-2.4/giomm/drive.h - /usr/include/giomm-2.4/giomm/mount.h - /usr/include/giomm-2.4/giomm/error.h - /usr/include/giomm-2.4/giomm/dbusconnection.h - /usr/include/giomm-2.4/giomm/initable.h - /usr/include/giomm-2.4/giomm/asyncinitable.h - /usr/include/giomm-2.4/giomm/dbusauthobserver.h - /usr/include/giomm-2.4/giomm/credentials.h - /usr/include/giomm-2.4/giomm/dbusmethodinvocation.h - /usr/include/giomm-2.4/giomm/dbusmessage.h - /usr/include/giomm-2.4/giomm/unixfdlist.h - /usr/include/giomm-2.4/giomm/dbusintrospection.h - /usr/include/giomm-2.4/giomm/dbussubtreevtable.h - /usr/include/giomm-2.4/giomm/dbusinterfacevtable.h - /usr/include/giomm-2.4/giomm/notification.h - /usr/include/giomm-2.4/giomm/bufferedinputstream.h - /usr/include/giomm-2.4/giomm/filterinputstream.h - /usr/include/giomm-2.4/giomm/bufferedoutputstream.h - /usr/include/giomm-2.4/giomm/filteroutputstream.h - /usr/include/giomm-2.4/giomm/charsetconverter.h - /usr/include/giomm-2.4/giomm/converter.h - /usr/include/giomm-2.4/giomm/contenttype.h - /usr/include/giomm-2.4/giomm/converterinputstream.h - /usr/include/giomm-2.4/giomm/pollableinputstream.h - /usr/include/giomm-2.4/giomm/converteroutputstream.h - /usr/include/giomm-2.4/giomm/pollableoutputstream.h - /usr/include/giomm-2.4/giomm/datainputstream.h - /usr/include/giomm-2.4/giomm/enums.h - /usr/include/giomm-2.4/giomm/dataoutputstream.h - /usr/include/giomm-2.4/giomm/dbusactiongroup.h - /usr/include/giomm-2.4/giomm/remoteactiongroup.h - /usr/include/giomm-2.4/giomm/dbusaddress.h - /usr/include/giomm-2.4/giomm/dbuserror.h - /usr/include/giomm-2.4/giomm/dbuserrorutils.h - /usr/include/giomm-2.4/giomm/dbusinterface.h - /usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h - /usr/include/giomm-2.4/giomm/dbusmenumodel.h - /usr/include/giomm-2.4/giomm/menumodel.h - /usr/include/giomm-2.4/giomm/dbusobject.h - /usr/include/giomm-2.4/giomm/dbusobjectmanager.h - /usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h - /usr/include/giomm-2.4/giomm/dbusobjectproxy.h - /usr/include/giomm-2.4/giomm/dbusproxy.h - /usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h - /usr/include/giomm-2.4/giomm/dbusobjectskeleton.h - /usr/include/giomm-2.4/giomm/dbusownname.h - /usr/include/giomm-2.4/giomm/dbusserver.h - /usr/include/giomm-2.4/giomm/dbusutils.h - /usr/include/giomm-2.4/giomm/dbuswatchname.h - /usr/include/giomm-2.4/giomm/desktopappinfo.h - /usr/include/giomm-2.4/giomm/emblem.h - /usr/include/giomm-2.4/giomm/emblemedicon.h - /usr/include/giomm-2.4/giomm/fileicon.h - /usr/include/giomm-2.4/giomm/loadableicon.h - /usr/include/giomm-2.4/giomm/filenamecompleter.h - /usr/include/giomm-2.4/giomm/inetaddress.h - /usr/include/giomm-2.4/giomm/inetsocketaddress.h - /usr/include/giomm-2.4/giomm/socketaddress.h - /usr/include/giomm-2.4/giomm/socketconnectable.h - /usr/include/giomm-2.4/giomm/socketaddressenumerator.h - /usr/include/giomm-2.4/giomm/init.h - /usr/include/giomm-2.4/giomm/wrap_init.h - /usr/include/giomm-2.4/giomm/listmodel.h - /usr/include/giomm-2.4/giomm/liststore.h - /usr/include/giomm-2.4/giomm/memoryinputstream.h - /usr/include/giomm-2.4/giomm/memoryoutputstream.h - /usr/include/giomm-2.4/giomm/menu.h - /usr/include/giomm-2.4/giomm/menuitem.h - /usr/include/giomm-2.4/giomm/menuattributeiter.h - /usr/include/giomm-2.4/giomm/menulinkiter.h - /usr/include/giomm-2.4/giomm/networkaddress.h - /usr/include/giomm-2.4/giomm/networkmonitor.h - /usr/include/giomm-2.4/giomm/networkservice.h - /usr/include/giomm-2.4/giomm/permission.h - /usr/include/giomm-2.4/giomm/proxy.h - /usr/include/giomm-2.4/giomm/proxyaddress.h - /usr/include/giomm-2.4/giomm/proxyresolver.h - /usr/include/giomm-2.4/giomm/resolver.h - /usr/include/giomm-2.4/giomm/srvtarget.h - /usr/include/giomm-2.4/giomm/resource.h - /usr/include/giomm-2.4/giomm/settings.h - /usr/include/giomm-2.4/giomm/settingsschema.h - /usr/include/giomm-2.4/giomm/settingsschemakey.h - /usr/include/giomm-2.4/giomm/settingsschemasource.h - /usr/include/giomm-2.4/giomm/simpleactiongroup.h - /usr/include/giomm-2.4/giomm/simpleiostream.h - /usr/include/giomm-2.4/giomm/simplepermission.h - /usr/include/giomm-2.4/giomm/socket.h - /usr/include/giomm-2.4/giomm/socketclient.h - /usr/include/giomm-2.4/giomm/socketconnection.h - /usr/include/giomm-2.4/giomm/socketcontrolmessage.h - /usr/include/c++/11.2.0/set - /usr/include/c++/11.2.0/bits/stl_set.h - /usr/include/c++/11.2.0/bits/stl_multiset.h - /usr/include/giomm-2.4/giomm/socketlistener.h - /usr/include/giomm-2.4/giomm/socketservice.h - /usr/include/giomm-2.4/giomm/socketsource.h - /usr/include/giomm-2.4/giomm/tcpconnection.h - /usr/include/giomm-2.4/giomm/tcpwrapperconnection.h - /usr/include/giomm-2.4/giomm/themedicon.h - /usr/include/giomm-2.4/giomm/threadedsocketservice.h - /usr/include/giomm-2.4/giomm/tlscertificate.h - /usr/include/giomm-2.4/giomm/tlsclientconnection.h - /usr/include/giomm-2.4/giomm/tlsconnection.h - /usr/include/giomm-2.4/giomm/tlsdatabase.h - /usr/include/giomm-2.4/giomm/tlsinteraction.h - /usr/include/giomm-2.4/giomm/tlspassword.h - /usr/include/giomm-2.4/giomm/tlsserverconnection.h - /usr/include/giomm-2.4/giomm/unixconnection.h - /usr/include/giomm-2.4/giomm/unixcredentialsmessage.h - /usr/include/giomm-2.4/giomm/unixfdmessage.h - /usr/include/giomm-2.4/giomm/unixinputstream.h - /usr/include/giomm-2.4/giomm/unixoutputstream.h - /usr/include/giomm-2.4/giomm/unixsocketaddress.h - /usr/include/giomm-2.4/giomm/volume.h - /usr/include/giomm-2.4/giomm/volumemonitor.h - /usr/include/giomm-2.4/giomm/zlibcompressor.h - /usr/include/giomm-2.4/giomm/zlibdecompressor.h - /usr/include/gdkmm-3.0/gdkmm/dragcontext.h - /usr/include/gdkmm-3.0/gdkmm/color.h - /usr/lib/gdkmm-3.0/include/gdkmmconfig.h - /usr/lib/pangomm-1.4/include/pangommconfig.h - /usr/include/gtk-3.0/gdk/gdk.h - /usr/include/gtk-3.0/gdk/gdkconfig.h - /usr/include/gtk-3.0/gdk/gdkversionmacros.h - /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h - /usr/include/gtk-3.0/gdk/gdktypes.h - /usr/include/pango-1.0/pango/pango.h - /usr/include/pango-1.0/pango/pango-attributes.h - /usr/include/pango-1.0/pango/pango-font.h - /usr/include/pango-1.0/pango/pango-coverage.h - /usr/include/pango-1.0/pango/pango-version-macros.h - /usr/include/pango-1.0/pango/pango-features.h - /usr/include/harfbuzz/hb.h - /usr/include/harfbuzz/hb-blob.h - /usr/include/harfbuzz/hb-common.h - /usr/include/harfbuzz/hb-buffer.h - /usr/include/harfbuzz/hb-unicode.h - /usr/include/harfbuzz/hb-font.h - /usr/include/harfbuzz/hb-face.h - /usr/include/harfbuzz/hb-set.h - /usr/include/harfbuzz/hb-draw.h - /usr/include/harfbuzz/hb.h - /usr/include/harfbuzz/hb-deprecated.h - /usr/include/harfbuzz/hb-map.h - /usr/include/harfbuzz/hb-shape.h - /usr/include/harfbuzz/hb-shape-plan.h - /usr/include/harfbuzz/hb-style.h - /usr/include/harfbuzz/hb-version.h - /usr/include/pango-1.0/pango/pango-types.h - /usr/include/pango-1.0/pango/pango-gravity.h - /usr/include/pango-1.0/pango/pango-matrix.h - /usr/include/pango-1.0/pango/pango-script.h - /usr/include/pango-1.0/pango/pango-language.h - /usr/include/pango-1.0/pango/pango-bidi-type.h - /usr/include/pango-1.0/pango/pango-direction.h - /usr/include/pango-1.0/pango/pango-color.h - /usr/include/pango-1.0/pango/pango-break.h - /usr/include/pango-1.0/pango/pango-item.h - /usr/include/pango-1.0/pango/pango-context.h - /usr/include/pango-1.0/pango/pango-fontmap.h - /usr/include/pango-1.0/pango/pango-fontset.h - /usr/include/pango-1.0/pango/pango-engine.h - /usr/include/pango-1.0/pango/pango-glyph.h - /usr/include/pango-1.0/pango/pango-enum-types.h - /usr/include/pango-1.0/pango/pango-fontset-simple.h - /usr/include/pango-1.0/pango/pango-glyph-item.h - /usr/include/pango-1.0/pango/pango-layout.h - /usr/include/pango-1.0/pango/pango-tabs.h - /usr/include/pango-1.0/pango/pango-markup.h - /usr/include/pango-1.0/pango/pango-renderer.h - /usr/include/pango-1.0/pango/pango-utils.h - /usr/include/cairo/cairo.h - /usr/include/cairo/cairo-version.h - /usr/include/cairo/cairo-features.h - /usr/include/cairo/cairo-deprecated.h - /usr/include/gtk-3.0/gdk/gdkscreen.h - /usr/include/gtk-3.0/gdk/gdkdisplay.h - /usr/include/gtk-3.0/gdk/gdkevents.h - /usr/include/gtk-3.0/gdk/gdkdnd.h - /usr/include/gtk-3.0/gdk/gdkdevice.h - /usr/include/gtk-3.0/gdk/gdkdevicetool.h - /usr/include/gtk-3.0/gdk/gdkdevicemanager.h - /usr/include/gtk-3.0/gdk/gdkseat.h - /usr/include/gtk-3.0/gdk/gdkwindow.h - /usr/include/gtk-3.0/gdk/gdkdrawingcontext.h - /usr/include/gtk-3.0/gdk/gdkframeclock.h - /usr/include/gtk-3.0/gdk/gdkframetimings.h - /usr/include/gtk-3.0/gdk/gdkmonitor.h - /usr/include/gtk-3.0/gdk/gdkrectangle.h - /usr/include/gtk-3.0/gdk/gdkcairo.h - /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h - /usr/include/gtk-3.0/gdk/gdkrgba.h - /usr/include/gtk-3.0/gdk/gdkpixbuf.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h - /usr/include/pango-1.0/pango/pangocairo.h - /usr/include/gtk-3.0/gdk/gdkcursor.h - /usr/include/gtk-3.0/gdk/gdkdevicepad.h - /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h - /usr/include/gtk-3.0/gdk/gdkenumtypes.h - /usr/include/gtk-3.0/gdk/gdkglcontext.h - /usr/include/gtk-3.0/gdk/gdkkeys.h - /usr/include/gtk-3.0/gdk/gdkkeysyms.h - /usr/include/gtk-3.0/gdk/gdkmain.h - /usr/include/gtk-3.0/gdk/gdkpango.h - /usr/include/gtk-3.0/gdk/gdkproperty.h - /usr/include/gtk-3.0/gdk/gdkselection.h - /usr/include/gtk-3.0/gdk/gdktestutils.h - /usr/include/gtk-3.0/gdk/gdkthreads.h - /usr/include/gtk-3.0/gdk/gdkvisual.h - /usr/include/gtk-3.0/gdk/gdk-autocleanup.h - /usr/include/gdkmm-3.0/gdkmm/pixbuf.h - /usr/include/gdkmm-3.0/gdkmm/pixbufformat.h - /usr/include/gdkmm-3.0/gdkmm/types.h - /usr/include/cairomm-1.0/cairomm/surface.h - /usr/include/cairomm-1.0/cairomm/enums.h - /usr/include/cairo/cairo-ft.h - /usr/include/cairo/cairo.h - /usr/include/freetype2/ft2build.h - /usr/include/freetype2/freetype/config/ftheader.h - /usr/include/freetype2/freetype/freetype.h - /usr/include/freetype2/freetype/config/ftconfig.h - /usr/include/freetype2/freetype/config/ftoption.h - /usr/include/freetype2/freetype/config/ftstdlib.h - /usr/include/setjmp.h - /usr/include/freetype2/freetype/config/integer-types.h - /usr/include/freetype2/freetype/config/public-macros.h - /usr/include/freetype2/freetype/config/mac-support.h - /usr/include/freetype2/freetype/fttypes.h - /usr/include/freetype2/freetype/ftsystem.h - /usr/include/freetype2/freetype/ftimage.h - /usr/include/freetype2/freetype/fterrors.h - /usr/include/freetype2/freetype/ftmoderr.h - /usr/include/freetype2/freetype/fterrdef.h - /usr/include/fontconfig/fontconfig.h - /usr/include/sys/stat.h - /usr/include/bits/stat.h - /usr/include/bits/struct_stat.h - /usr/include/bits/statx.h - /usr/include/linux/stat.h - /usr/include/linux/types.h - /usr/include/asm/types.h - /usr/include/asm-generic/types.h - /usr/include/asm-generic/int-ll64.h - /usr/include/asm/bitsperlong.h - /usr/include/asm-generic/bitsperlong.h - /usr/include/linux/posix_types.h - /usr/include/linux/stddef.h - /usr/include/asm/posix_types.h - /usr/include/asm/posix_types_64.h - /usr/include/asm-generic/posix_types.h - /usr/include/bits/statx-generic.h - /usr/include/bits/types/struct_statx_timestamp.h - /usr/include/bits/types/struct_statx.h - /usr/include/cairomm-1.0/cairomm/exception.h - /usr/lib/cairomm-1.0/include/cairommconfig.h - /usr/include/cairomm-1.0/cairomm/device.h - /usr/include/cairomm-1.0/cairomm/types.h - /usr/include/cairomm-1.0/cairomm/refptr.h - /usr/include/cairomm-1.0/cairomm/fontoptions.h - /usr/include/cairo/cairo-pdf.h - /usr/include/cairo/cairo-ps.h - /usr/include/cairo/cairo-svg.h - /usr/include/gdkmm-3.0/gdkmm/device.h - /usr/include/gdkmm-3.0/gdkmm/cursor.h - /usr/include/gdkmm-3.0/gdkmm/display.h - /usr/include/gdkmm-3.0/gdkmm/screen.h - /usr/include/gdkmm-3.0/gdkmm/rectangle.h - /usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h - /usr/include/gdkmm-3.0/gdkmm/event.h - /usr/include/gdkmm-3.0/gdkmm/timecoord.h - /usr/include/gdkmm-3.0/gdkmm.h - /usr/include/gdkmm-3.0/gdkmm/visual.h - /usr/include/gdkmm-3.0/gdkmm/window.h - /usr/include/cairomm-1.0/cairomm/region.h - /usr/include/cairomm-1.0/cairomm/pattern.h - /usr/include/gdkmm-3.0/gdkmm/rgba.h - /usr/include/cairomm-1.0/cairomm/context.h - /usr/include/cairomm-1.0/cairomm/fontface.h - /usr/include/cairomm-1.0/cairomm/matrix.h - /usr/include/cairomm-1.0/cairomm/path.h - /usr/include/cairomm-1.0/cairomm/scaledfont.h - /usr/include/c++/11.2.0/valarray - /usr/include/c++/11.2.0/cmath - /usr/include/math.h - /usr/include/bits/math-vector.h - /usr/include/bits/libm-simd-decl-stubs.h - /usr/include/bits/flt-eval-method.h - /usr/include/bits/fp-logb.h - /usr/include/bits/fp-fast.h - /usr/include/bits/mathcalls-helper-functions.h - /usr/include/bits/mathcalls.h - /usr/include/bits/mathcalls-narrow.h - /usr/include/bits/iscanonical.h - /usr/include/c++/11.2.0/bits/specfun.h - /usr/include/c++/11.2.0/tr1/gamma.tcc - /usr/include/c++/11.2.0/tr1/special_function_util.h - /usr/include/c++/11.2.0/tr1/bessel_function.tcc - /usr/include/c++/11.2.0/tr1/beta_function.tcc - /usr/include/c++/11.2.0/tr1/ell_integral.tcc - /usr/include/c++/11.2.0/tr1/exp_integral.tcc - /usr/include/c++/11.2.0/tr1/hypergeometric.tcc - /usr/include/c++/11.2.0/tr1/legendre_function.tcc - /usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc - /usr/include/c++/11.2.0/tr1/poly_hermite.tcc - /usr/include/c++/11.2.0/tr1/poly_laguerre.tcc - /usr/include/c++/11.2.0/tr1/riemann_zeta.tcc - /usr/include/c++/11.2.0/bits/valarray_array.h - /usr/include/c++/11.2.0/bits/valarray_array.tcc - /usr/include/c++/11.2.0/bits/valarray_before.h - /usr/include/c++/11.2.0/bits/slice_array.h - /usr/include/c++/11.2.0/bits/valarray_after.h - /usr/include/c++/11.2.0/bits/gslice.h - /usr/include/c++/11.2.0/bits/gslice_array.h - /usr/include/c++/11.2.0/bits/mask_array.h - /usr/include/c++/11.2.0/bits/indirect_array.h - /usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h - /usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h - /usr/include/gdkmm-3.0/gdkmm/pixbufloader.h - /usr/include/gdkmm-3.0/gdkmm/drawingcontext.h - /usr/include/gdkmm-3.0/gdkmm/frameclock.h - /usr/include/gdkmm-3.0/gdkmm/frametimings.h - /usr/include/gdkmm-3.0/gdkmm/glcontext.h - /usr/include/gdkmm-3.0/gdkmm/displaymanager.h - /usr/include/gdkmm-3.0/gdkmm/devicemanager.h - /usr/include/gdkmm-3.0/gdkmm/seat.h - /usr/include/gdkmm-3.0/gdkmm/monitor.h - /usr/include/gdkmm-3.0/gdkmm/general.h - /usr/include/gtkmm-3.0/gtkmm/toggleaction.h - /usr/include/gtkmm-3.0/gtkmm/action.h - /usr/lib/gtkmm-3.0/include/gtkmmconfig.h - /usr/include/gtkmm-3.0/gtkmm/widget.h - /usr/include/pangomm-1.4/pangomm/context.h - /usr/include/pangomm-1.4/pangomm/fontdescription.h - /usr/include/pangomm-1.4/pangomm/fontmetrics.h - /usr/include/pangomm-1.4/pangomm/fontset.h - /usr/include/pangomm-1.4/pangomm/language.h - /usr/include/pangomm-1.4/pangomm/font.h - /usr/include/pangomm-1.4/pangomm/rectangle.h - /usr/include/pangomm-1.4/pangomm/glyph.h - /usr/include/pangomm-1.4/pangomm/coverage.h - /usr/include/pangomm-1.4/pangomm/fontmap.h - /usr/include/pangomm-1.4/pangomm/fontfamily.h - /usr/include/pangomm-1.4/pangomm/fontface.h - /usr/include/pangomm-1.4/pangomm/item.h - /usr/include/pangomm-1.4/pangomm/attributes.h - /usr/include/pangomm-1.4/pangomm/color.h - /usr/include/pangomm-1.4/pangomm/attrlist.h - /usr/include/pangomm-1.4/pangomm/attriter.h - /usr/include/pangomm-1.4/pangomm/types.h - /usr/include/pangomm-1.4/pangomm/layout.h - /usr/include/pangomm-1.4/pangomm/tabarray.h - /usr/include/pangomm-1.4/pangomm/layoutline.h - /usr/include/pangomm-1.4/pangomm/layoutiter.h - /usr/include/pangomm-1.4/pangomm/layoutrun.h - /usr/include/atkmm-1.6/atkmm/object.h - /usr/include/atkmm-1.6/atkmm/component.h - /usr/lib/atkmm-1.6/include/atkmmconfig.h - /usr/include/atkmm-1.6/atkmm/relation.h - /usr/include/atkmm-1.6/atkmm/implementor.h - /usr/include/gtkmm-3.0/gtkmm/object.h - /usr/include/gtkmm-3.0/gtkmm/base.h - /usr/include/gtkmm-3.0/gtkmm/buildable.h - /usr/include/gtkmm-3.0/gtkmm/enums.h - /usr/include/gtk-3.0/gtk/gtk.h - /usr/include/gtk-3.0/gtk/gtkaboutdialog.h - /usr/include/gtk-3.0/gtk/gtkdialog.h - /usr/include/gtk-3.0/gtk/gtkwindow.h - /usr/include/gtk-3.0/gtk/gtkapplication.h - /usr/include/gtk-3.0/gtk/gtkwidget.h - /usr/include/gtk-3.0/gtk/gtkaccelgroup.h - /usr/include/gtk-3.0/gtk/gtkenums.h - /usr/include/gtk-3.0/gtk/gtkborder.h - /usr/include/gtk-3.0/gtk/gtktypes.h - /usr/include/atk-1.0/atk/atk.h - /usr/include/atk-1.0/atk/atkobject.h - /usr/include/atk-1.0/atk/atkversion.h - /usr/include/atk-1.0/atk/atkstate.h - /usr/include/atk-1.0/atk/atkrelationtype.h - /usr/include/atk-1.0/atk/atkaction.h - /usr/include/atk-1.0/atk/atkcomponent.h - /usr/include/atk-1.0/atk/atkutil.h - /usr/include/atk-1.0/atk/atkdocument.h - /usr/include/atk-1.0/atk/atkeditabletext.h - /usr/include/atk-1.0/atk/atktext.h - /usr/include/atk-1.0/atk/atk-enum-types.h - /usr/include/atk-1.0/atk/atkgobjectaccessible.h - /usr/include/atk-1.0/atk/atkhyperlink.h - /usr/include/atk-1.0/atk/atkhyperlinkimpl.h - /usr/include/atk-1.0/atk/atkhypertext.h - /usr/include/atk-1.0/atk/atkimage.h - /usr/include/atk-1.0/atk/atknoopobject.h - /usr/include/atk-1.0/atk/atknoopobjectfactory.h - /usr/include/atk-1.0/atk/atkobjectfactory.h - /usr/include/atk-1.0/atk/atkplug.h - /usr/include/atk-1.0/atk/atkrange.h - /usr/include/atk-1.0/atk/atkregistry.h - /usr/include/atk-1.0/atk/atkobjectfactory.h - /usr/include/atk-1.0/atk/atkrelation.h - /usr/include/atk-1.0/atk/atkrelationset.h - /usr/include/atk-1.0/atk/atkselection.h - /usr/include/atk-1.0/atk/atksocket.h - /usr/include/atk-1.0/atk/atkstateset.h - /usr/include/atk-1.0/atk/atkstreamablecontent.h - /usr/include/atk-1.0/atk/atktable.h - /usr/include/atk-1.0/atk/atktablecell.h - /usr/include/atk-1.0/atk/atkmisc.h - /usr/include/atk-1.0/atk/atkvalue.h - /usr/include/atk-1.0/atk/atkwindow.h - /usr/include/atk-1.0/atk/atk-autocleanups.h - /usr/include/gtk-3.0/gtk/gtkbin.h - /usr/include/gtk-3.0/gtk/gtkcontainer.h - /usr/include/gtk-3.0/gtk/gtkaccellabel.h - /usr/include/gtk-3.0/gtk/gtklabel.h - /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h - /usr/include/gtk-3.0/gtk/gtkmenu.h - /usr/include/gtk-3.0/gtk/gtkmenushell.h - /usr/include/gtk-3.0/gtk/gtkaccelmap.h - /usr/include/gtk-3.0/gtk/gtkaccessible.h - /usr/include/gtk-3.0/gtk/gtkactionable.h - /usr/include/gtk-3.0/gtk/gtkactionbar.h - /usr/include/gtk-3.0/gtk/gtkadjustment.h - /usr/include/gtk-3.0/gtk/gtkappchooser.h - /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h - /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h - /usr/include/gtk-3.0/gtk/gtkbox.h - /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h - /usr/include/gtk-3.0/gtk/gtkcombobox.h - /usr/include/gtk-3.0/gtk/gtktreemodel.h - /usr/include/gtk-3.0/gtk/gtktreeview.h - /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h - /usr/include/gtk-3.0/gtk/gtkcellrenderer.h - /usr/include/gtk-3.0/gtk/gtkcelleditable.h - /usr/include/gtk-3.0/gtk/gtktreesortable.h - /usr/include/gtk-3.0/gtk/gtkcellarea.h - /usr/include/gtk-3.0/gtk/gtkdnd.h - /usr/include/gtk-3.0/gtk/gtkselection.h - /usr/include/gtk-3.0/gtk/gtktextiter.h - /usr/include/gtk-3.0/gtk/gtktextattributes.h - /usr/include/gtk-3.0/gtk/gtktextchild.h - /usr/include/gtk-3.0/gtk/gtktexttag.h - /usr/include/gtk-3.0/gtk/gtkentry.h - /usr/include/gtk-3.0/gtk/gtkeditable.h - /usr/include/gtk-3.0/gtk/gtkimcontext.h - /usr/include/gtk-3.0/gtk/gtkentrybuffer.h - /usr/include/gtk-3.0/gtk/gtkentrycompletion.h - /usr/include/gtk-3.0/gtk/gtkliststore.h - /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h - /usr/include/gtk-3.0/gtk/gtkimage.h - /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h - /usr/include/gtk-3.0/gtk/gtkshortcutswindow.h - /usr/include/gtk-3.0/gtk/gtkaspectframe.h - /usr/include/gtk-3.0/gtk/gtkframe.h - /usr/include/gtk-3.0/gtk/gtkassistant.h - /usr/include/gtk-3.0/gtk/gtkbbox.h - /usr/include/gtk-3.0/gtk/gtkbindings.h - /usr/include/gtk-3.0/gtk/gtkbuildable.h - /usr/include/gtk-3.0/gtk/gtkbuilder.h - /usr/include/gtk-3.0/gtk/gtkbutton.h - /usr/include/gtk-3.0/gtk/gtkcalendar.h - /usr/include/gtk-3.0/gtk/gtkcellareabox.h - /usr/include/gtk-3.0/gtk/gtkcellareacontext.h - /usr/include/gtk-3.0/gtk/gtkcelllayout.h - /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h - /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h - /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h - /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h - /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h - /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h - /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h - /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h - /usr/include/gtk-3.0/gtk/gtkcellview.h - /usr/include/gtk-3.0/gtk/gtkcheckbutton.h - /usr/include/gtk-3.0/gtk/gtktogglebutton.h - /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h - /usr/include/gtk-3.0/gtk/gtkmenuitem.h - /usr/include/gtk-3.0/gtk/gtkclipboard.h - /usr/include/gtk-3.0/gtk/gtkcolorbutton.h - /usr/include/gtk-3.0/gtk/gtkcolorchooser.h - /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h - /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h - /usr/include/gtk-3.0/gtk/gtkcolorutils.h - /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h - /usr/include/gtk-3.0/gtk/gtkcssprovider.h - /usr/include/gtk-3.0/gtk/gtkcsssection.h - /usr/include/gtk-3.0/gtk/gtkdebug.h - /usr/include/gtk-3.0/gtk/gtkdragdest.h - /usr/include/gtk-3.0/gtk/gtkdragsource.h - /usr/include/gtk-3.0/gtk/gtkdrawingarea.h - /usr/include/gtk-3.0/gtk/gtkeventbox.h - /usr/include/gtk-3.0/gtk/gtkeventcontroller.h - /usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h - /usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h - /usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h - /usr/include/gtk-3.0/gtk/gtkexpander.h - /usr/include/gtk-3.0/gtk/gtkfixed.h - /usr/include/gtk-3.0/gtk/gtkfilechooser.h - /usr/include/gtk-3.0/gtk/gtkfilefilter.h - /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h - /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h - /usr/include/gtk-3.0/gtk/gtkfilechoosernative.h - /usr/include/gtk-3.0/gtk/gtknativedialog.h - /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h - /usr/include/gtk-3.0/gtk/gtkflowbox.h - /usr/include/gtk-3.0/gtk/gtkfontbutton.h - /usr/include/gtk-3.0/gtk/gtkfontchooser.h - /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h - /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h - /usr/include/gtk-3.0/gtk/gtkgesture.h - /usr/include/gtk-3.0/gtk/gtkgesturedrag.h - /usr/include/gtk-3.0/gtk/gtkgesturesingle.h - /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h - /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h - /usr/include/gtk-3.0/gtk/gtkgesturepan.h - /usr/include/gtk-3.0/gtk/gtkgesturerotate.h - /usr/include/gtk-3.0/gtk/gtkgesturestylus.h - /usr/include/gtk-3.0/gtk/gtkgestureswipe.h - /usr/include/gtk-3.0/gtk/gtkgesturezoom.h - /usr/include/gtk-3.0/gtk/gtkglarea.h - /usr/include/gtk-3.0/gtk/gtkgrid.h - /usr/include/gtk-3.0/gtk/gtkheaderbar.h - /usr/include/gtk-3.0/gtk/gtkicontheme.h - /usr/include/gtk-3.0/gtk/gtkstylecontext.h - /usr/include/gtk-3.0/gtk/gtkstyleprovider.h - /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h - /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h - /usr/include/gtk-3.0/gtk/gtkiconview.h - /usr/include/gtk-3.0/gtk/gtktooltip.h - /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h - /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h - /usr/include/gtk-3.0/gtk/gtkimmulticontext.h - /usr/include/gtk-3.0/gtk/gtkinfobar.h - /usr/include/gtk-3.0/gtk/gtkinvisible.h - /usr/include/gtk-3.0/gtk/gtklayout.h - /usr/include/gtk-3.0/gtk/gtklevelbar.h - /usr/include/gtk-3.0/gtk/gtklinkbutton.h - /usr/include/gtk-3.0/gtk/gtklistbox.h - /usr/include/gtk-3.0/gtk/gtklockbutton.h - /usr/include/gtk-3.0/gtk/gtkmain.h - /usr/include/gtk-3.0/gtk/gtkmenubar.h - /usr/include/gtk-3.0/gtk/gtkmenubutton.h - /usr/include/gtk-3.0/gtk/gtkpopover.h - /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h - /usr/include/gtk-3.0/gtk/gtktoolbutton.h - /usr/include/gtk-3.0/gtk/gtktoolitem.h - /usr/include/gtk-3.0/gtk/gtksizegroup.h - /usr/include/gtk-3.0/gtk/gtkmessagedialog.h - /usr/include/gtk-3.0/gtk/gtkmodelbutton.h - /usr/include/gtk-3.0/gtk/gtkmodules.h - /usr/include/gtk-3.0/gtk/gtkmountoperation.h - /usr/include/gtk-3.0/gtk/gtknotebook.h - /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h - /usr/include/gtk-3.0/gtk/gtkorientable.h - /usr/include/gtk-3.0/gtk/gtkoverlay.h - /usr/include/gtk-3.0/gtk/gtkpadcontroller.h - /usr/include/gtk-3.0/gtk/gtkpagesetup.h - /usr/include/gtk-3.0/gtk/gtkpapersize.h - /usr/include/gtk-3.0/gtk/gtkpaned.h - /usr/include/gtk-3.0/gtk/gtkplacessidebar.h - /usr/include/gtk-3.0/gtk/gtkpopovermenu.h - /usr/include/gtk-3.0/gtk/gtkprintcontext.h - /usr/include/gtk-3.0/gtk/gtkprintoperation.h - /usr/include/gtk-3.0/gtk/gtkprintsettings.h - /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h - /usr/include/gtk-3.0/gtk/gtkprogressbar.h - /usr/include/gtk-3.0/gtk/gtkradiobutton.h - /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h - /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h - /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h - /usr/include/gtk-3.0/gtk/gtkrange.h - /usr/include/gtk-3.0/gtk/gtkrecentchooser.h - /usr/include/gtk-3.0/gtk/gtkrecentmanager.h - /usr/include/gtk-3.0/gtk/gtkrecentfilter.h - /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h - /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h - /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h - /usr/include/gtk-3.0/gtk/gtkrender.h - /usr/include/gtk-3.0/gtk/gtkrevealer.h - /usr/include/gtk-3.0/gtk/gtkscale.h - /usr/include/gtk-3.0/gtk/gtkscalebutton.h - /usr/include/gtk-3.0/gtk/gtkscrollable.h - /usr/include/gtk-3.0/gtk/gtkscrollbar.h - /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h - /usr/include/gtk-3.0/gtk/gtksearchbar.h - /usr/include/gtk-3.0/gtk/gtksearchentry.h - /usr/include/gtk-3.0/gtk/gtkseparator.h - /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h - /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h - /usr/include/gtk-3.0/gtk/gtksettings.h - /usr/include/gtk-3.0/gtk/gtkshortcutlabel.h - /usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h - /usr/include/gtk-3.0/gtk/gtkshortcutssection.h - /usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h - /usr/include/gtk-3.0/gtk/gtkshow.h - /usr/include/gtk-3.0/gtk/gtkstacksidebar.h - /usr/include/gtk-3.0/gtk/gtkstack.h - /usr/include/gtk-3.0/gtk/gtksizerequest.h - /usr/include/gtk-3.0/gtk/gtkspinbutton.h - /usr/include/gtk-3.0/gtk/gtkspinner.h - /usr/include/gtk-3.0/gtk/gtkstackswitcher.h - /usr/include/gtk-3.0/gtk/gtkstatusbar.h - /usr/include/gtk-3.0/gtk/gtkswitch.h - /usr/include/gtk-3.0/gtk/gtktextbuffer.h - /usr/include/gtk-3.0/gtk/gtktexttagtable.h - /usr/include/gtk-3.0/gtk/gtktextmark.h - /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h - /usr/include/gtk-3.0/gtk/gtktextview.h - /usr/include/gtk-3.0/gtk/gtktoolbar.h - /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h - /usr/include/gtk-3.0/gtk/gtktoolpalette.h - /usr/include/gtk-3.0/gtk/gtktoolshell.h - /usr/include/gtk-3.0/gtk/gtktestutils.h - /usr/include/gtk-3.0/gtk/gtktreednd.h - /usr/include/gtk-3.0/gtk/gtktreemodelsort.h - /usr/include/gtk-3.0/gtk/gtktreeselection.h - /usr/include/gtk-3.0/gtk/gtktreestore.h - /usr/include/gtk-3.0/gtk/gtktypebuiltins.h - /usr/include/gtk-3.0/gtk/gtkversion.h - /usr/include/gtk-3.0/gtk/gtkviewport.h - /usr/include/gtk-3.0/gtk/gtkvolumebutton.h - /usr/include/gtk-3.0/gtk/gtkwidgetpath.h - /usr/include/gtk-3.0/gtk/gtkwindowgroup.h - /usr/include/gtk-3.0/gtk/gtkwindow.h - /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h - /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h - /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h - /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h - /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h - /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h - /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h - /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h - /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h - /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h - /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h - /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h - /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h - /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h - /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h - /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h - /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h - /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h - /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h - /usr/include/gtk-3.0/gtk/deprecated/gtktable.h - /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h - /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h - /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h - /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h - /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h - /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h - /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h - /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h - /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h - /usr/include/gtk-3.0/gtk/gtk-autocleanups.h - /usr/include/gtkmm-3.0/gtkmm/targetlist.h - /usr/include/gtkmm-3.0/gtkmm/targetentry.h - /usr/include/gtkmm-3.0/gtkmm/clipboard.h - /usr/include/gtkmm-3.0/gtkmm/selectiondata.h - /usr/include/gtkmm-3.0/gtkmm/requisition.h - /usr/include/gtkmm-3.0/gtkmm/stylecontext.h - /usr/include/gtkmm-3.0/gtkmm/styleprovider.h - /usr/include/gtkmm-3.0/gtkmm/border.h - /usr/include/gtkmm-3.0/gtkmm/iconsource.h - /usr/include/gtkmm-3.0/gtkmm/iconset.h - /usr/include/gtkmm-3.0/gtkmm/stockid.h - /usr/include/gtkmm-3.0/gtkmm/widgetpath.h - /usr/include/gtkmm-3.0/gtkmm/accelgroup.h - /usr/include/gtkmm-3.0/gtkmm/radioaction.h - /usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h - /usr/include/gtkmm-3.0/gtkmm/aboutdialog.h - /usr/include/gtkmm-3.0/gtkmm/dialog.h - /usr/include/gtkmm-3.0/gtkmm/window.h - /usr/include/gtkmm-3.0/gtkmm/bin.h - /usr/include/gtkmm-3.0/gtkmm/container.h - /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h - /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h - /usr/include/gtkmm-3.0/gtkmm/application.h - /usr/include/gtkmm-3.0/gtkmm/actiongroup.h - /usr/include/gtkmm-3.0/gtkmm/accelkey.h - /usr/include/gtkmm-3.0/gtkmm/windowgroup.h - /usr/include/gtkmm-3.0/gtkmm/box.h - /usr/include/gtkmm-3.0/gtkmm/orientable.h - /usr/include/gtkmm-3.0/gtkmm/hvbox.h - /usr/include/gtkmm-3.0/gtkmm/button.h - /usr/include/gtkmm-3.0/gtkmm/activatable.h - /usr/include/gtkmm-3.0/gtkmm/buttonbox.h - /usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h - /usr/include/gtkmm-3.0/gtkmm/headerbar.h - /usr/include/gtkmm-3.0/gtkmm/accelmap.h - /usr/include/gtkmm-3.0/gtkmm/actionable.h - /usr/include/gtkmm-3.0/gtkmm/actionbar.h - /usr/include/gtkmm-3.0/gtkmm/adjustment.h - /usr/include/gtkmm-3.0/gtkmm/alignment.h - /usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h - /usr/include/gtkmm-3.0/gtkmm/appchooser.h - /usr/include/gtkmm-3.0/gtkmm/combobox.h - /usr/include/gtkmm-3.0/gtkmm/celllayout.h - /usr/include/gtkmm-3.0/gtkmm/cellrenderer.h - /usr/include/gtkmm-3.0/gtkmm/celleditable.h - /usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h - /usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h - /usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h - /usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h - /usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h - /usr/include/gtkmm-3.0/gtkmm/treemodel.h - /usr/include/gtkmm-3.0/gtkmm/treeiter.h - /usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h - /usr/include/gtkmm-3.0/gtkmm/cellarea.h - /usr/include/gtkmm-3.0/gtkmm/cellareacontext.h - /usr/include/gtkmm-3.0/gtkmm/treeview.h - /usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h - /usr/include/gtkmm-3.0/gtkmm/treeselection.h - /usr/include/gtkmm-3.0/gtkmm/treepath.h - /usr/include/gtkmm-3.0/gtkmm/scrollable.h - /usr/include/gtkmm-3.0/gtkmm/entry.h - /usr/include/gtkmm-3.0/gtkmm/editable.h - /usr/include/gtkmm-3.0/gtkmm/menu.h - /usr/include/gtkmm-3.0/gtkmm/menushell.h - /usr/include/gtkmm-3.0/gtkmm/menuitem.h - /usr/include/gtkmm-3.0/gtkmm/accellabel.h - /usr/include/gtkmm-3.0/gtkmm/label.h - /usr/include/gtkmm-3.0/gtkmm/misc.h - /usr/include/gtkmm-3.0/gtkmm/entrycompletion.h - /usr/include/gtkmm-3.0/gtkmm/image.h - /usr/include/gtkmm-3.0/gtkmm/entrybuffer.h - /usr/include/gtkmm-3.0/gtkmm/tooltip.h - /usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h - /usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h - /usr/include/gtkmm-3.0/gtkmm/applicationwindow.h - /usr/include/gtkmm-3.0/gtkmm/arrow.h - /usr/include/gtkmm-3.0/gtkmm/aspectframe.h - /usr/include/gtkmm-3.0/gtkmm/frame.h - /usr/include/gtkmm-3.0/gtkmm/assistant.h - /usr/include/gtkmm-3.0/gtkmm/builder.h - /usr/include/gtkmm-3.0/gtkmm/cellareabox.h - /usr/include/gtkmm-3.0/gtkmm/cellview.h - /usr/include/gtkmm-3.0/gtkmm/checkbutton.h - /usr/include/gtkmm-3.0/gtkmm/togglebutton.h - /usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h - /usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h - /usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h - /usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h - /usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h - /usr/include/gtkmm-3.0/gtkmm/colorbutton.h - /usr/include/gtkmm-3.0/gtkmm/colorchooser.h - /usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h - /usr/include/gtkmm-3.0/gtkmm/colorselection.h - /usr/include/gtkmm-3.0/gtkmm/comboboxtext.h - /usr/include/gtkmm-3.0/gtkmm/cssprovider.h - /usr/include/gtkmm-3.0/gtkmm/csssection.h - /usr/include/gtkmm-3.0/gtkmm/drawingarea.h - /usr/include/gtkmm-3.0/gtkmm/expander.h - /usr/include/gtkmm-3.0/gtkmm/eventbox.h - /usr/include/gtkmm-3.0/gtkmm/eventcontroller.h - /usr/include/gtkmm-3.0/gtkmm/filechooser.h - /usr/include/gtkmm-3.0/gtkmm/filefilter.h - /usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h - /usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h - /usr/include/gtkmm-3.0/gtkmm/filechoosernative.h - /usr/include/gtkmm-3.0/gtkmm/nativedialog.h - /usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h - /usr/include/gtkmm-3.0/gtkmm/fixed.h - /usr/include/gtkmm-3.0/gtkmm/flowbox.h - /usr/include/gtkmm-3.0/gtkmm/flowboxchild.h - /usr/include/gtkmm-3.0/gtkmm/fontbutton.h - /usr/include/gtkmm-3.0/gtkmm/fontchooser.h - /usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h - /usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h - /usr/include/gtkmm-3.0/gtkmm/fontselection.h - /usr/include/gtkmm-3.0/gtkmm/gesture.h - /usr/include/gtkmm-3.0/gtkmm/gesturedrag.h - /usr/include/gtkmm-3.0/gtkmm/gesturesingle.h - /usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h - /usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h - /usr/include/gtkmm-3.0/gtkmm/gesturepan.h - /usr/include/gtkmm-3.0/gtkmm/gesturerotate.h - /usr/include/gtkmm-3.0/gtkmm/gestureswipe.h - /usr/include/gtkmm-3.0/gtkmm/gesturezoom.h - /usr/include/gtkmm-3.0/gtkmm/glarea.h - /usr/include/gtkmm-3.0/gtkmm/grid.h - /usr/include/gtkmm-3.0/gtkmm/handlebox.h - /usr/include/gtkmm-3.0/gtkmm/hvpaned.h - /usr/include/gtkmm-3.0/gtkmm/paned.h - /usr/include/gtkmm-3.0/gtkmm/hvscale.h - /usr/include/gtkmm-3.0/gtkmm/scale.h - /usr/include/gtkmm-3.0/gtkmm/range.h - /usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h - /usr/include/gtkmm-3.0/gtkmm/scrollbar.h - /usr/include/gtkmm-3.0/gtkmm/hvseparator.h - /usr/include/gtkmm-3.0/gtkmm/separator.h - /usr/include/gtkmm-3.0/gtkmm/iconfactory.h - /usr/include/gtkmm-3.0/gtkmm/icontheme.h - /usr/include/gtkmm-3.0/gtkmm/iconinfo.h - /usr/include/gtkmm-3.0/gtkmm/iconview.h - /usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h - /usr/include/gtkmm-3.0/gtkmm/infobar.h - /usr/include/gtkmm-3.0/gtkmm/calendar.h - /usr/include/gtkmm-3.0/gtkmm/invisible.h - /usr/include/gtkmm-3.0/gtkmm/layout.h - /usr/include/gtkmm-3.0/gtkmm/levelbar.h - /usr/include/gtkmm-3.0/gtkmm/listbox.h - /usr/include/gtkmm-3.0/gtkmm/listboxrow.h - /usr/include/gtkmm-3.0/gtkmm/liststore.h - /usr/include/gtkmm-3.0/gtkmm/treesortable.h - /usr/include/gtkmm-3.0/gtkmm/treedragdest.h - /usr/include/gtkmm-3.0/gtkmm/treedragsource.h - /usr/include/gtkmm-3.0/gtkmm/listviewtext.h - /usr/include/gtkmm-3.0/gtkmm/linkbutton.h - /usr/include/gtkmm-3.0/gtkmm/main.h - /usr/include/gtkmm-3.0/gtkmm/menubar.h - /usr/include/gtkmm-3.0/gtkmm/menubutton.h - /usr/include/gtkmm-3.0/gtkmm/popover.h - /usr/include/gtkmm-3.0/gtkmm/messagedialog.h - /usr/include/gtkmm-3.0/gtkmm/modelbutton.h - /usr/include/gtkmm-3.0/gtkmm/notebook.h - /usr/include/gtkmm-3.0/gtkmm/numerableicon.h - /usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h - /usr/include/gtkmm-3.0/gtkmm/overlay.h - /usr/include/gtkmm-3.0/gtkmm/pagesetup.h - /usr/include/gtkmm-3.0/gtkmm/papersize.h - /usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h - /usr/include/gtkmm-3.0/gtkmm/printsettings.h - /usr/include/gtkmm-3.0/gtkmm/placessidebar.h - /usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h - /usr/include/gtkmm-3.0/gtkmm/popovermenu.h - /usr/include/gtkmm-3.0/gtkmm/printcontext.h - /usr/include/gtkmm-3.0/gtkmm/printer.h - /usr/include/gtkmm-3.0/gtkmm/printjob.h - /usr/include/gtkmm-3.0/gtkmm/printoperation.h - /usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h - /usr/include/gtkmm-3.0/gtkmm/printunixdialog.h - /usr/include/gtkmm-3.0/gtkmm/progressbar.h - /usr/include/gtkmm-3.0/gtkmm/radiobutton.h - /usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h - /usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h - /usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h - /usr/include/gtkmm-3.0/gtkmm/toolbutton.h - /usr/include/gtkmm-3.0/gtkmm/toolitem.h - /usr/include/gtkmm-3.0/gtkmm/sizegroup.h - /usr/include/gtkmm-3.0/gtkmm/recentaction.h - /usr/include/gtkmm-3.0/gtkmm/recentchooser.h - /usr/include/gtkmm-3.0/gtkmm/recentinfo.h - /usr/include/gtkmm-3.0/gtkmm/recentfilter.h - /usr/include/gtkmm-3.0/gtkmm/recentmanager.h - /usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h - /usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h - /usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h - /usr/include/gtkmm-3.0/gtkmm/revealer.h - /usr/include/gtkmm-3.0/gtkmm/scalebutton.h - /usr/include/gtkmm-3.0/gtkmm/searchbar.h - /usr/include/gtkmm-3.0/gtkmm/searchentry.h - /usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h - /usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h - /usr/include/gtkmm-3.0/gtkmm/settings.h - /usr/include/gtkmm-3.0/gtkmm/toolbar.h - /usr/include/gtkmm-3.0/gtkmm/toolshell.h - /usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h - /usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h - /usr/include/gtkmm-3.0/gtkmm/shortcutssection.h - /usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h - /usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h - /usr/include/gtkmm-3.0/gtkmm/spinbutton.h - /usr/include/gtkmm-3.0/gtkmm/spinner.h - /usr/include/gtkmm-3.0/gtkmm/stack.h - /usr/include/gtkmm-3.0/gtkmm/stacksidebar.h - /usr/include/gtkmm-3.0/gtkmm/stackswitcher.h - /usr/include/gtkmm-3.0/gtkmm/statusbar.h - /usr/include/gtkmm-3.0/gtkmm/statusicon.h - /usr/include/gtkmm-3.0/gtkmm/stock.h - /usr/include/gtkmm-3.0/gtkmm/stockitem.h - /usr/include/gtkmm-3.0/gtkmm/styleproperty.h - /usr/include/gtkmm-3.0/gtkmm/switch.h - /usr/include/gtkmm-3.0/gtkmm/table.h - /usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h - /usr/include/gtkmm-3.0/gtkmm/textbuffer.h - /usr/include/gtkmm-3.0/gtkmm/texttagtable.h - /usr/include/gtkmm-3.0/gtkmm/texttag.h - /usr/include/gtkmm-3.0/gtkmm/textchildanchor.h - /usr/include/gtkmm-3.0/gtkmm/textmark.h - /usr/include/gtkmm-3.0/gtkmm/textiter.h - /usr/include/gtkmm-3.0/gtkmm/textattributes.h - /usr/include/gtkmm-3.0/gtkmm/textview.h - /usr/include/gtkmm-3.0/gtkmm/toolpalette.h - /usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h - /usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h - /usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h - /usr/include/gtkmm-3.0/gtkmm/treemodelsort.h - /usr/include/gtkmm-3.0/gtkmm/treerowreference.h - /usr/include/gtkmm-3.0/gtkmm/treestore.h - /usr/include/gtkmm-3.0/gtkmm/uimanager.h - /usr/include/gtkmm-3.0/gtkmm/viewport.h - /usr/include/gtkmm-3.0/gtkmm/volumebutton.h - /usr/include/c++/11.2.0/fstream - /usr/include/c++/11.2.0/bits/codecvt.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h - /usr/include/c++/11.2.0/bits/fstream.tcc - /usr/include/libintl.h - /usr/include/gtkmm-3.0/gtkmm/plug.h - /usr/include/gtk-3.0/gtk/gtkx.h - /usr/include/gtk-3.0/gtk/gtksocket.h - /usr/include/gtk-3.0/gdk/gdkx.h - /usr/include/X11/Xlib.h - /usr/include/X11/X.h - /usr/include/X11/Xfuncproto.h - /usr/include/X11/Xosdefs.h - /usr/include/X11/Xutil.h - /usr/include/X11/keysym.h - /usr/include/X11/keysymdef.h - /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h - /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h - /usr/include/gtk-3.0/gdk/x11/gdkx11device.h - /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h - /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h - /usr/include/gtk-3.0/gdk/x11/gdkx11display.h - /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h - /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h - /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h - /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h - /usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h - /usr/include/gtk-3.0/gdk/x11/gdkx11property.h - /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h - /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h - /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h - /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h - /usr/include/gtk-3.0/gdk/x11/gdkx11window.h - /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h - /usr/include/gtk-3.0/gtk/gtkplug.h - /usr/include/gtk-3.0/gtk/gtkx-autocleanups.h - /usr/include/pwd.h - /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h - /usr/include/c++/11.2.0/filesystem - /usr/include/c++/11.2.0/bits/fs_fwd.h - /usr/include/c++/11.2.0/bits/fs_path.h - /usr/include/c++/11.2.0/locale - /usr/include/c++/11.2.0/bits/locale_facets_nonio.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h - /usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc - /usr/include/c++/11.2.0/bits/locale_conv.h - /usr/include/c++/11.2.0/iomanip - /usr/include/c++/11.2.0/bits/quoted_string.h - /usr/include/c++/11.2.0/codecvt - /usr/include/c++/11.2.0/bits/fs_dir.h - /usr/include/c++/11.2.0/bits/fs_ops.h - -CMakeFiles/ublexec.dir/ublexec.cc.o - /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc - /usr/include/stdc-predef.h - /usr/include/c++/11.2.0/cstddef - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h - /usr/include/features.h - /usr/include/features-time64.h - /usr/include/bits/wordsize.h - /usr/include/bits/timesize.h - /usr/include/sys/cdefs.h - /usr/include/bits/long-double.h - /usr/include/gnu/stubs.h - /usr/include/gnu/stubs-64.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h - /usr/include/c++/11.2.0/pstl/pstl_config.h - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h - /usr/include/c++/11.2.0/cstdlib - /usr/include/stdlib.h - /usr/include/bits/libc-header-start.h - /usr/include/bits/waitflags.h - /usr/include/bits/waitstatus.h - /usr/include/bits/floatn.h - /usr/include/bits/floatn-common.h - /usr/include/bits/types/locale_t.h - /usr/include/bits/types/__locale_t.h - /usr/include/sys/types.h - /usr/include/bits/types.h - /usr/include/bits/typesizes.h - /usr/include/bits/time64.h - /usr/include/bits/types/clock_t.h - /usr/include/bits/types/clockid_t.h - /usr/include/bits/types/time_t.h - /usr/include/bits/types/timer_t.h - /usr/include/bits/stdint-intn.h - /usr/include/endian.h - /usr/include/bits/endian.h - /usr/include/bits/endianness.h - /usr/include/bits/byteswap.h - /usr/include/bits/uintn-identity.h - /usr/include/sys/select.h - /usr/include/bits/select.h - /usr/include/bits/types/sigset_t.h - /usr/include/bits/types/__sigset_t.h - /usr/include/bits/types/struct_timeval.h - /usr/include/bits/types/struct_timespec.h - /usr/include/bits/pthreadtypes.h - /usr/include/bits/thread-shared-types.h - /usr/include/bits/pthreadtypes-arch.h - /usr/include/bits/atomic_wide_counter.h - /usr/include/bits/struct_mutex.h - /usr/include/bits/struct_rwlock.h - /usr/include/alloca.h - /usr/include/bits/stdlib-bsearch.h - /usr/include/bits/stdlib-float.h - /usr/include/c++/11.2.0/bits/std_abs.h - /usr/include/c++/11.2.0/iostream - /usr/include/c++/11.2.0/ostream - /usr/include/c++/11.2.0/ios - /usr/include/c++/11.2.0/iosfwd - /usr/include/c++/11.2.0/bits/stringfwd.h - /usr/include/c++/11.2.0/bits/memoryfwd.h - /usr/include/c++/11.2.0/bits/postypes.h - /usr/include/c++/11.2.0/cwchar - /usr/include/wchar.h - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h - /usr/include/bits/wchar.h - /usr/include/bits/types/wint_t.h - /usr/include/bits/types/mbstate_t.h - /usr/include/bits/types/__mbstate_t.h - /usr/include/bits/types/__FILE.h - /usr/include/bits/types/FILE.h - /usr/include/c++/11.2.0/exception - /usr/include/c++/11.2.0/bits/exception.h - /usr/include/c++/11.2.0/bits/exception_ptr.h - /usr/include/c++/11.2.0/bits/exception_defines.h - /usr/include/c++/11.2.0/bits/cxxabi_init_exception.h - /usr/include/c++/11.2.0/typeinfo - /usr/include/c++/11.2.0/bits/hash_bytes.h - /usr/include/c++/11.2.0/new - /usr/include/c++/11.2.0/bits/nested_exception.h - /usr/include/c++/11.2.0/bits/move.h - /usr/include/c++/11.2.0/type_traits - /usr/include/c++/11.2.0/bits/char_traits.h - /usr/include/c++/11.2.0/bits/stl_algobase.h - /usr/include/c++/11.2.0/bits/functexcept.h - /usr/include/c++/11.2.0/bits/cpp_type_traits.h - /usr/include/c++/11.2.0/ext/type_traits.h - /usr/include/c++/11.2.0/ext/numeric_traits.h - /usr/include/c++/11.2.0/bits/stl_pair.h - /usr/include/c++/11.2.0/bits/stl_iterator_base_types.h - /usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h - /usr/include/c++/11.2.0/bits/concept_check.h - /usr/include/c++/11.2.0/debug/assertions.h - /usr/include/c++/11.2.0/bits/stl_iterator.h - /usr/include/c++/11.2.0/bits/ptr_traits.h - /usr/include/c++/11.2.0/debug/debug.h - /usr/include/c++/11.2.0/bits/predefined_ops.h - /usr/include/c++/11.2.0/cstdint - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h - /usr/include/stdint.h - /usr/include/bits/stdint-uintn.h - /usr/include/c++/11.2.0/bits/localefwd.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h - /usr/include/c++/11.2.0/clocale - /usr/include/locale.h - /usr/include/bits/locale.h - /usr/include/c++/11.2.0/cctype - /usr/include/ctype.h - /usr/include/c++/11.2.0/bits/ios_base.h - /usr/include/c++/11.2.0/ext/atomicity.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h - /usr/include/pthread.h - /usr/include/sched.h - /usr/include/bits/sched.h - /usr/include/bits/types/struct_sched_param.h - /usr/include/bits/cpu-set.h - /usr/include/time.h - /usr/include/bits/time.h - /usr/include/bits/timex.h - /usr/include/bits/types/struct_tm.h - /usr/include/bits/types/struct_itimerspec.h - /usr/include/bits/setjmp.h - /usr/include/bits/types/struct___jmp_buf_tag.h - /usr/include/bits/pthread_stack_min-dynamic.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h - /usr/include/sys/single_threaded.h - /usr/include/c++/11.2.0/bits/locale_classes.h - /usr/include/c++/11.2.0/string - /usr/include/c++/11.2.0/bits/allocator.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h - /usr/include/c++/11.2.0/ext/new_allocator.h - /usr/include/c++/11.2.0/bits/ostream_insert.h - /usr/include/c++/11.2.0/bits/cxxabi_forced.h - /usr/include/c++/11.2.0/bits/stl_function.h - /usr/include/c++/11.2.0/backward/binders.h - /usr/include/c++/11.2.0/bits/range_access.h - /usr/include/c++/11.2.0/initializer_list - /usr/include/c++/11.2.0/bits/basic_string.h - /usr/include/c++/11.2.0/ext/alloc_traits.h - /usr/include/c++/11.2.0/bits/alloc_traits.h - /usr/include/c++/11.2.0/bits/stl_construct.h - /usr/include/c++/11.2.0/string_view - /usr/include/c++/11.2.0/bits/functional_hash.h - /usr/include/c++/11.2.0/bits/string_view.tcc - /usr/include/c++/11.2.0/ext/string_conversions.h - /usr/include/c++/11.2.0/cstdio - /usr/include/stdio.h - /usr/include/bits/types/__fpos_t.h - /usr/include/bits/types/__fpos64_t.h - /usr/include/bits/types/struct_FILE.h - /usr/include/bits/types/cookie_io_functions_t.h - /usr/include/bits/stdio_lim.h - /usr/include/bits/stdio.h - /usr/include/c++/11.2.0/cerrno - /usr/include/errno.h - /usr/include/bits/errno.h - /usr/include/linux/errno.h - /usr/include/asm/errno.h - /usr/include/asm-generic/errno.h - /usr/include/asm-generic/errno-base.h - /usr/include/bits/types/error_t.h - /usr/include/c++/11.2.0/bits/charconv.h - /usr/include/c++/11.2.0/bits/basic_string.tcc - /usr/include/c++/11.2.0/bits/locale_classes.tcc - /usr/include/c++/11.2.0/system_error - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h - /usr/include/c++/11.2.0/stdexcept - /usr/include/c++/11.2.0/streambuf - /usr/include/c++/11.2.0/bits/streambuf.tcc - /usr/include/c++/11.2.0/bits/basic_ios.h - /usr/include/c++/11.2.0/bits/locale_facets.h - /usr/include/c++/11.2.0/cwctype - /usr/include/wctype.h - /usr/include/bits/wctype-wchar.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h - /usr/include/c++/11.2.0/bits/streambuf_iterator.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h - /usr/include/c++/11.2.0/bits/locale_facets.tcc - /usr/include/c++/11.2.0/bits/basic_ios.tcc - /usr/include/c++/11.2.0/bits/ostream.tcc - /usr/include/c++/11.2.0/istream - /usr/include/c++/11.2.0/bits/istream.tcc - /usr/include/c++/11.2.0/memory - /usr/include/c++/11.2.0/bits/stl_uninitialized.h - /usr/include/c++/11.2.0/bits/stl_tempbuf.h - /usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h - /usr/include/c++/11.2.0/bits/align.h - /usr/include/c++/11.2.0/bit - /usr/include/c++/11.2.0/bits/uses_allocator.h - /usr/include/c++/11.2.0/bits/unique_ptr.h - /usr/include/c++/11.2.0/utility - /usr/include/c++/11.2.0/bits/stl_relops.h - /usr/include/c++/11.2.0/tuple - /usr/include/c++/11.2.0/array - /usr/include/c++/11.2.0/bits/invoke.h - /usr/include/c++/11.2.0/bits/shared_ptr.h - /usr/include/c++/11.2.0/bits/shared_ptr_base.h - /usr/include/c++/11.2.0/bits/allocated_ptr.h - /usr/include/c++/11.2.0/bits/refwrap.h - /usr/include/c++/11.2.0/ext/aligned_buffer.h - /usr/include/c++/11.2.0/ext/concurrence.h - /usr/include/c++/11.2.0/bits/shared_ptr_atomic.h - /usr/include/c++/11.2.0/bits/atomic_base.h - /usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h - /usr/include/c++/11.2.0/backward/auto_ptr.h - /usr/include/c++/11.2.0/pstl/glue_memory_defs.h - /usr/include/c++/11.2.0/pstl/execution_defs.h - /usr/include/gtkmm-3.0/gtkmm.h - /usr/include/glibmm-2.4/glibmm.h - /usr/lib/glibmm-2.4/include/glibmmconfig.h - /usr/include/glibmm-2.4/glibmm/thread.h - /usr/include/glib-2.0/glib.h - /usr/include/glib-2.0/glib/galloca.h - /usr/include/glib-2.0/glib/gtypes.h - /usr/lib/glib-2.0/include/glibconfig.h - /usr/include/glib-2.0/glib/gmacros.h - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h - /usr/include/limits.h - /usr/include/bits/posix1_lim.h - /usr/include/bits/local_lim.h - /usr/include/linux/limits.h - /usr/include/bits/posix2_lim.h - /usr/include/bits/xopen_lim.h - /usr/include/bits/uio_lim.h - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h - /usr/include/glib-2.0/glib/gversionmacros.h - /usr/include/string.h - /usr/include/strings.h - /usr/include/glib-2.0/glib/garray.h - /usr/include/glib-2.0/glib/gasyncqueue.h - /usr/include/glib-2.0/glib/gthread.h - /usr/include/glib-2.0/glib/gatomic.h - /usr/include/glib-2.0/glib/glib-typeof.h - /usr/include/glib-2.0/glib/gerror.h - /usr/include/glib-2.0/glib/gquark.h - /usr/include/glib-2.0/glib/gutils.h - /usr/include/c++/11.2.0/stdlib.h - /usr/include/glib-2.0/glib/gbacktrace.h - /usr/include/signal.h - /usr/include/bits/signum-generic.h - /usr/include/bits/signum-arch.h - /usr/include/bits/types/sig_atomic_t.h - /usr/include/bits/types/siginfo_t.h - /usr/include/bits/types/__sigval_t.h - /usr/include/bits/siginfo-arch.h - /usr/include/bits/siginfo-consts.h - /usr/include/bits/siginfo-consts-arch.h - /usr/include/bits/types/sigval_t.h - /usr/include/bits/types/sigevent_t.h - /usr/include/bits/sigevent-consts.h - /usr/include/bits/sigaction.h - /usr/include/bits/sigcontext.h - /usr/include/bits/types/stack_t.h - /usr/include/sys/ucontext.h - /usr/include/bits/sigstack.h - /usr/include/bits/sigstksz.h - /usr/include/unistd.h - /usr/include/bits/posix_opt.h - /usr/include/bits/environments.h - /usr/include/bits/confname.h - /usr/include/bits/getopt_posix.h - /usr/include/bits/getopt_core.h - /usr/include/bits/unistd_ext.h - /usr/include/linux/close_range.h - /usr/include/bits/ss_flags.h - /usr/include/bits/types/struct_sigstack.h - /usr/include/bits/sigthread.h - /usr/include/bits/signal_ext.h - /usr/include/glib-2.0/glib/gbase64.h - /usr/include/glib-2.0/glib/gbitlock.h - /usr/include/glib-2.0/glib/gbookmarkfile.h - /usr/include/glib-2.0/glib/gdatetime.h - /usr/include/glib-2.0/glib/gtimezone.h - /usr/include/glib-2.0/glib/gbytes.h - /usr/include/glib-2.0/glib/gcharset.h - /usr/include/glib-2.0/glib/gchecksum.h - /usr/include/glib-2.0/glib/gconvert.h - /usr/include/glib-2.0/glib/gdataset.h - /usr/include/glib-2.0/glib/gdate.h - /usr/include/glib-2.0/glib/gdir.h - /usr/include/dirent.h - /usr/include/bits/dirent.h - /usr/include/bits/dirent_ext.h - /usr/include/glib-2.0/glib/genviron.h - /usr/include/glib-2.0/glib/gfileutils.h - /usr/include/glib-2.0/glib/ggettext.h - /usr/include/glib-2.0/glib/ghash.h - /usr/include/glib-2.0/glib/glist.h - /usr/include/glib-2.0/glib/gmem.h - /usr/include/glib-2.0/glib/gnode.h - /usr/include/glib-2.0/glib/ghmac.h - /usr/include/glib-2.0/glib/gchecksum.h - /usr/include/glib-2.0/glib/ghook.h - /usr/include/glib-2.0/glib/ghostutils.h - /usr/include/glib-2.0/glib/giochannel.h - /usr/include/glib-2.0/glib/gmain.h - /usr/include/glib-2.0/glib/gpoll.h - /usr/include/glib-2.0/glib/gslist.h - /usr/include/glib-2.0/glib/gstring.h - /usr/include/glib-2.0/glib/gunicode.h - /usr/include/glib-2.0/glib/gkeyfile.h - /usr/include/glib-2.0/glib/gmappedfile.h - /usr/include/glib-2.0/glib/gmarkup.h - /usr/include/glib-2.0/glib/gmessages.h - /usr/include/glib-2.0/glib/gvariant.h - /usr/include/glib-2.0/glib/gvarianttype.h - /usr/include/glib-2.0/glib/goption.h - /usr/include/glib-2.0/glib/gpattern.h - /usr/include/glib-2.0/glib/gprimes.h - /usr/include/glib-2.0/glib/gqsort.h - /usr/include/glib-2.0/glib/gqueue.h - /usr/include/glib-2.0/glib/grand.h - /usr/include/glib-2.0/glib/grcbox.h - /usr/include/glib-2.0/glib/grefcount.h - /usr/include/glib-2.0/glib/grefstring.h - /usr/include/glib-2.0/glib/gmem.h - /usr/include/glib-2.0/glib/gmacros.h - /usr/include/glib-2.0/glib/gregex.h - /usr/include/glib-2.0/glib/gscanner.h - /usr/include/glib-2.0/glib/gsequence.h - /usr/include/glib-2.0/glib/gshell.h - /usr/include/glib-2.0/glib/gslice.h - /usr/include/glib-2.0/glib/gspawn.h - /usr/include/glib-2.0/glib/gstrfuncs.h - /usr/include/glib-2.0/glib/gstringchunk.h - /usr/include/glib-2.0/glib/gstrvbuilder.h - /usr/include/glib-2.0/glib/gtestutils.h - /usr/include/glib-2.0/glib/gthreadpool.h - /usr/include/glib-2.0/glib/gtimer.h - /usr/include/glib-2.0/glib/gtrashstack.h - /usr/include/glib-2.0/glib/gtree.h - /usr/include/glib-2.0/glib/guri.h - /usr/include/glib-2.0/glib/guuid.h - /usr/include/glib-2.0/glib/gversion.h - /usr/include/glib-2.0/glib/deprecated/gallocator.h - /usr/include/glib-2.0/glib/deprecated/gcache.h - /usr/include/glib-2.0/glib/deprecated/gcompletion.h - /usr/include/glib-2.0/glib/deprecated/gmain.h - /usr/include/glib-2.0/glib/deprecated/grel.h - /usr/include/glib-2.0/glib/deprecated/gthread.h - /usr/include/glib-2.0/glib/glib-autocleanups.h - /usr/include/glibmm-2.4/glibmm/error.h - /usr/include/glibmm-2.4/glibmm/exception.h - /usr/include/glibmm-2.4/glibmm/ustring.h - /usr/include/glibmm-2.4/glibmm/unicode.h - /usr/include/c++/11.2.0/iterator - /usr/include/c++/11.2.0/bits/stream_iterator.h - /usr/include/c++/11.2.0/sstream - /usr/include/c++/11.2.0/bits/sstream.tcc - /usr/include/glibmm-2.4/glibmm/value.h - /usr/include/glibmm-2.4/glibmm/refptr.h - /usr/include/glibmm-2.4/glibmm/enums.h - /usr/include/glib-2.0/glib-object.h - /usr/include/glib-2.0/gobject/gbinding.h - /usr/include/glib-2.0/gobject/gobject.h - /usr/include/glib-2.0/gobject/gtype.h - /usr/include/glib-2.0/gobject/gvalue.h - /usr/include/glib-2.0/gobject/gparam.h - /usr/include/glib-2.0/gobject/gclosure.h - /usr/include/glib-2.0/gobject/gsignal.h - /usr/include/glib-2.0/gobject/gmarshal.h - /usr/include/glib-2.0/gobject/gboxed.h - /usr/include/glib-2.0/gobject/glib-types.h - /usr/include/glib-2.0/gobject/gbindinggroup.h - /usr/include/glib-2.0/gobject/genums.h - /usr/include/glib-2.0/gobject/glib-enumtypes.h - /usr/include/glib-2.0/gobject/gparamspecs.h - /usr/include/glib-2.0/gobject/gsignalgroup.h - /usr/include/glib-2.0/gobject/gsourceclosure.h - /usr/include/glib-2.0/gobject/gtypemodule.h - /usr/include/glib-2.0/gobject/gtypeplugin.h - /usr/include/glib-2.0/gobject/gvaluearray.h - /usr/include/glib-2.0/gobject/gvaluetypes.h - /usr/include/glib-2.0/gobject/gobject-autocleanups.h - /usr/include/c++/11.2.0/vector - /usr/include/c++/11.2.0/bits/stl_vector.h - /usr/include/c++/11.2.0/bits/stl_bvector.h - /usr/include/c++/11.2.0/bits/vector.tcc - /usr/include/glibmm-2.4/glibmm/value_custom.h - /usr/include/glibmm-2.4/glibmm/value_basictypes.h - /usr/include/glibmm-2.4/glibmm/timeval.h - /usr/include/sigc++-2.0/sigc++/sigc++.h - /usr/include/sigc++-2.0/sigc++/signal.h - /usr/include/c++/11.2.0/list - /usr/include/c++/11.2.0/bits/stl_list.h - /usr/include/c++/11.2.0/bits/list.tcc - /usr/include/sigc++-2.0/sigc++/signal_base.h - /usr/lib/sigc++-2.0/include/sigc++config.h - /usr/include/sigc++-2.0/sigc++/type_traits.h - /usr/include/sigc++-2.0/sigc++/trackable.h - /usr/include/sigc++-2.0/sigc++/functors/slot.h - /usr/include/sigc++-2.0/sigc++/visit_each.h - /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h - /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h - /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h - /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h - /usr/include/sigc++-2.0/sigc++/limit_reference.h - /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h - /usr/include/sigc++-2.0/sigc++/functors/slot_base.h - /usr/include/sigc++-2.0/sigc++/connection.h - /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h - /usr/include/sigc++-2.0/sigc++/adaptors/bind.h - /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h - /usr/include/sigc++-2.0/sigc++/reference_wrapper.h - /usr/include/c++/11.2.0/functional - /usr/include/c++/11.2.0/bits/std_function.h - /usr/include/c++/11.2.0/unordered_map - /usr/include/c++/11.2.0/bits/hashtable.h - /usr/include/c++/11.2.0/bits/hashtable_policy.h - /usr/include/c++/11.2.0/bits/node_handle.h - /usr/include/c++/11.2.0/bits/unordered_map.h - /usr/include/c++/11.2.0/bits/erase_if.h - /usr/include/c++/11.2.0/bits/stl_algo.h - /usr/include/c++/11.2.0/bits/algorithmfwd.h - /usr/include/c++/11.2.0/bits/stl_heap.h - /usr/include/c++/11.2.0/bits/uniform_int_dist.h - /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h - /usr/include/sigc++-2.0/sigc++/adaptors/hide.h - /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h - /usr/include/sigc++-2.0/sigc++/adaptors/retype.h - /usr/include/sigc++-2.0/sigc++/adaptors/compose.h - /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h - /usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h - /usr/include/sigc++-2.0/sigc++/functors/functors.h - /usr/include/glibmm-2.4/glibmm/threads.h - /usr/include/glibmm-2.4/glibmm/arrayhandle.h - /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h - /usr/include/glibmm-2.4/glibmm/variant.h - /usr/include/glibmm-2.4/glibmm/varianttype.h - /usr/include/glibmm-2.4/glibmm/variantiter.h - /usr/include/glibmm-2.4/glibmm/variantdbusstring.h - /usr/include/c++/11.2.0/map - /usr/include/c++/11.2.0/bits/stl_tree.h - /usr/include/c++/11.2.0/bits/stl_map.h - /usr/include/c++/11.2.0/bits/stl_multimap.h - /usr/include/glibmm-2.4/glibmm/variant_basictypes.h - /usr/include/glibmm-2.4/glibmm/wrap.h - /usr/include/glibmm-2.4/glibmm/objectbase.h - /usr/include/glibmm-2.4/glibmm/class.h - /usr/include/glibmm-2.4/glibmm/signalproxy.h - /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h - /usr/include/glibmm-2.4/glibmm/propertyproxy.h - /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h - /usr/include/glibmm-2.4/glibmm/quark.h - /usr/include/glibmm-2.4/glibmm/debug.h - /usr/include/c++/11.2.0/mutex - /usr/include/c++/11.2.0/chrono - /usr/include/c++/11.2.0/ratio - /usr/include/c++/11.2.0/limits - /usr/include/c++/11.2.0/ctime - /usr/include/c++/11.2.0/bits/parse_numbers.h - /usr/include/c++/11.2.0/bits/std_mutex.h - /usr/include/c++/11.2.0/bits/unique_lock.h - /usr/include/c++/11.2.0/algorithm - /usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h - /usr/include/c++/11.2.0/deque - /usr/include/c++/11.2.0/bits/stl_deque.h - /usr/include/c++/11.2.0/bits/deque.tcc - /usr/include/glibmm-2.4/glibmm/balancedtree.h - /usr/include/glibmm-2.4/glibmm/base64.h - /usr/include/glibmm-2.4/glibmm/binding.h - /usr/include/glibmm-2.4/glibmm/object.h - /usr/include/glibmm-2.4/glibmm/utility.h - /usr/include/glibmm-2.4/glibmm/bytearray.h - /usr/include/sigc++-2.0/sigc++/slot.h - /usr/include/glibmm-2.4/glibmm/bytes.h - /usr/include/glibmm-2.4/glibmm/checksum.h - /usr/include/glibmm-2.4/glibmm/convert.h - /usr/include/glibmm-2.4/glibmm/date.h - /usr/include/glibmm-2.4/glibmm/datetime.h - /usr/include/glibmm-2.4/glibmm/timezone.h - /usr/include/glibmm-2.4/glibmm/dispatcher.h - /usr/include/glibmm-2.4/glibmm/main.h - /usr/include/glibmm-2.4/glibmm/priorities.h - /usr/include/glibmm-2.4/glibmm/iochannel.h - /usr/include/glibmm-2.4/glibmm/exceptionhandler.h - /usr/include/glibmm-2.4/glibmm/fileutils.h - /usr/include/glibmm-2.4/glibmm/helperlist.h - /usr/include/glibmm-2.4/glibmm/containers.h - /usr/include/glibmm-2.4/glibmm/sarray.h - /usr/include/glibmm-2.4/glibmm/interface.h - /usr/include/glibmm-2.4/glibmm/init.h - /usr/include/glibmm-2.4/glibmm/keyfile.h - /usr/include/glibmm-2.4/glibmm/streamiochannel.h - /usr/include/glibmm-2.4/glibmm/listhandle.h - /usr/include/glibmm-2.4/glibmm/markup.h - /usr/include/glibmm-2.4/glibmm/miscutils.h - /usr/include/glibmm-2.4/glibmm/module.h - /usr/include/glibmm-2.4/glibmm/nodetree.h - /usr/include/c++/11.2.0/stack - /usr/include/c++/11.2.0/bits/stl_stack.h - /usr/include/glibmm-2.4/glibmm/optioncontext.h - /usr/include/glibmm-2.4/glibmm/optionentry.h - /usr/include/glibmm-2.4/glibmm/optiongroup.h - /usr/include/glibmm-2.4/glibmm/pattern.h - /usr/include/glibmm-2.4/glibmm/property.h - /usr/include/glibmm-2.4/glibmm/random.h - /usr/include/glibmm-2.4/glibmm/regex.h - /usr/include/glibmm-2.4/glibmm/shell.h - /usr/include/glibmm-2.4/glibmm/slisthandle.h - /usr/include/glibmm-2.4/glibmm/spawn.h - /usr/include/glibmm-2.4/glibmm/stringutils.h - /usr/include/glibmm-2.4/glibmm/threadpool.h - /usr/include/glibmm-2.4/glibmm/timer.h - /usr/include/glibmm-2.4/glibmm/uriutils.h - /usr/include/glibmm-2.4/glibmm/valuearray.h - /usr/include/glibmm-2.4/glibmm/variantdict.h - /usr/include/glibmm-2.4/glibmm/vectorutils.h - /usr/include/glibmm-2.4/glibmm/weakref.h - /usr/include/giomm-2.4/giomm.h - /usr/include/giomm-2.4/giomm/action.h - /usr/lib/giomm-2.4/include/giommconfig.h - /usr/include/glib-2.0/gio/gio.h - /usr/include/glib-2.0/gio/giotypes.h - /usr/include/glib-2.0/gio/gioenums.h - /usr/include/glib-2.0/gio/gaction.h - /usr/include/glib-2.0/gio/gactiongroup.h - /usr/include/glib-2.0/gio/gactiongroupexporter.h - /usr/include/glib-2.0/gio/gactionmap.h - /usr/include/glib-2.0/gio/gappinfo.h - /usr/include/glib-2.0/gio/gapplication.h - /usr/include/glib-2.0/gio/gapplicationcommandline.h - /usr/include/glib-2.0/gio/gasyncinitable.h - /usr/include/glib-2.0/gio/ginitable.h - /usr/include/glib-2.0/gio/gasyncresult.h - /usr/include/glib-2.0/gio/gbufferedinputstream.h - /usr/include/glib-2.0/gio/gfilterinputstream.h - /usr/include/glib-2.0/gio/ginputstream.h - /usr/include/glib-2.0/gio/gbufferedoutputstream.h - /usr/include/glib-2.0/gio/gfilteroutputstream.h - /usr/include/glib-2.0/gio/goutputstream.h - /usr/include/glib-2.0/gio/gbytesicon.h - /usr/include/glib-2.0/gio/gcancellable.h - /usr/include/glib-2.0/gio/gcharsetconverter.h - /usr/include/glib-2.0/gio/gconverter.h - /usr/include/glib-2.0/gio/gcontenttype.h - /usr/include/glib-2.0/gio/gconverterinputstream.h - /usr/include/glib-2.0/gio/gconverteroutputstream.h - /usr/include/glib-2.0/gio/gcredentials.h - /usr/include/glib-2.0/gio/gdatagrambased.h - /usr/include/glib-2.0/gio/gdatainputstream.h - /usr/include/glib-2.0/gio/gdataoutputstream.h - /usr/include/glib-2.0/gio/gdbusactiongroup.h - /usr/include/glib-2.0/gio/giotypes.h - /usr/include/glib-2.0/gio/gdbusaddress.h - /usr/include/glib-2.0/gio/gdbusauthobserver.h - /usr/include/glib-2.0/gio/gdbusconnection.h - /usr/include/glib-2.0/gio/gdbuserror.h - /usr/include/glib-2.0/gio/gdbusinterface.h - /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h - /usr/include/glib-2.0/gio/gdbusintrospection.h - /usr/include/glib-2.0/gio/gdbusmenumodel.h - /usr/include/glib-2.0/gio/gdbusmessage.h - /usr/include/glib-2.0/gio/gdbusmethodinvocation.h - /usr/include/glib-2.0/gio/gdbusnameowning.h - /usr/include/glib-2.0/gio/gdbusnamewatching.h - /usr/include/glib-2.0/gio/gdbusobject.h - /usr/include/glib-2.0/gio/gdbusobjectmanager.h - /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h - /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h - /usr/include/glib-2.0/gio/gdbusobjectproxy.h - /usr/include/glib-2.0/gio/gdbusobjectskeleton.h - /usr/include/glib-2.0/gio/gdbusproxy.h - /usr/include/glib-2.0/gio/gdbusserver.h - /usr/include/glib-2.0/gio/gdbusutils.h - /usr/include/glib-2.0/gio/gdebugcontroller.h - /usr/include/glib-2.0/gio/gdebugcontrollerdbus.h - /usr/include/glib-2.0/gio/gdrive.h - /usr/include/glib-2.0/gio/gdtlsclientconnection.h - /usr/include/glib-2.0/gio/gdtlsconnection.h - /usr/include/glib-2.0/gio/gdtlsserverconnection.h - /usr/include/glib-2.0/gio/gemblemedicon.h - /usr/include/glib-2.0/gio/gicon.h - /usr/include/glib-2.0/gio/gemblem.h - /usr/include/glib-2.0/gio/gfile.h - /usr/include/glib-2.0/gio/gfileattribute.h - /usr/include/glib-2.0/gio/gfileenumerator.h - /usr/include/glib-2.0/gio/gfileicon.h - /usr/include/glib-2.0/gio/gfileinfo.h - /usr/include/glib-2.0/gio/gfileinputstream.h - /usr/include/glib-2.0/gio/gfileiostream.h - /usr/include/glib-2.0/gio/giostream.h - /usr/include/glib-2.0/gio/gioerror.h - /usr/include/glib-2.0/gio/gfilemonitor.h - /usr/include/glib-2.0/gio/gfilenamecompleter.h - /usr/include/glib-2.0/gio/gfileoutputstream.h - /usr/include/glib-2.0/gio/ginetaddress.h - /usr/include/glib-2.0/gio/ginetaddressmask.h - /usr/include/glib-2.0/gio/ginetsocketaddress.h - /usr/include/glib-2.0/gio/gsocketaddress.h - /usr/include/glib-2.0/gio/gioenumtypes.h - /usr/include/glib-2.0/gio/giomodule.h - /usr/include/glib-2.0/gmodule.h - /usr/include/glib-2.0/gio/gioscheduler.h - /usr/include/glib-2.0/gio/glistmodel.h - /usr/include/glib-2.0/gio/gliststore.h - /usr/include/glib-2.0/gio/gloadableicon.h - /usr/include/glib-2.0/gio/gmemoryinputstream.h - /usr/include/glib-2.0/gio/gmemorymonitor.h - /usr/include/glib-2.0/gio/gmemoryoutputstream.h - /usr/include/glib-2.0/gio/gmenu.h - /usr/include/glib-2.0/gio/gmenumodel.h - /usr/include/glib-2.0/gio/gmenuexporter.h - /usr/include/glib-2.0/gio/gmount.h - /usr/include/glib-2.0/gio/gmountoperation.h - /usr/include/glib-2.0/gio/gnativesocketaddress.h - /usr/include/glib-2.0/gio/gnativevolumemonitor.h - /usr/include/glib-2.0/gio/gvolumemonitor.h - /usr/include/glib-2.0/gio/gnetworkaddress.h - /usr/include/glib-2.0/gio/gnetworkmonitor.h - /usr/include/glib-2.0/gio/gnetworkservice.h - /usr/include/glib-2.0/gio/gnotification.h - /usr/include/glib-2.0/gio/gpermission.h - /usr/include/glib-2.0/gio/gpollableinputstream.h - /usr/include/glib-2.0/gio/gpollableoutputstream.h - /usr/include/glib-2.0/gio/gpollableutils.h - /usr/include/glib-2.0/gio/gpowerprofilemonitor.h - /usr/include/glib-2.0/gio/gpropertyaction.h - /usr/include/glib-2.0/gio/gproxy.h - /usr/include/glib-2.0/gio/gproxyaddress.h - /usr/include/glib-2.0/gio/gproxyaddressenumerator.h - /usr/include/glib-2.0/gio/gsocketaddressenumerator.h - /usr/include/glib-2.0/gio/gproxyresolver.h - /usr/include/glib-2.0/gio/gremoteactiongroup.h - /usr/include/glib-2.0/gio/gresolver.h - /usr/include/glib-2.0/gio/gresource.h - /usr/include/glib-2.0/gio/gseekable.h - /usr/include/glib-2.0/gio/gsettings.h - /usr/include/glib-2.0/gio/gsettingsschema.h - /usr/include/glib-2.0/gio/gsimpleaction.h - /usr/include/glib-2.0/gio/gsimpleactiongroup.h - /usr/include/glib-2.0/gio/gactiongroup.h - /usr/include/glib-2.0/gio/gactionmap.h - /usr/include/glib-2.0/gio/gsimpleasyncresult.h - /usr/include/glib-2.0/gio/gsimpleiostream.h - /usr/include/glib-2.0/gio/gsimplepermission.h - /usr/include/glib-2.0/gio/gsimpleproxyresolver.h - /usr/include/glib-2.0/gio/gsocket.h - /usr/include/glib-2.0/gio/gsocketclient.h - /usr/include/glib-2.0/gio/gsocketconnectable.h - /usr/include/glib-2.0/gio/gsocketconnection.h - /usr/include/glib-2.0/gio/gsocketcontrolmessage.h - /usr/include/glib-2.0/gio/gsocketlistener.h - /usr/include/glib-2.0/gio/gsocketservice.h - /usr/include/glib-2.0/gio/gsrvtarget.h - /usr/include/glib-2.0/gio/gsubprocess.h - /usr/include/glib-2.0/gio/gsubprocesslauncher.h - /usr/include/glib-2.0/gio/gtask.h - /usr/include/glib-2.0/gio/gtcpconnection.h - /usr/include/glib-2.0/gio/gtcpwrapperconnection.h - /usr/include/glib-2.0/gio/gtestdbus.h - /usr/include/glib-2.0/gio/gthemedicon.h - /usr/include/glib-2.0/gio/gthreadedsocketservice.h - /usr/include/glib-2.0/gio/gtlsbackend.h - /usr/include/glib-2.0/gio/gtlscertificate.h - /usr/include/glib-2.0/gio/gtlsclientconnection.h - /usr/include/glib-2.0/gio/gtlsconnection.h - /usr/include/glib-2.0/gio/gtlsdatabase.h - /usr/include/glib-2.0/gio/gtlsfiledatabase.h - /usr/include/glib-2.0/gio/gtlsinteraction.h - /usr/include/glib-2.0/gio/gtlspassword.h - /usr/include/glib-2.0/gio/gtlsserverconnection.h - /usr/include/glib-2.0/gio/gvfs.h - /usr/include/glib-2.0/gio/gvolume.h - /usr/include/glib-2.0/gio/gzlibcompressor.h - /usr/include/glib-2.0/gio/gzlibdecompressor.h - /usr/include/glib-2.0/gio/gio-autocleanups.h - /usr/include/giomm-2.4/giomm/actiongroup.h - /usr/include/giomm-2.4/giomm/actionmap.h - /usr/include/giomm-2.4/giomm/simpleaction.h - /usr/include/giomm-2.4/giomm/appinfo.h - /usr/include/giomm-2.4/giomm/applaunchcontext.h - /usr/include/giomm-2.4/giomm/icon.h - /usr/include/giomm-2.4/giomm/asyncresult.h - /usr/include/giomm-2.4/giomm/cancellable.h - /usr/include/giomm-2.4/giomm/application.h - /usr/include/giomm-2.4/giomm/applicationcommandline.h - /usr/include/giomm-2.4/giomm/file.h - /usr/include/giomm-2.4/giomm/fileattributeinfolist.h - /usr/include/giomm-2.4/giomm/fileattributeinfo.h - /usr/include/giomm-2.4/giomm/fileenumerator.h - /usr/include/giomm-2.4/giomm/fileinfo.h - /usr/include/giomm-2.4/giomm/fileinputstream.h - /usr/include/giomm-2.4/giomm/inputstream.h - /usr/include/giomm-2.4/giomm/seekable.h - /usr/include/giomm-2.4/giomm/fileiostream.h - /usr/include/giomm-2.4/giomm/iostream.h - /usr/include/giomm-2.4/giomm/outputstream.h - /usr/include/giomm-2.4/giomm/filemonitor.h - /usr/include/giomm-2.4/giomm/fileoutputstream.h - /usr/include/giomm-2.4/giomm/mountoperation.h - /usr/include/giomm-2.4/giomm/drive.h - /usr/include/giomm-2.4/giomm/mount.h - /usr/include/giomm-2.4/giomm/error.h - /usr/include/giomm-2.4/giomm/dbusconnection.h - /usr/include/giomm-2.4/giomm/initable.h - /usr/include/giomm-2.4/giomm/asyncinitable.h - /usr/include/giomm-2.4/giomm/dbusauthobserver.h - /usr/include/giomm-2.4/giomm/credentials.h - /usr/include/giomm-2.4/giomm/dbusmethodinvocation.h - /usr/include/giomm-2.4/giomm/dbusmessage.h - /usr/include/giomm-2.4/giomm/unixfdlist.h - /usr/include/giomm-2.4/giomm/dbusintrospection.h - /usr/include/giomm-2.4/giomm/dbussubtreevtable.h - /usr/include/giomm-2.4/giomm/dbusinterfacevtable.h - /usr/include/giomm-2.4/giomm/notification.h - /usr/include/giomm-2.4/giomm/bufferedinputstream.h - /usr/include/giomm-2.4/giomm/filterinputstream.h - /usr/include/giomm-2.4/giomm/bufferedoutputstream.h - /usr/include/giomm-2.4/giomm/filteroutputstream.h - /usr/include/giomm-2.4/giomm/charsetconverter.h - /usr/include/giomm-2.4/giomm/converter.h - /usr/include/giomm-2.4/giomm/contenttype.h - /usr/include/giomm-2.4/giomm/converterinputstream.h - /usr/include/giomm-2.4/giomm/pollableinputstream.h - /usr/include/giomm-2.4/giomm/converteroutputstream.h - /usr/include/giomm-2.4/giomm/pollableoutputstream.h - /usr/include/giomm-2.4/giomm/datainputstream.h - /usr/include/giomm-2.4/giomm/enums.h - /usr/include/giomm-2.4/giomm/dataoutputstream.h - /usr/include/giomm-2.4/giomm/dbusactiongroup.h - /usr/include/giomm-2.4/giomm/remoteactiongroup.h - /usr/include/giomm-2.4/giomm/dbusaddress.h - /usr/include/giomm-2.4/giomm/dbuserror.h - /usr/include/giomm-2.4/giomm/dbuserrorutils.h - /usr/include/giomm-2.4/giomm/dbusinterface.h - /usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h - /usr/include/giomm-2.4/giomm/dbusmenumodel.h - /usr/include/giomm-2.4/giomm/menumodel.h - /usr/include/giomm-2.4/giomm/dbusobject.h - /usr/include/giomm-2.4/giomm/dbusobjectmanager.h - /usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h - /usr/include/giomm-2.4/giomm/dbusobjectproxy.h - /usr/include/giomm-2.4/giomm/dbusproxy.h - /usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h - /usr/include/giomm-2.4/giomm/dbusobjectskeleton.h - /usr/include/giomm-2.4/giomm/dbusownname.h - /usr/include/giomm-2.4/giomm/dbusserver.h - /usr/include/giomm-2.4/giomm/dbusutils.h - /usr/include/giomm-2.4/giomm/dbuswatchname.h - /usr/include/giomm-2.4/giomm/desktopappinfo.h - /usr/include/giomm-2.4/giomm/emblem.h - /usr/include/giomm-2.4/giomm/emblemedicon.h - /usr/include/giomm-2.4/giomm/fileicon.h - /usr/include/giomm-2.4/giomm/loadableicon.h - /usr/include/giomm-2.4/giomm/filenamecompleter.h - /usr/include/giomm-2.4/giomm/inetaddress.h - /usr/include/giomm-2.4/giomm/inetsocketaddress.h - /usr/include/giomm-2.4/giomm/socketaddress.h - /usr/include/giomm-2.4/giomm/socketconnectable.h - /usr/include/giomm-2.4/giomm/socketaddressenumerator.h - /usr/include/giomm-2.4/giomm/init.h - /usr/include/giomm-2.4/giomm/wrap_init.h - /usr/include/giomm-2.4/giomm/listmodel.h - /usr/include/giomm-2.4/giomm/liststore.h - /usr/include/giomm-2.4/giomm/memoryinputstream.h - /usr/include/giomm-2.4/giomm/memoryoutputstream.h - /usr/include/giomm-2.4/giomm/menu.h - /usr/include/giomm-2.4/giomm/menuitem.h - /usr/include/giomm-2.4/giomm/menuattributeiter.h - /usr/include/giomm-2.4/giomm/menulinkiter.h - /usr/include/giomm-2.4/giomm/networkaddress.h - /usr/include/giomm-2.4/giomm/networkmonitor.h - /usr/include/giomm-2.4/giomm/networkservice.h - /usr/include/giomm-2.4/giomm/permission.h - /usr/include/giomm-2.4/giomm/proxy.h - /usr/include/giomm-2.4/giomm/proxyaddress.h - /usr/include/giomm-2.4/giomm/proxyresolver.h - /usr/include/giomm-2.4/giomm/resolver.h - /usr/include/giomm-2.4/giomm/srvtarget.h - /usr/include/giomm-2.4/giomm/resource.h - /usr/include/giomm-2.4/giomm/settings.h - /usr/include/giomm-2.4/giomm/settingsschema.h - /usr/include/giomm-2.4/giomm/settingsschemakey.h - /usr/include/giomm-2.4/giomm/settingsschemasource.h - /usr/include/giomm-2.4/giomm/simpleactiongroup.h - /usr/include/giomm-2.4/giomm/simpleiostream.h - /usr/include/giomm-2.4/giomm/simplepermission.h - /usr/include/giomm-2.4/giomm/socket.h - /usr/include/giomm-2.4/giomm/socketclient.h - /usr/include/giomm-2.4/giomm/socketconnection.h - /usr/include/giomm-2.4/giomm/socketcontrolmessage.h - /usr/include/c++/11.2.0/set - /usr/include/c++/11.2.0/bits/stl_set.h - /usr/include/c++/11.2.0/bits/stl_multiset.h - /usr/include/giomm-2.4/giomm/socketlistener.h - /usr/include/giomm-2.4/giomm/socketservice.h - /usr/include/giomm-2.4/giomm/socketsource.h - /usr/include/giomm-2.4/giomm/tcpconnection.h - /usr/include/giomm-2.4/giomm/tcpwrapperconnection.h - /usr/include/giomm-2.4/giomm/themedicon.h - /usr/include/giomm-2.4/giomm/threadedsocketservice.h - /usr/include/giomm-2.4/giomm/tlscertificate.h - /usr/include/giomm-2.4/giomm/tlsclientconnection.h - /usr/include/giomm-2.4/giomm/tlsconnection.h - /usr/include/giomm-2.4/giomm/tlsdatabase.h - /usr/include/giomm-2.4/giomm/tlsinteraction.h - /usr/include/giomm-2.4/giomm/tlspassword.h - /usr/include/giomm-2.4/giomm/tlsserverconnection.h - /usr/include/giomm-2.4/giomm/unixconnection.h - /usr/include/giomm-2.4/giomm/unixcredentialsmessage.h - /usr/include/giomm-2.4/giomm/unixfdmessage.h - /usr/include/giomm-2.4/giomm/unixinputstream.h - /usr/include/giomm-2.4/giomm/unixoutputstream.h - /usr/include/giomm-2.4/giomm/unixsocketaddress.h - /usr/include/giomm-2.4/giomm/volume.h - /usr/include/giomm-2.4/giomm/volumemonitor.h - /usr/include/giomm-2.4/giomm/zlibcompressor.h - /usr/include/giomm-2.4/giomm/zlibdecompressor.h - /usr/include/gdkmm-3.0/gdkmm/dragcontext.h - /usr/include/gdkmm-3.0/gdkmm/color.h - /usr/lib/gdkmm-3.0/include/gdkmmconfig.h - /usr/lib/pangomm-1.4/include/pangommconfig.h - /usr/include/gtk-3.0/gdk/gdk.h - /usr/include/gtk-3.0/gdk/gdkconfig.h - /usr/include/gtk-3.0/gdk/gdkversionmacros.h - /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h - /usr/include/gtk-3.0/gdk/gdktypes.h - /usr/include/pango-1.0/pango/pango.h - /usr/include/pango-1.0/pango/pango-attributes.h - /usr/include/pango-1.0/pango/pango-font.h - /usr/include/pango-1.0/pango/pango-coverage.h - /usr/include/pango-1.0/pango/pango-version-macros.h - /usr/include/pango-1.0/pango/pango-features.h - /usr/include/harfbuzz/hb.h - /usr/include/harfbuzz/hb-blob.h - /usr/include/harfbuzz/hb-common.h - /usr/include/harfbuzz/hb-buffer.h - /usr/include/harfbuzz/hb-unicode.h - /usr/include/harfbuzz/hb-font.h - /usr/include/harfbuzz/hb-face.h - /usr/include/harfbuzz/hb-set.h - /usr/include/harfbuzz/hb-draw.h - /usr/include/harfbuzz/hb.h - /usr/include/harfbuzz/hb-deprecated.h - /usr/include/harfbuzz/hb-map.h - /usr/include/harfbuzz/hb-shape.h - /usr/include/harfbuzz/hb-shape-plan.h - /usr/include/harfbuzz/hb-style.h - /usr/include/harfbuzz/hb-version.h - /usr/include/pango-1.0/pango/pango-types.h - /usr/include/pango-1.0/pango/pango-gravity.h - /usr/include/pango-1.0/pango/pango-matrix.h - /usr/include/pango-1.0/pango/pango-script.h - /usr/include/pango-1.0/pango/pango-language.h - /usr/include/pango-1.0/pango/pango-bidi-type.h - /usr/include/pango-1.0/pango/pango-direction.h - /usr/include/pango-1.0/pango/pango-color.h - /usr/include/pango-1.0/pango/pango-break.h - /usr/include/pango-1.0/pango/pango-item.h - /usr/include/pango-1.0/pango/pango-context.h - /usr/include/pango-1.0/pango/pango-fontmap.h - /usr/include/pango-1.0/pango/pango-fontset.h - /usr/include/pango-1.0/pango/pango-engine.h - /usr/include/pango-1.0/pango/pango-glyph.h - /usr/include/pango-1.0/pango/pango-enum-types.h - /usr/include/pango-1.0/pango/pango-fontset-simple.h - /usr/include/pango-1.0/pango/pango-glyph-item.h - /usr/include/pango-1.0/pango/pango-layout.h - /usr/include/pango-1.0/pango/pango-tabs.h - /usr/include/pango-1.0/pango/pango-markup.h - /usr/include/pango-1.0/pango/pango-renderer.h - /usr/include/pango-1.0/pango/pango-utils.h - /usr/include/cairo/cairo.h - /usr/include/cairo/cairo-version.h - /usr/include/cairo/cairo-features.h - /usr/include/cairo/cairo-deprecated.h - /usr/include/gtk-3.0/gdk/gdkscreen.h - /usr/include/gtk-3.0/gdk/gdkdisplay.h - /usr/include/gtk-3.0/gdk/gdkevents.h - /usr/include/gtk-3.0/gdk/gdkdnd.h - /usr/include/gtk-3.0/gdk/gdkdevice.h - /usr/include/gtk-3.0/gdk/gdkdevicetool.h - /usr/include/gtk-3.0/gdk/gdkdevicemanager.h - /usr/include/gtk-3.0/gdk/gdkseat.h - /usr/include/gtk-3.0/gdk/gdkwindow.h - /usr/include/gtk-3.0/gdk/gdkdrawingcontext.h - /usr/include/gtk-3.0/gdk/gdkframeclock.h - /usr/include/gtk-3.0/gdk/gdkframetimings.h - /usr/include/gtk-3.0/gdk/gdkmonitor.h - /usr/include/gtk-3.0/gdk/gdkrectangle.h - /usr/include/gtk-3.0/gdk/gdkcairo.h - /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h - /usr/include/gtk-3.0/gdk/gdkrgba.h - /usr/include/gtk-3.0/gdk/gdkpixbuf.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h - /usr/include/pango-1.0/pango/pangocairo.h - /usr/include/gtk-3.0/gdk/gdkcursor.h - /usr/include/gtk-3.0/gdk/gdkdevicepad.h - /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h - /usr/include/gtk-3.0/gdk/gdkenumtypes.h - /usr/include/gtk-3.0/gdk/gdkglcontext.h - /usr/include/gtk-3.0/gdk/gdkkeys.h - /usr/include/gtk-3.0/gdk/gdkkeysyms.h - /usr/include/gtk-3.0/gdk/gdkmain.h - /usr/include/gtk-3.0/gdk/gdkpango.h - /usr/include/gtk-3.0/gdk/gdkproperty.h - /usr/include/gtk-3.0/gdk/gdkselection.h - /usr/include/gtk-3.0/gdk/gdktestutils.h - /usr/include/gtk-3.0/gdk/gdkthreads.h - /usr/include/gtk-3.0/gdk/gdkvisual.h - /usr/include/gtk-3.0/gdk/gdk-autocleanup.h - /usr/include/gdkmm-3.0/gdkmm/pixbuf.h - /usr/include/gdkmm-3.0/gdkmm/pixbufformat.h - /usr/include/gdkmm-3.0/gdkmm/types.h - /usr/include/cairomm-1.0/cairomm/surface.h - /usr/include/cairomm-1.0/cairomm/enums.h - /usr/include/cairo/cairo-ft.h - /usr/include/cairo/cairo.h - /usr/include/freetype2/ft2build.h - /usr/include/freetype2/freetype/config/ftheader.h - /usr/include/freetype2/freetype/freetype.h - /usr/include/freetype2/freetype/config/ftconfig.h - /usr/include/freetype2/freetype/config/ftoption.h - /usr/include/freetype2/freetype/config/ftstdlib.h - /usr/include/setjmp.h - /usr/include/freetype2/freetype/config/integer-types.h - /usr/include/freetype2/freetype/config/public-macros.h - /usr/include/freetype2/freetype/config/mac-support.h - /usr/include/freetype2/freetype/fttypes.h - /usr/include/freetype2/freetype/ftsystem.h - /usr/include/freetype2/freetype/ftimage.h - /usr/include/freetype2/freetype/fterrors.h - /usr/include/freetype2/freetype/ftmoderr.h - /usr/include/freetype2/freetype/fterrdef.h - /usr/include/fontconfig/fontconfig.h - /usr/include/sys/stat.h - /usr/include/bits/stat.h - /usr/include/bits/struct_stat.h - /usr/include/bits/statx.h - /usr/include/linux/stat.h - /usr/include/linux/types.h - /usr/include/asm/types.h - /usr/include/asm-generic/types.h - /usr/include/asm-generic/int-ll64.h - /usr/include/asm/bitsperlong.h - /usr/include/asm-generic/bitsperlong.h - /usr/include/linux/posix_types.h - /usr/include/linux/stddef.h - /usr/include/asm/posix_types.h - /usr/include/asm/posix_types_64.h - /usr/include/asm-generic/posix_types.h - /usr/include/bits/statx-generic.h - /usr/include/bits/types/struct_statx_timestamp.h - /usr/include/bits/types/struct_statx.h - /usr/include/cairomm-1.0/cairomm/exception.h - /usr/lib/cairomm-1.0/include/cairommconfig.h - /usr/include/cairomm-1.0/cairomm/device.h - /usr/include/cairomm-1.0/cairomm/types.h - /usr/include/cairomm-1.0/cairomm/refptr.h - /usr/include/cairomm-1.0/cairomm/fontoptions.h - /usr/include/cairo/cairo-pdf.h - /usr/include/cairo/cairo-ps.h - /usr/include/cairo/cairo-svg.h - /usr/include/gdkmm-3.0/gdkmm/device.h - /usr/include/gdkmm-3.0/gdkmm/cursor.h - /usr/include/gdkmm-3.0/gdkmm/display.h - /usr/include/gdkmm-3.0/gdkmm/screen.h - /usr/include/gdkmm-3.0/gdkmm/rectangle.h - /usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h - /usr/include/gdkmm-3.0/gdkmm/event.h - /usr/include/gdkmm-3.0/gdkmm/timecoord.h - /usr/include/gdkmm-3.0/gdkmm.h - /usr/include/gdkmm-3.0/gdkmm/visual.h - /usr/include/gdkmm-3.0/gdkmm/window.h - /usr/include/cairomm-1.0/cairomm/region.h - /usr/include/cairomm-1.0/cairomm/pattern.h - /usr/include/gdkmm-3.0/gdkmm/rgba.h - /usr/include/cairomm-1.0/cairomm/context.h - /usr/include/cairomm-1.0/cairomm/fontface.h - /usr/include/cairomm-1.0/cairomm/matrix.h - /usr/include/cairomm-1.0/cairomm/path.h - /usr/include/cairomm-1.0/cairomm/scaledfont.h - /usr/include/c++/11.2.0/valarray - /usr/include/c++/11.2.0/cmath - /usr/include/math.h - /usr/include/bits/math-vector.h - /usr/include/bits/libm-simd-decl-stubs.h - /usr/include/bits/flt-eval-method.h - /usr/include/bits/fp-logb.h - /usr/include/bits/fp-fast.h - /usr/include/bits/mathcalls-helper-functions.h - /usr/include/bits/mathcalls.h - /usr/include/bits/mathcalls-narrow.h - /usr/include/bits/iscanonical.h - /usr/include/c++/11.2.0/bits/specfun.h - /usr/include/c++/11.2.0/tr1/gamma.tcc - /usr/include/c++/11.2.0/tr1/special_function_util.h - /usr/include/c++/11.2.0/tr1/bessel_function.tcc - /usr/include/c++/11.2.0/tr1/beta_function.tcc - /usr/include/c++/11.2.0/tr1/ell_integral.tcc - /usr/include/c++/11.2.0/tr1/exp_integral.tcc - /usr/include/c++/11.2.0/tr1/hypergeometric.tcc - /usr/include/c++/11.2.0/tr1/legendre_function.tcc - /usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc - /usr/include/c++/11.2.0/tr1/poly_hermite.tcc - /usr/include/c++/11.2.0/tr1/poly_laguerre.tcc - /usr/include/c++/11.2.0/tr1/riemann_zeta.tcc - /usr/include/c++/11.2.0/bits/valarray_array.h - /usr/include/c++/11.2.0/bits/valarray_array.tcc - /usr/include/c++/11.2.0/bits/valarray_before.h - /usr/include/c++/11.2.0/bits/slice_array.h - /usr/include/c++/11.2.0/bits/valarray_after.h - /usr/include/c++/11.2.0/bits/gslice.h - /usr/include/c++/11.2.0/bits/gslice_array.h - /usr/include/c++/11.2.0/bits/mask_array.h - /usr/include/c++/11.2.0/bits/indirect_array.h - /usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h - /usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h - /usr/include/gdkmm-3.0/gdkmm/pixbufloader.h - /usr/include/gdkmm-3.0/gdkmm/drawingcontext.h - /usr/include/gdkmm-3.0/gdkmm/frameclock.h - /usr/include/gdkmm-3.0/gdkmm/frametimings.h - /usr/include/gdkmm-3.0/gdkmm/glcontext.h - /usr/include/gdkmm-3.0/gdkmm/displaymanager.h - /usr/include/gdkmm-3.0/gdkmm/devicemanager.h - /usr/include/gdkmm-3.0/gdkmm/seat.h - /usr/include/gdkmm-3.0/gdkmm/monitor.h - /usr/include/gdkmm-3.0/gdkmm/general.h - /usr/include/gtkmm-3.0/gtkmm/toggleaction.h - /usr/include/gtkmm-3.0/gtkmm/action.h - /usr/lib/gtkmm-3.0/include/gtkmmconfig.h - /usr/include/gtkmm-3.0/gtkmm/widget.h - /usr/include/pangomm-1.4/pangomm/context.h - /usr/include/pangomm-1.4/pangomm/fontdescription.h - /usr/include/pangomm-1.4/pangomm/fontmetrics.h - /usr/include/pangomm-1.4/pangomm/fontset.h - /usr/include/pangomm-1.4/pangomm/language.h - /usr/include/pangomm-1.4/pangomm/font.h - /usr/include/pangomm-1.4/pangomm/rectangle.h - /usr/include/pangomm-1.4/pangomm/glyph.h - /usr/include/pangomm-1.4/pangomm/coverage.h - /usr/include/pangomm-1.4/pangomm/fontmap.h - /usr/include/pangomm-1.4/pangomm/fontfamily.h - /usr/include/pangomm-1.4/pangomm/fontface.h - /usr/include/pangomm-1.4/pangomm/item.h - /usr/include/pangomm-1.4/pangomm/attributes.h - /usr/include/pangomm-1.4/pangomm/color.h - /usr/include/pangomm-1.4/pangomm/attrlist.h - /usr/include/pangomm-1.4/pangomm/attriter.h - /usr/include/pangomm-1.4/pangomm/types.h - /usr/include/pangomm-1.4/pangomm/layout.h - /usr/include/pangomm-1.4/pangomm/tabarray.h - /usr/include/pangomm-1.4/pangomm/layoutline.h - /usr/include/pangomm-1.4/pangomm/layoutiter.h - /usr/include/pangomm-1.4/pangomm/layoutrun.h - /usr/include/atkmm-1.6/atkmm/object.h - /usr/include/atkmm-1.6/atkmm/component.h - /usr/lib/atkmm-1.6/include/atkmmconfig.h - /usr/include/atkmm-1.6/atkmm/relation.h - /usr/include/atkmm-1.6/atkmm/implementor.h - /usr/include/gtkmm-3.0/gtkmm/object.h - /usr/include/gtkmm-3.0/gtkmm/base.h - /usr/include/gtkmm-3.0/gtkmm/buildable.h - /usr/include/gtkmm-3.0/gtkmm/enums.h - /usr/include/gtk-3.0/gtk/gtk.h - /usr/include/gtk-3.0/gtk/gtkaboutdialog.h - /usr/include/gtk-3.0/gtk/gtkdialog.h - /usr/include/gtk-3.0/gtk/gtkwindow.h - /usr/include/gtk-3.0/gtk/gtkapplication.h - /usr/include/gtk-3.0/gtk/gtkwidget.h - /usr/include/gtk-3.0/gtk/gtkaccelgroup.h - /usr/include/gtk-3.0/gtk/gtkenums.h - /usr/include/gtk-3.0/gtk/gtkborder.h - /usr/include/gtk-3.0/gtk/gtktypes.h - /usr/include/atk-1.0/atk/atk.h - /usr/include/atk-1.0/atk/atkobject.h - /usr/include/atk-1.0/atk/atkversion.h - /usr/include/atk-1.0/atk/atkstate.h - /usr/include/atk-1.0/atk/atkrelationtype.h - /usr/include/atk-1.0/atk/atkaction.h - /usr/include/atk-1.0/atk/atkcomponent.h - /usr/include/atk-1.0/atk/atkutil.h - /usr/include/atk-1.0/atk/atkdocument.h - /usr/include/atk-1.0/atk/atkeditabletext.h - /usr/include/atk-1.0/atk/atktext.h - /usr/include/atk-1.0/atk/atk-enum-types.h - /usr/include/atk-1.0/atk/atkgobjectaccessible.h - /usr/include/atk-1.0/atk/atkhyperlink.h - /usr/include/atk-1.0/atk/atkhyperlinkimpl.h - /usr/include/atk-1.0/atk/atkhypertext.h - /usr/include/atk-1.0/atk/atkimage.h - /usr/include/atk-1.0/atk/atknoopobject.h - /usr/include/atk-1.0/atk/atknoopobjectfactory.h - /usr/include/atk-1.0/atk/atkobjectfactory.h - /usr/include/atk-1.0/atk/atkplug.h - /usr/include/atk-1.0/atk/atkrange.h - /usr/include/atk-1.0/atk/atkregistry.h - /usr/include/atk-1.0/atk/atkobjectfactory.h - /usr/include/atk-1.0/atk/atkrelation.h - /usr/include/atk-1.0/atk/atkrelationset.h - /usr/include/atk-1.0/atk/atkselection.h - /usr/include/atk-1.0/atk/atksocket.h - /usr/include/atk-1.0/atk/atkstateset.h - /usr/include/atk-1.0/atk/atkstreamablecontent.h - /usr/include/atk-1.0/atk/atktable.h - /usr/include/atk-1.0/atk/atktablecell.h - /usr/include/atk-1.0/atk/atkmisc.h - /usr/include/atk-1.0/atk/atkvalue.h - /usr/include/atk-1.0/atk/atkwindow.h - /usr/include/atk-1.0/atk/atk-autocleanups.h - /usr/include/gtk-3.0/gtk/gtkbin.h - /usr/include/gtk-3.0/gtk/gtkcontainer.h - /usr/include/gtk-3.0/gtk/gtkaccellabel.h - /usr/include/gtk-3.0/gtk/gtklabel.h - /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h - /usr/include/gtk-3.0/gtk/gtkmenu.h - /usr/include/gtk-3.0/gtk/gtkmenushell.h - /usr/include/gtk-3.0/gtk/gtkaccelmap.h - /usr/include/gtk-3.0/gtk/gtkaccessible.h - /usr/include/gtk-3.0/gtk/gtkactionable.h - /usr/include/gtk-3.0/gtk/gtkactionbar.h - /usr/include/gtk-3.0/gtk/gtkadjustment.h - /usr/include/gtk-3.0/gtk/gtkappchooser.h - /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h - /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h - /usr/include/gtk-3.0/gtk/gtkbox.h - /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h - /usr/include/gtk-3.0/gtk/gtkcombobox.h - /usr/include/gtk-3.0/gtk/gtktreemodel.h - /usr/include/gtk-3.0/gtk/gtktreeview.h - /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h - /usr/include/gtk-3.0/gtk/gtkcellrenderer.h - /usr/include/gtk-3.0/gtk/gtkcelleditable.h - /usr/include/gtk-3.0/gtk/gtktreesortable.h - /usr/include/gtk-3.0/gtk/gtkcellarea.h - /usr/include/gtk-3.0/gtk/gtkdnd.h - /usr/include/gtk-3.0/gtk/gtkselection.h - /usr/include/gtk-3.0/gtk/gtktextiter.h - /usr/include/gtk-3.0/gtk/gtktextattributes.h - /usr/include/gtk-3.0/gtk/gtktextchild.h - /usr/include/gtk-3.0/gtk/gtktexttag.h - /usr/include/gtk-3.0/gtk/gtkentry.h - /usr/include/gtk-3.0/gtk/gtkeditable.h - /usr/include/gtk-3.0/gtk/gtkimcontext.h - /usr/include/gtk-3.0/gtk/gtkentrybuffer.h - /usr/include/gtk-3.0/gtk/gtkentrycompletion.h - /usr/include/gtk-3.0/gtk/gtkliststore.h - /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h - /usr/include/gtk-3.0/gtk/gtkimage.h - /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h - /usr/include/gtk-3.0/gtk/gtkshortcutswindow.h - /usr/include/gtk-3.0/gtk/gtkaspectframe.h - /usr/include/gtk-3.0/gtk/gtkframe.h - /usr/include/gtk-3.0/gtk/gtkassistant.h - /usr/include/gtk-3.0/gtk/gtkbbox.h - /usr/include/gtk-3.0/gtk/gtkbindings.h - /usr/include/gtk-3.0/gtk/gtkbuildable.h - /usr/include/gtk-3.0/gtk/gtkbuilder.h - /usr/include/gtk-3.0/gtk/gtkbutton.h - /usr/include/gtk-3.0/gtk/gtkcalendar.h - /usr/include/gtk-3.0/gtk/gtkcellareabox.h - /usr/include/gtk-3.0/gtk/gtkcellareacontext.h - /usr/include/gtk-3.0/gtk/gtkcelllayout.h - /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h - /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h - /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h - /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h - /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h - /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h - /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h - /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h - /usr/include/gtk-3.0/gtk/gtkcellview.h - /usr/include/gtk-3.0/gtk/gtkcheckbutton.h - /usr/include/gtk-3.0/gtk/gtktogglebutton.h - /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h - /usr/include/gtk-3.0/gtk/gtkmenuitem.h - /usr/include/gtk-3.0/gtk/gtkclipboard.h - /usr/include/gtk-3.0/gtk/gtkcolorbutton.h - /usr/include/gtk-3.0/gtk/gtkcolorchooser.h - /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h - /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h - /usr/include/gtk-3.0/gtk/gtkcolorutils.h - /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h - /usr/include/gtk-3.0/gtk/gtkcssprovider.h - /usr/include/gtk-3.0/gtk/gtkcsssection.h - /usr/include/gtk-3.0/gtk/gtkdebug.h - /usr/include/gtk-3.0/gtk/gtkdragdest.h - /usr/include/gtk-3.0/gtk/gtkdragsource.h - /usr/include/gtk-3.0/gtk/gtkdrawingarea.h - /usr/include/gtk-3.0/gtk/gtkeventbox.h - /usr/include/gtk-3.0/gtk/gtkeventcontroller.h - /usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h - /usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h - /usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h - /usr/include/gtk-3.0/gtk/gtkexpander.h - /usr/include/gtk-3.0/gtk/gtkfixed.h - /usr/include/gtk-3.0/gtk/gtkfilechooser.h - /usr/include/gtk-3.0/gtk/gtkfilefilter.h - /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h - /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h - /usr/include/gtk-3.0/gtk/gtkfilechoosernative.h - /usr/include/gtk-3.0/gtk/gtknativedialog.h - /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h - /usr/include/gtk-3.0/gtk/gtkflowbox.h - /usr/include/gtk-3.0/gtk/gtkfontbutton.h - /usr/include/gtk-3.0/gtk/gtkfontchooser.h - /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h - /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h - /usr/include/gtk-3.0/gtk/gtkgesture.h - /usr/include/gtk-3.0/gtk/gtkgesturedrag.h - /usr/include/gtk-3.0/gtk/gtkgesturesingle.h - /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h - /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h - /usr/include/gtk-3.0/gtk/gtkgesturepan.h - /usr/include/gtk-3.0/gtk/gtkgesturerotate.h - /usr/include/gtk-3.0/gtk/gtkgesturestylus.h - /usr/include/gtk-3.0/gtk/gtkgestureswipe.h - /usr/include/gtk-3.0/gtk/gtkgesturezoom.h - /usr/include/gtk-3.0/gtk/gtkglarea.h - /usr/include/gtk-3.0/gtk/gtkgrid.h - /usr/include/gtk-3.0/gtk/gtkheaderbar.h - /usr/include/gtk-3.0/gtk/gtkicontheme.h - /usr/include/gtk-3.0/gtk/gtkstylecontext.h - /usr/include/gtk-3.0/gtk/gtkstyleprovider.h - /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h - /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h - /usr/include/gtk-3.0/gtk/gtkiconview.h - /usr/include/gtk-3.0/gtk/gtktooltip.h - /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h - /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h - /usr/include/gtk-3.0/gtk/gtkimmulticontext.h - /usr/include/gtk-3.0/gtk/gtkinfobar.h - /usr/include/gtk-3.0/gtk/gtkinvisible.h - /usr/include/gtk-3.0/gtk/gtklayout.h - /usr/include/gtk-3.0/gtk/gtklevelbar.h - /usr/include/gtk-3.0/gtk/gtklinkbutton.h - /usr/include/gtk-3.0/gtk/gtklistbox.h - /usr/include/gtk-3.0/gtk/gtklockbutton.h - /usr/include/gtk-3.0/gtk/gtkmain.h - /usr/include/gtk-3.0/gtk/gtkmenubar.h - /usr/include/gtk-3.0/gtk/gtkmenubutton.h - /usr/include/gtk-3.0/gtk/gtkpopover.h - /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h - /usr/include/gtk-3.0/gtk/gtktoolbutton.h - /usr/include/gtk-3.0/gtk/gtktoolitem.h - /usr/include/gtk-3.0/gtk/gtksizegroup.h - /usr/include/gtk-3.0/gtk/gtkmessagedialog.h - /usr/include/gtk-3.0/gtk/gtkmodelbutton.h - /usr/include/gtk-3.0/gtk/gtkmodules.h - /usr/include/gtk-3.0/gtk/gtkmountoperation.h - /usr/include/gtk-3.0/gtk/gtknotebook.h - /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h - /usr/include/gtk-3.0/gtk/gtkorientable.h - /usr/include/gtk-3.0/gtk/gtkoverlay.h - /usr/include/gtk-3.0/gtk/gtkpadcontroller.h - /usr/include/gtk-3.0/gtk/gtkpagesetup.h - /usr/include/gtk-3.0/gtk/gtkpapersize.h - /usr/include/gtk-3.0/gtk/gtkpaned.h - /usr/include/gtk-3.0/gtk/gtkplacessidebar.h - /usr/include/gtk-3.0/gtk/gtkpopovermenu.h - /usr/include/gtk-3.0/gtk/gtkprintcontext.h - /usr/include/gtk-3.0/gtk/gtkprintoperation.h - /usr/include/gtk-3.0/gtk/gtkprintsettings.h - /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h - /usr/include/gtk-3.0/gtk/gtkprogressbar.h - /usr/include/gtk-3.0/gtk/gtkradiobutton.h - /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h - /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h - /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h - /usr/include/gtk-3.0/gtk/gtkrange.h - /usr/include/gtk-3.0/gtk/gtkrecentchooser.h - /usr/include/gtk-3.0/gtk/gtkrecentmanager.h - /usr/include/gtk-3.0/gtk/gtkrecentfilter.h - /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h - /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h - /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h - /usr/include/gtk-3.0/gtk/gtkrender.h - /usr/include/gtk-3.0/gtk/gtkrevealer.h - /usr/include/gtk-3.0/gtk/gtkscale.h - /usr/include/gtk-3.0/gtk/gtkscalebutton.h - /usr/include/gtk-3.0/gtk/gtkscrollable.h - /usr/include/gtk-3.0/gtk/gtkscrollbar.h - /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h - /usr/include/gtk-3.0/gtk/gtksearchbar.h - /usr/include/gtk-3.0/gtk/gtksearchentry.h - /usr/include/gtk-3.0/gtk/gtkseparator.h - /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h - /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h - /usr/include/gtk-3.0/gtk/gtksettings.h - /usr/include/gtk-3.0/gtk/gtkshortcutlabel.h - /usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h - /usr/include/gtk-3.0/gtk/gtkshortcutssection.h - /usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h - /usr/include/gtk-3.0/gtk/gtkshow.h - /usr/include/gtk-3.0/gtk/gtkstacksidebar.h - /usr/include/gtk-3.0/gtk/gtkstack.h - /usr/include/gtk-3.0/gtk/gtksizerequest.h - /usr/include/gtk-3.0/gtk/gtkspinbutton.h - /usr/include/gtk-3.0/gtk/gtkspinner.h - /usr/include/gtk-3.0/gtk/gtkstackswitcher.h - /usr/include/gtk-3.0/gtk/gtkstatusbar.h - /usr/include/gtk-3.0/gtk/gtkswitch.h - /usr/include/gtk-3.0/gtk/gtktextbuffer.h - /usr/include/gtk-3.0/gtk/gtktexttagtable.h - /usr/include/gtk-3.0/gtk/gtktextmark.h - /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h - /usr/include/gtk-3.0/gtk/gtktextview.h - /usr/include/gtk-3.0/gtk/gtktoolbar.h - /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h - /usr/include/gtk-3.0/gtk/gtktoolpalette.h - /usr/include/gtk-3.0/gtk/gtktoolshell.h - /usr/include/gtk-3.0/gtk/gtktestutils.h - /usr/include/gtk-3.0/gtk/gtktreednd.h - /usr/include/gtk-3.0/gtk/gtktreemodelsort.h - /usr/include/gtk-3.0/gtk/gtktreeselection.h - /usr/include/gtk-3.0/gtk/gtktreestore.h - /usr/include/gtk-3.0/gtk/gtktypebuiltins.h - /usr/include/gtk-3.0/gtk/gtkversion.h - /usr/include/gtk-3.0/gtk/gtkviewport.h - /usr/include/gtk-3.0/gtk/gtkvolumebutton.h - /usr/include/gtk-3.0/gtk/gtkwidgetpath.h - /usr/include/gtk-3.0/gtk/gtkwindowgroup.h - /usr/include/gtk-3.0/gtk/gtkwindow.h - /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h - /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h - /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h - /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h - /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h - /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h - /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h - /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h - /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h - /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h - /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h - /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h - /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h - /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h - /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h - /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h - /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h - /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h - /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h - /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h - /usr/include/gtk-3.0/gtk/deprecated/gtktable.h - /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h - /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h - /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h - /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h - /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h - /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h - /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h - /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h - /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h - /usr/include/gtk-3.0/gtk/gtk-autocleanups.h - /usr/include/gtkmm-3.0/gtkmm/targetlist.h - /usr/include/gtkmm-3.0/gtkmm/targetentry.h - /usr/include/gtkmm-3.0/gtkmm/clipboard.h - /usr/include/gtkmm-3.0/gtkmm/selectiondata.h - /usr/include/gtkmm-3.0/gtkmm/requisition.h - /usr/include/gtkmm-3.0/gtkmm/stylecontext.h - /usr/include/gtkmm-3.0/gtkmm/styleprovider.h - /usr/include/gtkmm-3.0/gtkmm/border.h - /usr/include/gtkmm-3.0/gtkmm/iconsource.h - /usr/include/gtkmm-3.0/gtkmm/iconset.h - /usr/include/gtkmm-3.0/gtkmm/stockid.h - /usr/include/gtkmm-3.0/gtkmm/widgetpath.h - /usr/include/gtkmm-3.0/gtkmm/accelgroup.h - /usr/include/gtkmm-3.0/gtkmm/radioaction.h - /usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h - /usr/include/gtkmm-3.0/gtkmm/aboutdialog.h - /usr/include/gtkmm-3.0/gtkmm/dialog.h - /usr/include/gtkmm-3.0/gtkmm/window.h - /usr/include/gtkmm-3.0/gtkmm/bin.h - /usr/include/gtkmm-3.0/gtkmm/container.h - /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h - /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h - /usr/include/gtkmm-3.0/gtkmm/application.h - /usr/include/gtkmm-3.0/gtkmm/actiongroup.h - /usr/include/gtkmm-3.0/gtkmm/accelkey.h - /usr/include/gtkmm-3.0/gtkmm/windowgroup.h - /usr/include/gtkmm-3.0/gtkmm/box.h - /usr/include/gtkmm-3.0/gtkmm/orientable.h - /usr/include/gtkmm-3.0/gtkmm/hvbox.h - /usr/include/gtkmm-3.0/gtkmm/button.h - /usr/include/gtkmm-3.0/gtkmm/activatable.h - /usr/include/gtkmm-3.0/gtkmm/buttonbox.h - /usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h - /usr/include/gtkmm-3.0/gtkmm/headerbar.h - /usr/include/gtkmm-3.0/gtkmm/accelmap.h - /usr/include/gtkmm-3.0/gtkmm/actionable.h - /usr/include/gtkmm-3.0/gtkmm/actionbar.h - /usr/include/gtkmm-3.0/gtkmm/adjustment.h - /usr/include/gtkmm-3.0/gtkmm/alignment.h - /usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h - /usr/include/gtkmm-3.0/gtkmm/appchooser.h - /usr/include/gtkmm-3.0/gtkmm/combobox.h - /usr/include/gtkmm-3.0/gtkmm/celllayout.h - /usr/include/gtkmm-3.0/gtkmm/cellrenderer.h - /usr/include/gtkmm-3.0/gtkmm/celleditable.h - /usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h - /usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h - /usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h - /usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h - /usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h - /usr/include/gtkmm-3.0/gtkmm/treemodel.h - /usr/include/gtkmm-3.0/gtkmm/treeiter.h - /usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h - /usr/include/gtkmm-3.0/gtkmm/cellarea.h - /usr/include/gtkmm-3.0/gtkmm/cellareacontext.h - /usr/include/gtkmm-3.0/gtkmm/treeview.h - /usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h - /usr/include/gtkmm-3.0/gtkmm/treeselection.h - /usr/include/gtkmm-3.0/gtkmm/treepath.h - /usr/include/gtkmm-3.0/gtkmm/scrollable.h - /usr/include/gtkmm-3.0/gtkmm/entry.h - /usr/include/gtkmm-3.0/gtkmm/editable.h - /usr/include/gtkmm-3.0/gtkmm/menu.h - /usr/include/gtkmm-3.0/gtkmm/menushell.h - /usr/include/gtkmm-3.0/gtkmm/menuitem.h - /usr/include/gtkmm-3.0/gtkmm/accellabel.h - /usr/include/gtkmm-3.0/gtkmm/label.h - /usr/include/gtkmm-3.0/gtkmm/misc.h - /usr/include/gtkmm-3.0/gtkmm/entrycompletion.h - /usr/include/gtkmm-3.0/gtkmm/image.h - /usr/include/gtkmm-3.0/gtkmm/entrybuffer.h - /usr/include/gtkmm-3.0/gtkmm/tooltip.h - /usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h - /usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h - /usr/include/gtkmm-3.0/gtkmm/applicationwindow.h - /usr/include/gtkmm-3.0/gtkmm/arrow.h - /usr/include/gtkmm-3.0/gtkmm/aspectframe.h - /usr/include/gtkmm-3.0/gtkmm/frame.h - /usr/include/gtkmm-3.0/gtkmm/assistant.h - /usr/include/gtkmm-3.0/gtkmm/builder.h - /usr/include/gtkmm-3.0/gtkmm/cellareabox.h - /usr/include/gtkmm-3.0/gtkmm/cellview.h - /usr/include/gtkmm-3.0/gtkmm/checkbutton.h - /usr/include/gtkmm-3.0/gtkmm/togglebutton.h - /usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h - /usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h - /usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h - /usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h - /usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h - /usr/include/gtkmm-3.0/gtkmm/colorbutton.h - /usr/include/gtkmm-3.0/gtkmm/colorchooser.h - /usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h - /usr/include/gtkmm-3.0/gtkmm/colorselection.h - /usr/include/gtkmm-3.0/gtkmm/comboboxtext.h - /usr/include/gtkmm-3.0/gtkmm/cssprovider.h - /usr/include/gtkmm-3.0/gtkmm/csssection.h - /usr/include/gtkmm-3.0/gtkmm/drawingarea.h - /usr/include/gtkmm-3.0/gtkmm/expander.h - /usr/include/gtkmm-3.0/gtkmm/eventbox.h - /usr/include/gtkmm-3.0/gtkmm/eventcontroller.h - /usr/include/gtkmm-3.0/gtkmm/filechooser.h - /usr/include/gtkmm-3.0/gtkmm/filefilter.h - /usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h - /usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h - /usr/include/gtkmm-3.0/gtkmm/filechoosernative.h - /usr/include/gtkmm-3.0/gtkmm/nativedialog.h - /usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h - /usr/include/gtkmm-3.0/gtkmm/fixed.h - /usr/include/gtkmm-3.0/gtkmm/flowbox.h - /usr/include/gtkmm-3.0/gtkmm/flowboxchild.h - /usr/include/gtkmm-3.0/gtkmm/fontbutton.h - /usr/include/gtkmm-3.0/gtkmm/fontchooser.h - /usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h - /usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h - /usr/include/gtkmm-3.0/gtkmm/fontselection.h - /usr/include/gtkmm-3.0/gtkmm/gesture.h - /usr/include/gtkmm-3.0/gtkmm/gesturedrag.h - /usr/include/gtkmm-3.0/gtkmm/gesturesingle.h - /usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h - /usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h - /usr/include/gtkmm-3.0/gtkmm/gesturepan.h - /usr/include/gtkmm-3.0/gtkmm/gesturerotate.h - /usr/include/gtkmm-3.0/gtkmm/gestureswipe.h - /usr/include/gtkmm-3.0/gtkmm/gesturezoom.h - /usr/include/gtkmm-3.0/gtkmm/glarea.h - /usr/include/gtkmm-3.0/gtkmm/grid.h - /usr/include/gtkmm-3.0/gtkmm/handlebox.h - /usr/include/gtkmm-3.0/gtkmm/hvpaned.h - /usr/include/gtkmm-3.0/gtkmm/paned.h - /usr/include/gtkmm-3.0/gtkmm/hvscale.h - /usr/include/gtkmm-3.0/gtkmm/scale.h - /usr/include/gtkmm-3.0/gtkmm/range.h - /usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h - /usr/include/gtkmm-3.0/gtkmm/scrollbar.h - /usr/include/gtkmm-3.0/gtkmm/hvseparator.h - /usr/include/gtkmm-3.0/gtkmm/separator.h - /usr/include/gtkmm-3.0/gtkmm/iconfactory.h - /usr/include/gtkmm-3.0/gtkmm/icontheme.h - /usr/include/gtkmm-3.0/gtkmm/iconinfo.h - /usr/include/gtkmm-3.0/gtkmm/iconview.h - /usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h - /usr/include/gtkmm-3.0/gtkmm/infobar.h - /usr/include/gtkmm-3.0/gtkmm/calendar.h - /usr/include/gtkmm-3.0/gtkmm/invisible.h - /usr/include/gtkmm-3.0/gtkmm/layout.h - /usr/include/gtkmm-3.0/gtkmm/levelbar.h - /usr/include/gtkmm-3.0/gtkmm/listbox.h - /usr/include/gtkmm-3.0/gtkmm/listboxrow.h - /usr/include/gtkmm-3.0/gtkmm/liststore.h - /usr/include/gtkmm-3.0/gtkmm/treesortable.h - /usr/include/gtkmm-3.0/gtkmm/treedragdest.h - /usr/include/gtkmm-3.0/gtkmm/treedragsource.h - /usr/include/gtkmm-3.0/gtkmm/listviewtext.h - /usr/include/gtkmm-3.0/gtkmm/linkbutton.h - /usr/include/gtkmm-3.0/gtkmm/main.h - /usr/include/gtkmm-3.0/gtkmm/menubar.h - /usr/include/gtkmm-3.0/gtkmm/menubutton.h - /usr/include/gtkmm-3.0/gtkmm/popover.h - /usr/include/gtkmm-3.0/gtkmm/messagedialog.h - /usr/include/gtkmm-3.0/gtkmm/modelbutton.h - /usr/include/gtkmm-3.0/gtkmm/notebook.h - /usr/include/gtkmm-3.0/gtkmm/numerableicon.h - /usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h - /usr/include/gtkmm-3.0/gtkmm/overlay.h - /usr/include/gtkmm-3.0/gtkmm/pagesetup.h - /usr/include/gtkmm-3.0/gtkmm/papersize.h - /usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h - /usr/include/gtkmm-3.0/gtkmm/printsettings.h - /usr/include/gtkmm-3.0/gtkmm/placessidebar.h - /usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h - /usr/include/gtkmm-3.0/gtkmm/popovermenu.h - /usr/include/gtkmm-3.0/gtkmm/printcontext.h - /usr/include/gtkmm-3.0/gtkmm/printer.h - /usr/include/gtkmm-3.0/gtkmm/printjob.h - /usr/include/gtkmm-3.0/gtkmm/printoperation.h - /usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h - /usr/include/gtkmm-3.0/gtkmm/printunixdialog.h - /usr/include/gtkmm-3.0/gtkmm/progressbar.h - /usr/include/gtkmm-3.0/gtkmm/radiobutton.h - /usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h - /usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h - /usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h - /usr/include/gtkmm-3.0/gtkmm/toolbutton.h - /usr/include/gtkmm-3.0/gtkmm/toolitem.h - /usr/include/gtkmm-3.0/gtkmm/sizegroup.h - /usr/include/gtkmm-3.0/gtkmm/recentaction.h - /usr/include/gtkmm-3.0/gtkmm/recentchooser.h - /usr/include/gtkmm-3.0/gtkmm/recentinfo.h - /usr/include/gtkmm-3.0/gtkmm/recentfilter.h - /usr/include/gtkmm-3.0/gtkmm/recentmanager.h - /usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h - /usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h - /usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h - /usr/include/gtkmm-3.0/gtkmm/revealer.h - /usr/include/gtkmm-3.0/gtkmm/scalebutton.h - /usr/include/gtkmm-3.0/gtkmm/searchbar.h - /usr/include/gtkmm-3.0/gtkmm/searchentry.h - /usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h - /usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h - /usr/include/gtkmm-3.0/gtkmm/settings.h - /usr/include/gtkmm-3.0/gtkmm/toolbar.h - /usr/include/gtkmm-3.0/gtkmm/toolshell.h - /usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h - /usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h - /usr/include/gtkmm-3.0/gtkmm/shortcutssection.h - /usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h - /usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h - /usr/include/gtkmm-3.0/gtkmm/spinbutton.h - /usr/include/gtkmm-3.0/gtkmm/spinner.h - /usr/include/gtkmm-3.0/gtkmm/stack.h - /usr/include/gtkmm-3.0/gtkmm/stacksidebar.h - /usr/include/gtkmm-3.0/gtkmm/stackswitcher.h - /usr/include/gtkmm-3.0/gtkmm/statusbar.h - /usr/include/gtkmm-3.0/gtkmm/statusicon.h - /usr/include/gtkmm-3.0/gtkmm/stock.h - /usr/include/gtkmm-3.0/gtkmm/stockitem.h - /usr/include/gtkmm-3.0/gtkmm/styleproperty.h - /usr/include/gtkmm-3.0/gtkmm/switch.h - /usr/include/gtkmm-3.0/gtkmm/table.h - /usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h - /usr/include/gtkmm-3.0/gtkmm/textbuffer.h - /usr/include/gtkmm-3.0/gtkmm/texttagtable.h - /usr/include/gtkmm-3.0/gtkmm/texttag.h - /usr/include/gtkmm-3.0/gtkmm/textchildanchor.h - /usr/include/gtkmm-3.0/gtkmm/textmark.h - /usr/include/gtkmm-3.0/gtkmm/textiter.h - /usr/include/gtkmm-3.0/gtkmm/textattributes.h - /usr/include/gtkmm-3.0/gtkmm/textview.h - /usr/include/gtkmm-3.0/gtkmm/toolpalette.h - /usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h - /usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h - /usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h - /usr/include/gtkmm-3.0/gtkmm/treemodelsort.h - /usr/include/gtkmm-3.0/gtkmm/treerowreference.h - /usr/include/gtkmm-3.0/gtkmm/treestore.h - /usr/include/gtkmm-3.0/gtkmm/uimanager.h - /usr/include/gtkmm-3.0/gtkmm/viewport.h - /usr/include/gtkmm-3.0/gtkmm/volumebutton.h - /usr/include/c++/11.2.0/fstream - /usr/include/c++/11.2.0/bits/codecvt.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h - /usr/include/c++/11.2.0/bits/fstream.tcc - /usr/include/c++/11.2.0/filesystem - /usr/include/c++/11.2.0/bits/fs_fwd.h - /usr/include/c++/11.2.0/bits/fs_path.h - /usr/include/c++/11.2.0/locale - /usr/include/c++/11.2.0/bits/locale_facets_nonio.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h - /usr/include/libintl.h - /usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc - /usr/include/c++/11.2.0/bits/locale_conv.h - /usr/include/c++/11.2.0/iomanip - /usr/include/c++/11.2.0/bits/quoted_string.h - /usr/include/c++/11.2.0/codecvt - /usr/include/c++/11.2.0/bits/fs_dir.h - /usr/include/c++/11.2.0/bits/fs_ops.h - /usr/include/gtkmm-3.0/gtkmm/plug.h - /usr/include/gtk-3.0/gtk/gtkx.h - /usr/include/gtk-3.0/gtk/gtksocket.h - /usr/include/gtk-3.0/gdk/gdkx.h - /usr/include/X11/Xlib.h - /usr/include/X11/X.h - /usr/include/X11/Xfuncproto.h - /usr/include/X11/Xosdefs.h - /usr/include/X11/Xutil.h - /usr/include/X11/keysym.h - /usr/include/X11/keysymdef.h - /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h - /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h - /usr/include/gtk-3.0/gdk/x11/gdkx11device.h - /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h - /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h - /usr/include/gtk-3.0/gdk/x11/gdkx11display.h - /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h - /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h - /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h - /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h - /usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h - /usr/include/gtk-3.0/gdk/x11/gdkx11property.h - /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h - /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h - /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h - /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h - /usr/include/gtk-3.0/gdk/x11/gdkx11window.h - /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h - /usr/include/gtk-3.0/gtk/gtkplug.h - /usr/include/gtk-3.0/gtk/gtkx-autocleanups.h - /usr/include/pwd.h - /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h - diff --git a/compile/CMakeFiles/ublexec.dir/compiler_depend.make b/compile/CMakeFiles/ublexec.dir/compiler_depend.make deleted file mode 100644 index b50afc6..0000000 --- a/compile/CMakeFiles/ublexec.dir/compiler_depend.make +++ /dev/null @@ -1,6619 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.23 - -CMakeFiles/ublexec.dir/main.cc.o: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc \ - /usr/include/stdc-predef.h \ - /usr/include/c++/11.2.0/cstddef \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \ - /usr/include/features.h \ - /usr/include/features-time64.h \ - /usr/include/bits/wordsize.h \ - /usr/include/bits/timesize.h \ - /usr/include/sys/cdefs.h \ - /usr/include/bits/long-double.h \ - /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \ - /usr/include/c++/11.2.0/pstl/pstl_config.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \ - /usr/include/c++/11.2.0/cstdlib \ - /usr/include/stdlib.h \ - /usr/include/bits/libc-header-start.h \ - /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h \ - /usr/include/bits/floatn.h \ - /usr/include/bits/floatn-common.h \ - /usr/include/bits/types/locale_t.h \ - /usr/include/bits/types/__locale_t.h \ - /usr/include/sys/types.h \ - /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h \ - /usr/include/bits/time64.h \ - /usr/include/bits/types/clock_t.h \ - /usr/include/bits/types/clockid_t.h \ - /usr/include/bits/types/time_t.h \ - /usr/include/bits/types/timer_t.h \ - /usr/include/bits/stdint-intn.h \ - /usr/include/endian.h \ - /usr/include/bits/endian.h \ - /usr/include/bits/endianness.h \ - /usr/include/bits/byteswap.h \ - /usr/include/bits/uintn-identity.h \ - /usr/include/sys/select.h \ - /usr/include/bits/select.h \ - /usr/include/bits/types/sigset_t.h \ - /usr/include/bits/types/__sigset_t.h \ - /usr/include/bits/types/struct_timeval.h \ - /usr/include/bits/types/struct_timespec.h \ - /usr/include/bits/pthreadtypes.h \ - /usr/include/bits/thread-shared-types.h \ - /usr/include/bits/pthreadtypes-arch.h \ - /usr/include/bits/atomic_wide_counter.h \ - /usr/include/bits/struct_mutex.h \ - /usr/include/bits/struct_rwlock.h \ - /usr/include/alloca.h \ - /usr/include/bits/stdlib-bsearch.h \ - /usr/include/bits/stdlib-float.h \ - /usr/include/c++/11.2.0/bits/std_abs.h \ - /usr/include/c++/11.2.0/iostream \ - /usr/include/c++/11.2.0/ostream \ - /usr/include/c++/11.2.0/ios \ - /usr/include/c++/11.2.0/iosfwd \ - /usr/include/c++/11.2.0/bits/stringfwd.h \ - /usr/include/c++/11.2.0/bits/memoryfwd.h \ - /usr/include/c++/11.2.0/bits/postypes.h \ - /usr/include/c++/11.2.0/cwchar \ - /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \ - /usr/include/bits/wchar.h \ - /usr/include/bits/types/wint_t.h \ - /usr/include/bits/types/mbstate_t.h \ - /usr/include/bits/types/__mbstate_t.h \ - /usr/include/bits/types/__FILE.h \ - /usr/include/bits/types/FILE.h \ - /usr/include/c++/11.2.0/exception \ - /usr/include/c++/11.2.0/bits/exception.h \ - /usr/include/c++/11.2.0/bits/exception_ptr.h \ - /usr/include/c++/11.2.0/bits/exception_defines.h \ - /usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \ - /usr/include/c++/11.2.0/typeinfo \ - /usr/include/c++/11.2.0/bits/hash_bytes.h \ - /usr/include/c++/11.2.0/new \ - /usr/include/c++/11.2.0/bits/nested_exception.h \ - /usr/include/c++/11.2.0/bits/move.h \ - /usr/include/c++/11.2.0/type_traits \ - /usr/include/c++/11.2.0/bits/char_traits.h \ - /usr/include/c++/11.2.0/bits/stl_algobase.h \ - /usr/include/c++/11.2.0/bits/functexcept.h \ - /usr/include/c++/11.2.0/bits/cpp_type_traits.h \ - /usr/include/c++/11.2.0/ext/type_traits.h \ - /usr/include/c++/11.2.0/ext/numeric_traits.h \ - /usr/include/c++/11.2.0/bits/stl_pair.h \ - /usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \ - /usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/11.2.0/bits/concept_check.h \ - /usr/include/c++/11.2.0/debug/assertions.h \ - /usr/include/c++/11.2.0/bits/stl_iterator.h \ - /usr/include/c++/11.2.0/bits/ptr_traits.h \ - /usr/include/c++/11.2.0/debug/debug.h \ - /usr/include/c++/11.2.0/bits/predefined_ops.h \ - /usr/include/c++/11.2.0/cstdint \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \ - /usr/include/stdint.h \ - /usr/include/bits/stdint-uintn.h \ - /usr/include/c++/11.2.0/bits/localefwd.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \ - /usr/include/c++/11.2.0/clocale \ - /usr/include/locale.h \ - /usr/include/bits/locale.h \ - /usr/include/c++/11.2.0/cctype \ - /usr/include/ctype.h \ - /usr/include/c++/11.2.0/bits/ios_base.h \ - /usr/include/c++/11.2.0/ext/atomicity.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \ - /usr/include/pthread.h \ - /usr/include/sched.h \ - /usr/include/bits/sched.h \ - /usr/include/bits/types/struct_sched_param.h \ - /usr/include/bits/cpu-set.h \ - /usr/include/time.h \ - /usr/include/bits/time.h \ - /usr/include/bits/timex.h \ - /usr/include/bits/types/struct_tm.h \ - /usr/include/bits/types/struct_itimerspec.h \ - /usr/include/bits/setjmp.h \ - /usr/include/bits/types/struct___jmp_buf_tag.h \ - /usr/include/bits/pthread_stack_min-dynamic.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \ - /usr/include/sys/single_threaded.h \ - /usr/include/c++/11.2.0/bits/locale_classes.h \ - /usr/include/c++/11.2.0/string \ - /usr/include/c++/11.2.0/bits/allocator.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \ - /usr/include/c++/11.2.0/ext/new_allocator.h \ - /usr/include/c++/11.2.0/bits/ostream_insert.h \ - /usr/include/c++/11.2.0/bits/cxxabi_forced.h \ - /usr/include/c++/11.2.0/bits/stl_function.h \ - /usr/include/c++/11.2.0/backward/binders.h \ - /usr/include/c++/11.2.0/bits/range_access.h \ - /usr/include/c++/11.2.0/initializer_list \ - /usr/include/c++/11.2.0/bits/basic_string.h \ - /usr/include/c++/11.2.0/ext/alloc_traits.h \ - /usr/include/c++/11.2.0/bits/alloc_traits.h \ - /usr/include/c++/11.2.0/bits/stl_construct.h \ - /usr/include/c++/11.2.0/string_view \ - /usr/include/c++/11.2.0/bits/functional_hash.h \ - /usr/include/c++/11.2.0/bits/string_view.tcc \ - /usr/include/c++/11.2.0/ext/string_conversions.h \ - /usr/include/c++/11.2.0/cstdio \ - /usr/include/stdio.h \ - /usr/include/bits/types/__fpos_t.h \ - /usr/include/bits/types/__fpos64_t.h \ - /usr/include/bits/types/struct_FILE.h \ - /usr/include/bits/types/cookie_io_functions_t.h \ - /usr/include/bits/stdio_lim.h \ - /usr/include/bits/stdio.h \ - /usr/include/c++/11.2.0/cerrno \ - /usr/include/errno.h \ - /usr/include/bits/errno.h \ - /usr/include/linux/errno.h \ - /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h \ - /usr/include/asm-generic/errno-base.h \ - /usr/include/bits/types/error_t.h \ - /usr/include/c++/11.2.0/bits/charconv.h \ - /usr/include/c++/11.2.0/bits/basic_string.tcc \ - /usr/include/c++/11.2.0/bits/locale_classes.tcc \ - /usr/include/c++/11.2.0/system_error \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \ - /usr/include/c++/11.2.0/stdexcept \ - /usr/include/c++/11.2.0/streambuf \ - /usr/include/c++/11.2.0/bits/streambuf.tcc \ - /usr/include/c++/11.2.0/bits/basic_ios.h \ - /usr/include/c++/11.2.0/bits/locale_facets.h \ - /usr/include/c++/11.2.0/cwctype \ - /usr/include/wctype.h \ - /usr/include/bits/wctype-wchar.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \ - /usr/include/c++/11.2.0/bits/streambuf_iterator.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \ - /usr/include/c++/11.2.0/bits/locale_facets.tcc \ - /usr/include/c++/11.2.0/bits/basic_ios.tcc \ - /usr/include/c++/11.2.0/bits/ostream.tcc \ - /usr/include/c++/11.2.0/istream \ - /usr/include/c++/11.2.0/bits/istream.tcc \ - /usr/include/c++/11.2.0/memory \ - /usr/include/c++/11.2.0/bits/stl_uninitialized.h \ - /usr/include/c++/11.2.0/bits/stl_tempbuf.h \ - /usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h \ - /usr/include/c++/11.2.0/bits/align.h \ - /usr/include/c++/11.2.0/bit \ - /usr/include/c++/11.2.0/bits/uses_allocator.h \ - /usr/include/c++/11.2.0/bits/unique_ptr.h \ - /usr/include/c++/11.2.0/utility \ - /usr/include/c++/11.2.0/bits/stl_relops.h \ - /usr/include/c++/11.2.0/tuple \ - /usr/include/c++/11.2.0/array \ - /usr/include/c++/11.2.0/bits/invoke.h \ - /usr/include/c++/11.2.0/bits/shared_ptr.h \ - /usr/include/c++/11.2.0/bits/shared_ptr_base.h \ - /usr/include/c++/11.2.0/bits/allocated_ptr.h \ - /usr/include/c++/11.2.0/bits/refwrap.h \ - /usr/include/c++/11.2.0/ext/aligned_buffer.h \ - /usr/include/c++/11.2.0/ext/concurrence.h \ - /usr/include/c++/11.2.0/bits/shared_ptr_atomic.h \ - /usr/include/c++/11.2.0/bits/atomic_base.h \ - /usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h \ - /usr/include/c++/11.2.0/backward/auto_ptr.h \ - /usr/include/c++/11.2.0/pstl/glue_memory_defs.h \ - /usr/include/c++/11.2.0/pstl/execution_defs.h \ - /usr/include/gtkmm-3.0/gtkmm.h \ - /usr/include/glibmm-2.4/glibmm.h \ - /usr/lib/glibmm-2.4/include/glibmmconfig.h \ - /usr/include/glibmm-2.4/glibmm/thread.h \ - /usr/include/glib-2.0/glib.h \ - /usr/include/glib-2.0/glib/galloca.h \ - /usr/include/glib-2.0/glib/gtypes.h \ - /usr/lib/glib-2.0/include/glibconfig.h \ - /usr/include/glib-2.0/glib/gmacros.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h \ - /usr/include/limits.h \ - /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h \ - /usr/include/bits/xopen_lim.h \ - /usr/include/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h \ - /usr/include/glib-2.0/glib/gversionmacros.h \ - /usr/include/string.h \ - /usr/include/strings.h \ - /usr/include/glib-2.0/glib/garray.h \ - /usr/include/glib-2.0/glib/gasyncqueue.h \ - /usr/include/glib-2.0/glib/gthread.h \ - /usr/include/glib-2.0/glib/gatomic.h \ - /usr/include/glib-2.0/glib/glib-typeof.h \ - /usr/include/glib-2.0/glib/gerror.h \ - /usr/include/glib-2.0/glib/gquark.h \ - /usr/include/glib-2.0/glib/gutils.h \ - /usr/include/c++/11.2.0/stdlib.h \ - /usr/include/glib-2.0/glib/gbacktrace.h \ - /usr/include/signal.h \ - /usr/include/bits/signum-generic.h \ - /usr/include/bits/signum-arch.h \ - /usr/include/bits/types/sig_atomic_t.h \ - /usr/include/bits/types/siginfo_t.h \ - /usr/include/bits/types/__sigval_t.h \ - /usr/include/bits/siginfo-arch.h \ - /usr/include/bits/siginfo-consts.h \ - /usr/include/bits/siginfo-consts-arch.h \ - /usr/include/bits/types/sigval_t.h \ - /usr/include/bits/types/sigevent_t.h \ - /usr/include/bits/sigevent-consts.h \ - /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h \ - /usr/include/bits/types/stack_t.h \ - /usr/include/sys/ucontext.h \ - /usr/include/bits/sigstack.h \ - /usr/include/bits/sigstksz.h \ - /usr/include/unistd.h \ - /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h \ - /usr/include/bits/confname.h \ - /usr/include/bits/getopt_posix.h \ - /usr/include/bits/getopt_core.h \ - /usr/include/bits/unistd_ext.h \ - /usr/include/linux/close_range.h \ - /usr/include/bits/ss_flags.h \ - /usr/include/bits/types/struct_sigstack.h \ - /usr/include/bits/sigthread.h \ - /usr/include/bits/signal_ext.h \ - /usr/include/glib-2.0/glib/gbase64.h \ - /usr/include/glib-2.0/glib/gbitlock.h \ - /usr/include/glib-2.0/glib/gbookmarkfile.h \ - /usr/include/glib-2.0/glib/gdatetime.h \ - /usr/include/glib-2.0/glib/gtimezone.h \ - /usr/include/glib-2.0/glib/gbytes.h \ - /usr/include/glib-2.0/glib/gcharset.h \ - /usr/include/glib-2.0/glib/gchecksum.h \ - /usr/include/glib-2.0/glib/gconvert.h \ - /usr/include/glib-2.0/glib/gdataset.h \ - /usr/include/glib-2.0/glib/gdate.h \ - /usr/include/glib-2.0/glib/gdir.h \ - /usr/include/dirent.h \ - /usr/include/bits/dirent.h \ - /usr/include/bits/dirent_ext.h \ - /usr/include/glib-2.0/glib/genviron.h \ - /usr/include/glib-2.0/glib/gfileutils.h \ - /usr/include/glib-2.0/glib/ggettext.h \ - /usr/include/glib-2.0/glib/ghash.h \ - /usr/include/glib-2.0/glib/glist.h \ - /usr/include/glib-2.0/glib/gmem.h \ - /usr/include/glib-2.0/glib/gnode.h \ - /usr/include/glib-2.0/glib/ghmac.h \ - /usr/include/glib-2.0/glib/gchecksum.h \ - /usr/include/glib-2.0/glib/ghook.h \ - /usr/include/glib-2.0/glib/ghostutils.h \ - /usr/include/glib-2.0/glib/giochannel.h \ - /usr/include/glib-2.0/glib/gmain.h \ - /usr/include/glib-2.0/glib/gpoll.h \ - /usr/include/glib-2.0/glib/gslist.h \ - /usr/include/glib-2.0/glib/gstring.h \ - /usr/include/glib-2.0/glib/gunicode.h \ - /usr/include/glib-2.0/glib/gkeyfile.h \ - /usr/include/glib-2.0/glib/gmappedfile.h \ - /usr/include/glib-2.0/glib/gmarkup.h \ - /usr/include/glib-2.0/glib/gmessages.h \ - /usr/include/glib-2.0/glib/gvariant.h \ - /usr/include/glib-2.0/glib/gvarianttype.h \ - /usr/include/glib-2.0/glib/goption.h \ - /usr/include/glib-2.0/glib/gpattern.h \ - /usr/include/glib-2.0/glib/gprimes.h \ - /usr/include/glib-2.0/glib/gqsort.h \ - /usr/include/glib-2.0/glib/gqueue.h \ - /usr/include/glib-2.0/glib/grand.h \ - /usr/include/glib-2.0/glib/grcbox.h \ - /usr/include/glib-2.0/glib/grefcount.h \ - /usr/include/glib-2.0/glib/grefstring.h \ - /usr/include/glib-2.0/glib/gmem.h \ - /usr/include/glib-2.0/glib/gmacros.h \ - /usr/include/glib-2.0/glib/gregex.h \ - /usr/include/glib-2.0/glib/gscanner.h \ - /usr/include/glib-2.0/glib/gsequence.h \ - /usr/include/glib-2.0/glib/gshell.h \ - /usr/include/glib-2.0/glib/gslice.h \ - /usr/include/glib-2.0/glib/gspawn.h \ - /usr/include/glib-2.0/glib/gstrfuncs.h \ - /usr/include/glib-2.0/glib/gstringchunk.h \ - /usr/include/glib-2.0/glib/gstrvbuilder.h \ - /usr/include/glib-2.0/glib/gtestutils.h \ - /usr/include/glib-2.0/glib/gthreadpool.h \ - /usr/include/glib-2.0/glib/gtimer.h \ - /usr/include/glib-2.0/glib/gtrashstack.h \ - /usr/include/glib-2.0/glib/gtree.h \ - /usr/include/glib-2.0/glib/guri.h \ - /usr/include/glib-2.0/glib/guuid.h \ - /usr/include/glib-2.0/glib/gversion.h \ - /usr/include/glib-2.0/glib/deprecated/gallocator.h \ - /usr/include/glib-2.0/glib/deprecated/gcache.h \ - /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ - /usr/include/glib-2.0/glib/deprecated/gmain.h \ - /usr/include/glib-2.0/glib/deprecated/grel.h \ - /usr/include/glib-2.0/glib/deprecated/gthread.h \ - /usr/include/glib-2.0/glib/glib-autocleanups.h \ - /usr/include/glibmm-2.4/glibmm/error.h \ - /usr/include/glibmm-2.4/glibmm/exception.h \ - /usr/include/glibmm-2.4/glibmm/ustring.h \ - /usr/include/glibmm-2.4/glibmm/unicode.h \ - /usr/include/c++/11.2.0/iterator \ - /usr/include/c++/11.2.0/bits/stream_iterator.h \ - /usr/include/c++/11.2.0/sstream \ - /usr/include/c++/11.2.0/bits/sstream.tcc \ - /usr/include/glibmm-2.4/glibmm/value.h \ - /usr/include/glibmm-2.4/glibmm/refptr.h \ - /usr/include/glibmm-2.4/glibmm/enums.h \ - /usr/include/glib-2.0/glib-object.h \ - /usr/include/glib-2.0/gobject/gbinding.h \ - /usr/include/glib-2.0/gobject/gobject.h \ - /usr/include/glib-2.0/gobject/gtype.h \ - /usr/include/glib-2.0/gobject/gvalue.h \ - /usr/include/glib-2.0/gobject/gparam.h \ - /usr/include/glib-2.0/gobject/gclosure.h \ - /usr/include/glib-2.0/gobject/gsignal.h \ - /usr/include/glib-2.0/gobject/gmarshal.h \ - /usr/include/glib-2.0/gobject/gboxed.h \ - /usr/include/glib-2.0/gobject/glib-types.h \ - /usr/include/glib-2.0/gobject/gbindinggroup.h \ - /usr/include/glib-2.0/gobject/genums.h \ - /usr/include/glib-2.0/gobject/glib-enumtypes.h \ - /usr/include/glib-2.0/gobject/gparamspecs.h \ - /usr/include/glib-2.0/gobject/gsignalgroup.h \ - /usr/include/glib-2.0/gobject/gsourceclosure.h \ - /usr/include/glib-2.0/gobject/gtypemodule.h \ - /usr/include/glib-2.0/gobject/gtypeplugin.h \ - /usr/include/glib-2.0/gobject/gvaluearray.h \ - /usr/include/glib-2.0/gobject/gvaluetypes.h \ - /usr/include/glib-2.0/gobject/gobject-autocleanups.h \ - /usr/include/c++/11.2.0/vector \ - /usr/include/c++/11.2.0/bits/stl_vector.h \ - /usr/include/c++/11.2.0/bits/stl_bvector.h \ - /usr/include/c++/11.2.0/bits/vector.tcc \ - /usr/include/glibmm-2.4/glibmm/value_custom.h \ - /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ - /usr/include/glibmm-2.4/glibmm/timeval.h \ - /usr/include/sigc++-2.0/sigc++/sigc++.h \ - /usr/include/sigc++-2.0/sigc++/signal.h \ - /usr/include/c++/11.2.0/list \ - /usr/include/c++/11.2.0/bits/stl_list.h \ - /usr/include/c++/11.2.0/bits/list.tcc \ - /usr/include/sigc++-2.0/sigc++/signal_base.h \ - /usr/lib/sigc++-2.0/include/sigc++config.h \ - /usr/include/sigc++-2.0/sigc++/type_traits.h \ - /usr/include/sigc++-2.0/sigc++/trackable.h \ - /usr/include/sigc++-2.0/sigc++/functors/slot.h \ - /usr/include/sigc++-2.0/sigc++/visit_each.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ - /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ - /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ - /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ - /usr/include/sigc++-2.0/sigc++/limit_reference.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ - /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ - /usr/include/sigc++-2.0/sigc++/connection.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ - /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ - /usr/include/c++/11.2.0/functional \ - /usr/include/c++/11.2.0/bits/std_function.h \ - /usr/include/c++/11.2.0/unordered_map \ - /usr/include/c++/11.2.0/bits/hashtable.h \ - /usr/include/c++/11.2.0/bits/hashtable_policy.h \ - /usr/include/c++/11.2.0/bits/node_handle.h \ - /usr/include/c++/11.2.0/bits/unordered_map.h \ - /usr/include/c++/11.2.0/bits/erase_if.h \ - /usr/include/c++/11.2.0/bits/stl_algo.h \ - /usr/include/c++/11.2.0/bits/algorithmfwd.h \ - /usr/include/c++/11.2.0/bits/stl_heap.h \ - /usr/include/c++/11.2.0/bits/uniform_int_dist.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h \ - /usr/include/sigc++-2.0/sigc++/functors/functors.h \ - /usr/include/glibmm-2.4/glibmm/threads.h \ - /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ - /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ - /usr/include/glibmm-2.4/glibmm/variant.h \ - /usr/include/glibmm-2.4/glibmm/varianttype.h \ - /usr/include/glibmm-2.4/glibmm/variantiter.h \ - /usr/include/glibmm-2.4/glibmm/variantdbusstring.h \ - /usr/include/c++/11.2.0/map \ - /usr/include/c++/11.2.0/bits/stl_tree.h \ - /usr/include/c++/11.2.0/bits/stl_map.h \ - /usr/include/c++/11.2.0/bits/stl_multimap.h \ - /usr/include/glibmm-2.4/glibmm/variant_basictypes.h \ - /usr/include/glibmm-2.4/glibmm/wrap.h \ - /usr/include/glibmm-2.4/glibmm/objectbase.h \ - /usr/include/glibmm-2.4/glibmm/class.h \ - /usr/include/glibmm-2.4/glibmm/signalproxy.h \ - /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ - /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ - /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ - /usr/include/glibmm-2.4/glibmm/quark.h \ - /usr/include/glibmm-2.4/glibmm/debug.h \ - /usr/include/c++/11.2.0/mutex \ - /usr/include/c++/11.2.0/chrono \ - /usr/include/c++/11.2.0/ratio \ - /usr/include/c++/11.2.0/limits \ - /usr/include/c++/11.2.0/ctime \ - /usr/include/c++/11.2.0/bits/parse_numbers.h \ - /usr/include/c++/11.2.0/bits/std_mutex.h \ - /usr/include/c++/11.2.0/bits/unique_lock.h \ - /usr/include/c++/11.2.0/algorithm \ - /usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h \ - /usr/include/c++/11.2.0/deque \ - /usr/include/c++/11.2.0/bits/stl_deque.h \ - /usr/include/c++/11.2.0/bits/deque.tcc \ - /usr/include/glibmm-2.4/glibmm/balancedtree.h \ - /usr/include/glibmm-2.4/glibmm/base64.h \ - /usr/include/glibmm-2.4/glibmm/binding.h \ - /usr/include/glibmm-2.4/glibmm/object.h \ - /usr/include/glibmm-2.4/glibmm/utility.h \ - /usr/include/glibmm-2.4/glibmm/bytearray.h \ - /usr/include/sigc++-2.0/sigc++/slot.h \ - /usr/include/glibmm-2.4/glibmm/bytes.h \ - /usr/include/glibmm-2.4/glibmm/checksum.h \ - /usr/include/glibmm-2.4/glibmm/convert.h \ - /usr/include/glibmm-2.4/glibmm/date.h \ - /usr/include/glibmm-2.4/glibmm/datetime.h \ - /usr/include/glibmm-2.4/glibmm/timezone.h \ - /usr/include/glibmm-2.4/glibmm/dispatcher.h \ - /usr/include/glibmm-2.4/glibmm/main.h \ - /usr/include/glibmm-2.4/glibmm/priorities.h \ - /usr/include/glibmm-2.4/glibmm/iochannel.h \ - /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ - /usr/include/glibmm-2.4/glibmm/fileutils.h \ - /usr/include/glibmm-2.4/glibmm/helperlist.h \ - /usr/include/glibmm-2.4/glibmm/containers.h \ - /usr/include/glibmm-2.4/glibmm/sarray.h \ - /usr/include/glibmm-2.4/glibmm/interface.h \ - /usr/include/glibmm-2.4/glibmm/init.h \ - /usr/include/glibmm-2.4/glibmm/keyfile.h \ - /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ - /usr/include/glibmm-2.4/glibmm/listhandle.h \ - /usr/include/glibmm-2.4/glibmm/markup.h \ - /usr/include/glibmm-2.4/glibmm/miscutils.h \ - /usr/include/glibmm-2.4/glibmm/module.h \ - /usr/include/glibmm-2.4/glibmm/nodetree.h \ - /usr/include/c++/11.2.0/stack \ - /usr/include/c++/11.2.0/bits/stl_stack.h \ - /usr/include/glibmm-2.4/glibmm/optioncontext.h \ - /usr/include/glibmm-2.4/glibmm/optionentry.h \ - /usr/include/glibmm-2.4/glibmm/optiongroup.h \ - /usr/include/glibmm-2.4/glibmm/pattern.h \ - /usr/include/glibmm-2.4/glibmm/property.h \ - /usr/include/glibmm-2.4/glibmm/random.h \ - /usr/include/glibmm-2.4/glibmm/regex.h \ - /usr/include/glibmm-2.4/glibmm/shell.h \ - /usr/include/glibmm-2.4/glibmm/slisthandle.h \ - /usr/include/glibmm-2.4/glibmm/spawn.h \ - /usr/include/glibmm-2.4/glibmm/stringutils.h \ - /usr/include/glibmm-2.4/glibmm/threadpool.h \ - /usr/include/glibmm-2.4/glibmm/timer.h \ - /usr/include/glibmm-2.4/glibmm/uriutils.h \ - /usr/include/glibmm-2.4/glibmm/valuearray.h \ - /usr/include/glibmm-2.4/glibmm/variantdict.h \ - /usr/include/glibmm-2.4/glibmm/vectorutils.h \ - /usr/include/glibmm-2.4/glibmm/weakref.h \ - /usr/include/giomm-2.4/giomm.h \ - /usr/include/giomm-2.4/giomm/action.h \ - /usr/lib/giomm-2.4/include/giommconfig.h \ - /usr/include/glib-2.0/gio/gio.h \ - /usr/include/glib-2.0/gio/giotypes.h \ - /usr/include/glib-2.0/gio/gioenums.h \ - /usr/include/glib-2.0/gio/gaction.h \ - /usr/include/glib-2.0/gio/gactiongroup.h \ - /usr/include/glib-2.0/gio/gactiongroupexporter.h \ - /usr/include/glib-2.0/gio/gactionmap.h \ - /usr/include/glib-2.0/gio/gappinfo.h \ - /usr/include/glib-2.0/gio/gapplication.h \ - /usr/include/glib-2.0/gio/gapplicationcommandline.h \ - /usr/include/glib-2.0/gio/gasyncinitable.h \ - /usr/include/glib-2.0/gio/ginitable.h \ - /usr/include/glib-2.0/gio/gasyncresult.h \ - /usr/include/glib-2.0/gio/gbufferedinputstream.h \ - /usr/include/glib-2.0/gio/gfilterinputstream.h \ - /usr/include/glib-2.0/gio/ginputstream.h \ - /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ - /usr/include/glib-2.0/gio/gfilteroutputstream.h \ - /usr/include/glib-2.0/gio/goutputstream.h \ - /usr/include/glib-2.0/gio/gbytesicon.h \ - /usr/include/glib-2.0/gio/gcancellable.h \ - /usr/include/glib-2.0/gio/gcharsetconverter.h \ - /usr/include/glib-2.0/gio/gconverter.h \ - /usr/include/glib-2.0/gio/gcontenttype.h \ - /usr/include/glib-2.0/gio/gconverterinputstream.h \ - /usr/include/glib-2.0/gio/gconverteroutputstream.h \ - /usr/include/glib-2.0/gio/gcredentials.h \ - /usr/include/glib-2.0/gio/gdatagrambased.h \ - /usr/include/glib-2.0/gio/gdatainputstream.h \ - /usr/include/glib-2.0/gio/gdataoutputstream.h \ - /usr/include/glib-2.0/gio/gdbusactiongroup.h \ - /usr/include/glib-2.0/gio/giotypes.h \ - /usr/include/glib-2.0/gio/gdbusaddress.h \ - /usr/include/glib-2.0/gio/gdbusauthobserver.h \ - /usr/include/glib-2.0/gio/gdbusconnection.h \ - /usr/include/glib-2.0/gio/gdbuserror.h \ - /usr/include/glib-2.0/gio/gdbusinterface.h \ - /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ - /usr/include/glib-2.0/gio/gdbusintrospection.h \ - /usr/include/glib-2.0/gio/gdbusmenumodel.h \ - /usr/include/glib-2.0/gio/gdbusmessage.h \ - /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ - /usr/include/glib-2.0/gio/gdbusnameowning.h \ - /usr/include/glib-2.0/gio/gdbusnamewatching.h \ - /usr/include/glib-2.0/gio/gdbusobject.h \ - /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ - /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ - /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ - /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ - /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ - /usr/include/glib-2.0/gio/gdbusproxy.h \ - /usr/include/glib-2.0/gio/gdbusserver.h \ - /usr/include/glib-2.0/gio/gdbusutils.h \ - /usr/include/glib-2.0/gio/gdebugcontroller.h \ - /usr/include/glib-2.0/gio/gdebugcontrollerdbus.h \ - /usr/include/glib-2.0/gio/gdrive.h \ - /usr/include/glib-2.0/gio/gdtlsclientconnection.h \ - /usr/include/glib-2.0/gio/gdtlsconnection.h \ - /usr/include/glib-2.0/gio/gdtlsserverconnection.h \ - /usr/include/glib-2.0/gio/gemblemedicon.h \ - /usr/include/glib-2.0/gio/gicon.h \ - /usr/include/glib-2.0/gio/gemblem.h \ - /usr/include/glib-2.0/gio/gfile.h \ - /usr/include/glib-2.0/gio/gfileattribute.h \ - /usr/include/glib-2.0/gio/gfileenumerator.h \ - /usr/include/glib-2.0/gio/gfileicon.h \ - /usr/include/glib-2.0/gio/gfileinfo.h \ - /usr/include/glib-2.0/gio/gfileinputstream.h \ - /usr/include/glib-2.0/gio/gfileiostream.h \ - /usr/include/glib-2.0/gio/giostream.h \ - /usr/include/glib-2.0/gio/gioerror.h \ - /usr/include/glib-2.0/gio/gfilemonitor.h \ - /usr/include/glib-2.0/gio/gfilenamecompleter.h \ - /usr/include/glib-2.0/gio/gfileoutputstream.h \ - /usr/include/glib-2.0/gio/ginetaddress.h \ - /usr/include/glib-2.0/gio/ginetaddressmask.h \ - /usr/include/glib-2.0/gio/ginetsocketaddress.h \ - /usr/include/glib-2.0/gio/gsocketaddress.h \ - /usr/include/glib-2.0/gio/gioenumtypes.h \ - /usr/include/glib-2.0/gio/giomodule.h \ - /usr/include/glib-2.0/gmodule.h \ - /usr/include/glib-2.0/gio/gioscheduler.h \ - /usr/include/glib-2.0/gio/glistmodel.h \ - /usr/include/glib-2.0/gio/gliststore.h \ - /usr/include/glib-2.0/gio/gloadableicon.h \ - /usr/include/glib-2.0/gio/gmemoryinputstream.h \ - /usr/include/glib-2.0/gio/gmemorymonitor.h \ - /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ - /usr/include/glib-2.0/gio/gmenu.h \ - /usr/include/glib-2.0/gio/gmenumodel.h \ - /usr/include/glib-2.0/gio/gmenuexporter.h \ - /usr/include/glib-2.0/gio/gmount.h \ - /usr/include/glib-2.0/gio/gmountoperation.h \ - /usr/include/glib-2.0/gio/gnativesocketaddress.h \ - /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ - /usr/include/glib-2.0/gio/gvolumemonitor.h \ - /usr/include/glib-2.0/gio/gnetworkaddress.h \ - /usr/include/glib-2.0/gio/gnetworkmonitor.h \ - /usr/include/glib-2.0/gio/gnetworkservice.h \ - /usr/include/glib-2.0/gio/gnotification.h \ - /usr/include/glib-2.0/gio/gpermission.h \ - /usr/include/glib-2.0/gio/gpollableinputstream.h \ - /usr/include/glib-2.0/gio/gpollableoutputstream.h \ - /usr/include/glib-2.0/gio/gpollableutils.h \ - /usr/include/glib-2.0/gio/gpowerprofilemonitor.h \ - /usr/include/glib-2.0/gio/gpropertyaction.h \ - /usr/include/glib-2.0/gio/gproxy.h \ - /usr/include/glib-2.0/gio/gproxyaddress.h \ - /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ - /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ - /usr/include/glib-2.0/gio/gproxyresolver.h \ - /usr/include/glib-2.0/gio/gremoteactiongroup.h \ - /usr/include/glib-2.0/gio/gresolver.h \ - /usr/include/glib-2.0/gio/gresource.h \ - /usr/include/glib-2.0/gio/gseekable.h \ - /usr/include/glib-2.0/gio/gsettings.h \ - /usr/include/glib-2.0/gio/gsettingsschema.h \ - /usr/include/glib-2.0/gio/gsimpleaction.h \ - /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ - /usr/include/glib-2.0/gio/gactiongroup.h \ - /usr/include/glib-2.0/gio/gactionmap.h \ - /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ - /usr/include/glib-2.0/gio/gsimpleiostream.h \ - /usr/include/glib-2.0/gio/gsimplepermission.h \ - /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ - /usr/include/glib-2.0/gio/gsocket.h \ - /usr/include/glib-2.0/gio/gsocketclient.h \ - /usr/include/glib-2.0/gio/gsocketconnectable.h \ - /usr/include/glib-2.0/gio/gsocketconnection.h \ - /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ - /usr/include/glib-2.0/gio/gsocketlistener.h \ - /usr/include/glib-2.0/gio/gsocketservice.h \ - /usr/include/glib-2.0/gio/gsrvtarget.h \ - /usr/include/glib-2.0/gio/gsubprocess.h \ - /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ - /usr/include/glib-2.0/gio/gtask.h \ - /usr/include/glib-2.0/gio/gtcpconnection.h \ - /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ - /usr/include/glib-2.0/gio/gtestdbus.h \ - /usr/include/glib-2.0/gio/gthemedicon.h \ - /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ - /usr/include/glib-2.0/gio/gtlsbackend.h \ - /usr/include/glib-2.0/gio/gtlscertificate.h \ - /usr/include/glib-2.0/gio/gtlsclientconnection.h \ - /usr/include/glib-2.0/gio/gtlsconnection.h \ - /usr/include/glib-2.0/gio/gtlsdatabase.h \ - /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ - /usr/include/glib-2.0/gio/gtlsinteraction.h \ - /usr/include/glib-2.0/gio/gtlspassword.h \ - /usr/include/glib-2.0/gio/gtlsserverconnection.h \ - /usr/include/glib-2.0/gio/gvfs.h \ - /usr/include/glib-2.0/gio/gvolume.h \ - /usr/include/glib-2.0/gio/gzlibcompressor.h \ - /usr/include/glib-2.0/gio/gzlibdecompressor.h \ - /usr/include/glib-2.0/gio/gio-autocleanups.h \ - /usr/include/giomm-2.4/giomm/actiongroup.h \ - /usr/include/giomm-2.4/giomm/actionmap.h \ - /usr/include/giomm-2.4/giomm/simpleaction.h \ - /usr/include/giomm-2.4/giomm/appinfo.h \ - /usr/include/giomm-2.4/giomm/applaunchcontext.h \ - /usr/include/giomm-2.4/giomm/icon.h \ - /usr/include/giomm-2.4/giomm/asyncresult.h \ - /usr/include/giomm-2.4/giomm/cancellable.h \ - /usr/include/giomm-2.4/giomm/application.h \ - /usr/include/giomm-2.4/giomm/applicationcommandline.h \ - /usr/include/giomm-2.4/giomm/file.h \ - /usr/include/giomm-2.4/giomm/fileattributeinfolist.h \ - /usr/include/giomm-2.4/giomm/fileattributeinfo.h \ - /usr/include/giomm-2.4/giomm/fileenumerator.h \ - /usr/include/giomm-2.4/giomm/fileinfo.h \ - /usr/include/giomm-2.4/giomm/fileinputstream.h \ - /usr/include/giomm-2.4/giomm/inputstream.h \ - /usr/include/giomm-2.4/giomm/seekable.h \ - /usr/include/giomm-2.4/giomm/fileiostream.h \ - /usr/include/giomm-2.4/giomm/iostream.h \ - /usr/include/giomm-2.4/giomm/outputstream.h \ - /usr/include/giomm-2.4/giomm/filemonitor.h \ - /usr/include/giomm-2.4/giomm/fileoutputstream.h \ - /usr/include/giomm-2.4/giomm/mountoperation.h \ - /usr/include/giomm-2.4/giomm/drive.h \ - /usr/include/giomm-2.4/giomm/mount.h \ - /usr/include/giomm-2.4/giomm/error.h \ - /usr/include/giomm-2.4/giomm/dbusconnection.h \ - /usr/include/giomm-2.4/giomm/initable.h \ - /usr/include/giomm-2.4/giomm/asyncinitable.h \ - /usr/include/giomm-2.4/giomm/dbusauthobserver.h \ - /usr/include/giomm-2.4/giomm/credentials.h \ - /usr/include/giomm-2.4/giomm/dbusmethodinvocation.h \ - /usr/include/giomm-2.4/giomm/dbusmessage.h \ - /usr/include/giomm-2.4/giomm/unixfdlist.h \ - /usr/include/giomm-2.4/giomm/dbusintrospection.h \ - /usr/include/giomm-2.4/giomm/dbussubtreevtable.h \ - /usr/include/giomm-2.4/giomm/dbusinterfacevtable.h \ - /usr/include/giomm-2.4/giomm/notification.h \ - /usr/include/giomm-2.4/giomm/bufferedinputstream.h \ - /usr/include/giomm-2.4/giomm/filterinputstream.h \ - /usr/include/giomm-2.4/giomm/bufferedoutputstream.h \ - /usr/include/giomm-2.4/giomm/filteroutputstream.h \ - /usr/include/giomm-2.4/giomm/charsetconverter.h \ - /usr/include/giomm-2.4/giomm/converter.h \ - /usr/include/giomm-2.4/giomm/contenttype.h \ - /usr/include/giomm-2.4/giomm/converterinputstream.h \ - /usr/include/giomm-2.4/giomm/pollableinputstream.h \ - /usr/include/giomm-2.4/giomm/converteroutputstream.h \ - /usr/include/giomm-2.4/giomm/pollableoutputstream.h \ - /usr/include/giomm-2.4/giomm/datainputstream.h \ - /usr/include/giomm-2.4/giomm/enums.h \ - /usr/include/giomm-2.4/giomm/dataoutputstream.h \ - /usr/include/giomm-2.4/giomm/dbusactiongroup.h \ - /usr/include/giomm-2.4/giomm/remoteactiongroup.h \ - /usr/include/giomm-2.4/giomm/dbusaddress.h \ - /usr/include/giomm-2.4/giomm/dbuserror.h \ - /usr/include/giomm-2.4/giomm/dbuserrorutils.h \ - /usr/include/giomm-2.4/giomm/dbusinterface.h \ - /usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h \ - /usr/include/giomm-2.4/giomm/dbusmenumodel.h \ - /usr/include/giomm-2.4/giomm/menumodel.h \ - /usr/include/giomm-2.4/giomm/dbusobject.h \ - /usr/include/giomm-2.4/giomm/dbusobjectmanager.h \ - /usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h \ - /usr/include/giomm-2.4/giomm/dbusobjectproxy.h \ - /usr/include/giomm-2.4/giomm/dbusproxy.h \ - /usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h \ - /usr/include/giomm-2.4/giomm/dbusobjectskeleton.h \ - /usr/include/giomm-2.4/giomm/dbusownname.h \ - /usr/include/giomm-2.4/giomm/dbusserver.h \ - /usr/include/giomm-2.4/giomm/dbusutils.h \ - /usr/include/giomm-2.4/giomm/dbuswatchname.h \ - /usr/include/giomm-2.4/giomm/desktopappinfo.h \ - /usr/include/giomm-2.4/giomm/emblem.h \ - /usr/include/giomm-2.4/giomm/emblemedicon.h \ - /usr/include/giomm-2.4/giomm/fileicon.h \ - /usr/include/giomm-2.4/giomm/loadableicon.h \ - /usr/include/giomm-2.4/giomm/filenamecompleter.h \ - /usr/include/giomm-2.4/giomm/inetaddress.h \ - /usr/include/giomm-2.4/giomm/inetsocketaddress.h \ - /usr/include/giomm-2.4/giomm/socketaddress.h \ - /usr/include/giomm-2.4/giomm/socketconnectable.h \ - /usr/include/giomm-2.4/giomm/socketaddressenumerator.h \ - /usr/include/giomm-2.4/giomm/init.h \ - /usr/include/giomm-2.4/giomm/wrap_init.h \ - /usr/include/giomm-2.4/giomm/listmodel.h \ - /usr/include/giomm-2.4/giomm/liststore.h \ - /usr/include/giomm-2.4/giomm/memoryinputstream.h \ - /usr/include/giomm-2.4/giomm/memoryoutputstream.h \ - /usr/include/giomm-2.4/giomm/menu.h \ - /usr/include/giomm-2.4/giomm/menuitem.h \ - /usr/include/giomm-2.4/giomm/menuattributeiter.h \ - /usr/include/giomm-2.4/giomm/menulinkiter.h \ - /usr/include/giomm-2.4/giomm/networkaddress.h \ - /usr/include/giomm-2.4/giomm/networkmonitor.h \ - /usr/include/giomm-2.4/giomm/networkservice.h \ - /usr/include/giomm-2.4/giomm/permission.h \ - /usr/include/giomm-2.4/giomm/proxy.h \ - /usr/include/giomm-2.4/giomm/proxyaddress.h \ - /usr/include/giomm-2.4/giomm/proxyresolver.h \ - /usr/include/giomm-2.4/giomm/resolver.h \ - /usr/include/giomm-2.4/giomm/srvtarget.h \ - /usr/include/giomm-2.4/giomm/resource.h \ - /usr/include/giomm-2.4/giomm/settings.h \ - /usr/include/giomm-2.4/giomm/settingsschema.h \ - /usr/include/giomm-2.4/giomm/settingsschemakey.h \ - /usr/include/giomm-2.4/giomm/settingsschemasource.h \ - /usr/include/giomm-2.4/giomm/simpleactiongroup.h \ - /usr/include/giomm-2.4/giomm/simpleiostream.h \ - /usr/include/giomm-2.4/giomm/simplepermission.h \ - /usr/include/giomm-2.4/giomm/socket.h \ - /usr/include/giomm-2.4/giomm/socketclient.h \ - /usr/include/giomm-2.4/giomm/socketconnection.h \ - /usr/include/giomm-2.4/giomm/socketcontrolmessage.h \ - /usr/include/c++/11.2.0/set \ - /usr/include/c++/11.2.0/bits/stl_set.h \ - /usr/include/c++/11.2.0/bits/stl_multiset.h \ - /usr/include/giomm-2.4/giomm/socketlistener.h \ - /usr/include/giomm-2.4/giomm/socketservice.h \ - /usr/include/giomm-2.4/giomm/socketsource.h \ - /usr/include/giomm-2.4/giomm/tcpconnection.h \ - /usr/include/giomm-2.4/giomm/tcpwrapperconnection.h \ - /usr/include/giomm-2.4/giomm/themedicon.h \ - /usr/include/giomm-2.4/giomm/threadedsocketservice.h \ - /usr/include/giomm-2.4/giomm/tlscertificate.h \ - /usr/include/giomm-2.4/giomm/tlsclientconnection.h \ - /usr/include/giomm-2.4/giomm/tlsconnection.h \ - /usr/include/giomm-2.4/giomm/tlsdatabase.h \ - /usr/include/giomm-2.4/giomm/tlsinteraction.h \ - /usr/include/giomm-2.4/giomm/tlspassword.h \ - /usr/include/giomm-2.4/giomm/tlsserverconnection.h \ - /usr/include/giomm-2.4/giomm/unixconnection.h \ - /usr/include/giomm-2.4/giomm/unixcredentialsmessage.h \ - /usr/include/giomm-2.4/giomm/unixfdmessage.h \ - /usr/include/giomm-2.4/giomm/unixinputstream.h \ - /usr/include/giomm-2.4/giomm/unixoutputstream.h \ - /usr/include/giomm-2.4/giomm/unixsocketaddress.h \ - /usr/include/giomm-2.4/giomm/volume.h \ - /usr/include/giomm-2.4/giomm/volumemonitor.h \ - /usr/include/giomm-2.4/giomm/zlibcompressor.h \ - /usr/include/giomm-2.4/giomm/zlibdecompressor.h \ - /usr/include/gdkmm-3.0/gdkmm/dragcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/color.h \ - /usr/lib/gdkmm-3.0/include/gdkmmconfig.h \ - /usr/lib/pangomm-1.4/include/pangommconfig.h \ - /usr/include/gtk-3.0/gdk/gdk.h \ - /usr/include/gtk-3.0/gdk/gdkconfig.h \ - /usr/include/gtk-3.0/gdk/gdkversionmacros.h \ - /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h \ - /usr/include/gtk-3.0/gdk/gdktypes.h \ - /usr/include/pango-1.0/pango/pango.h \ - /usr/include/pango-1.0/pango/pango-attributes.h \ - /usr/include/pango-1.0/pango/pango-font.h \ - /usr/include/pango-1.0/pango/pango-coverage.h \ - /usr/include/pango-1.0/pango/pango-version-macros.h \ - /usr/include/pango-1.0/pango/pango-features.h \ - /usr/include/harfbuzz/hb.h \ - /usr/include/harfbuzz/hb-blob.h \ - /usr/include/harfbuzz/hb-common.h \ - /usr/include/harfbuzz/hb-buffer.h \ - /usr/include/harfbuzz/hb-unicode.h \ - /usr/include/harfbuzz/hb-font.h \ - /usr/include/harfbuzz/hb-face.h \ - /usr/include/harfbuzz/hb-set.h \ - /usr/include/harfbuzz/hb-draw.h \ - /usr/include/harfbuzz/hb.h \ - /usr/include/harfbuzz/hb-deprecated.h \ - /usr/include/harfbuzz/hb-map.h \ - /usr/include/harfbuzz/hb-shape.h \ - /usr/include/harfbuzz/hb-shape-plan.h \ - /usr/include/harfbuzz/hb-style.h \ - /usr/include/harfbuzz/hb-version.h \ - /usr/include/pango-1.0/pango/pango-types.h \ - /usr/include/pango-1.0/pango/pango-gravity.h \ - /usr/include/pango-1.0/pango/pango-matrix.h \ - /usr/include/pango-1.0/pango/pango-script.h \ - /usr/include/pango-1.0/pango/pango-language.h \ - /usr/include/pango-1.0/pango/pango-bidi-type.h \ - /usr/include/pango-1.0/pango/pango-direction.h \ - /usr/include/pango-1.0/pango/pango-color.h \ - /usr/include/pango-1.0/pango/pango-break.h \ - /usr/include/pango-1.0/pango/pango-item.h \ - /usr/include/pango-1.0/pango/pango-context.h \ - /usr/include/pango-1.0/pango/pango-fontmap.h \ - /usr/include/pango-1.0/pango/pango-fontset.h \ - /usr/include/pango-1.0/pango/pango-engine.h \ - /usr/include/pango-1.0/pango/pango-glyph.h \ - /usr/include/pango-1.0/pango/pango-enum-types.h \ - /usr/include/pango-1.0/pango/pango-fontset-simple.h \ - /usr/include/pango-1.0/pango/pango-glyph-item.h \ - /usr/include/pango-1.0/pango/pango-layout.h \ - /usr/include/pango-1.0/pango/pango-tabs.h \ - /usr/include/pango-1.0/pango/pango-markup.h \ - /usr/include/pango-1.0/pango/pango-renderer.h \ - /usr/include/pango-1.0/pango/pango-utils.h \ - /usr/include/cairo/cairo.h \ - /usr/include/cairo/cairo-version.h \ - /usr/include/cairo/cairo-features.h \ - /usr/include/cairo/cairo-deprecated.h \ - /usr/include/gtk-3.0/gdk/gdkscreen.h \ - /usr/include/gtk-3.0/gdk/gdkdisplay.h \ - /usr/include/gtk-3.0/gdk/gdkevents.h \ - /usr/include/gtk-3.0/gdk/gdkdnd.h \ - /usr/include/gtk-3.0/gdk/gdkdevice.h \ - /usr/include/gtk-3.0/gdk/gdkdevicetool.h \ - /usr/include/gtk-3.0/gdk/gdkdevicemanager.h \ - /usr/include/gtk-3.0/gdk/gdkseat.h \ - /usr/include/gtk-3.0/gdk/gdkwindow.h \ - /usr/include/gtk-3.0/gdk/gdkdrawingcontext.h \ - /usr/include/gtk-3.0/gdk/gdkframeclock.h \ - /usr/include/gtk-3.0/gdk/gdkframetimings.h \ - /usr/include/gtk-3.0/gdk/gdkmonitor.h \ - /usr/include/gtk-3.0/gdk/gdkrectangle.h \ - /usr/include/gtk-3.0/gdk/gdkcairo.h \ - /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h \ - /usr/include/gtk-3.0/gdk/gdkrgba.h \ - /usr/include/gtk-3.0/gdk/gdkpixbuf.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h \ - /usr/include/pango-1.0/pango/pangocairo.h \ - /usr/include/gtk-3.0/gdk/gdkcursor.h \ - /usr/include/gtk-3.0/gdk/gdkdevicepad.h \ - /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h \ - /usr/include/gtk-3.0/gdk/gdkenumtypes.h \ - /usr/include/gtk-3.0/gdk/gdkglcontext.h \ - /usr/include/gtk-3.0/gdk/gdkkeys.h \ - /usr/include/gtk-3.0/gdk/gdkkeysyms.h \ - /usr/include/gtk-3.0/gdk/gdkmain.h \ - /usr/include/gtk-3.0/gdk/gdkpango.h \ - /usr/include/gtk-3.0/gdk/gdkproperty.h \ - /usr/include/gtk-3.0/gdk/gdkselection.h \ - /usr/include/gtk-3.0/gdk/gdktestutils.h \ - /usr/include/gtk-3.0/gdk/gdkthreads.h \ - /usr/include/gtk-3.0/gdk/gdkvisual.h \ - /usr/include/gtk-3.0/gdk/gdk-autocleanup.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbuf.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufformat.h \ - /usr/include/gdkmm-3.0/gdkmm/types.h \ - /usr/include/cairomm-1.0/cairomm/surface.h \ - /usr/include/cairomm-1.0/cairomm/enums.h \ - /usr/include/cairo/cairo-ft.h \ - /usr/include/cairo/cairo.h \ - /usr/include/freetype2/ft2build.h \ - /usr/include/freetype2/freetype/config/ftheader.h \ - /usr/include/freetype2/freetype/freetype.h \ - /usr/include/freetype2/freetype/config/ftconfig.h \ - /usr/include/freetype2/freetype/config/ftoption.h \ - /usr/include/freetype2/freetype/config/ftstdlib.h \ - /usr/include/setjmp.h \ - /usr/include/freetype2/freetype/config/integer-types.h \ - /usr/include/freetype2/freetype/config/public-macros.h \ - /usr/include/freetype2/freetype/config/mac-support.h \ - /usr/include/freetype2/freetype/fttypes.h \ - /usr/include/freetype2/freetype/ftsystem.h \ - /usr/include/freetype2/freetype/ftimage.h \ - /usr/include/freetype2/freetype/fterrors.h \ - /usr/include/freetype2/freetype/ftmoderr.h \ - /usr/include/freetype2/freetype/fterrdef.h \ - /usr/include/fontconfig/fontconfig.h \ - /usr/include/sys/stat.h \ - /usr/include/bits/stat.h \ - /usr/include/bits/struct_stat.h \ - /usr/include/bits/statx.h \ - /usr/include/linux/stat.h \ - /usr/include/linux/types.h \ - /usr/include/asm/types.h \ - /usr/include/asm-generic/types.h \ - /usr/include/asm-generic/int-ll64.h \ - /usr/include/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/asm/posix_types.h \ - /usr/include/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/bits/statx-generic.h \ - /usr/include/bits/types/struct_statx_timestamp.h \ - /usr/include/bits/types/struct_statx.h \ - /usr/include/cairomm-1.0/cairomm/exception.h \ - /usr/lib/cairomm-1.0/include/cairommconfig.h \ - /usr/include/cairomm-1.0/cairomm/device.h \ - /usr/include/cairomm-1.0/cairomm/types.h \ - /usr/include/cairomm-1.0/cairomm/refptr.h \ - /usr/include/cairomm-1.0/cairomm/fontoptions.h \ - /usr/include/cairo/cairo-pdf.h \ - /usr/include/cairo/cairo-ps.h \ - /usr/include/cairo/cairo-svg.h \ - /usr/include/gdkmm-3.0/gdkmm/device.h \ - /usr/include/gdkmm-3.0/gdkmm/cursor.h \ - /usr/include/gdkmm-3.0/gdkmm/display.h \ - /usr/include/gdkmm-3.0/gdkmm/screen.h \ - /usr/include/gdkmm-3.0/gdkmm/rectangle.h \ - /usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/event.h \ - /usr/include/gdkmm-3.0/gdkmm/timecoord.h \ - /usr/include/gdkmm-3.0/gdkmm.h \ - /usr/include/gdkmm-3.0/gdkmm/visual.h \ - /usr/include/gdkmm-3.0/gdkmm/window.h \ - /usr/include/cairomm-1.0/cairomm/region.h \ - /usr/include/cairomm-1.0/cairomm/pattern.h \ - /usr/include/gdkmm-3.0/gdkmm/rgba.h \ - /usr/include/cairomm-1.0/cairomm/context.h \ - /usr/include/cairomm-1.0/cairomm/fontface.h \ - /usr/include/cairomm-1.0/cairomm/matrix.h \ - /usr/include/cairomm-1.0/cairomm/path.h \ - /usr/include/cairomm-1.0/cairomm/scaledfont.h \ - /usr/include/c++/11.2.0/valarray \ - /usr/include/c++/11.2.0/cmath \ - /usr/include/math.h \ - /usr/include/bits/math-vector.h \ - /usr/include/bits/libm-simd-decl-stubs.h \ - /usr/include/bits/flt-eval-method.h \ - /usr/include/bits/fp-logb.h \ - /usr/include/bits/fp-fast.h \ - /usr/include/bits/mathcalls-helper-functions.h \ - /usr/include/bits/mathcalls.h \ - /usr/include/bits/mathcalls-narrow.h \ - /usr/include/bits/iscanonical.h \ - /usr/include/c++/11.2.0/bits/specfun.h \ - /usr/include/c++/11.2.0/tr1/gamma.tcc \ - /usr/include/c++/11.2.0/tr1/special_function_util.h \ - /usr/include/c++/11.2.0/tr1/bessel_function.tcc \ - /usr/include/c++/11.2.0/tr1/beta_function.tcc \ - /usr/include/c++/11.2.0/tr1/ell_integral.tcc \ - /usr/include/c++/11.2.0/tr1/exp_integral.tcc \ - /usr/include/c++/11.2.0/tr1/hypergeometric.tcc \ - /usr/include/c++/11.2.0/tr1/legendre_function.tcc \ - /usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc \ - /usr/include/c++/11.2.0/tr1/poly_hermite.tcc \ - /usr/include/c++/11.2.0/tr1/poly_laguerre.tcc \ - /usr/include/c++/11.2.0/tr1/riemann_zeta.tcc \ - /usr/include/c++/11.2.0/bits/valarray_array.h \ - /usr/include/c++/11.2.0/bits/valarray_array.tcc \ - /usr/include/c++/11.2.0/bits/valarray_before.h \ - /usr/include/c++/11.2.0/bits/slice_array.h \ - /usr/include/c++/11.2.0/bits/valarray_after.h \ - /usr/include/c++/11.2.0/bits/gslice.h \ - /usr/include/c++/11.2.0/bits/gslice_array.h \ - /usr/include/c++/11.2.0/bits/mask_array.h \ - /usr/include/c++/11.2.0/bits/indirect_array.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufloader.h \ - /usr/include/gdkmm-3.0/gdkmm/drawingcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/frameclock.h \ - /usr/include/gdkmm-3.0/gdkmm/frametimings.h \ - /usr/include/gdkmm-3.0/gdkmm/glcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/displaymanager.h \ - /usr/include/gdkmm-3.0/gdkmm/devicemanager.h \ - /usr/include/gdkmm-3.0/gdkmm/seat.h \ - /usr/include/gdkmm-3.0/gdkmm/monitor.h \ - /usr/include/gdkmm-3.0/gdkmm/general.h \ - /usr/include/gtkmm-3.0/gtkmm/toggleaction.h \ - /usr/include/gtkmm-3.0/gtkmm/action.h \ - /usr/lib/gtkmm-3.0/include/gtkmmconfig.h \ - /usr/include/gtkmm-3.0/gtkmm/widget.h \ - /usr/include/pangomm-1.4/pangomm/context.h \ - /usr/include/pangomm-1.4/pangomm/fontdescription.h \ - /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ - /usr/include/pangomm-1.4/pangomm/fontset.h \ - /usr/include/pangomm-1.4/pangomm/language.h \ - /usr/include/pangomm-1.4/pangomm/font.h \ - /usr/include/pangomm-1.4/pangomm/rectangle.h \ - /usr/include/pangomm-1.4/pangomm/glyph.h \ - /usr/include/pangomm-1.4/pangomm/coverage.h \ - /usr/include/pangomm-1.4/pangomm/fontmap.h \ - /usr/include/pangomm-1.4/pangomm/fontfamily.h \ - /usr/include/pangomm-1.4/pangomm/fontface.h \ - /usr/include/pangomm-1.4/pangomm/item.h \ - /usr/include/pangomm-1.4/pangomm/attributes.h \ - /usr/include/pangomm-1.4/pangomm/color.h \ - /usr/include/pangomm-1.4/pangomm/attrlist.h \ - /usr/include/pangomm-1.4/pangomm/attriter.h \ - /usr/include/pangomm-1.4/pangomm/types.h \ - /usr/include/pangomm-1.4/pangomm/layout.h \ - /usr/include/pangomm-1.4/pangomm/tabarray.h \ - /usr/include/pangomm-1.4/pangomm/layoutline.h \ - /usr/include/pangomm-1.4/pangomm/layoutiter.h \ - /usr/include/pangomm-1.4/pangomm/layoutrun.h \ - /usr/include/atkmm-1.6/atkmm/object.h \ - /usr/include/atkmm-1.6/atkmm/component.h \ - /usr/lib/atkmm-1.6/include/atkmmconfig.h \ - /usr/include/atkmm-1.6/atkmm/relation.h \ - /usr/include/atkmm-1.6/atkmm/implementor.h \ - /usr/include/gtkmm-3.0/gtkmm/object.h \ - /usr/include/gtkmm-3.0/gtkmm/base.h \ - /usr/include/gtkmm-3.0/gtkmm/buildable.h \ - /usr/include/gtkmm-3.0/gtkmm/enums.h \ - /usr/include/gtk-3.0/gtk/gtk.h \ - /usr/include/gtk-3.0/gtk/gtkaboutdialog.h \ - /usr/include/gtk-3.0/gtk/gtkdialog.h \ - /usr/include/gtk-3.0/gtk/gtkwindow.h \ - /usr/include/gtk-3.0/gtk/gtkapplication.h \ - /usr/include/gtk-3.0/gtk/gtkwidget.h \ - /usr/include/gtk-3.0/gtk/gtkaccelgroup.h \ - /usr/include/gtk-3.0/gtk/gtkenums.h \ - /usr/include/gtk-3.0/gtk/gtkborder.h \ - /usr/include/gtk-3.0/gtk/gtktypes.h \ - /usr/include/atk-1.0/atk/atk.h \ - /usr/include/atk-1.0/atk/atkobject.h \ - /usr/include/atk-1.0/atk/atkversion.h \ - /usr/include/atk-1.0/atk/atkstate.h \ - /usr/include/atk-1.0/atk/atkrelationtype.h \ - /usr/include/atk-1.0/atk/atkaction.h \ - /usr/include/atk-1.0/atk/atkcomponent.h \ - /usr/include/atk-1.0/atk/atkutil.h \ - /usr/include/atk-1.0/atk/atkdocument.h \ - /usr/include/atk-1.0/atk/atkeditabletext.h \ - /usr/include/atk-1.0/atk/atktext.h \ - /usr/include/atk-1.0/atk/atk-enum-types.h \ - /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ - /usr/include/atk-1.0/atk/atkhyperlink.h \ - /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ - /usr/include/atk-1.0/atk/atkhypertext.h \ - /usr/include/atk-1.0/atk/atkimage.h \ - /usr/include/atk-1.0/atk/atknoopobject.h \ - /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkplug.h \ - /usr/include/atk-1.0/atk/atkrange.h \ - /usr/include/atk-1.0/atk/atkregistry.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkrelation.h \ - /usr/include/atk-1.0/atk/atkrelationset.h \ - /usr/include/atk-1.0/atk/atkselection.h \ - /usr/include/atk-1.0/atk/atksocket.h \ - /usr/include/atk-1.0/atk/atkstateset.h \ - /usr/include/atk-1.0/atk/atkstreamablecontent.h \ - /usr/include/atk-1.0/atk/atktable.h \ - /usr/include/atk-1.0/atk/atktablecell.h \ - /usr/include/atk-1.0/atk/atkmisc.h \ - /usr/include/atk-1.0/atk/atkvalue.h \ - /usr/include/atk-1.0/atk/atkwindow.h \ - /usr/include/atk-1.0/atk/atk-autocleanups.h \ - /usr/include/gtk-3.0/gtk/gtkbin.h \ - /usr/include/gtk-3.0/gtk/gtkcontainer.h \ - /usr/include/gtk-3.0/gtk/gtkaccellabel.h \ - /usr/include/gtk-3.0/gtk/gtklabel.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h \ - /usr/include/gtk-3.0/gtk/gtkmenu.h \ - /usr/include/gtk-3.0/gtk/gtkmenushell.h \ - /usr/include/gtk-3.0/gtk/gtkaccelmap.h \ - /usr/include/gtk-3.0/gtk/gtkaccessible.h \ - /usr/include/gtk-3.0/gtk/gtkactionable.h \ - /usr/include/gtk-3.0/gtk/gtkactionbar.h \ - /usr/include/gtk-3.0/gtk/gtkadjustment.h \ - /usr/include/gtk-3.0/gtk/gtkappchooser.h \ - /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkbox.h \ - /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h \ - /usr/include/gtk-3.0/gtk/gtkcombobox.h \ - /usr/include/gtk-3.0/gtk/gtktreemodel.h \ - /usr/include/gtk-3.0/gtk/gtktreeview.h \ - /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderer.h \ - /usr/include/gtk-3.0/gtk/gtkcelleditable.h \ - /usr/include/gtk-3.0/gtk/gtktreesortable.h \ - /usr/include/gtk-3.0/gtk/gtkcellarea.h \ - /usr/include/gtk-3.0/gtk/gtkdnd.h \ - /usr/include/gtk-3.0/gtk/gtkselection.h \ - /usr/include/gtk-3.0/gtk/gtktextiter.h \ - /usr/include/gtk-3.0/gtk/gtktextattributes.h \ - /usr/include/gtk-3.0/gtk/gtktextchild.h \ - /usr/include/gtk-3.0/gtk/gtktexttag.h \ - /usr/include/gtk-3.0/gtk/gtkentry.h \ - /usr/include/gtk-3.0/gtk/gtkeditable.h \ - /usr/include/gtk-3.0/gtk/gtkimcontext.h \ - /usr/include/gtk-3.0/gtk/gtkentrybuffer.h \ - /usr/include/gtk-3.0/gtk/gtkentrycompletion.h \ - /usr/include/gtk-3.0/gtk/gtkliststore.h \ - /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h \ - /usr/include/gtk-3.0/gtk/gtkimage.h \ - /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutswindow.h \ - /usr/include/gtk-3.0/gtk/gtkaspectframe.h \ - /usr/include/gtk-3.0/gtk/gtkframe.h \ - /usr/include/gtk-3.0/gtk/gtkassistant.h \ - /usr/include/gtk-3.0/gtk/gtkbbox.h \ - /usr/include/gtk-3.0/gtk/gtkbindings.h \ - /usr/include/gtk-3.0/gtk/gtkbuildable.h \ - /usr/include/gtk-3.0/gtk/gtkbuilder.h \ - /usr/include/gtk-3.0/gtk/gtkbutton.h \ - /usr/include/gtk-3.0/gtk/gtkcalendar.h \ - /usr/include/gtk-3.0/gtk/gtkcellareabox.h \ - /usr/include/gtk-3.0/gtk/gtkcellareacontext.h \ - /usr/include/gtk-3.0/gtk/gtkcelllayout.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h \ - /usr/include/gtk-3.0/gtk/gtkcellview.h \ - /usr/include/gtk-3.0/gtk/gtkcheckbutton.h \ - /usr/include/gtk-3.0/gtk/gtktogglebutton.h \ - /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkmenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkclipboard.h \ - /usr/include/gtk-3.0/gtk/gtkcolorbutton.h \ - /usr/include/gtk-3.0/gtk/gtkcolorchooser.h \ - /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkcolorutils.h \ - /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h \ - /usr/include/gtk-3.0/gtk/gtkcssprovider.h \ - /usr/include/gtk-3.0/gtk/gtkcsssection.h \ - /usr/include/gtk-3.0/gtk/gtkdebug.h \ - /usr/include/gtk-3.0/gtk/gtkdragdest.h \ - /usr/include/gtk-3.0/gtk/gtkdragsource.h \ - /usr/include/gtk-3.0/gtk/gtkdrawingarea.h \ - /usr/include/gtk-3.0/gtk/gtkeventbox.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontroller.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h \ - /usr/include/gtk-3.0/gtk/gtkexpander.h \ - /usr/include/gtk-3.0/gtk/gtkfixed.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooser.h \ - /usr/include/gtk-3.0/gtk/gtkfilefilter.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkfilechoosernative.h \ - /usr/include/gtk-3.0/gtk/gtknativedialog.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkflowbox.h \ - /usr/include/gtk-3.0/gtk/gtkfontbutton.h \ - /usr/include/gtk-3.0/gtk/gtkfontchooser.h \ - /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkgesture.h \ - /usr/include/gtk-3.0/gtk/gtkgesturedrag.h \ - /usr/include/gtk-3.0/gtk/gtkgesturesingle.h \ - /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h \ - /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h \ - /usr/include/gtk-3.0/gtk/gtkgesturepan.h \ - /usr/include/gtk-3.0/gtk/gtkgesturerotate.h \ - /usr/include/gtk-3.0/gtk/gtkgesturestylus.h \ - /usr/include/gtk-3.0/gtk/gtkgestureswipe.h \ - /usr/include/gtk-3.0/gtk/gtkgesturezoom.h \ - /usr/include/gtk-3.0/gtk/gtkglarea.h \ - /usr/include/gtk-3.0/gtk/gtkgrid.h \ - /usr/include/gtk-3.0/gtk/gtkheaderbar.h \ - /usr/include/gtk-3.0/gtk/gtkicontheme.h \ - /usr/include/gtk-3.0/gtk/gtkstylecontext.h \ - /usr/include/gtk-3.0/gtk/gtkstyleprovider.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h \ - /usr/include/gtk-3.0/gtk/gtkiconview.h \ - /usr/include/gtk-3.0/gtk/gtktooltip.h \ - /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h \ - /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h \ - /usr/include/gtk-3.0/gtk/gtkimmulticontext.h \ - /usr/include/gtk-3.0/gtk/gtkinfobar.h \ - /usr/include/gtk-3.0/gtk/gtkinvisible.h \ - /usr/include/gtk-3.0/gtk/gtklayout.h \ - /usr/include/gtk-3.0/gtk/gtklevelbar.h \ - /usr/include/gtk-3.0/gtk/gtklinkbutton.h \ - /usr/include/gtk-3.0/gtk/gtklistbox.h \ - /usr/include/gtk-3.0/gtk/gtklockbutton.h \ - /usr/include/gtk-3.0/gtk/gtkmain.h \ - /usr/include/gtk-3.0/gtk/gtkmenubar.h \ - /usr/include/gtk-3.0/gtk/gtkmenubutton.h \ - /usr/include/gtk-3.0/gtk/gtkpopover.h \ - /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtktoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtktoolitem.h \ - /usr/include/gtk-3.0/gtk/gtksizegroup.h \ - /usr/include/gtk-3.0/gtk/gtkmessagedialog.h \ - /usr/include/gtk-3.0/gtk/gtkmodelbutton.h \ - /usr/include/gtk-3.0/gtk/gtkmodules.h \ - /usr/include/gtk-3.0/gtk/gtkmountoperation.h \ - /usr/include/gtk-3.0/gtk/gtknotebook.h \ - /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h \ - /usr/include/gtk-3.0/gtk/gtkorientable.h \ - /usr/include/gtk-3.0/gtk/gtkoverlay.h \ - /usr/include/gtk-3.0/gtk/gtkpadcontroller.h \ - /usr/include/gtk-3.0/gtk/gtkpagesetup.h \ - /usr/include/gtk-3.0/gtk/gtkpapersize.h \ - /usr/include/gtk-3.0/gtk/gtkpaned.h \ - /usr/include/gtk-3.0/gtk/gtkplacessidebar.h \ - /usr/include/gtk-3.0/gtk/gtkpopovermenu.h \ - /usr/include/gtk-3.0/gtk/gtkprintcontext.h \ - /usr/include/gtk-3.0/gtk/gtkprintoperation.h \ - /usr/include/gtk-3.0/gtk/gtkprintsettings.h \ - /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h \ - /usr/include/gtk-3.0/gtk/gtkprogressbar.h \ - /usr/include/gtk-3.0/gtk/gtkradiobutton.h \ - /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtkrange.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchooser.h \ - /usr/include/gtk-3.0/gtk/gtkrecentmanager.h \ - /usr/include/gtk-3.0/gtk/gtkrecentfilter.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkrender.h \ - /usr/include/gtk-3.0/gtk/gtkrevealer.h \ - /usr/include/gtk-3.0/gtk/gtkscale.h \ - /usr/include/gtk-3.0/gtk/gtkscalebutton.h \ - /usr/include/gtk-3.0/gtk/gtkscrollable.h \ - /usr/include/gtk-3.0/gtk/gtkscrollbar.h \ - /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h \ - /usr/include/gtk-3.0/gtk/gtksearchbar.h \ - /usr/include/gtk-3.0/gtk/gtksearchentry.h \ - /usr/include/gtk-3.0/gtk/gtkseparator.h \ - /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h \ - /usr/include/gtk-3.0/gtk/gtksettings.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutlabel.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutssection.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h \ - /usr/include/gtk-3.0/gtk/gtkshow.h \ - /usr/include/gtk-3.0/gtk/gtkstacksidebar.h \ - /usr/include/gtk-3.0/gtk/gtkstack.h \ - /usr/include/gtk-3.0/gtk/gtksizerequest.h \ - /usr/include/gtk-3.0/gtk/gtkspinbutton.h \ - /usr/include/gtk-3.0/gtk/gtkspinner.h \ - /usr/include/gtk-3.0/gtk/gtkstackswitcher.h \ - /usr/include/gtk-3.0/gtk/gtkstatusbar.h \ - /usr/include/gtk-3.0/gtk/gtkswitch.h \ - /usr/include/gtk-3.0/gtk/gtktextbuffer.h \ - /usr/include/gtk-3.0/gtk/gtktexttagtable.h \ - /usr/include/gtk-3.0/gtk/gtktextmark.h \ - /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h \ - /usr/include/gtk-3.0/gtk/gtktextview.h \ - /usr/include/gtk-3.0/gtk/gtktoolbar.h \ - /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h \ - /usr/include/gtk-3.0/gtk/gtktoolpalette.h \ - /usr/include/gtk-3.0/gtk/gtktoolshell.h \ - /usr/include/gtk-3.0/gtk/gtktestutils.h \ - /usr/include/gtk-3.0/gtk/gtktreednd.h \ - /usr/include/gtk-3.0/gtk/gtktreemodelsort.h \ - /usr/include/gtk-3.0/gtk/gtktreeselection.h \ - /usr/include/gtk-3.0/gtk/gtktreestore.h \ - /usr/include/gtk-3.0/gtk/gtktypebuiltins.h \ - /usr/include/gtk-3.0/gtk/gtkversion.h \ - /usr/include/gtk-3.0/gtk/gtkviewport.h \ - /usr/include/gtk-3.0/gtk/gtkvolumebutton.h \ - /usr/include/gtk-3.0/gtk/gtkwidgetpath.h \ - /usr/include/gtk-3.0/gtk/gtkwindowgroup.h \ - /usr/include/gtk-3.0/gtk/gtkwindow.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtktable.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h \ - /usr/include/gtk-3.0/gtk/gtk-autocleanups.h \ - /usr/include/gtkmm-3.0/gtkmm/targetlist.h \ - /usr/include/gtkmm-3.0/gtkmm/targetentry.h \ - /usr/include/gtkmm-3.0/gtkmm/clipboard.h \ - /usr/include/gtkmm-3.0/gtkmm/selectiondata.h \ - /usr/include/gtkmm-3.0/gtkmm/requisition.h \ - /usr/include/gtkmm-3.0/gtkmm/stylecontext.h \ - /usr/include/gtkmm-3.0/gtkmm/styleprovider.h \ - /usr/include/gtkmm-3.0/gtkmm/border.h \ - /usr/include/gtkmm-3.0/gtkmm/iconsource.h \ - /usr/include/gtkmm-3.0/gtkmm/iconset.h \ - /usr/include/gtkmm-3.0/gtkmm/stockid.h \ - /usr/include/gtkmm-3.0/gtkmm/widgetpath.h \ - /usr/include/gtkmm-3.0/gtkmm/accelgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/radioaction.h \ - /usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h \ - /usr/include/gtkmm-3.0/gtkmm/aboutdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/dialog.h \ - /usr/include/gtkmm-3.0/gtkmm/window.h \ - /usr/include/gtkmm-3.0/gtkmm/bin.h \ - /usr/include/gtkmm-3.0/gtkmm/container.h \ - /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h \ - /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h \ - /usr/include/gtkmm-3.0/gtkmm/application.h \ - /usr/include/gtkmm-3.0/gtkmm/actiongroup.h \ - /usr/include/gtkmm-3.0/gtkmm/accelkey.h \ - /usr/include/gtkmm-3.0/gtkmm/windowgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/box.h \ - /usr/include/gtkmm-3.0/gtkmm/orientable.h \ - /usr/include/gtkmm-3.0/gtkmm/hvbox.h \ - /usr/include/gtkmm-3.0/gtkmm/button.h \ - /usr/include/gtkmm-3.0/gtkmm/activatable.h \ - /usr/include/gtkmm-3.0/gtkmm/buttonbox.h \ - /usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h \ - /usr/include/gtkmm-3.0/gtkmm/headerbar.h \ - /usr/include/gtkmm-3.0/gtkmm/accelmap.h \ - /usr/include/gtkmm-3.0/gtkmm/actionable.h \ - /usr/include/gtkmm-3.0/gtkmm/actionbar.h \ - /usr/include/gtkmm-3.0/gtkmm/adjustment.h \ - /usr/include/gtkmm-3.0/gtkmm/alignment.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/combobox.h \ - /usr/include/gtkmm-3.0/gtkmm/celllayout.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderer.h \ - /usr/include/gtkmm-3.0/gtkmm/celleditable.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodel.h \ - /usr/include/gtkmm-3.0/gtkmm/treeiter.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h \ - /usr/include/gtkmm-3.0/gtkmm/cellarea.h \ - /usr/include/gtkmm-3.0/gtkmm/cellareacontext.h \ - /usr/include/gtkmm-3.0/gtkmm/treeview.h \ - /usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h \ - /usr/include/gtkmm-3.0/gtkmm/treeselection.h \ - /usr/include/gtkmm-3.0/gtkmm/treepath.h \ - /usr/include/gtkmm-3.0/gtkmm/scrollable.h \ - /usr/include/gtkmm-3.0/gtkmm/entry.h \ - /usr/include/gtkmm-3.0/gtkmm/editable.h \ - /usr/include/gtkmm-3.0/gtkmm/menu.h \ - /usr/include/gtkmm-3.0/gtkmm/menushell.h \ - /usr/include/gtkmm-3.0/gtkmm/menuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/accellabel.h \ - /usr/include/gtkmm-3.0/gtkmm/label.h \ - /usr/include/gtkmm-3.0/gtkmm/misc.h \ - /usr/include/gtkmm-3.0/gtkmm/entrycompletion.h \ - /usr/include/gtkmm-3.0/gtkmm/image.h \ - /usr/include/gtkmm-3.0/gtkmm/entrybuffer.h \ - /usr/include/gtkmm-3.0/gtkmm/tooltip.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/applicationwindow.h \ - /usr/include/gtkmm-3.0/gtkmm/arrow.h \ - /usr/include/gtkmm-3.0/gtkmm/aspectframe.h \ - /usr/include/gtkmm-3.0/gtkmm/frame.h \ - /usr/include/gtkmm-3.0/gtkmm/assistant.h \ - /usr/include/gtkmm-3.0/gtkmm/builder.h \ - /usr/include/gtkmm-3.0/gtkmm/cellareabox.h \ - /usr/include/gtkmm-3.0/gtkmm/cellview.h \ - /usr/include/gtkmm-3.0/gtkmm/checkbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/togglebutton.h \ - /usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h \ - /usr/include/gtkmm-3.0/gtkmm/colorbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/colorchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/colorselection.h \ - /usr/include/gtkmm-3.0/gtkmm/comboboxtext.h \ - /usr/include/gtkmm-3.0/gtkmm/cssprovider.h \ - /usr/include/gtkmm-3.0/gtkmm/csssection.h \ - /usr/include/gtkmm-3.0/gtkmm/drawingarea.h \ - /usr/include/gtkmm-3.0/gtkmm/expander.h \ - /usr/include/gtkmm-3.0/gtkmm/eventbox.h \ - /usr/include/gtkmm-3.0/gtkmm/eventcontroller.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooser.h \ - /usr/include/gtkmm-3.0/gtkmm/filefilter.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/filechoosernative.h \ - /usr/include/gtkmm-3.0/gtkmm/nativedialog.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/fixed.h \ - /usr/include/gtkmm-3.0/gtkmm/flowbox.h \ - /usr/include/gtkmm-3.0/gtkmm/flowboxchild.h \ - /usr/include/gtkmm-3.0/gtkmm/fontbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/fontchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/fontselection.h \ - /usr/include/gtkmm-3.0/gtkmm/gesture.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturedrag.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturesingle.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturepan.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturerotate.h \ - /usr/include/gtkmm-3.0/gtkmm/gestureswipe.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturezoom.h \ - /usr/include/gtkmm-3.0/gtkmm/glarea.h \ - /usr/include/gtkmm-3.0/gtkmm/grid.h \ - /usr/include/gtkmm-3.0/gtkmm/handlebox.h \ - /usr/include/gtkmm-3.0/gtkmm/hvpaned.h \ - /usr/include/gtkmm-3.0/gtkmm/paned.h \ - /usr/include/gtkmm-3.0/gtkmm/hvscale.h \ - /usr/include/gtkmm-3.0/gtkmm/scale.h \ - /usr/include/gtkmm-3.0/gtkmm/range.h \ - /usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h \ - /usr/include/gtkmm-3.0/gtkmm/scrollbar.h \ - /usr/include/gtkmm-3.0/gtkmm/hvseparator.h \ - /usr/include/gtkmm-3.0/gtkmm/separator.h \ - /usr/include/gtkmm-3.0/gtkmm/iconfactory.h \ - /usr/include/gtkmm-3.0/gtkmm/icontheme.h \ - /usr/include/gtkmm-3.0/gtkmm/iconinfo.h \ - /usr/include/gtkmm-3.0/gtkmm/iconview.h \ - /usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/infobar.h \ - /usr/include/gtkmm-3.0/gtkmm/calendar.h \ - /usr/include/gtkmm-3.0/gtkmm/invisible.h \ - /usr/include/gtkmm-3.0/gtkmm/layout.h \ - /usr/include/gtkmm-3.0/gtkmm/levelbar.h \ - /usr/include/gtkmm-3.0/gtkmm/listbox.h \ - /usr/include/gtkmm-3.0/gtkmm/listboxrow.h \ - /usr/include/gtkmm-3.0/gtkmm/liststore.h \ - /usr/include/gtkmm-3.0/gtkmm/treesortable.h \ - /usr/include/gtkmm-3.0/gtkmm/treedragdest.h \ - /usr/include/gtkmm-3.0/gtkmm/treedragsource.h \ - /usr/include/gtkmm-3.0/gtkmm/listviewtext.h \ - /usr/include/gtkmm-3.0/gtkmm/linkbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/main.h \ - /usr/include/gtkmm-3.0/gtkmm/menubar.h \ - /usr/include/gtkmm-3.0/gtkmm/menubutton.h \ - /usr/include/gtkmm-3.0/gtkmm/popover.h \ - /usr/include/gtkmm-3.0/gtkmm/messagedialog.h \ - /usr/include/gtkmm-3.0/gtkmm/modelbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/notebook.h \ - /usr/include/gtkmm-3.0/gtkmm/numerableicon.h \ - /usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h \ - /usr/include/gtkmm-3.0/gtkmm/overlay.h \ - /usr/include/gtkmm-3.0/gtkmm/pagesetup.h \ - /usr/include/gtkmm-3.0/gtkmm/papersize.h \ - /usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/printsettings.h \ - /usr/include/gtkmm-3.0/gtkmm/placessidebar.h \ - /usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h \ - /usr/include/gtkmm-3.0/gtkmm/popovermenu.h \ - /usr/include/gtkmm-3.0/gtkmm/printcontext.h \ - /usr/include/gtkmm-3.0/gtkmm/printer.h \ - /usr/include/gtkmm-3.0/gtkmm/printjob.h \ - /usr/include/gtkmm-3.0/gtkmm/printoperation.h \ - /usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h \ - /usr/include/gtkmm-3.0/gtkmm/printunixdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/progressbar.h \ - /usr/include/gtkmm-3.0/gtkmm/radiobutton.h \ - /usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/toolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/toolitem.h \ - /usr/include/gtkmm-3.0/gtkmm/sizegroup.h \ - /usr/include/gtkmm-3.0/gtkmm/recentaction.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/recentinfo.h \ - /usr/include/gtkmm-3.0/gtkmm/recentfilter.h \ - /usr/include/gtkmm-3.0/gtkmm/recentmanager.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/revealer.h \ - /usr/include/gtkmm-3.0/gtkmm/scalebutton.h \ - /usr/include/gtkmm-3.0/gtkmm/searchbar.h \ - /usr/include/gtkmm-3.0/gtkmm/searchentry.h \ - /usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h \ - /usr/include/gtkmm-3.0/gtkmm/settings.h \ - /usr/include/gtkmm-3.0/gtkmm/toolbar.h \ - /usr/include/gtkmm-3.0/gtkmm/toolshell.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutssection.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h \ - /usr/include/gtkmm-3.0/gtkmm/spinbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/spinner.h \ - /usr/include/gtkmm-3.0/gtkmm/stack.h \ - /usr/include/gtkmm-3.0/gtkmm/stacksidebar.h \ - /usr/include/gtkmm-3.0/gtkmm/stackswitcher.h \ - /usr/include/gtkmm-3.0/gtkmm/statusbar.h \ - /usr/include/gtkmm-3.0/gtkmm/statusicon.h \ - /usr/include/gtkmm-3.0/gtkmm/stock.h \ - /usr/include/gtkmm-3.0/gtkmm/stockitem.h \ - /usr/include/gtkmm-3.0/gtkmm/styleproperty.h \ - /usr/include/gtkmm-3.0/gtkmm/switch.h \ - /usr/include/gtkmm-3.0/gtkmm/table.h \ - /usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/textbuffer.h \ - /usr/include/gtkmm-3.0/gtkmm/texttagtable.h \ - /usr/include/gtkmm-3.0/gtkmm/texttag.h \ - /usr/include/gtkmm-3.0/gtkmm/textchildanchor.h \ - /usr/include/gtkmm-3.0/gtkmm/textmark.h \ - /usr/include/gtkmm-3.0/gtkmm/textiter.h \ - /usr/include/gtkmm-3.0/gtkmm/textattributes.h \ - /usr/include/gtkmm-3.0/gtkmm/textview.h \ - /usr/include/gtkmm-3.0/gtkmm/toolpalette.h \ - /usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodelsort.h \ - /usr/include/gtkmm-3.0/gtkmm/treerowreference.h \ - /usr/include/gtkmm-3.0/gtkmm/treestore.h \ - /usr/include/gtkmm-3.0/gtkmm/uimanager.h \ - /usr/include/gtkmm-3.0/gtkmm/viewport.h \ - /usr/include/gtkmm-3.0/gtkmm/volumebutton.h \ - /usr/include/c++/11.2.0/fstream \ - /usr/include/c++/11.2.0/bits/codecvt.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h \ - /usr/include/c++/11.2.0/bits/fstream.tcc \ - /usr/include/libintl.h \ - /usr/include/gtkmm-3.0/gtkmm/plug.h \ - /usr/include/gtk-3.0/gtk/gtkx.h \ - /usr/include/gtk-3.0/gtk/gtksocket.h \ - /usr/include/gtk-3.0/gdk/gdkx.h \ - /usr/include/X11/Xlib.h \ - /usr/include/X11/X.h \ - /usr/include/X11/Xfuncproto.h \ - /usr/include/X11/Xosdefs.h \ - /usr/include/X11/Xutil.h \ - /usr/include/X11/keysym.h \ - /usr/include/X11/keysymdef.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11device.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11display.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11property.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11window.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h \ - /usr/include/gtk-3.0/gtk/gtkplug.h \ - /usr/include/gtk-3.0/gtk/gtkx-autocleanups.h \ - /usr/include/pwd.h \ - /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h \ - /usr/include/c++/11.2.0/filesystem \ - /usr/include/c++/11.2.0/bits/fs_fwd.h \ - /usr/include/c++/11.2.0/bits/fs_path.h \ - /usr/include/c++/11.2.0/locale \ - /usr/include/c++/11.2.0/bits/locale_facets_nonio.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h \ - /usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc \ - /usr/include/c++/11.2.0/bits/locale_conv.h \ - /usr/include/c++/11.2.0/iomanip \ - /usr/include/c++/11.2.0/bits/quoted_string.h \ - /usr/include/c++/11.2.0/codecvt \ - /usr/include/c++/11.2.0/bits/fs_dir.h \ - /usr/include/c++/11.2.0/bits/fs_ops.h - -CMakeFiles/ublexec.dir/ublexec.cc.o: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc \ - /usr/include/stdc-predef.h \ - /usr/include/c++/11.2.0/cstddef \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \ - /usr/include/features.h \ - /usr/include/features-time64.h \ - /usr/include/bits/wordsize.h \ - /usr/include/bits/timesize.h \ - /usr/include/sys/cdefs.h \ - /usr/include/bits/long-double.h \ - /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \ - /usr/include/c++/11.2.0/pstl/pstl_config.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \ - /usr/include/c++/11.2.0/cstdlib \ - /usr/include/stdlib.h \ - /usr/include/bits/libc-header-start.h \ - /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h \ - /usr/include/bits/floatn.h \ - /usr/include/bits/floatn-common.h \ - /usr/include/bits/types/locale_t.h \ - /usr/include/bits/types/__locale_t.h \ - /usr/include/sys/types.h \ - /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h \ - /usr/include/bits/time64.h \ - /usr/include/bits/types/clock_t.h \ - /usr/include/bits/types/clockid_t.h \ - /usr/include/bits/types/time_t.h \ - /usr/include/bits/types/timer_t.h \ - /usr/include/bits/stdint-intn.h \ - /usr/include/endian.h \ - /usr/include/bits/endian.h \ - /usr/include/bits/endianness.h \ - /usr/include/bits/byteswap.h \ - /usr/include/bits/uintn-identity.h \ - /usr/include/sys/select.h \ - /usr/include/bits/select.h \ - /usr/include/bits/types/sigset_t.h \ - /usr/include/bits/types/__sigset_t.h \ - /usr/include/bits/types/struct_timeval.h \ - /usr/include/bits/types/struct_timespec.h \ - /usr/include/bits/pthreadtypes.h \ - /usr/include/bits/thread-shared-types.h \ - /usr/include/bits/pthreadtypes-arch.h \ - /usr/include/bits/atomic_wide_counter.h \ - /usr/include/bits/struct_mutex.h \ - /usr/include/bits/struct_rwlock.h \ - /usr/include/alloca.h \ - /usr/include/bits/stdlib-bsearch.h \ - /usr/include/bits/stdlib-float.h \ - /usr/include/c++/11.2.0/bits/std_abs.h \ - /usr/include/c++/11.2.0/iostream \ - /usr/include/c++/11.2.0/ostream \ - /usr/include/c++/11.2.0/ios \ - /usr/include/c++/11.2.0/iosfwd \ - /usr/include/c++/11.2.0/bits/stringfwd.h \ - /usr/include/c++/11.2.0/bits/memoryfwd.h \ - /usr/include/c++/11.2.0/bits/postypes.h \ - /usr/include/c++/11.2.0/cwchar \ - /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \ - /usr/include/bits/wchar.h \ - /usr/include/bits/types/wint_t.h \ - /usr/include/bits/types/mbstate_t.h \ - /usr/include/bits/types/__mbstate_t.h \ - /usr/include/bits/types/__FILE.h \ - /usr/include/bits/types/FILE.h \ - /usr/include/c++/11.2.0/exception \ - /usr/include/c++/11.2.0/bits/exception.h \ - /usr/include/c++/11.2.0/bits/exception_ptr.h \ - /usr/include/c++/11.2.0/bits/exception_defines.h \ - /usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \ - /usr/include/c++/11.2.0/typeinfo \ - /usr/include/c++/11.2.0/bits/hash_bytes.h \ - /usr/include/c++/11.2.0/new \ - /usr/include/c++/11.2.0/bits/nested_exception.h \ - /usr/include/c++/11.2.0/bits/move.h \ - /usr/include/c++/11.2.0/type_traits \ - /usr/include/c++/11.2.0/bits/char_traits.h \ - /usr/include/c++/11.2.0/bits/stl_algobase.h \ - /usr/include/c++/11.2.0/bits/functexcept.h \ - /usr/include/c++/11.2.0/bits/cpp_type_traits.h \ - /usr/include/c++/11.2.0/ext/type_traits.h \ - /usr/include/c++/11.2.0/ext/numeric_traits.h \ - /usr/include/c++/11.2.0/bits/stl_pair.h \ - /usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \ - /usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/11.2.0/bits/concept_check.h \ - /usr/include/c++/11.2.0/debug/assertions.h \ - /usr/include/c++/11.2.0/bits/stl_iterator.h \ - /usr/include/c++/11.2.0/bits/ptr_traits.h \ - /usr/include/c++/11.2.0/debug/debug.h \ - /usr/include/c++/11.2.0/bits/predefined_ops.h \ - /usr/include/c++/11.2.0/cstdint \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \ - /usr/include/stdint.h \ - /usr/include/bits/stdint-uintn.h \ - /usr/include/c++/11.2.0/bits/localefwd.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \ - /usr/include/c++/11.2.0/clocale \ - /usr/include/locale.h \ - /usr/include/bits/locale.h \ - /usr/include/c++/11.2.0/cctype \ - /usr/include/ctype.h \ - /usr/include/c++/11.2.0/bits/ios_base.h \ - /usr/include/c++/11.2.0/ext/atomicity.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \ - /usr/include/pthread.h \ - /usr/include/sched.h \ - /usr/include/bits/sched.h \ - /usr/include/bits/types/struct_sched_param.h \ - /usr/include/bits/cpu-set.h \ - /usr/include/time.h \ - /usr/include/bits/time.h \ - /usr/include/bits/timex.h \ - /usr/include/bits/types/struct_tm.h \ - /usr/include/bits/types/struct_itimerspec.h \ - /usr/include/bits/setjmp.h \ - /usr/include/bits/types/struct___jmp_buf_tag.h \ - /usr/include/bits/pthread_stack_min-dynamic.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \ - /usr/include/sys/single_threaded.h \ - /usr/include/c++/11.2.0/bits/locale_classes.h \ - /usr/include/c++/11.2.0/string \ - /usr/include/c++/11.2.0/bits/allocator.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \ - /usr/include/c++/11.2.0/ext/new_allocator.h \ - /usr/include/c++/11.2.0/bits/ostream_insert.h \ - /usr/include/c++/11.2.0/bits/cxxabi_forced.h \ - /usr/include/c++/11.2.0/bits/stl_function.h \ - /usr/include/c++/11.2.0/backward/binders.h \ - /usr/include/c++/11.2.0/bits/range_access.h \ - /usr/include/c++/11.2.0/initializer_list \ - /usr/include/c++/11.2.0/bits/basic_string.h \ - /usr/include/c++/11.2.0/ext/alloc_traits.h \ - /usr/include/c++/11.2.0/bits/alloc_traits.h \ - /usr/include/c++/11.2.0/bits/stl_construct.h \ - /usr/include/c++/11.2.0/string_view \ - /usr/include/c++/11.2.0/bits/functional_hash.h \ - /usr/include/c++/11.2.0/bits/string_view.tcc \ - /usr/include/c++/11.2.0/ext/string_conversions.h \ - /usr/include/c++/11.2.0/cstdio \ - /usr/include/stdio.h \ - /usr/include/bits/types/__fpos_t.h \ - /usr/include/bits/types/__fpos64_t.h \ - /usr/include/bits/types/struct_FILE.h \ - /usr/include/bits/types/cookie_io_functions_t.h \ - /usr/include/bits/stdio_lim.h \ - /usr/include/bits/stdio.h \ - /usr/include/c++/11.2.0/cerrno \ - /usr/include/errno.h \ - /usr/include/bits/errno.h \ - /usr/include/linux/errno.h \ - /usr/include/asm/errno.h \ - /usr/include/asm-generic/errno.h \ - /usr/include/asm-generic/errno-base.h \ - /usr/include/bits/types/error_t.h \ - /usr/include/c++/11.2.0/bits/charconv.h \ - /usr/include/c++/11.2.0/bits/basic_string.tcc \ - /usr/include/c++/11.2.0/bits/locale_classes.tcc \ - /usr/include/c++/11.2.0/system_error \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \ - /usr/include/c++/11.2.0/stdexcept \ - /usr/include/c++/11.2.0/streambuf \ - /usr/include/c++/11.2.0/bits/streambuf.tcc \ - /usr/include/c++/11.2.0/bits/basic_ios.h \ - /usr/include/c++/11.2.0/bits/locale_facets.h \ - /usr/include/c++/11.2.0/cwctype \ - /usr/include/wctype.h \ - /usr/include/bits/wctype-wchar.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \ - /usr/include/c++/11.2.0/bits/streambuf_iterator.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \ - /usr/include/c++/11.2.0/bits/locale_facets.tcc \ - /usr/include/c++/11.2.0/bits/basic_ios.tcc \ - /usr/include/c++/11.2.0/bits/ostream.tcc \ - /usr/include/c++/11.2.0/istream \ - /usr/include/c++/11.2.0/bits/istream.tcc \ - /usr/include/c++/11.2.0/memory \ - /usr/include/c++/11.2.0/bits/stl_uninitialized.h \ - /usr/include/c++/11.2.0/bits/stl_tempbuf.h \ - /usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h \ - /usr/include/c++/11.2.0/bits/align.h \ - /usr/include/c++/11.2.0/bit \ - /usr/include/c++/11.2.0/bits/uses_allocator.h \ - /usr/include/c++/11.2.0/bits/unique_ptr.h \ - /usr/include/c++/11.2.0/utility \ - /usr/include/c++/11.2.0/bits/stl_relops.h \ - /usr/include/c++/11.2.0/tuple \ - /usr/include/c++/11.2.0/array \ - /usr/include/c++/11.2.0/bits/invoke.h \ - /usr/include/c++/11.2.0/bits/shared_ptr.h \ - /usr/include/c++/11.2.0/bits/shared_ptr_base.h \ - /usr/include/c++/11.2.0/bits/allocated_ptr.h \ - /usr/include/c++/11.2.0/bits/refwrap.h \ - /usr/include/c++/11.2.0/ext/aligned_buffer.h \ - /usr/include/c++/11.2.0/ext/concurrence.h \ - /usr/include/c++/11.2.0/bits/shared_ptr_atomic.h \ - /usr/include/c++/11.2.0/bits/atomic_base.h \ - /usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h \ - /usr/include/c++/11.2.0/backward/auto_ptr.h \ - /usr/include/c++/11.2.0/pstl/glue_memory_defs.h \ - /usr/include/c++/11.2.0/pstl/execution_defs.h \ - /usr/include/gtkmm-3.0/gtkmm.h \ - /usr/include/glibmm-2.4/glibmm.h \ - /usr/lib/glibmm-2.4/include/glibmmconfig.h \ - /usr/include/glibmm-2.4/glibmm/thread.h \ - /usr/include/glib-2.0/glib.h \ - /usr/include/glib-2.0/glib/galloca.h \ - /usr/include/glib-2.0/glib/gtypes.h \ - /usr/lib/glib-2.0/include/glibconfig.h \ - /usr/include/glib-2.0/glib/gmacros.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h \ - /usr/include/limits.h \ - /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h \ - /usr/include/bits/xopen_lim.h \ - /usr/include/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h \ - /usr/include/glib-2.0/glib/gversionmacros.h \ - /usr/include/string.h \ - /usr/include/strings.h \ - /usr/include/glib-2.0/glib/garray.h \ - /usr/include/glib-2.0/glib/gasyncqueue.h \ - /usr/include/glib-2.0/glib/gthread.h \ - /usr/include/glib-2.0/glib/gatomic.h \ - /usr/include/glib-2.0/glib/glib-typeof.h \ - /usr/include/glib-2.0/glib/gerror.h \ - /usr/include/glib-2.0/glib/gquark.h \ - /usr/include/glib-2.0/glib/gutils.h \ - /usr/include/c++/11.2.0/stdlib.h \ - /usr/include/glib-2.0/glib/gbacktrace.h \ - /usr/include/signal.h \ - /usr/include/bits/signum-generic.h \ - /usr/include/bits/signum-arch.h \ - /usr/include/bits/types/sig_atomic_t.h \ - /usr/include/bits/types/siginfo_t.h \ - /usr/include/bits/types/__sigval_t.h \ - /usr/include/bits/siginfo-arch.h \ - /usr/include/bits/siginfo-consts.h \ - /usr/include/bits/siginfo-consts-arch.h \ - /usr/include/bits/types/sigval_t.h \ - /usr/include/bits/types/sigevent_t.h \ - /usr/include/bits/sigevent-consts.h \ - /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h \ - /usr/include/bits/types/stack_t.h \ - /usr/include/sys/ucontext.h \ - /usr/include/bits/sigstack.h \ - /usr/include/bits/sigstksz.h \ - /usr/include/unistd.h \ - /usr/include/bits/posix_opt.h \ - /usr/include/bits/environments.h \ - /usr/include/bits/confname.h \ - /usr/include/bits/getopt_posix.h \ - /usr/include/bits/getopt_core.h \ - /usr/include/bits/unistd_ext.h \ - /usr/include/linux/close_range.h \ - /usr/include/bits/ss_flags.h \ - /usr/include/bits/types/struct_sigstack.h \ - /usr/include/bits/sigthread.h \ - /usr/include/bits/signal_ext.h \ - /usr/include/glib-2.0/glib/gbase64.h \ - /usr/include/glib-2.0/glib/gbitlock.h \ - /usr/include/glib-2.0/glib/gbookmarkfile.h \ - /usr/include/glib-2.0/glib/gdatetime.h \ - /usr/include/glib-2.0/glib/gtimezone.h \ - /usr/include/glib-2.0/glib/gbytes.h \ - /usr/include/glib-2.0/glib/gcharset.h \ - /usr/include/glib-2.0/glib/gchecksum.h \ - /usr/include/glib-2.0/glib/gconvert.h \ - /usr/include/glib-2.0/glib/gdataset.h \ - /usr/include/glib-2.0/glib/gdate.h \ - /usr/include/glib-2.0/glib/gdir.h \ - /usr/include/dirent.h \ - /usr/include/bits/dirent.h \ - /usr/include/bits/dirent_ext.h \ - /usr/include/glib-2.0/glib/genviron.h \ - /usr/include/glib-2.0/glib/gfileutils.h \ - /usr/include/glib-2.0/glib/ggettext.h \ - /usr/include/glib-2.0/glib/ghash.h \ - /usr/include/glib-2.0/glib/glist.h \ - /usr/include/glib-2.0/glib/gmem.h \ - /usr/include/glib-2.0/glib/gnode.h \ - /usr/include/glib-2.0/glib/ghmac.h \ - /usr/include/glib-2.0/glib/gchecksum.h \ - /usr/include/glib-2.0/glib/ghook.h \ - /usr/include/glib-2.0/glib/ghostutils.h \ - /usr/include/glib-2.0/glib/giochannel.h \ - /usr/include/glib-2.0/glib/gmain.h \ - /usr/include/glib-2.0/glib/gpoll.h \ - /usr/include/glib-2.0/glib/gslist.h \ - /usr/include/glib-2.0/glib/gstring.h \ - /usr/include/glib-2.0/glib/gunicode.h \ - /usr/include/glib-2.0/glib/gkeyfile.h \ - /usr/include/glib-2.0/glib/gmappedfile.h \ - /usr/include/glib-2.0/glib/gmarkup.h \ - /usr/include/glib-2.0/glib/gmessages.h \ - /usr/include/glib-2.0/glib/gvariant.h \ - /usr/include/glib-2.0/glib/gvarianttype.h \ - /usr/include/glib-2.0/glib/goption.h \ - /usr/include/glib-2.0/glib/gpattern.h \ - /usr/include/glib-2.0/glib/gprimes.h \ - /usr/include/glib-2.0/glib/gqsort.h \ - /usr/include/glib-2.0/glib/gqueue.h \ - /usr/include/glib-2.0/glib/grand.h \ - /usr/include/glib-2.0/glib/grcbox.h \ - /usr/include/glib-2.0/glib/grefcount.h \ - /usr/include/glib-2.0/glib/grefstring.h \ - /usr/include/glib-2.0/glib/gmem.h \ - /usr/include/glib-2.0/glib/gmacros.h \ - /usr/include/glib-2.0/glib/gregex.h \ - /usr/include/glib-2.0/glib/gscanner.h \ - /usr/include/glib-2.0/glib/gsequence.h \ - /usr/include/glib-2.0/glib/gshell.h \ - /usr/include/glib-2.0/glib/gslice.h \ - /usr/include/glib-2.0/glib/gspawn.h \ - /usr/include/glib-2.0/glib/gstrfuncs.h \ - /usr/include/glib-2.0/glib/gstringchunk.h \ - /usr/include/glib-2.0/glib/gstrvbuilder.h \ - /usr/include/glib-2.0/glib/gtestutils.h \ - /usr/include/glib-2.0/glib/gthreadpool.h \ - /usr/include/glib-2.0/glib/gtimer.h \ - /usr/include/glib-2.0/glib/gtrashstack.h \ - /usr/include/glib-2.0/glib/gtree.h \ - /usr/include/glib-2.0/glib/guri.h \ - /usr/include/glib-2.0/glib/guuid.h \ - /usr/include/glib-2.0/glib/gversion.h \ - /usr/include/glib-2.0/glib/deprecated/gallocator.h \ - /usr/include/glib-2.0/glib/deprecated/gcache.h \ - /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ - /usr/include/glib-2.0/glib/deprecated/gmain.h \ - /usr/include/glib-2.0/glib/deprecated/grel.h \ - /usr/include/glib-2.0/glib/deprecated/gthread.h \ - /usr/include/glib-2.0/glib/glib-autocleanups.h \ - /usr/include/glibmm-2.4/glibmm/error.h \ - /usr/include/glibmm-2.4/glibmm/exception.h \ - /usr/include/glibmm-2.4/glibmm/ustring.h \ - /usr/include/glibmm-2.4/glibmm/unicode.h \ - /usr/include/c++/11.2.0/iterator \ - /usr/include/c++/11.2.0/bits/stream_iterator.h \ - /usr/include/c++/11.2.0/sstream \ - /usr/include/c++/11.2.0/bits/sstream.tcc \ - /usr/include/glibmm-2.4/glibmm/value.h \ - /usr/include/glibmm-2.4/glibmm/refptr.h \ - /usr/include/glibmm-2.4/glibmm/enums.h \ - /usr/include/glib-2.0/glib-object.h \ - /usr/include/glib-2.0/gobject/gbinding.h \ - /usr/include/glib-2.0/gobject/gobject.h \ - /usr/include/glib-2.0/gobject/gtype.h \ - /usr/include/glib-2.0/gobject/gvalue.h \ - /usr/include/glib-2.0/gobject/gparam.h \ - /usr/include/glib-2.0/gobject/gclosure.h \ - /usr/include/glib-2.0/gobject/gsignal.h \ - /usr/include/glib-2.0/gobject/gmarshal.h \ - /usr/include/glib-2.0/gobject/gboxed.h \ - /usr/include/glib-2.0/gobject/glib-types.h \ - /usr/include/glib-2.0/gobject/gbindinggroup.h \ - /usr/include/glib-2.0/gobject/genums.h \ - /usr/include/glib-2.0/gobject/glib-enumtypes.h \ - /usr/include/glib-2.0/gobject/gparamspecs.h \ - /usr/include/glib-2.0/gobject/gsignalgroup.h \ - /usr/include/glib-2.0/gobject/gsourceclosure.h \ - /usr/include/glib-2.0/gobject/gtypemodule.h \ - /usr/include/glib-2.0/gobject/gtypeplugin.h \ - /usr/include/glib-2.0/gobject/gvaluearray.h \ - /usr/include/glib-2.0/gobject/gvaluetypes.h \ - /usr/include/glib-2.0/gobject/gobject-autocleanups.h \ - /usr/include/c++/11.2.0/vector \ - /usr/include/c++/11.2.0/bits/stl_vector.h \ - /usr/include/c++/11.2.0/bits/stl_bvector.h \ - /usr/include/c++/11.2.0/bits/vector.tcc \ - /usr/include/glibmm-2.4/glibmm/value_custom.h \ - /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ - /usr/include/glibmm-2.4/glibmm/timeval.h \ - /usr/include/sigc++-2.0/sigc++/sigc++.h \ - /usr/include/sigc++-2.0/sigc++/signal.h \ - /usr/include/c++/11.2.0/list \ - /usr/include/c++/11.2.0/bits/stl_list.h \ - /usr/include/c++/11.2.0/bits/list.tcc \ - /usr/include/sigc++-2.0/sigc++/signal_base.h \ - /usr/lib/sigc++-2.0/include/sigc++config.h \ - /usr/include/sigc++-2.0/sigc++/type_traits.h \ - /usr/include/sigc++-2.0/sigc++/trackable.h \ - /usr/include/sigc++-2.0/sigc++/functors/slot.h \ - /usr/include/sigc++-2.0/sigc++/visit_each.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ - /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ - /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ - /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ - /usr/include/sigc++-2.0/sigc++/limit_reference.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ - /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ - /usr/include/sigc++-2.0/sigc++/connection.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ - /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ - /usr/include/c++/11.2.0/functional \ - /usr/include/c++/11.2.0/bits/std_function.h \ - /usr/include/c++/11.2.0/unordered_map \ - /usr/include/c++/11.2.0/bits/hashtable.h \ - /usr/include/c++/11.2.0/bits/hashtable_policy.h \ - /usr/include/c++/11.2.0/bits/node_handle.h \ - /usr/include/c++/11.2.0/bits/unordered_map.h \ - /usr/include/c++/11.2.0/bits/erase_if.h \ - /usr/include/c++/11.2.0/bits/stl_algo.h \ - /usr/include/c++/11.2.0/bits/algorithmfwd.h \ - /usr/include/c++/11.2.0/bits/stl_heap.h \ - /usr/include/c++/11.2.0/bits/uniform_int_dist.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h \ - /usr/include/sigc++-2.0/sigc++/functors/functors.h \ - /usr/include/glibmm-2.4/glibmm/threads.h \ - /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ - /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ - /usr/include/glibmm-2.4/glibmm/variant.h \ - /usr/include/glibmm-2.4/glibmm/varianttype.h \ - /usr/include/glibmm-2.4/glibmm/variantiter.h \ - /usr/include/glibmm-2.4/glibmm/variantdbusstring.h \ - /usr/include/c++/11.2.0/map \ - /usr/include/c++/11.2.0/bits/stl_tree.h \ - /usr/include/c++/11.2.0/bits/stl_map.h \ - /usr/include/c++/11.2.0/bits/stl_multimap.h \ - /usr/include/glibmm-2.4/glibmm/variant_basictypes.h \ - /usr/include/glibmm-2.4/glibmm/wrap.h \ - /usr/include/glibmm-2.4/glibmm/objectbase.h \ - /usr/include/glibmm-2.4/glibmm/class.h \ - /usr/include/glibmm-2.4/glibmm/signalproxy.h \ - /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ - /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ - /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ - /usr/include/glibmm-2.4/glibmm/quark.h \ - /usr/include/glibmm-2.4/glibmm/debug.h \ - /usr/include/c++/11.2.0/mutex \ - /usr/include/c++/11.2.0/chrono \ - /usr/include/c++/11.2.0/ratio \ - /usr/include/c++/11.2.0/limits \ - /usr/include/c++/11.2.0/ctime \ - /usr/include/c++/11.2.0/bits/parse_numbers.h \ - /usr/include/c++/11.2.0/bits/std_mutex.h \ - /usr/include/c++/11.2.0/bits/unique_lock.h \ - /usr/include/c++/11.2.0/algorithm \ - /usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h \ - /usr/include/c++/11.2.0/deque \ - /usr/include/c++/11.2.0/bits/stl_deque.h \ - /usr/include/c++/11.2.0/bits/deque.tcc \ - /usr/include/glibmm-2.4/glibmm/balancedtree.h \ - /usr/include/glibmm-2.4/glibmm/base64.h \ - /usr/include/glibmm-2.4/glibmm/binding.h \ - /usr/include/glibmm-2.4/glibmm/object.h \ - /usr/include/glibmm-2.4/glibmm/utility.h \ - /usr/include/glibmm-2.4/glibmm/bytearray.h \ - /usr/include/sigc++-2.0/sigc++/slot.h \ - /usr/include/glibmm-2.4/glibmm/bytes.h \ - /usr/include/glibmm-2.4/glibmm/checksum.h \ - /usr/include/glibmm-2.4/glibmm/convert.h \ - /usr/include/glibmm-2.4/glibmm/date.h \ - /usr/include/glibmm-2.4/glibmm/datetime.h \ - /usr/include/glibmm-2.4/glibmm/timezone.h \ - /usr/include/glibmm-2.4/glibmm/dispatcher.h \ - /usr/include/glibmm-2.4/glibmm/main.h \ - /usr/include/glibmm-2.4/glibmm/priorities.h \ - /usr/include/glibmm-2.4/glibmm/iochannel.h \ - /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ - /usr/include/glibmm-2.4/glibmm/fileutils.h \ - /usr/include/glibmm-2.4/glibmm/helperlist.h \ - /usr/include/glibmm-2.4/glibmm/containers.h \ - /usr/include/glibmm-2.4/glibmm/sarray.h \ - /usr/include/glibmm-2.4/glibmm/interface.h \ - /usr/include/glibmm-2.4/glibmm/init.h \ - /usr/include/glibmm-2.4/glibmm/keyfile.h \ - /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ - /usr/include/glibmm-2.4/glibmm/listhandle.h \ - /usr/include/glibmm-2.4/glibmm/markup.h \ - /usr/include/glibmm-2.4/glibmm/miscutils.h \ - /usr/include/glibmm-2.4/glibmm/module.h \ - /usr/include/glibmm-2.4/glibmm/nodetree.h \ - /usr/include/c++/11.2.0/stack \ - /usr/include/c++/11.2.0/bits/stl_stack.h \ - /usr/include/glibmm-2.4/glibmm/optioncontext.h \ - /usr/include/glibmm-2.4/glibmm/optionentry.h \ - /usr/include/glibmm-2.4/glibmm/optiongroup.h \ - /usr/include/glibmm-2.4/glibmm/pattern.h \ - /usr/include/glibmm-2.4/glibmm/property.h \ - /usr/include/glibmm-2.4/glibmm/random.h \ - /usr/include/glibmm-2.4/glibmm/regex.h \ - /usr/include/glibmm-2.4/glibmm/shell.h \ - /usr/include/glibmm-2.4/glibmm/slisthandle.h \ - /usr/include/glibmm-2.4/glibmm/spawn.h \ - /usr/include/glibmm-2.4/glibmm/stringutils.h \ - /usr/include/glibmm-2.4/glibmm/threadpool.h \ - /usr/include/glibmm-2.4/glibmm/timer.h \ - /usr/include/glibmm-2.4/glibmm/uriutils.h \ - /usr/include/glibmm-2.4/glibmm/valuearray.h \ - /usr/include/glibmm-2.4/glibmm/variantdict.h \ - /usr/include/glibmm-2.4/glibmm/vectorutils.h \ - /usr/include/glibmm-2.4/glibmm/weakref.h \ - /usr/include/giomm-2.4/giomm.h \ - /usr/include/giomm-2.4/giomm/action.h \ - /usr/lib/giomm-2.4/include/giommconfig.h \ - /usr/include/glib-2.0/gio/gio.h \ - /usr/include/glib-2.0/gio/giotypes.h \ - /usr/include/glib-2.0/gio/gioenums.h \ - /usr/include/glib-2.0/gio/gaction.h \ - /usr/include/glib-2.0/gio/gactiongroup.h \ - /usr/include/glib-2.0/gio/gactiongroupexporter.h \ - /usr/include/glib-2.0/gio/gactionmap.h \ - /usr/include/glib-2.0/gio/gappinfo.h \ - /usr/include/glib-2.0/gio/gapplication.h \ - /usr/include/glib-2.0/gio/gapplicationcommandline.h \ - /usr/include/glib-2.0/gio/gasyncinitable.h \ - /usr/include/glib-2.0/gio/ginitable.h \ - /usr/include/glib-2.0/gio/gasyncresult.h \ - /usr/include/glib-2.0/gio/gbufferedinputstream.h \ - /usr/include/glib-2.0/gio/gfilterinputstream.h \ - /usr/include/glib-2.0/gio/ginputstream.h \ - /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ - /usr/include/glib-2.0/gio/gfilteroutputstream.h \ - /usr/include/glib-2.0/gio/goutputstream.h \ - /usr/include/glib-2.0/gio/gbytesicon.h \ - /usr/include/glib-2.0/gio/gcancellable.h \ - /usr/include/glib-2.0/gio/gcharsetconverter.h \ - /usr/include/glib-2.0/gio/gconverter.h \ - /usr/include/glib-2.0/gio/gcontenttype.h \ - /usr/include/glib-2.0/gio/gconverterinputstream.h \ - /usr/include/glib-2.0/gio/gconverteroutputstream.h \ - /usr/include/glib-2.0/gio/gcredentials.h \ - /usr/include/glib-2.0/gio/gdatagrambased.h \ - /usr/include/glib-2.0/gio/gdatainputstream.h \ - /usr/include/glib-2.0/gio/gdataoutputstream.h \ - /usr/include/glib-2.0/gio/gdbusactiongroup.h \ - /usr/include/glib-2.0/gio/giotypes.h \ - /usr/include/glib-2.0/gio/gdbusaddress.h \ - /usr/include/glib-2.0/gio/gdbusauthobserver.h \ - /usr/include/glib-2.0/gio/gdbusconnection.h \ - /usr/include/glib-2.0/gio/gdbuserror.h \ - /usr/include/glib-2.0/gio/gdbusinterface.h \ - /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ - /usr/include/glib-2.0/gio/gdbusintrospection.h \ - /usr/include/glib-2.0/gio/gdbusmenumodel.h \ - /usr/include/glib-2.0/gio/gdbusmessage.h \ - /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ - /usr/include/glib-2.0/gio/gdbusnameowning.h \ - /usr/include/glib-2.0/gio/gdbusnamewatching.h \ - /usr/include/glib-2.0/gio/gdbusobject.h \ - /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ - /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ - /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ - /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ - /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ - /usr/include/glib-2.0/gio/gdbusproxy.h \ - /usr/include/glib-2.0/gio/gdbusserver.h \ - /usr/include/glib-2.0/gio/gdbusutils.h \ - /usr/include/glib-2.0/gio/gdebugcontroller.h \ - /usr/include/glib-2.0/gio/gdebugcontrollerdbus.h \ - /usr/include/glib-2.0/gio/gdrive.h \ - /usr/include/glib-2.0/gio/gdtlsclientconnection.h \ - /usr/include/glib-2.0/gio/gdtlsconnection.h \ - /usr/include/glib-2.0/gio/gdtlsserverconnection.h \ - /usr/include/glib-2.0/gio/gemblemedicon.h \ - /usr/include/glib-2.0/gio/gicon.h \ - /usr/include/glib-2.0/gio/gemblem.h \ - /usr/include/glib-2.0/gio/gfile.h \ - /usr/include/glib-2.0/gio/gfileattribute.h \ - /usr/include/glib-2.0/gio/gfileenumerator.h \ - /usr/include/glib-2.0/gio/gfileicon.h \ - /usr/include/glib-2.0/gio/gfileinfo.h \ - /usr/include/glib-2.0/gio/gfileinputstream.h \ - /usr/include/glib-2.0/gio/gfileiostream.h \ - /usr/include/glib-2.0/gio/giostream.h \ - /usr/include/glib-2.0/gio/gioerror.h \ - /usr/include/glib-2.0/gio/gfilemonitor.h \ - /usr/include/glib-2.0/gio/gfilenamecompleter.h \ - /usr/include/glib-2.0/gio/gfileoutputstream.h \ - /usr/include/glib-2.0/gio/ginetaddress.h \ - /usr/include/glib-2.0/gio/ginetaddressmask.h \ - /usr/include/glib-2.0/gio/ginetsocketaddress.h \ - /usr/include/glib-2.0/gio/gsocketaddress.h \ - /usr/include/glib-2.0/gio/gioenumtypes.h \ - /usr/include/glib-2.0/gio/giomodule.h \ - /usr/include/glib-2.0/gmodule.h \ - /usr/include/glib-2.0/gio/gioscheduler.h \ - /usr/include/glib-2.0/gio/glistmodel.h \ - /usr/include/glib-2.0/gio/gliststore.h \ - /usr/include/glib-2.0/gio/gloadableicon.h \ - /usr/include/glib-2.0/gio/gmemoryinputstream.h \ - /usr/include/glib-2.0/gio/gmemorymonitor.h \ - /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ - /usr/include/glib-2.0/gio/gmenu.h \ - /usr/include/glib-2.0/gio/gmenumodel.h \ - /usr/include/glib-2.0/gio/gmenuexporter.h \ - /usr/include/glib-2.0/gio/gmount.h \ - /usr/include/glib-2.0/gio/gmountoperation.h \ - /usr/include/glib-2.0/gio/gnativesocketaddress.h \ - /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ - /usr/include/glib-2.0/gio/gvolumemonitor.h \ - /usr/include/glib-2.0/gio/gnetworkaddress.h \ - /usr/include/glib-2.0/gio/gnetworkmonitor.h \ - /usr/include/glib-2.0/gio/gnetworkservice.h \ - /usr/include/glib-2.0/gio/gnotification.h \ - /usr/include/glib-2.0/gio/gpermission.h \ - /usr/include/glib-2.0/gio/gpollableinputstream.h \ - /usr/include/glib-2.0/gio/gpollableoutputstream.h \ - /usr/include/glib-2.0/gio/gpollableutils.h \ - /usr/include/glib-2.0/gio/gpowerprofilemonitor.h \ - /usr/include/glib-2.0/gio/gpropertyaction.h \ - /usr/include/glib-2.0/gio/gproxy.h \ - /usr/include/glib-2.0/gio/gproxyaddress.h \ - /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ - /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ - /usr/include/glib-2.0/gio/gproxyresolver.h \ - /usr/include/glib-2.0/gio/gremoteactiongroup.h \ - /usr/include/glib-2.0/gio/gresolver.h \ - /usr/include/glib-2.0/gio/gresource.h \ - /usr/include/glib-2.0/gio/gseekable.h \ - /usr/include/glib-2.0/gio/gsettings.h \ - /usr/include/glib-2.0/gio/gsettingsschema.h \ - /usr/include/glib-2.0/gio/gsimpleaction.h \ - /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ - /usr/include/glib-2.0/gio/gactiongroup.h \ - /usr/include/glib-2.0/gio/gactionmap.h \ - /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ - /usr/include/glib-2.0/gio/gsimpleiostream.h \ - /usr/include/glib-2.0/gio/gsimplepermission.h \ - /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ - /usr/include/glib-2.0/gio/gsocket.h \ - /usr/include/glib-2.0/gio/gsocketclient.h \ - /usr/include/glib-2.0/gio/gsocketconnectable.h \ - /usr/include/glib-2.0/gio/gsocketconnection.h \ - /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ - /usr/include/glib-2.0/gio/gsocketlistener.h \ - /usr/include/glib-2.0/gio/gsocketservice.h \ - /usr/include/glib-2.0/gio/gsrvtarget.h \ - /usr/include/glib-2.0/gio/gsubprocess.h \ - /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ - /usr/include/glib-2.0/gio/gtask.h \ - /usr/include/glib-2.0/gio/gtcpconnection.h \ - /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ - /usr/include/glib-2.0/gio/gtestdbus.h \ - /usr/include/glib-2.0/gio/gthemedicon.h \ - /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ - /usr/include/glib-2.0/gio/gtlsbackend.h \ - /usr/include/glib-2.0/gio/gtlscertificate.h \ - /usr/include/glib-2.0/gio/gtlsclientconnection.h \ - /usr/include/glib-2.0/gio/gtlsconnection.h \ - /usr/include/glib-2.0/gio/gtlsdatabase.h \ - /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ - /usr/include/glib-2.0/gio/gtlsinteraction.h \ - /usr/include/glib-2.0/gio/gtlspassword.h \ - /usr/include/glib-2.0/gio/gtlsserverconnection.h \ - /usr/include/glib-2.0/gio/gvfs.h \ - /usr/include/glib-2.0/gio/gvolume.h \ - /usr/include/glib-2.0/gio/gzlibcompressor.h \ - /usr/include/glib-2.0/gio/gzlibdecompressor.h \ - /usr/include/glib-2.0/gio/gio-autocleanups.h \ - /usr/include/giomm-2.4/giomm/actiongroup.h \ - /usr/include/giomm-2.4/giomm/actionmap.h \ - /usr/include/giomm-2.4/giomm/simpleaction.h \ - /usr/include/giomm-2.4/giomm/appinfo.h \ - /usr/include/giomm-2.4/giomm/applaunchcontext.h \ - /usr/include/giomm-2.4/giomm/icon.h \ - /usr/include/giomm-2.4/giomm/asyncresult.h \ - /usr/include/giomm-2.4/giomm/cancellable.h \ - /usr/include/giomm-2.4/giomm/application.h \ - /usr/include/giomm-2.4/giomm/applicationcommandline.h \ - /usr/include/giomm-2.4/giomm/file.h \ - /usr/include/giomm-2.4/giomm/fileattributeinfolist.h \ - /usr/include/giomm-2.4/giomm/fileattributeinfo.h \ - /usr/include/giomm-2.4/giomm/fileenumerator.h \ - /usr/include/giomm-2.4/giomm/fileinfo.h \ - /usr/include/giomm-2.4/giomm/fileinputstream.h \ - /usr/include/giomm-2.4/giomm/inputstream.h \ - /usr/include/giomm-2.4/giomm/seekable.h \ - /usr/include/giomm-2.4/giomm/fileiostream.h \ - /usr/include/giomm-2.4/giomm/iostream.h \ - /usr/include/giomm-2.4/giomm/outputstream.h \ - /usr/include/giomm-2.4/giomm/filemonitor.h \ - /usr/include/giomm-2.4/giomm/fileoutputstream.h \ - /usr/include/giomm-2.4/giomm/mountoperation.h \ - /usr/include/giomm-2.4/giomm/drive.h \ - /usr/include/giomm-2.4/giomm/mount.h \ - /usr/include/giomm-2.4/giomm/error.h \ - /usr/include/giomm-2.4/giomm/dbusconnection.h \ - /usr/include/giomm-2.4/giomm/initable.h \ - /usr/include/giomm-2.4/giomm/asyncinitable.h \ - /usr/include/giomm-2.4/giomm/dbusauthobserver.h \ - /usr/include/giomm-2.4/giomm/credentials.h \ - /usr/include/giomm-2.4/giomm/dbusmethodinvocation.h \ - /usr/include/giomm-2.4/giomm/dbusmessage.h \ - /usr/include/giomm-2.4/giomm/unixfdlist.h \ - /usr/include/giomm-2.4/giomm/dbusintrospection.h \ - /usr/include/giomm-2.4/giomm/dbussubtreevtable.h \ - /usr/include/giomm-2.4/giomm/dbusinterfacevtable.h \ - /usr/include/giomm-2.4/giomm/notification.h \ - /usr/include/giomm-2.4/giomm/bufferedinputstream.h \ - /usr/include/giomm-2.4/giomm/filterinputstream.h \ - /usr/include/giomm-2.4/giomm/bufferedoutputstream.h \ - /usr/include/giomm-2.4/giomm/filteroutputstream.h \ - /usr/include/giomm-2.4/giomm/charsetconverter.h \ - /usr/include/giomm-2.4/giomm/converter.h \ - /usr/include/giomm-2.4/giomm/contenttype.h \ - /usr/include/giomm-2.4/giomm/converterinputstream.h \ - /usr/include/giomm-2.4/giomm/pollableinputstream.h \ - /usr/include/giomm-2.4/giomm/converteroutputstream.h \ - /usr/include/giomm-2.4/giomm/pollableoutputstream.h \ - /usr/include/giomm-2.4/giomm/datainputstream.h \ - /usr/include/giomm-2.4/giomm/enums.h \ - /usr/include/giomm-2.4/giomm/dataoutputstream.h \ - /usr/include/giomm-2.4/giomm/dbusactiongroup.h \ - /usr/include/giomm-2.4/giomm/remoteactiongroup.h \ - /usr/include/giomm-2.4/giomm/dbusaddress.h \ - /usr/include/giomm-2.4/giomm/dbuserror.h \ - /usr/include/giomm-2.4/giomm/dbuserrorutils.h \ - /usr/include/giomm-2.4/giomm/dbusinterface.h \ - /usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h \ - /usr/include/giomm-2.4/giomm/dbusmenumodel.h \ - /usr/include/giomm-2.4/giomm/menumodel.h \ - /usr/include/giomm-2.4/giomm/dbusobject.h \ - /usr/include/giomm-2.4/giomm/dbusobjectmanager.h \ - /usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h \ - /usr/include/giomm-2.4/giomm/dbusobjectproxy.h \ - /usr/include/giomm-2.4/giomm/dbusproxy.h \ - /usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h \ - /usr/include/giomm-2.4/giomm/dbusobjectskeleton.h \ - /usr/include/giomm-2.4/giomm/dbusownname.h \ - /usr/include/giomm-2.4/giomm/dbusserver.h \ - /usr/include/giomm-2.4/giomm/dbusutils.h \ - /usr/include/giomm-2.4/giomm/dbuswatchname.h \ - /usr/include/giomm-2.4/giomm/desktopappinfo.h \ - /usr/include/giomm-2.4/giomm/emblem.h \ - /usr/include/giomm-2.4/giomm/emblemedicon.h \ - /usr/include/giomm-2.4/giomm/fileicon.h \ - /usr/include/giomm-2.4/giomm/loadableicon.h \ - /usr/include/giomm-2.4/giomm/filenamecompleter.h \ - /usr/include/giomm-2.4/giomm/inetaddress.h \ - /usr/include/giomm-2.4/giomm/inetsocketaddress.h \ - /usr/include/giomm-2.4/giomm/socketaddress.h \ - /usr/include/giomm-2.4/giomm/socketconnectable.h \ - /usr/include/giomm-2.4/giomm/socketaddressenumerator.h \ - /usr/include/giomm-2.4/giomm/init.h \ - /usr/include/giomm-2.4/giomm/wrap_init.h \ - /usr/include/giomm-2.4/giomm/listmodel.h \ - /usr/include/giomm-2.4/giomm/liststore.h \ - /usr/include/giomm-2.4/giomm/memoryinputstream.h \ - /usr/include/giomm-2.4/giomm/memoryoutputstream.h \ - /usr/include/giomm-2.4/giomm/menu.h \ - /usr/include/giomm-2.4/giomm/menuitem.h \ - /usr/include/giomm-2.4/giomm/menuattributeiter.h \ - /usr/include/giomm-2.4/giomm/menulinkiter.h \ - /usr/include/giomm-2.4/giomm/networkaddress.h \ - /usr/include/giomm-2.4/giomm/networkmonitor.h \ - /usr/include/giomm-2.4/giomm/networkservice.h \ - /usr/include/giomm-2.4/giomm/permission.h \ - /usr/include/giomm-2.4/giomm/proxy.h \ - /usr/include/giomm-2.4/giomm/proxyaddress.h \ - /usr/include/giomm-2.4/giomm/proxyresolver.h \ - /usr/include/giomm-2.4/giomm/resolver.h \ - /usr/include/giomm-2.4/giomm/srvtarget.h \ - /usr/include/giomm-2.4/giomm/resource.h \ - /usr/include/giomm-2.4/giomm/settings.h \ - /usr/include/giomm-2.4/giomm/settingsschema.h \ - /usr/include/giomm-2.4/giomm/settingsschemakey.h \ - /usr/include/giomm-2.4/giomm/settingsschemasource.h \ - /usr/include/giomm-2.4/giomm/simpleactiongroup.h \ - /usr/include/giomm-2.4/giomm/simpleiostream.h \ - /usr/include/giomm-2.4/giomm/simplepermission.h \ - /usr/include/giomm-2.4/giomm/socket.h \ - /usr/include/giomm-2.4/giomm/socketclient.h \ - /usr/include/giomm-2.4/giomm/socketconnection.h \ - /usr/include/giomm-2.4/giomm/socketcontrolmessage.h \ - /usr/include/c++/11.2.0/set \ - /usr/include/c++/11.2.0/bits/stl_set.h \ - /usr/include/c++/11.2.0/bits/stl_multiset.h \ - /usr/include/giomm-2.4/giomm/socketlistener.h \ - /usr/include/giomm-2.4/giomm/socketservice.h \ - /usr/include/giomm-2.4/giomm/socketsource.h \ - /usr/include/giomm-2.4/giomm/tcpconnection.h \ - /usr/include/giomm-2.4/giomm/tcpwrapperconnection.h \ - /usr/include/giomm-2.4/giomm/themedicon.h \ - /usr/include/giomm-2.4/giomm/threadedsocketservice.h \ - /usr/include/giomm-2.4/giomm/tlscertificate.h \ - /usr/include/giomm-2.4/giomm/tlsclientconnection.h \ - /usr/include/giomm-2.4/giomm/tlsconnection.h \ - /usr/include/giomm-2.4/giomm/tlsdatabase.h \ - /usr/include/giomm-2.4/giomm/tlsinteraction.h \ - /usr/include/giomm-2.4/giomm/tlspassword.h \ - /usr/include/giomm-2.4/giomm/tlsserverconnection.h \ - /usr/include/giomm-2.4/giomm/unixconnection.h \ - /usr/include/giomm-2.4/giomm/unixcredentialsmessage.h \ - /usr/include/giomm-2.4/giomm/unixfdmessage.h \ - /usr/include/giomm-2.4/giomm/unixinputstream.h \ - /usr/include/giomm-2.4/giomm/unixoutputstream.h \ - /usr/include/giomm-2.4/giomm/unixsocketaddress.h \ - /usr/include/giomm-2.4/giomm/volume.h \ - /usr/include/giomm-2.4/giomm/volumemonitor.h \ - /usr/include/giomm-2.4/giomm/zlibcompressor.h \ - /usr/include/giomm-2.4/giomm/zlibdecompressor.h \ - /usr/include/gdkmm-3.0/gdkmm/dragcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/color.h \ - /usr/lib/gdkmm-3.0/include/gdkmmconfig.h \ - /usr/lib/pangomm-1.4/include/pangommconfig.h \ - /usr/include/gtk-3.0/gdk/gdk.h \ - /usr/include/gtk-3.0/gdk/gdkconfig.h \ - /usr/include/gtk-3.0/gdk/gdkversionmacros.h \ - /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h \ - /usr/include/gtk-3.0/gdk/gdktypes.h \ - /usr/include/pango-1.0/pango/pango.h \ - /usr/include/pango-1.0/pango/pango-attributes.h \ - /usr/include/pango-1.0/pango/pango-font.h \ - /usr/include/pango-1.0/pango/pango-coverage.h \ - /usr/include/pango-1.0/pango/pango-version-macros.h \ - /usr/include/pango-1.0/pango/pango-features.h \ - /usr/include/harfbuzz/hb.h \ - /usr/include/harfbuzz/hb-blob.h \ - /usr/include/harfbuzz/hb-common.h \ - /usr/include/harfbuzz/hb-buffer.h \ - /usr/include/harfbuzz/hb-unicode.h \ - /usr/include/harfbuzz/hb-font.h \ - /usr/include/harfbuzz/hb-face.h \ - /usr/include/harfbuzz/hb-set.h \ - /usr/include/harfbuzz/hb-draw.h \ - /usr/include/harfbuzz/hb.h \ - /usr/include/harfbuzz/hb-deprecated.h \ - /usr/include/harfbuzz/hb-map.h \ - /usr/include/harfbuzz/hb-shape.h \ - /usr/include/harfbuzz/hb-shape-plan.h \ - /usr/include/harfbuzz/hb-style.h \ - /usr/include/harfbuzz/hb-version.h \ - /usr/include/pango-1.0/pango/pango-types.h \ - /usr/include/pango-1.0/pango/pango-gravity.h \ - /usr/include/pango-1.0/pango/pango-matrix.h \ - /usr/include/pango-1.0/pango/pango-script.h \ - /usr/include/pango-1.0/pango/pango-language.h \ - /usr/include/pango-1.0/pango/pango-bidi-type.h \ - /usr/include/pango-1.0/pango/pango-direction.h \ - /usr/include/pango-1.0/pango/pango-color.h \ - /usr/include/pango-1.0/pango/pango-break.h \ - /usr/include/pango-1.0/pango/pango-item.h \ - /usr/include/pango-1.0/pango/pango-context.h \ - /usr/include/pango-1.0/pango/pango-fontmap.h \ - /usr/include/pango-1.0/pango/pango-fontset.h \ - /usr/include/pango-1.0/pango/pango-engine.h \ - /usr/include/pango-1.0/pango/pango-glyph.h \ - /usr/include/pango-1.0/pango/pango-enum-types.h \ - /usr/include/pango-1.0/pango/pango-fontset-simple.h \ - /usr/include/pango-1.0/pango/pango-glyph-item.h \ - /usr/include/pango-1.0/pango/pango-layout.h \ - /usr/include/pango-1.0/pango/pango-tabs.h \ - /usr/include/pango-1.0/pango/pango-markup.h \ - /usr/include/pango-1.0/pango/pango-renderer.h \ - /usr/include/pango-1.0/pango/pango-utils.h \ - /usr/include/cairo/cairo.h \ - /usr/include/cairo/cairo-version.h \ - /usr/include/cairo/cairo-features.h \ - /usr/include/cairo/cairo-deprecated.h \ - /usr/include/gtk-3.0/gdk/gdkscreen.h \ - /usr/include/gtk-3.0/gdk/gdkdisplay.h \ - /usr/include/gtk-3.0/gdk/gdkevents.h \ - /usr/include/gtk-3.0/gdk/gdkdnd.h \ - /usr/include/gtk-3.0/gdk/gdkdevice.h \ - /usr/include/gtk-3.0/gdk/gdkdevicetool.h \ - /usr/include/gtk-3.0/gdk/gdkdevicemanager.h \ - /usr/include/gtk-3.0/gdk/gdkseat.h \ - /usr/include/gtk-3.0/gdk/gdkwindow.h \ - /usr/include/gtk-3.0/gdk/gdkdrawingcontext.h \ - /usr/include/gtk-3.0/gdk/gdkframeclock.h \ - /usr/include/gtk-3.0/gdk/gdkframetimings.h \ - /usr/include/gtk-3.0/gdk/gdkmonitor.h \ - /usr/include/gtk-3.0/gdk/gdkrectangle.h \ - /usr/include/gtk-3.0/gdk/gdkcairo.h \ - /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h \ - /usr/include/gtk-3.0/gdk/gdkrgba.h \ - /usr/include/gtk-3.0/gdk/gdkpixbuf.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h \ - /usr/include/pango-1.0/pango/pangocairo.h \ - /usr/include/gtk-3.0/gdk/gdkcursor.h \ - /usr/include/gtk-3.0/gdk/gdkdevicepad.h \ - /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h \ - /usr/include/gtk-3.0/gdk/gdkenumtypes.h \ - /usr/include/gtk-3.0/gdk/gdkglcontext.h \ - /usr/include/gtk-3.0/gdk/gdkkeys.h \ - /usr/include/gtk-3.0/gdk/gdkkeysyms.h \ - /usr/include/gtk-3.0/gdk/gdkmain.h \ - /usr/include/gtk-3.0/gdk/gdkpango.h \ - /usr/include/gtk-3.0/gdk/gdkproperty.h \ - /usr/include/gtk-3.0/gdk/gdkselection.h \ - /usr/include/gtk-3.0/gdk/gdktestutils.h \ - /usr/include/gtk-3.0/gdk/gdkthreads.h \ - /usr/include/gtk-3.0/gdk/gdkvisual.h \ - /usr/include/gtk-3.0/gdk/gdk-autocleanup.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbuf.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufformat.h \ - /usr/include/gdkmm-3.0/gdkmm/types.h \ - /usr/include/cairomm-1.0/cairomm/surface.h \ - /usr/include/cairomm-1.0/cairomm/enums.h \ - /usr/include/cairo/cairo-ft.h \ - /usr/include/cairo/cairo.h \ - /usr/include/freetype2/ft2build.h \ - /usr/include/freetype2/freetype/config/ftheader.h \ - /usr/include/freetype2/freetype/freetype.h \ - /usr/include/freetype2/freetype/config/ftconfig.h \ - /usr/include/freetype2/freetype/config/ftoption.h \ - /usr/include/freetype2/freetype/config/ftstdlib.h \ - /usr/include/setjmp.h \ - /usr/include/freetype2/freetype/config/integer-types.h \ - /usr/include/freetype2/freetype/config/public-macros.h \ - /usr/include/freetype2/freetype/config/mac-support.h \ - /usr/include/freetype2/freetype/fttypes.h \ - /usr/include/freetype2/freetype/ftsystem.h \ - /usr/include/freetype2/freetype/ftimage.h \ - /usr/include/freetype2/freetype/fterrors.h \ - /usr/include/freetype2/freetype/ftmoderr.h \ - /usr/include/freetype2/freetype/fterrdef.h \ - /usr/include/fontconfig/fontconfig.h \ - /usr/include/sys/stat.h \ - /usr/include/bits/stat.h \ - /usr/include/bits/struct_stat.h \ - /usr/include/bits/statx.h \ - /usr/include/linux/stat.h \ - /usr/include/linux/types.h \ - /usr/include/asm/types.h \ - /usr/include/asm-generic/types.h \ - /usr/include/asm-generic/int-ll64.h \ - /usr/include/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/asm/posix_types.h \ - /usr/include/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/bits/statx-generic.h \ - /usr/include/bits/types/struct_statx_timestamp.h \ - /usr/include/bits/types/struct_statx.h \ - /usr/include/cairomm-1.0/cairomm/exception.h \ - /usr/lib/cairomm-1.0/include/cairommconfig.h \ - /usr/include/cairomm-1.0/cairomm/device.h \ - /usr/include/cairomm-1.0/cairomm/types.h \ - /usr/include/cairomm-1.0/cairomm/refptr.h \ - /usr/include/cairomm-1.0/cairomm/fontoptions.h \ - /usr/include/cairo/cairo-pdf.h \ - /usr/include/cairo/cairo-ps.h \ - /usr/include/cairo/cairo-svg.h \ - /usr/include/gdkmm-3.0/gdkmm/device.h \ - /usr/include/gdkmm-3.0/gdkmm/cursor.h \ - /usr/include/gdkmm-3.0/gdkmm/display.h \ - /usr/include/gdkmm-3.0/gdkmm/screen.h \ - /usr/include/gdkmm-3.0/gdkmm/rectangle.h \ - /usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/event.h \ - /usr/include/gdkmm-3.0/gdkmm/timecoord.h \ - /usr/include/gdkmm-3.0/gdkmm.h \ - /usr/include/gdkmm-3.0/gdkmm/visual.h \ - /usr/include/gdkmm-3.0/gdkmm/window.h \ - /usr/include/cairomm-1.0/cairomm/region.h \ - /usr/include/cairomm-1.0/cairomm/pattern.h \ - /usr/include/gdkmm-3.0/gdkmm/rgba.h \ - /usr/include/cairomm-1.0/cairomm/context.h \ - /usr/include/cairomm-1.0/cairomm/fontface.h \ - /usr/include/cairomm-1.0/cairomm/matrix.h \ - /usr/include/cairomm-1.0/cairomm/path.h \ - /usr/include/cairomm-1.0/cairomm/scaledfont.h \ - /usr/include/c++/11.2.0/valarray \ - /usr/include/c++/11.2.0/cmath \ - /usr/include/math.h \ - /usr/include/bits/math-vector.h \ - /usr/include/bits/libm-simd-decl-stubs.h \ - /usr/include/bits/flt-eval-method.h \ - /usr/include/bits/fp-logb.h \ - /usr/include/bits/fp-fast.h \ - /usr/include/bits/mathcalls-helper-functions.h \ - /usr/include/bits/mathcalls.h \ - /usr/include/bits/mathcalls-narrow.h \ - /usr/include/bits/iscanonical.h \ - /usr/include/c++/11.2.0/bits/specfun.h \ - /usr/include/c++/11.2.0/tr1/gamma.tcc \ - /usr/include/c++/11.2.0/tr1/special_function_util.h \ - /usr/include/c++/11.2.0/tr1/bessel_function.tcc \ - /usr/include/c++/11.2.0/tr1/beta_function.tcc \ - /usr/include/c++/11.2.0/tr1/ell_integral.tcc \ - /usr/include/c++/11.2.0/tr1/exp_integral.tcc \ - /usr/include/c++/11.2.0/tr1/hypergeometric.tcc \ - /usr/include/c++/11.2.0/tr1/legendre_function.tcc \ - /usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc \ - /usr/include/c++/11.2.0/tr1/poly_hermite.tcc \ - /usr/include/c++/11.2.0/tr1/poly_laguerre.tcc \ - /usr/include/c++/11.2.0/tr1/riemann_zeta.tcc \ - /usr/include/c++/11.2.0/bits/valarray_array.h \ - /usr/include/c++/11.2.0/bits/valarray_array.tcc \ - /usr/include/c++/11.2.0/bits/valarray_before.h \ - /usr/include/c++/11.2.0/bits/slice_array.h \ - /usr/include/c++/11.2.0/bits/valarray_after.h \ - /usr/include/c++/11.2.0/bits/gslice.h \ - /usr/include/c++/11.2.0/bits/gslice_array.h \ - /usr/include/c++/11.2.0/bits/mask_array.h \ - /usr/include/c++/11.2.0/bits/indirect_array.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufloader.h \ - /usr/include/gdkmm-3.0/gdkmm/drawingcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/frameclock.h \ - /usr/include/gdkmm-3.0/gdkmm/frametimings.h \ - /usr/include/gdkmm-3.0/gdkmm/glcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/displaymanager.h \ - /usr/include/gdkmm-3.0/gdkmm/devicemanager.h \ - /usr/include/gdkmm-3.0/gdkmm/seat.h \ - /usr/include/gdkmm-3.0/gdkmm/monitor.h \ - /usr/include/gdkmm-3.0/gdkmm/general.h \ - /usr/include/gtkmm-3.0/gtkmm/toggleaction.h \ - /usr/include/gtkmm-3.0/gtkmm/action.h \ - /usr/lib/gtkmm-3.0/include/gtkmmconfig.h \ - /usr/include/gtkmm-3.0/gtkmm/widget.h \ - /usr/include/pangomm-1.4/pangomm/context.h \ - /usr/include/pangomm-1.4/pangomm/fontdescription.h \ - /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ - /usr/include/pangomm-1.4/pangomm/fontset.h \ - /usr/include/pangomm-1.4/pangomm/language.h \ - /usr/include/pangomm-1.4/pangomm/font.h \ - /usr/include/pangomm-1.4/pangomm/rectangle.h \ - /usr/include/pangomm-1.4/pangomm/glyph.h \ - /usr/include/pangomm-1.4/pangomm/coverage.h \ - /usr/include/pangomm-1.4/pangomm/fontmap.h \ - /usr/include/pangomm-1.4/pangomm/fontfamily.h \ - /usr/include/pangomm-1.4/pangomm/fontface.h \ - /usr/include/pangomm-1.4/pangomm/item.h \ - /usr/include/pangomm-1.4/pangomm/attributes.h \ - /usr/include/pangomm-1.4/pangomm/color.h \ - /usr/include/pangomm-1.4/pangomm/attrlist.h \ - /usr/include/pangomm-1.4/pangomm/attriter.h \ - /usr/include/pangomm-1.4/pangomm/types.h \ - /usr/include/pangomm-1.4/pangomm/layout.h \ - /usr/include/pangomm-1.4/pangomm/tabarray.h \ - /usr/include/pangomm-1.4/pangomm/layoutline.h \ - /usr/include/pangomm-1.4/pangomm/layoutiter.h \ - /usr/include/pangomm-1.4/pangomm/layoutrun.h \ - /usr/include/atkmm-1.6/atkmm/object.h \ - /usr/include/atkmm-1.6/atkmm/component.h \ - /usr/lib/atkmm-1.6/include/atkmmconfig.h \ - /usr/include/atkmm-1.6/atkmm/relation.h \ - /usr/include/atkmm-1.6/atkmm/implementor.h \ - /usr/include/gtkmm-3.0/gtkmm/object.h \ - /usr/include/gtkmm-3.0/gtkmm/base.h \ - /usr/include/gtkmm-3.0/gtkmm/buildable.h \ - /usr/include/gtkmm-3.0/gtkmm/enums.h \ - /usr/include/gtk-3.0/gtk/gtk.h \ - /usr/include/gtk-3.0/gtk/gtkaboutdialog.h \ - /usr/include/gtk-3.0/gtk/gtkdialog.h \ - /usr/include/gtk-3.0/gtk/gtkwindow.h \ - /usr/include/gtk-3.0/gtk/gtkapplication.h \ - /usr/include/gtk-3.0/gtk/gtkwidget.h \ - /usr/include/gtk-3.0/gtk/gtkaccelgroup.h \ - /usr/include/gtk-3.0/gtk/gtkenums.h \ - /usr/include/gtk-3.0/gtk/gtkborder.h \ - /usr/include/gtk-3.0/gtk/gtktypes.h \ - /usr/include/atk-1.0/atk/atk.h \ - /usr/include/atk-1.0/atk/atkobject.h \ - /usr/include/atk-1.0/atk/atkversion.h \ - /usr/include/atk-1.0/atk/atkstate.h \ - /usr/include/atk-1.0/atk/atkrelationtype.h \ - /usr/include/atk-1.0/atk/atkaction.h \ - /usr/include/atk-1.0/atk/atkcomponent.h \ - /usr/include/atk-1.0/atk/atkutil.h \ - /usr/include/atk-1.0/atk/atkdocument.h \ - /usr/include/atk-1.0/atk/atkeditabletext.h \ - /usr/include/atk-1.0/atk/atktext.h \ - /usr/include/atk-1.0/atk/atk-enum-types.h \ - /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ - /usr/include/atk-1.0/atk/atkhyperlink.h \ - /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ - /usr/include/atk-1.0/atk/atkhypertext.h \ - /usr/include/atk-1.0/atk/atkimage.h \ - /usr/include/atk-1.0/atk/atknoopobject.h \ - /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkplug.h \ - /usr/include/atk-1.0/atk/atkrange.h \ - /usr/include/atk-1.0/atk/atkregistry.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkrelation.h \ - /usr/include/atk-1.0/atk/atkrelationset.h \ - /usr/include/atk-1.0/atk/atkselection.h \ - /usr/include/atk-1.0/atk/atksocket.h \ - /usr/include/atk-1.0/atk/atkstateset.h \ - /usr/include/atk-1.0/atk/atkstreamablecontent.h \ - /usr/include/atk-1.0/atk/atktable.h \ - /usr/include/atk-1.0/atk/atktablecell.h \ - /usr/include/atk-1.0/atk/atkmisc.h \ - /usr/include/atk-1.0/atk/atkvalue.h \ - /usr/include/atk-1.0/atk/atkwindow.h \ - /usr/include/atk-1.0/atk/atk-autocleanups.h \ - /usr/include/gtk-3.0/gtk/gtkbin.h \ - /usr/include/gtk-3.0/gtk/gtkcontainer.h \ - /usr/include/gtk-3.0/gtk/gtkaccellabel.h \ - /usr/include/gtk-3.0/gtk/gtklabel.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h \ - /usr/include/gtk-3.0/gtk/gtkmenu.h \ - /usr/include/gtk-3.0/gtk/gtkmenushell.h \ - /usr/include/gtk-3.0/gtk/gtkaccelmap.h \ - /usr/include/gtk-3.0/gtk/gtkaccessible.h \ - /usr/include/gtk-3.0/gtk/gtkactionable.h \ - /usr/include/gtk-3.0/gtk/gtkactionbar.h \ - /usr/include/gtk-3.0/gtk/gtkadjustment.h \ - /usr/include/gtk-3.0/gtk/gtkappchooser.h \ - /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkbox.h \ - /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h \ - /usr/include/gtk-3.0/gtk/gtkcombobox.h \ - /usr/include/gtk-3.0/gtk/gtktreemodel.h \ - /usr/include/gtk-3.0/gtk/gtktreeview.h \ - /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderer.h \ - /usr/include/gtk-3.0/gtk/gtkcelleditable.h \ - /usr/include/gtk-3.0/gtk/gtktreesortable.h \ - /usr/include/gtk-3.0/gtk/gtkcellarea.h \ - /usr/include/gtk-3.0/gtk/gtkdnd.h \ - /usr/include/gtk-3.0/gtk/gtkselection.h \ - /usr/include/gtk-3.0/gtk/gtktextiter.h \ - /usr/include/gtk-3.0/gtk/gtktextattributes.h \ - /usr/include/gtk-3.0/gtk/gtktextchild.h \ - /usr/include/gtk-3.0/gtk/gtktexttag.h \ - /usr/include/gtk-3.0/gtk/gtkentry.h \ - /usr/include/gtk-3.0/gtk/gtkeditable.h \ - /usr/include/gtk-3.0/gtk/gtkimcontext.h \ - /usr/include/gtk-3.0/gtk/gtkentrybuffer.h \ - /usr/include/gtk-3.0/gtk/gtkentrycompletion.h \ - /usr/include/gtk-3.0/gtk/gtkliststore.h \ - /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h \ - /usr/include/gtk-3.0/gtk/gtkimage.h \ - /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutswindow.h \ - /usr/include/gtk-3.0/gtk/gtkaspectframe.h \ - /usr/include/gtk-3.0/gtk/gtkframe.h \ - /usr/include/gtk-3.0/gtk/gtkassistant.h \ - /usr/include/gtk-3.0/gtk/gtkbbox.h \ - /usr/include/gtk-3.0/gtk/gtkbindings.h \ - /usr/include/gtk-3.0/gtk/gtkbuildable.h \ - /usr/include/gtk-3.0/gtk/gtkbuilder.h \ - /usr/include/gtk-3.0/gtk/gtkbutton.h \ - /usr/include/gtk-3.0/gtk/gtkcalendar.h \ - /usr/include/gtk-3.0/gtk/gtkcellareabox.h \ - /usr/include/gtk-3.0/gtk/gtkcellareacontext.h \ - /usr/include/gtk-3.0/gtk/gtkcelllayout.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h \ - /usr/include/gtk-3.0/gtk/gtkcellview.h \ - /usr/include/gtk-3.0/gtk/gtkcheckbutton.h \ - /usr/include/gtk-3.0/gtk/gtktogglebutton.h \ - /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkmenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkclipboard.h \ - /usr/include/gtk-3.0/gtk/gtkcolorbutton.h \ - /usr/include/gtk-3.0/gtk/gtkcolorchooser.h \ - /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkcolorutils.h \ - /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h \ - /usr/include/gtk-3.0/gtk/gtkcssprovider.h \ - /usr/include/gtk-3.0/gtk/gtkcsssection.h \ - /usr/include/gtk-3.0/gtk/gtkdebug.h \ - /usr/include/gtk-3.0/gtk/gtkdragdest.h \ - /usr/include/gtk-3.0/gtk/gtkdragsource.h \ - /usr/include/gtk-3.0/gtk/gtkdrawingarea.h \ - /usr/include/gtk-3.0/gtk/gtkeventbox.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontroller.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h \ - /usr/include/gtk-3.0/gtk/gtkexpander.h \ - /usr/include/gtk-3.0/gtk/gtkfixed.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooser.h \ - /usr/include/gtk-3.0/gtk/gtkfilefilter.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkfilechoosernative.h \ - /usr/include/gtk-3.0/gtk/gtknativedialog.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkflowbox.h \ - /usr/include/gtk-3.0/gtk/gtkfontbutton.h \ - /usr/include/gtk-3.0/gtk/gtkfontchooser.h \ - /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkgesture.h \ - /usr/include/gtk-3.0/gtk/gtkgesturedrag.h \ - /usr/include/gtk-3.0/gtk/gtkgesturesingle.h \ - /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h \ - /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h \ - /usr/include/gtk-3.0/gtk/gtkgesturepan.h \ - /usr/include/gtk-3.0/gtk/gtkgesturerotate.h \ - /usr/include/gtk-3.0/gtk/gtkgesturestylus.h \ - /usr/include/gtk-3.0/gtk/gtkgestureswipe.h \ - /usr/include/gtk-3.0/gtk/gtkgesturezoom.h \ - /usr/include/gtk-3.0/gtk/gtkglarea.h \ - /usr/include/gtk-3.0/gtk/gtkgrid.h \ - /usr/include/gtk-3.0/gtk/gtkheaderbar.h \ - /usr/include/gtk-3.0/gtk/gtkicontheme.h \ - /usr/include/gtk-3.0/gtk/gtkstylecontext.h \ - /usr/include/gtk-3.0/gtk/gtkstyleprovider.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h \ - /usr/include/gtk-3.0/gtk/gtkiconview.h \ - /usr/include/gtk-3.0/gtk/gtktooltip.h \ - /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h \ - /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h \ - /usr/include/gtk-3.0/gtk/gtkimmulticontext.h \ - /usr/include/gtk-3.0/gtk/gtkinfobar.h \ - /usr/include/gtk-3.0/gtk/gtkinvisible.h \ - /usr/include/gtk-3.0/gtk/gtklayout.h \ - /usr/include/gtk-3.0/gtk/gtklevelbar.h \ - /usr/include/gtk-3.0/gtk/gtklinkbutton.h \ - /usr/include/gtk-3.0/gtk/gtklistbox.h \ - /usr/include/gtk-3.0/gtk/gtklockbutton.h \ - /usr/include/gtk-3.0/gtk/gtkmain.h \ - /usr/include/gtk-3.0/gtk/gtkmenubar.h \ - /usr/include/gtk-3.0/gtk/gtkmenubutton.h \ - /usr/include/gtk-3.0/gtk/gtkpopover.h \ - /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtktoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtktoolitem.h \ - /usr/include/gtk-3.0/gtk/gtksizegroup.h \ - /usr/include/gtk-3.0/gtk/gtkmessagedialog.h \ - /usr/include/gtk-3.0/gtk/gtkmodelbutton.h \ - /usr/include/gtk-3.0/gtk/gtkmodules.h \ - /usr/include/gtk-3.0/gtk/gtkmountoperation.h \ - /usr/include/gtk-3.0/gtk/gtknotebook.h \ - /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h \ - /usr/include/gtk-3.0/gtk/gtkorientable.h \ - /usr/include/gtk-3.0/gtk/gtkoverlay.h \ - /usr/include/gtk-3.0/gtk/gtkpadcontroller.h \ - /usr/include/gtk-3.0/gtk/gtkpagesetup.h \ - /usr/include/gtk-3.0/gtk/gtkpapersize.h \ - /usr/include/gtk-3.0/gtk/gtkpaned.h \ - /usr/include/gtk-3.0/gtk/gtkplacessidebar.h \ - /usr/include/gtk-3.0/gtk/gtkpopovermenu.h \ - /usr/include/gtk-3.0/gtk/gtkprintcontext.h \ - /usr/include/gtk-3.0/gtk/gtkprintoperation.h \ - /usr/include/gtk-3.0/gtk/gtkprintsettings.h \ - /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h \ - /usr/include/gtk-3.0/gtk/gtkprogressbar.h \ - /usr/include/gtk-3.0/gtk/gtkradiobutton.h \ - /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtkrange.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchooser.h \ - /usr/include/gtk-3.0/gtk/gtkrecentmanager.h \ - /usr/include/gtk-3.0/gtk/gtkrecentfilter.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkrender.h \ - /usr/include/gtk-3.0/gtk/gtkrevealer.h \ - /usr/include/gtk-3.0/gtk/gtkscale.h \ - /usr/include/gtk-3.0/gtk/gtkscalebutton.h \ - /usr/include/gtk-3.0/gtk/gtkscrollable.h \ - /usr/include/gtk-3.0/gtk/gtkscrollbar.h \ - /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h \ - /usr/include/gtk-3.0/gtk/gtksearchbar.h \ - /usr/include/gtk-3.0/gtk/gtksearchentry.h \ - /usr/include/gtk-3.0/gtk/gtkseparator.h \ - /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h \ - /usr/include/gtk-3.0/gtk/gtksettings.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutlabel.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutssection.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h \ - /usr/include/gtk-3.0/gtk/gtkshow.h \ - /usr/include/gtk-3.0/gtk/gtkstacksidebar.h \ - /usr/include/gtk-3.0/gtk/gtkstack.h \ - /usr/include/gtk-3.0/gtk/gtksizerequest.h \ - /usr/include/gtk-3.0/gtk/gtkspinbutton.h \ - /usr/include/gtk-3.0/gtk/gtkspinner.h \ - /usr/include/gtk-3.0/gtk/gtkstackswitcher.h \ - /usr/include/gtk-3.0/gtk/gtkstatusbar.h \ - /usr/include/gtk-3.0/gtk/gtkswitch.h \ - /usr/include/gtk-3.0/gtk/gtktextbuffer.h \ - /usr/include/gtk-3.0/gtk/gtktexttagtable.h \ - /usr/include/gtk-3.0/gtk/gtktextmark.h \ - /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h \ - /usr/include/gtk-3.0/gtk/gtktextview.h \ - /usr/include/gtk-3.0/gtk/gtktoolbar.h \ - /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h \ - /usr/include/gtk-3.0/gtk/gtktoolpalette.h \ - /usr/include/gtk-3.0/gtk/gtktoolshell.h \ - /usr/include/gtk-3.0/gtk/gtktestutils.h \ - /usr/include/gtk-3.0/gtk/gtktreednd.h \ - /usr/include/gtk-3.0/gtk/gtktreemodelsort.h \ - /usr/include/gtk-3.0/gtk/gtktreeselection.h \ - /usr/include/gtk-3.0/gtk/gtktreestore.h \ - /usr/include/gtk-3.0/gtk/gtktypebuiltins.h \ - /usr/include/gtk-3.0/gtk/gtkversion.h \ - /usr/include/gtk-3.0/gtk/gtkviewport.h \ - /usr/include/gtk-3.0/gtk/gtkvolumebutton.h \ - /usr/include/gtk-3.0/gtk/gtkwidgetpath.h \ - /usr/include/gtk-3.0/gtk/gtkwindowgroup.h \ - /usr/include/gtk-3.0/gtk/gtkwindow.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtktable.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h \ - /usr/include/gtk-3.0/gtk/gtk-autocleanups.h \ - /usr/include/gtkmm-3.0/gtkmm/targetlist.h \ - /usr/include/gtkmm-3.0/gtkmm/targetentry.h \ - /usr/include/gtkmm-3.0/gtkmm/clipboard.h \ - /usr/include/gtkmm-3.0/gtkmm/selectiondata.h \ - /usr/include/gtkmm-3.0/gtkmm/requisition.h \ - /usr/include/gtkmm-3.0/gtkmm/stylecontext.h \ - /usr/include/gtkmm-3.0/gtkmm/styleprovider.h \ - /usr/include/gtkmm-3.0/gtkmm/border.h \ - /usr/include/gtkmm-3.0/gtkmm/iconsource.h \ - /usr/include/gtkmm-3.0/gtkmm/iconset.h \ - /usr/include/gtkmm-3.0/gtkmm/stockid.h \ - /usr/include/gtkmm-3.0/gtkmm/widgetpath.h \ - /usr/include/gtkmm-3.0/gtkmm/accelgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/radioaction.h \ - /usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h \ - /usr/include/gtkmm-3.0/gtkmm/aboutdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/dialog.h \ - /usr/include/gtkmm-3.0/gtkmm/window.h \ - /usr/include/gtkmm-3.0/gtkmm/bin.h \ - /usr/include/gtkmm-3.0/gtkmm/container.h \ - /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h \ - /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h \ - /usr/include/gtkmm-3.0/gtkmm/application.h \ - /usr/include/gtkmm-3.0/gtkmm/actiongroup.h \ - /usr/include/gtkmm-3.0/gtkmm/accelkey.h \ - /usr/include/gtkmm-3.0/gtkmm/windowgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/box.h \ - /usr/include/gtkmm-3.0/gtkmm/orientable.h \ - /usr/include/gtkmm-3.0/gtkmm/hvbox.h \ - /usr/include/gtkmm-3.0/gtkmm/button.h \ - /usr/include/gtkmm-3.0/gtkmm/activatable.h \ - /usr/include/gtkmm-3.0/gtkmm/buttonbox.h \ - /usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h \ - /usr/include/gtkmm-3.0/gtkmm/headerbar.h \ - /usr/include/gtkmm-3.0/gtkmm/accelmap.h \ - /usr/include/gtkmm-3.0/gtkmm/actionable.h \ - /usr/include/gtkmm-3.0/gtkmm/actionbar.h \ - /usr/include/gtkmm-3.0/gtkmm/adjustment.h \ - /usr/include/gtkmm-3.0/gtkmm/alignment.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/combobox.h \ - /usr/include/gtkmm-3.0/gtkmm/celllayout.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderer.h \ - /usr/include/gtkmm-3.0/gtkmm/celleditable.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodel.h \ - /usr/include/gtkmm-3.0/gtkmm/treeiter.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h \ - /usr/include/gtkmm-3.0/gtkmm/cellarea.h \ - /usr/include/gtkmm-3.0/gtkmm/cellareacontext.h \ - /usr/include/gtkmm-3.0/gtkmm/treeview.h \ - /usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h \ - /usr/include/gtkmm-3.0/gtkmm/treeselection.h \ - /usr/include/gtkmm-3.0/gtkmm/treepath.h \ - /usr/include/gtkmm-3.0/gtkmm/scrollable.h \ - /usr/include/gtkmm-3.0/gtkmm/entry.h \ - /usr/include/gtkmm-3.0/gtkmm/editable.h \ - /usr/include/gtkmm-3.0/gtkmm/menu.h \ - /usr/include/gtkmm-3.0/gtkmm/menushell.h \ - /usr/include/gtkmm-3.0/gtkmm/menuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/accellabel.h \ - /usr/include/gtkmm-3.0/gtkmm/label.h \ - /usr/include/gtkmm-3.0/gtkmm/misc.h \ - /usr/include/gtkmm-3.0/gtkmm/entrycompletion.h \ - /usr/include/gtkmm-3.0/gtkmm/image.h \ - /usr/include/gtkmm-3.0/gtkmm/entrybuffer.h \ - /usr/include/gtkmm-3.0/gtkmm/tooltip.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/applicationwindow.h \ - /usr/include/gtkmm-3.0/gtkmm/arrow.h \ - /usr/include/gtkmm-3.0/gtkmm/aspectframe.h \ - /usr/include/gtkmm-3.0/gtkmm/frame.h \ - /usr/include/gtkmm-3.0/gtkmm/assistant.h \ - /usr/include/gtkmm-3.0/gtkmm/builder.h \ - /usr/include/gtkmm-3.0/gtkmm/cellareabox.h \ - /usr/include/gtkmm-3.0/gtkmm/cellview.h \ - /usr/include/gtkmm-3.0/gtkmm/checkbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/togglebutton.h \ - /usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h \ - /usr/include/gtkmm-3.0/gtkmm/colorbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/colorchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/colorselection.h \ - /usr/include/gtkmm-3.0/gtkmm/comboboxtext.h \ - /usr/include/gtkmm-3.0/gtkmm/cssprovider.h \ - /usr/include/gtkmm-3.0/gtkmm/csssection.h \ - /usr/include/gtkmm-3.0/gtkmm/drawingarea.h \ - /usr/include/gtkmm-3.0/gtkmm/expander.h \ - /usr/include/gtkmm-3.0/gtkmm/eventbox.h \ - /usr/include/gtkmm-3.0/gtkmm/eventcontroller.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooser.h \ - /usr/include/gtkmm-3.0/gtkmm/filefilter.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/filechoosernative.h \ - /usr/include/gtkmm-3.0/gtkmm/nativedialog.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/fixed.h \ - /usr/include/gtkmm-3.0/gtkmm/flowbox.h \ - /usr/include/gtkmm-3.0/gtkmm/flowboxchild.h \ - /usr/include/gtkmm-3.0/gtkmm/fontbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/fontchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/fontselection.h \ - /usr/include/gtkmm-3.0/gtkmm/gesture.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturedrag.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturesingle.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturepan.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturerotate.h \ - /usr/include/gtkmm-3.0/gtkmm/gestureswipe.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturezoom.h \ - /usr/include/gtkmm-3.0/gtkmm/glarea.h \ - /usr/include/gtkmm-3.0/gtkmm/grid.h \ - /usr/include/gtkmm-3.0/gtkmm/handlebox.h \ - /usr/include/gtkmm-3.0/gtkmm/hvpaned.h \ - /usr/include/gtkmm-3.0/gtkmm/paned.h \ - /usr/include/gtkmm-3.0/gtkmm/hvscale.h \ - /usr/include/gtkmm-3.0/gtkmm/scale.h \ - /usr/include/gtkmm-3.0/gtkmm/range.h \ - /usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h \ - /usr/include/gtkmm-3.0/gtkmm/scrollbar.h \ - /usr/include/gtkmm-3.0/gtkmm/hvseparator.h \ - /usr/include/gtkmm-3.0/gtkmm/separator.h \ - /usr/include/gtkmm-3.0/gtkmm/iconfactory.h \ - /usr/include/gtkmm-3.0/gtkmm/icontheme.h \ - /usr/include/gtkmm-3.0/gtkmm/iconinfo.h \ - /usr/include/gtkmm-3.0/gtkmm/iconview.h \ - /usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/infobar.h \ - /usr/include/gtkmm-3.0/gtkmm/calendar.h \ - /usr/include/gtkmm-3.0/gtkmm/invisible.h \ - /usr/include/gtkmm-3.0/gtkmm/layout.h \ - /usr/include/gtkmm-3.0/gtkmm/levelbar.h \ - /usr/include/gtkmm-3.0/gtkmm/listbox.h \ - /usr/include/gtkmm-3.0/gtkmm/listboxrow.h \ - /usr/include/gtkmm-3.0/gtkmm/liststore.h \ - /usr/include/gtkmm-3.0/gtkmm/treesortable.h \ - /usr/include/gtkmm-3.0/gtkmm/treedragdest.h \ - /usr/include/gtkmm-3.0/gtkmm/treedragsource.h \ - /usr/include/gtkmm-3.0/gtkmm/listviewtext.h \ - /usr/include/gtkmm-3.0/gtkmm/linkbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/main.h \ - /usr/include/gtkmm-3.0/gtkmm/menubar.h \ - /usr/include/gtkmm-3.0/gtkmm/menubutton.h \ - /usr/include/gtkmm-3.0/gtkmm/popover.h \ - /usr/include/gtkmm-3.0/gtkmm/messagedialog.h \ - /usr/include/gtkmm-3.0/gtkmm/modelbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/notebook.h \ - /usr/include/gtkmm-3.0/gtkmm/numerableicon.h \ - /usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h \ - /usr/include/gtkmm-3.0/gtkmm/overlay.h \ - /usr/include/gtkmm-3.0/gtkmm/pagesetup.h \ - /usr/include/gtkmm-3.0/gtkmm/papersize.h \ - /usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/printsettings.h \ - /usr/include/gtkmm-3.0/gtkmm/placessidebar.h \ - /usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h \ - /usr/include/gtkmm-3.0/gtkmm/popovermenu.h \ - /usr/include/gtkmm-3.0/gtkmm/printcontext.h \ - /usr/include/gtkmm-3.0/gtkmm/printer.h \ - /usr/include/gtkmm-3.0/gtkmm/printjob.h \ - /usr/include/gtkmm-3.0/gtkmm/printoperation.h \ - /usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h \ - /usr/include/gtkmm-3.0/gtkmm/printunixdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/progressbar.h \ - /usr/include/gtkmm-3.0/gtkmm/radiobutton.h \ - /usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/toolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/toolitem.h \ - /usr/include/gtkmm-3.0/gtkmm/sizegroup.h \ - /usr/include/gtkmm-3.0/gtkmm/recentaction.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/recentinfo.h \ - /usr/include/gtkmm-3.0/gtkmm/recentfilter.h \ - /usr/include/gtkmm-3.0/gtkmm/recentmanager.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/revealer.h \ - /usr/include/gtkmm-3.0/gtkmm/scalebutton.h \ - /usr/include/gtkmm-3.0/gtkmm/searchbar.h \ - /usr/include/gtkmm-3.0/gtkmm/searchentry.h \ - /usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h \ - /usr/include/gtkmm-3.0/gtkmm/settings.h \ - /usr/include/gtkmm-3.0/gtkmm/toolbar.h \ - /usr/include/gtkmm-3.0/gtkmm/toolshell.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutssection.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h \ - /usr/include/gtkmm-3.0/gtkmm/spinbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/spinner.h \ - /usr/include/gtkmm-3.0/gtkmm/stack.h \ - /usr/include/gtkmm-3.0/gtkmm/stacksidebar.h \ - /usr/include/gtkmm-3.0/gtkmm/stackswitcher.h \ - /usr/include/gtkmm-3.0/gtkmm/statusbar.h \ - /usr/include/gtkmm-3.0/gtkmm/statusicon.h \ - /usr/include/gtkmm-3.0/gtkmm/stock.h \ - /usr/include/gtkmm-3.0/gtkmm/stockitem.h \ - /usr/include/gtkmm-3.0/gtkmm/styleproperty.h \ - /usr/include/gtkmm-3.0/gtkmm/switch.h \ - /usr/include/gtkmm-3.0/gtkmm/table.h \ - /usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/textbuffer.h \ - /usr/include/gtkmm-3.0/gtkmm/texttagtable.h \ - /usr/include/gtkmm-3.0/gtkmm/texttag.h \ - /usr/include/gtkmm-3.0/gtkmm/textchildanchor.h \ - /usr/include/gtkmm-3.0/gtkmm/textmark.h \ - /usr/include/gtkmm-3.0/gtkmm/textiter.h \ - /usr/include/gtkmm-3.0/gtkmm/textattributes.h \ - /usr/include/gtkmm-3.0/gtkmm/textview.h \ - /usr/include/gtkmm-3.0/gtkmm/toolpalette.h \ - /usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodelsort.h \ - /usr/include/gtkmm-3.0/gtkmm/treerowreference.h \ - /usr/include/gtkmm-3.0/gtkmm/treestore.h \ - /usr/include/gtkmm-3.0/gtkmm/uimanager.h \ - /usr/include/gtkmm-3.0/gtkmm/viewport.h \ - /usr/include/gtkmm-3.0/gtkmm/volumebutton.h \ - /usr/include/c++/11.2.0/fstream \ - /usr/include/c++/11.2.0/bits/codecvt.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h \ - /usr/include/c++/11.2.0/bits/fstream.tcc \ - /usr/include/c++/11.2.0/filesystem \ - /usr/include/c++/11.2.0/bits/fs_fwd.h \ - /usr/include/c++/11.2.0/bits/fs_path.h \ - /usr/include/c++/11.2.0/locale \ - /usr/include/c++/11.2.0/bits/locale_facets_nonio.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h \ - /usr/include/libintl.h \ - /usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc \ - /usr/include/c++/11.2.0/bits/locale_conv.h \ - /usr/include/c++/11.2.0/iomanip \ - /usr/include/c++/11.2.0/bits/quoted_string.h \ - /usr/include/c++/11.2.0/codecvt \ - /usr/include/c++/11.2.0/bits/fs_dir.h \ - /usr/include/c++/11.2.0/bits/fs_ops.h \ - /usr/include/gtkmm-3.0/gtkmm/plug.h \ - /usr/include/gtk-3.0/gtk/gtkx.h \ - /usr/include/gtk-3.0/gtk/gtksocket.h \ - /usr/include/gtk-3.0/gdk/gdkx.h \ - /usr/include/X11/Xlib.h \ - /usr/include/X11/X.h \ - /usr/include/X11/Xfuncproto.h \ - /usr/include/X11/Xosdefs.h \ - /usr/include/X11/Xutil.h \ - /usr/include/X11/keysym.h \ - /usr/include/X11/keysymdef.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11device.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11display.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11property.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11window.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h \ - /usr/include/gtk-3.0/gtk/gtkplug.h \ - /usr/include/gtk-3.0/gtk/gtkx-autocleanups.h \ - /usr/include/pwd.h \ - /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h - - -/usr/include/c++/11.2.0/bits/quoted_string.h: - -/usr/include/c++/11.2.0/iomanip: - -/usr/include/c++/11.2.0/bits/locale_conv.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h: - -/usr/include/c++/11.2.0/locale: - -/usr/include/c++/11.2.0/bits/fs_path.h: - -/usr/include/c++/11.2.0/bits/fs_fwd.h: - -/usr/include/c++/11.2.0/filesystem: - -/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h: - -/usr/include/gtk-3.0/gtk/gtkx-autocleanups.h: - -/usr/include/gtk-3.0/gtk/gtkplug.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11visual.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11selection.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11keys.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11device.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h: - -/usr/include/X11/keysymdef.h: - -/usr/include/X11/keysym.h: - -/usr/include/X11/Xutil.h: - -/usr/include/X11/Xosdefs.h: - -/usr/include/X11/Xlib.h: - -/usr/include/gtk-3.0/gdk/gdkx.h: - -/usr/include/gtk-3.0/gtk/gtksocket.h: - -/usr/include/gtkmm-3.0/gtkmm/plug.h: - -/usr/include/libintl.h: - -/usr/include/c++/11.2.0/fstream: - -/usr/include/gtkmm-3.0/gtkmm/volumebutton.h: - -/usr/include/gtkmm-3.0/gtkmm/treerowreference.h: - -/usr/include/gtkmm-3.0/gtkmm/treemodelsort.h: - -/usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h: - -/usr/include/gtkmm-3.0/gtkmm/toolpalette.h: - -/usr/include/gtkmm-3.0/gtkmm/textview.h: - -/usr/include/gtkmm-3.0/gtkmm/textattributes.h: - -/usr/include/gtkmm-3.0/gtkmm/textiter.h: - -/usr/include/gtkmm-3.0/gtkmm/textchildanchor.h: - -/usr/include/gtkmm-3.0/gtkmm/texttagtable.h: - -/usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h: - -/usr/include/gtkmm-3.0/gtkmm/stacksidebar.h: - -/usr/include/gtkmm-3.0/gtkmm/stack.h: - -/usr/include/gtkmm-3.0/gtkmm/spinbutton.h: - -/usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h: - -/usr/include/gtkmm-3.0/gtkmm/shortcutssection.h: - -/usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h: - -/usr/include/gtkmm-3.0/gtkmm/toolshell.h: - -/usr/include/gtkmm-3.0/gtkmm/searchentry.h: - -/usr/include/gtkmm-3.0/gtkmm/searchbar.h: - -/usr/include/gtkmm-3.0/gtkmm/revealer.h: - -/usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h: - -/usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h: - -/usr/include/gtkmm-3.0/gtkmm/recentmanager.h: - -/usr/include/gtkmm-3.0/gtkmm/recentinfo.h: - -/usr/include/gtkmm-3.0/gtkmm/recentchooser.h: - -/usr/include/gtkmm-3.0/gtkmm/recentaction.h: - -/usr/include/gtkmm-3.0/gtkmm/toolitem.h: - -/usr/include/gtkmm-3.0/gtkmm/toolbutton.h: - -/usr/include/gtkmm-3.0/gtkmm/scalebutton.h: - -/usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h: - -/usr/include/gtkmm-3.0/gtkmm/radiobutton.h: - -/usr/include/gtkmm-3.0/gtkmm/progressbar.h: - -/usr/include/gtkmm-3.0/gtkmm/printunixdialog.h: - -/usr/include/gtkmm-3.0/gtkmm/printoperation.h: - -/usr/include/gtkmm-3.0/gtkmm/printer.h: - -/usr/include/gtkmm-3.0/gtkmm/printcontext.h: - -/usr/include/gtkmm-3.0/gtkmm/popovermenu.h: - -/usr/include/gtkmm-3.0/gtkmm/printsettings.h: - -/usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h: - -/usr/include/gtkmm-3.0/gtkmm/papersize.h: - -/usr/include/gtkmm-3.0/gtkmm/pagesetup.h: - -/usr/include/gtkmm-3.0/gtkmm/notebook.h: - -/usr/include/gtkmm-3.0/gtkmm/modelbutton.h: - -/usr/include/gtkmm-3.0/gtkmm/messagedialog.h: - -/usr/include/gtkmm-3.0/gtkmm/popover.h: - -/usr/include/gtkmm-3.0/gtkmm/menubutton.h: - -/usr/include/gtkmm-3.0/gtkmm/main.h: - -/usr/include/gtkmm-3.0/gtkmm/treedragsource.h: - -/usr/include/gtkmm-3.0/gtkmm/treedragdest.h: - -/usr/include/gtkmm-3.0/gtkmm/treesortable.h: - -/usr/include/gtkmm-3.0/gtkmm/liststore.h: - -/usr/include/gtkmm-3.0/gtkmm/listboxrow.h: - -/usr/include/gtkmm-3.0/gtkmm/listbox.h: - -/usr/include/gtkmm-3.0/gtkmm/levelbar.h: - -/usr/include/gtkmm-3.0/gtkmm/infobar.h: - -/usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h: - -/usr/include/gtkmm-3.0/gtkmm/iconview.h: - -/usr/include/gtkmm-3.0/gtkmm/iconinfo.h: - -/usr/include/gtkmm-3.0/gtkmm/scrollbar.h: - -/usr/include/gtkmm-3.0/gtkmm/range.h: - -/usr/include/gtkmm-3.0/gtkmm/hvpaned.h: - -/usr/include/gtkmm-3.0/gtkmm/handlebox.h: - -/usr/include/gtkmm-3.0/gtkmm/grid.h: - -/usr/include/gtkmm-3.0/gtkmm/glarea.h: - -/usr/include/gtkmm-3.0/gtkmm/gesturezoom.h: - -/usr/include/gtkmm-3.0/gtkmm/gesturerotate.h: - -/usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h: - -/usr/include/gtkmm-3.0/gtkmm/fontselection.h: - -/usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h: - -/usr/include/gtkmm-3.0/gtkmm/fontbutton.h: - -/usr/include/gtkmm-3.0/gtkmm/paned.h: - -/usr/include/gtkmm-3.0/gtkmm/flowboxchild.h: - -/usr/include/gtkmm-3.0/gtkmm/flowbox.h: - -/usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h: - -/usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h: - -/usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h: - -/usr/include/gtkmm-3.0/gtkmm/filefilter.h: - -/usr/include/gtkmm-3.0/gtkmm/filechooser.h: - -/usr/include/gtkmm-3.0/gtkmm/eventcontroller.h: - -/usr/include/gtkmm-3.0/gtkmm/expander.h: - -/usr/include/gtkmm-3.0/gtkmm/drawingarea.h: - -/usr/include/gtkmm-3.0/gtkmm/csssection.h: - -/usr/include/gtkmm-3.0/gtkmm/cssprovider.h: - -/usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h: - -/usr/include/gtkmm-3.0/gtkmm/colorchooser.h: - -/usr/include/gtkmm-3.0/gtkmm/colorbutton.h: - -/usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h: - -/usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h: - -/usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h: - -/usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h: - -/usr/include/gtkmm-3.0/gtkmm/cellview.h: - -/usr/include/gtkmm-3.0/gtkmm/builder.h: - -/usr/include/gtkmm-3.0/gtkmm/frame.h: - -/usr/include/gtkmm-3.0/gtkmm/aspectframe.h: - -/usr/include/gtkmm-3.0/gtkmm/arrow.h: - -/usr/include/gtkmm-3.0/gtkmm/applicationwindow.h: - -/usr/include/gtkmm-3.0/gtkmm/sizegroup.h: - -/usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h: - -/usr/include/gtkmm-3.0/gtkmm/entrybuffer.h: - -/usr/include/gtkmm-3.0/gtkmm/entrycompletion.h: - -/usr/include/gtkmm-3.0/gtkmm/misc.h: - -/usr/include/gtkmm-3.0/gtkmm/label.h: - -/usr/include/gtkmm-3.0/gtkmm/accellabel.h: - -/usr/include/gtkmm-3.0/gtkmm/entry.h: - -/usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h: - -/usr/include/gtkmm-3.0/gtkmm/treeiter.h: - -/usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h: - -/usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h: - -/usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h: - -/usr/include/gtkmm-3.0/gtkmm/table.h: - -/usr/include/gtkmm-3.0/gtkmm/celleditable.h: - -/usr/include/gtkmm-3.0/gtkmm/celllayout.h: - -/usr/include/gtkmm-3.0/gtkmm/combobox.h: - -/usr/include/gtkmm-3.0/gtkmm/appchooser.h: - -/usr/include/gtkmm-3.0/gtkmm/adjustment.h: - -/usr/include/gtkmm-3.0/gtkmm/actionbar.h: - -/usr/include/gtkmm-3.0/gtkmm/cellarea.h: - -/usr/include/gtkmm-3.0/gtkmm/accelmap.h: - -/usr/include/gtkmm-3.0/gtkmm/headerbar.h: - -/usr/include/gtkmm-3.0/gtkmm/buttonbox.h: - -/usr/include/gtkmm-3.0/gtkmm/activatable.h: - -/usr/include/gtkmm-3.0/gtkmm/hvbox.h: - -/usr/include/gtkmm-3.0/gtkmm/orientable.h: - -/usr/include/gtkmm-3.0/gtkmm/box.h: - -/usr/include/gtkmm-3.0/gtkmm/actiongroup.h: - -/usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h: - -/usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h: - -/usr/include/gtkmm-3.0/gtkmm/container.h: - -/usr/include/gtkmm-3.0/gtkmm/bin.h: - -/usr/include/gtkmm-3.0/gtkmm/radioaction.h: - -/usr/include/gtkmm-3.0/gtkmm/accelgroup.h: - -/usr/include/gtkmm-3.0/gtkmm/widgetpath.h: - -/usr/include/gtkmm-3.0/gtkmm/iconset.h: - -/usr/include/gtkmm-3.0/gtkmm/iconsource.h: - -/usr/include/gtkmm-3.0/gtkmm/border.h: - -/usr/include/gtkmm-3.0/gtkmm/requisition.h: - -/usr/include/gtkmm-3.0/gtkmm/clipboard.h: - -/usr/include/gtkmm-3.0/gtkmm/targetentry.h: - -/usr/include/gtkmm-3.0/gtkmm/targetlist.h: - -/usr/include/gtk-3.0/gtk/gtk-autocleanups.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h: - -/usr/include/gtkmm-3.0/gtkmm/settings.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h: - -/usr/include/gtkmm-3.0/gtkmm/treestore.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h: - -/usr/include/gtkmm-3.0/gtkmm/gesture.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkstock.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkaction.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h: - -/usr/include/gtk-3.0/gtk/gtkwidgetpath.h: - -/usr/include/gtk-3.0/gtk/gtkvolumebutton.h: - -/usr/include/gtk-3.0/gtk/gtktypebuiltins.h: - -/usr/include/gtk-3.0/gtk/gtktreestore.h: - -/usr/include/gtk-3.0/gtk/gtktoolitemgroup.h: - -/usr/include/gtk-3.0/gtk/gtktoolbar.h: - -/usr/include/gtk-3.0/gtk/gtktextview.h: - -/usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h: - -/usr/include/gtk-3.0/gtk/gtkswitch.h: - -/usr/include/gtk-3.0/gtk/gtkstatusbar.h: - -/usr/include/gtk-3.0/gtk/gtkstackswitcher.h: - -/usr/include/gtk-3.0/gtk/gtkspinner.h: - -/usr/include/gtk-3.0/gtk/gtkspinbutton.h: - -/usr/include/gtk-3.0/gtk/gtksizerequest.h: - -/usr/include/gtk-3.0/gtk/gtkstack.h: - -/usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h: - -/usr/include/gtk-3.0/gtk/gtkshow.h: - -/usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h: - -/usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h: - -/usr/include/gtk-3.0/gtk/gtkshortcutlabel.h: - -/usr/include/gtkmm-3.0/gtkmm/toolbar.h: - -/usr/include/gtk-3.0/gtk/gtksettings.h: - -/usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h: - -/usr/include/gtk-3.0/gtk/gtksearchbar.h: - -/usr/include/gtk-3.0/gtk/gtkscrollable.h: - -/usr/include/gtk-3.0/gtk/gtkscale.h: - -/usr/include/gtk-3.0/gtk/gtkrevealer.h: - -/usr/include/gtk-3.0/gtk/gtkrender.h: - -/usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h: - -/usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h: - -/usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h: - -/usr/include/gtk-3.0/gtk/gtkrecentfilter.h: - -/usr/include/gtk-3.0/gtk/gtkrecentmanager.h: - -/usr/include/gtk-3.0/gtk/gtkrange.h: - -/usr/include/gtkmm-3.0/gtkmm/tooltip.h: - -/usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h: - -/usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h: - -/usr/include/gtk-3.0/gtk/gtkradiomenuitem.h: - -/usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h: - -/usr/include/gtk-3.0/gtk/gtkprintsettings.h: - -/usr/include/gtk-3.0/gtk/gtkprintcontext.h: - -/usr/include/gtk-3.0/gtk/gtkpopovermenu.h: - -/usr/include/gtk-3.0/gtk/gtkplacessidebar.h: - -/usr/include/gtk-3.0/gtk/gtkpaned.h: - -/usr/include/gtk-3.0/gtk/gtkpapersize.h: - -/usr/include/gtk-3.0/gtk/gtkpadcontroller.h: - -/usr/include/gtk-3.0/gtk/gtkoverlay.h: - -/usr/include/gtk-3.0/gtk/gtkorientable.h: - -/usr/include/gtk-3.0/gtk/gtknotebook.h: - -/usr/include/gtk-3.0/gtk/gtkshortcutssection.h: - -/usr/include/gtk-3.0/gtk/gtkmountoperation.h: - -/usr/include/gtk-3.0/gtk/gtkmodelbutton.h: - -/usr/include/gtk-3.0/gtk/gtkmessagedialog.h: - -/usr/include/gtk-3.0/gtk/gtktoolitem.h: - -/usr/include/gtk-3.0/gtk/gtktoolbutton.h: - -/usr/include/gtk-3.0/gtk/gtkmenubutton.h: - -/usr/include/gtk-3.0/gtk/gtkmain.h: - -/usr/include/gtk-3.0/gtk/gtklockbutton.h: - -/usr/include/gtk-3.0/gtk/gtklayout.h: - -/usr/include/gtk-3.0/gtk/gtkinvisible.h: - -/usr/include/gtk-3.0/gtk/gtkinfobar.h: - -/usr/include/gtkmm-3.0/gtkmm/hvseparator.h: - -/usr/include/gtkmm-3.0/gtkmm/treeselection.h: - -/usr/include/gtk-3.0/gtk/gtkimmulticontext.h: - -/usr/include/gtkmm-3.0/gtkmm/gestureswipe.h: - -/usr/include/gtk-3.0/gtk/gtktooltip.h: - -/usr/include/gtk-3.0/gtk/gtkiconview.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h: - -/usr/include/gtk-3.0/gtk/gtkstyleprovider.h: - -/usr/include/gtk-3.0/gtk/gtkstylecontext.h: - -/usr/include/gtk-3.0/gtk/gtkicontheme.h: - -/usr/include/gtk-3.0/gtk/gtkheaderbar.h: - -/usr/include/gtk-3.0/gtk/gtkgrid.h: - -/usr/include/gtk-3.0/gtk/gtkglarea.h: - -/usr/include/gtk-3.0/gtk/gtkgesturezoom.h: - -/usr/include/gtk-3.0/gtk/gtkgesturestylus.h: - -/usr/include/gtk-3.0/gtk/gtkgesturepan.h: - -/usr/include/gtk-3.0/gtk/gtkgesturelongpress.h: - -/usr/include/gtk-3.0/gtk/gtkgesture.h: - -/usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h: - -/usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h: - -/usr/include/gtk-3.0/gtk/gtkfontchooser.h: - -/usr/include/gtk-3.0/gtk/gtkfontbutton.h: - -/usr/include/gtkmm-3.0/gtkmm/cellrenderer.h: - -/usr/include/gtk-3.0/gtk/gtkflowbox.h: - -/usr/include/gtk-3.0/gtk/gtkgesturesingle.h: - -/usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h: - -/usr/include/gtk-3.0/gtk/gtknativedialog.h: - -/usr/include/gtk-3.0/gtk/gtkfilechoosernative.h: - -/usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h: - -/usr/include/gtk-3.0/gtk/gtkexpander.h: - -/usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h: - -/usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h: - -/usr/include/gtk-3.0/gtk/gtkeventcontroller.h: - -/usr/include/gtk-3.0/gtk/gtkdragsource.h: - -/usr/include/gtk-3.0/gtk/gtkdebug.h: - -/usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h: - -/usr/include/gtk-3.0/gtk/gtkcsssection.h: - -/usr/include/gtk-3.0/gtk/gtkcssprovider.h: - -/usr/include/gtk-3.0/gtk/gtkcomboboxtext.h: - -/usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h: - -/usr/include/gtk-3.0/gtk/gtkcolorchooser.h: - -/usr/include/gtk-3.0/gtk/gtkcolorbutton.h: - -/usr/include/gtk-3.0/gtk/gtkmenuitem.h: - -/usr/include/gtk-3.0/gtk/gtkcheckbutton.h: - -/usr/include/gtkmm-3.0/gtkmm/hvscale.h: - -/usr/include/gtk-3.0/gtk/gtkcellview.h: - -/usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h: - -/usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h: - -/usr/include/gtk-3.0/gtk/gtkstacksidebar.h: - -/usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h: - -/usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h: - -/usr/include/gtk-3.0/gtk/gtkcellrenderertext.h: - -/usr/include/gtk-3.0/gtk/gtkcellareacontext.h: - -/usr/include/gtk-3.0/gtk/gtkbutton.h: - -/usr/include/gtk-3.0/gtk/gtkbuilder.h: - -/usr/include/gtk-3.0/gtk/gtkbuildable.h: - -/usr/include/gtk-3.0/gtk/gtkbindings.h: - -/usr/include/gtk-3.0/gtk/gtkbbox.h: - -/usr/include/gtk-3.0/gtk/gtkshortcutswindow.h: - -/usr/include/gtk-3.0/gtk/gtkapplicationwindow.h: - -/usr/include/gtk-3.0/gtk/gtkliststore.h: - -/usr/include/gtk-3.0/gtk/gtktextmark.h: - -/usr/include/gtk-3.0/gtk/gtkimcontext.h: - -/usr/include/gtkmm-3.0/gtkmm/nativedialog.h: - -/usr/include/gtk-3.0/gtk/gtktexttag.h: - -/usr/include/gtk-3.0/gtk/gtktextchild.h: - -/usr/include/gtk-3.0/gtk/gtktextattributes.h: - -/usr/include/gtk-3.0/gtk/gtkselection.h: - -/usr/include/gtk-3.0/gtk/gtkdnd.h: - -/usr/include/gtk-3.0/gtk/gtkcellrenderer.h: - -/usr/include/gtk-3.0/gtk/gtktreeview.h: - -/usr/include/gtk-3.0/gtk/gtktreemodel.h: - -/usr/include/gtk-3.0/gtk/gtkappchooserbutton.h: - -/usr/include/gtk-3.0/gtk/gtkbox.h: - -/usr/include/gtk-3.0/gtk/gtkfilefilter.h: - -/usr/include/gtk-3.0/gtk/gtkappchooserdialog.h: - -/usr/include/gtk-3.0/gtk/gtkadjustment.h: - -/usr/include/gtk-3.0/gtk/gtkactionbar.h: - -/usr/include/gtk-3.0/gtk/gtkaccessible.h: - -/usr/include/gtk-3.0/gtk/gtkmenushell.h: - -/usr/include/glib-2.0/gio/gconverteroutputstream.h: - -/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h: - -/usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h: - -/usr/include/glib-2.0/gio/goutputstream.h: - -/usr/include/glib-2.0/gio/gfilteroutputstream.h: - -/usr/include/glib-2.0/gio/gfilterinputstream.h: - -/usr/include/glib-2.0/gio/gasyncresult.h: - -/usr/include/gtkmm-3.0/gtkmm/gesturedrag.h: - -/usr/include/glib-2.0/gio/gappinfo.h: - -/usr/include/glibmm-2.4/glibmm/varianttype.h: - -/usr/include/glib-2.0/gio/gio.h: - -/usr/include/bits/mathcalls-narrow.h: - -/usr/include/giomm-2.4/giomm/dbusobjectmanager.h: - -/usr/include/gtk-3.0/gtk/gtkcellarea.h: - -/usr/include/giomm-2.4/giomm/action.h: - -/usr/include/glibmm-2.4/glibmm/listhandle.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h: - -/usr/include/glib-2.0/gio/gsimpleasyncresult.h: - -/usr/include/glibmm-2.4/glibmm/weakref.h: - -/usr/include/glibmm-2.4/glibmm/variantdict.h: - -/usr/include/glibmm-2.4/glibmm/valuearray.h: - -/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc: - -/usr/include/glibmm-2.4/glibmm/uriutils.h: - -/usr/include/gtkmm-3.0/gtkmm/stockitem.h: - -/usr/include/gtkmm-3.0/gtkmm/application.h: - -/usr/include/glibmm-2.4/glibmm/stringutils.h: - -/usr/include/glib-2.0/gio/gpollableutils.h: - -/usr/include/glibmm-2.4/glibmm/slisthandle.h: - -/usr/include/gtk-3.0/gtk/gtktextbuffer.h: - -/usr/include/glibmm-2.4/glibmm/shell.h: - -/usr/include/glibmm-2.4/glibmm/pattern.h: - -/usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h: - -/usr/include/glib-2.0/gio/gfileicon.h: - -/usr/include/glibmm-2.4/glibmm/optionentry.h: - -/usr/include/gtkmm-3.0/gtkmm/image.h: - -/usr/include/glibmm-2.4/glibmm/nodetree.h: - -/usr/include/bits/sigaction.h: - -/usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h: - -/usr/include/glibmm-2.4/glibmm/sarray.h: - -/usr/include/atk-1.0/atk/atkrelation.h: - -/usr/include/glibmm-2.4/glibmm/priorities.h: - -/usr/include/gdkmm-3.0/gdkmm/displaymanager.h: - -/usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h: - -/usr/include/glibmm-2.4/glibmm/timezone.h: - -/usr/include/glibmm-2.4/glibmm/datetime.h: - -/usr/include/bits/types/locale_t.h: - -/usr/include/gtk-3.0/gtk/gtkclipboard.h: - -/usr/include/glibmm-2.4/glibmm/balancedtree.h: - -/usr/include/gtkmm-3.0/gtkmm/gesturesingle.h: - -/usr/include/bits/types.h: - -/usr/include/glibmm-2.4/glibmm/bytearray.h: - -/usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h: - -/usr/include/glibmm-2.4/glibmm/propertyproxy_base.h: - -/usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h: - -/usr/include/glibmm-2.4/glibmm/utility.h: - -/usr/include/c++/11.2.0/bits/stl_deque.h: - -/usr/include/c++/11.2.0/bits/gslice.h: - -/usr/include/gtk-3.0/gtk/gtkmodules.h: - -/usr/include/c++/11.2.0/algorithm: - -/usr/include/gtk-3.0/gtk/gtkimcontextinfo.h: - -/usr/include/c++/11.2.0/bits/parse_numbers.h: - -/usr/include/c++/11.2.0/bits/string_view.tcc: - -/usr/include/glib-2.0/gio/gdtlsserverconnection.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h: - -/usr/include/c++/11.2.0/chrono: - -/usr/include/glibmm-2.4/glibmm/debug.h: - -/usr/include/bits/struct_stat.h: - -/usr/include/c++/11.2.0/bits/alloc_traits.h: - -/usr/include/glibmm-2.4/glibmm/propertyproxy.h: - -/usr/include/ctype.h: - -/usr/include/c++/11.2.0/bits/unique_lock.h: - -/usr/include/harfbuzz/hb-buffer.h: - -/usr/include/c++/11.2.0/tr1/gamma.tcc: - -/usr/include/glibmm-2.4/glibmm/wrap.h: - -/usr/include/bits/byteswap.h: - -/usr/include/c++/11.2.0/bits/stl_map.h: - -/usr/include/c++/11.2.0/map: - -/usr/include/glib-2.0/gobject/gparamspecs.h: - -/usr/include/glib-2.0/gio/gdbusserver.h: - -/usr/include/gtk-3.0/gtk/gtkpagesetup.h: - -/usr/include/harfbuzz/hb-common.h: - -/usr/include/gtkmm-3.0/gtkmm/menu.h: - -/usr/include/freetype2/freetype/config/public-macros.h: - -/usr/include/glib-2.0/gio/gtlsbackend.h: - -/usr/include/glib-2.0/gio/gdataoutputstream.h: - -/usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h: - -/usr/include/giomm-2.4/giomm/socketsource.h: - -/usr/include/gtk-3.0/gdk/gdkdevicetool.h: - -/usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h: - -/usr/include/sigc++-2.0/sigc++/adaptors/hide.h: - -/usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h: - -/usr/include/glib-2.0/gio/gioerror.h: - -/usr/include/giomm-2.4/giomm/dbusauthobserver.h: - -/usr/include/atk-1.0/atk/atkcomponent.h: - -/usr/include/c++/11.2.0/bits/uniform_int_dist.h: - -/usr/include/glibmm-2.4/glibmm/exceptionhandler.h: - -/usr/include/c++/11.2.0/mutex: - -/usr/include/glibmm-2.4/glibmm/helperlist.h: - -/usr/include/gtk-3.0/gtk/gtkwindow.h: - -/usr/include/c++/11.2.0/bits/stl_algo.h: - -/usr/include/glib-2.0/gio/gsocketaddressenumerator.h: - -/usr/include/gtkmm-3.0/gtkmm/scrollable.h: - -/usr/include/glibmm-2.4/glibmm/init.h: - -/usr/include/c++/11.2.0/bits/erase_if.h: - -/usr/include/glib-2.0/gio/ginitable.h: - -/usr/include/c++/11.2.0/bits/stream_iterator.h: - -/usr/include/gtk-3.0/gtk/gtkradiobutton.h: - -/usr/include/gtk-3.0/gtk/gtkcombobox.h: - -/usr/include/sigc++-2.0/sigc++/reference_wrapper.h: - -/usr/include/glib-2.0/gio/gdbusconnection.h: - -/usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h: - -/usr/include/atk-1.0/atk/atkobject.h: - -/usr/include/glib-2.0/gio/gsocketconnectable.h: - -/usr/include/glibmm-2.4/glibmm/variant_basictypes.h: - -/usr/include/c++/11.2.0/bits/uses_allocator.h: - -/usr/include/pangomm-1.4/pangomm/layout.h: - -/usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h: - -/usr/include/gtk-3.0/gtk/gtkimage.h: - -/usr/include/bits/siginfo-consts-arch.h: - -/usr/include/glib-2.0/gio/gfileinfo.h: - -/usr/include/sigc++-2.0/sigc++/limit_reference.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h: - -/usr/include/c++/11.2.0/bits/stl_set.h: - -/usr/include/c++/11.2.0/string: - -/usr/include/atk-1.0/atk/atkstreamablecontent.h: - -/usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h: - -/usr/lib/sigc++-2.0/include/sigc++config.h: - -/usr/include/gtkmm-3.0/gtkmm/textbuffer.h: - -/usr/include/pangomm-1.4/pangomm/fontdescription.h: - -/usr/include/glibmm-2.4/glibmm/module.h: - -/usr/include/c++/11.2.0/list: - -/usr/include/sigc++-2.0/sigc++/signal.h: - -/usr/include/gtkmm-3.0/gtkmm/comboboxtext.h: - -/usr/include/sigc++-2.0/sigc++/adaptors/compose.h: - -/usr/include/gtk-3.0/gtk/gtkcalendar.h: - -/usr/include/sigc++-2.0/sigc++/sigc++.h: - -/usr/include/gtk-3.0/gtk/gtktextiter.h: - -/usr/include/glibmm-2.4/glibmm/timeval.h: - -/usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h: - -/usr/include/glibmm-2.4/glibmm/value_custom.h: - -/usr/include/c++/11.2.0/bits/stl_vector.h: - -/usr/include/glib-2.0/gio/gcontenttype.h: - -/usr/include/giomm-2.4/giomm/fileattributeinfo.h: - -/usr/include/c++/11.2.0/bits/locale_facets_nonio.h: - -/usr/include/glib-2.0/gobject/glib-enumtypes.h: - -/usr/include/glib-2.0/gio/gconverterinputstream.h: - -/usr/include/sigc++-2.0/sigc++/functors/slot_base.h: - -/usr/include/sigc++-2.0/sigc++/functors/mem_fun.h: - -/usr/include/glib-2.0/gobject/gbindinggroup.h: - -/usr/include/c++/11.2.0/bits/char_traits.h: - -/usr/include/glib-2.0/glib/gmappedfile.h: - -/usr/include/giomm-2.4/giomm/tlsclientconnection.h: - -/usr/include/gtk-3.0/gtk/gtkaccelmap.h: - -/usr/include/glib-2.0/gobject/gboxed.h: - -/usr/include/glib-2.0/gobject/gclosure.h: - -/usr/include/glib-2.0/gobject/gtype.h: - -/usr/include/glib-2.0/gobject/gobject.h: - -/usr/include/gtkmm-3.0/gtkmm/menubar.h: - -/usr/include/glib-2.0/glib/ggettext.h: - -/usr/include/glib-2.0/gobject/gbinding.h: - -/usr/include/giomm-2.4/giomm/volumemonitor.h: - -/usr/include/glibmm-2.4/glibmm/exception.h: - -/usr/include/c++/11.2.0/pstl/glue_memory_defs.h: - -/usr/include/gtkmm-3.0/gtkmm/numerableicon.h: - -/usr/include/sigc++-2.0/sigc++/type_traits.h: - -/usr/include/glib-2.0/gio/gtlspassword.h: - -/usr/include/glibmm-2.4/glibmm/date.h: - -/usr/include/glibmm-2.4/glibmm/unicode.h: - -/usr/include/glib-2.0/glib/glib-autocleanups.h: - -/usr/include/atk-1.0/atk/atkversion.h: - -/usr/include/bits/types/stack_t.h: - -/usr/include/c++/11.2.0/bits/mask_array.h: - -/usr/include/glib-2.0/glib/deprecated/gthread.h: - -/usr/include/glib-2.0/glib/deprecated/grel.h: - -/usr/include/glib-2.0/gio/ginputstream.h: - -/usr/include/c++/11.2.0/bits/indirect_array.h: - -/usr/include/glib-2.0/glib/deprecated/gcompletion.h: - -/usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h: - -/usr/include/c++/11.2.0/bits/align.h: - -/usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h: - -/usr/include/gtk-3.0/gtk/gtkscrolledwindow.h: - -/usr/include/glib-2.0/glib/deprecated/gcache.h: - -/usr/include/bits/timex.h: - -/usr/include/c++/11.2.0/bits/gslice_array.h: - -/usr/include/glib-2.0/glib/gtimer.h: - -/usr/include/gtkmm-3.0/gtkmm/styleproperty.h: - -/usr/include/dirent.h: - -/usr/include/gtk-3.0/gtk/gtkprintoperation.h: - -/usr/include/c++/11.2.0/unordered_map: - -/usr/include/cairo/cairo-pdf.h: - -/usr/include/glib-2.0/glib/grefstring.h: - -/usr/include/glib-2.0/glib/grcbox.h: - -/usr/include/c++/11.2.0/bits/list.tcc: - -/usr/include/glib-2.0/glib/gqsort.h: - -/usr/include/bits/types/__fpos_t.h: - -/usr/include/glib-2.0/glib/gpattern.h: - -/usr/include/glibmm-2.4/glibmm/objectbase.h: - -/usr/include/bits/statx-generic.h: - -/usr/include/glib-2.0/glib/gvariant.h: - -/usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h: - -/usr/include/glib-2.0/glib/gunicode.h: - -/usr/include/glib-2.0/gio/gactiongroupexporter.h: - -/usr/include/bits/types/wint_t.h: - -/usr/include/glib-2.0/glib/gslist.h: - -/usr/include/glib-2.0/gio/gcharsetconverter.h: - -/usr/include/glib-2.0/glib/giochannel.h: - -/usr/include/glib-2.0/glib/ghook.h: - -/usr/include/glib-2.0/glib/gnode.h: - -/usr/include/glib-2.0/glib/glist.h: - -/usr/include/glib-2.0/glib/genviron.h: - -/usr/include/c++/11.2.0/iterator: - -/usr/include/bits/dirent_ext.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h: - -/usr/include/glib-2.0/glib/gdir.h: - -/usr/include/glib-2.0/gio/gfilemonitor.h: - -/usr/include/linux/stat.h: - -/usr/include/glibmm-2.4/glibmm/optioncontext.h: - -/usr/include/glib-2.0/glib/gdate.h: - -/usr/include/glib-2.0/glib/gregex.h: - -/usr/include/glib-2.0/glib/gconvert.h: - -/usr/include/giomm-2.4/giomm/resource.h: - -/usr/include/glib-2.0/glib/gchecksum.h: - -/usr/include/glibmm-2.4/glibmm/streamiochannel.h: - -/usr/include/glib-2.0/glib/gdatetime.h: - -/usr/include/glib-2.0/glib/gbookmarkfile.h: - -/usr/include/glib-2.0/glib/goption.h: - -/usr/include/fontconfig/fontconfig.h: - -/usr/include/gdkmm-3.0/gdkmm/devicemanager.h: - -/usr/include/gtk-3.0/gtk/gtkgesturedrag.h: - -/usr/include/glib-2.0/glib/gbitlock.h: - -/usr/include/glib-2.0/gio/gproxy.h: - -/usr/include/gtkmm-3.0/gtkmm/icontheme.h: - -/usr/include/bits/types/struct_sigstack.h: - -/usr/include/bits/getopt_core.h: - -/usr/include/giomm-2.4/giomm/filterinputstream.h: - -/usr/include/glib-2.0/glib/gqueue.h: - -/usr/include/bits/environments.h: - -/usr/include/sigc++-2.0/sigc++/functors/slot.h: - -/usr/include/harfbuzz/hb-set.h: - -/usr/include/giomm-2.4/giomm/dbusutils.h: - -/usr/include/bits/posix_opt.h: - -/usr/include/unistd.h: - -/usr/include/giomm-2.4/giomm/mountoperation.h: - -/usr/include/bits/sigstksz.h: - -/usr/include/alloca.h: - -/usr/include/gtk-3.0/gdk/gdkdrawingcontext.h: - -/usr/include/sys/single_threaded.h: - -/usr/include/gtkmm-3.0/gtkmm/treeview.h: - -/usr/include/glibmm-2.4/glibmm/optiongroup.h: - -/usr/include/glib-2.0/glib/gcharset.h: - -/usr/include/gtk-3.0/gtk/gtkcelllayout.h: - -/usr/include/glibmm-2.4/glibmm/error.h: - -/usr/include/bits/floatn-common.h: - -/usr/include/c++/11.2.0/typeinfo: - -/usr/include/glib-2.0/glib/gtrashstack.h: - -/usr/include/glib-2.0/gobject/gvaluearray.h: - -/usr/include/bits/time.h: - -/usr/include/c++/11.2.0/tr1/bessel_function.tcc: - -/usr/include/glibmm-2.4/glibmm/refptr.h: - -/usr/include/bits/types/__mbstate_t.h: - -/usr/include/giomm-2.4/giomm/dataoutputstream.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h: - -/usr/include/glibmm-2.4/glibmm/threads.h: - -/usr/include/c++/11.2.0/bits/std_function.h: - -/usr/include/glib-2.0/gio/gsocketclient.h: - -/usr/include/glib-2.0/glib/gtree.h: - -/usr/include/c++/11.2.0/bits/shared_ptr_base.h: - -/usr/include/glib-2.0/glib/gsequence.h: - -/usr/include/giomm-2.4/giomm/socketcontrolmessage.h: - -/usr/include/gtk-3.0/gtk/gtkgesturerotate.h: - -/usr/include/c++/11.2.0/bits/functional_hash.h: - -/usr/include/gtkmm-3.0/gtkmm/styleprovider.h: - -/usr/include/glibmm-2.4/glibmm/ustring.h: - -/usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h: - -/usr/include/bits/waitflags.h: - -/usr/include/glibmm-2.4/glibmm/containers.h: - -/usr/include/glib-2.0/glib/ghostutils.h: - -/usr/include/bits/locale.h: - -/usr/include/c++/11.2.0/bits/localefwd.h: - -/usr/include/bits/struct_mutex.h: - -/usr/include/c++/11.2.0/bits/ostream.tcc: - -/usr/include/gtkmm-3.0/gtkmm/listviewtext.h: - -/usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtktable.h: - -/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h: - -/usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h: - -/usr/include/c++/11.2.0/ext/string_conversions.h: - -/usr/include/glib-2.0/gobject/genums.h: - -/usr/include/c++/11.2.0/bits/node_handle.h: - -/usr/include/asm/types.h: - -/usr/include/c++/11.2.0/debug/debug.h: - -/usr/include/gtkmm-3.0/gtkmm/checkbutton.h: - -/usr/include/gtk-3.0/gtk/gtkcellareabox.h: - -/usr/include/wctype.h: - -/usr/include/c++/11.2.0/utility: - -/usr/include/gtk-3.0/gtk/deprecated/gtkrc.h: - -/usr/include/gtk-3.0/gtk/gtktoolpalette.h: - -/usr/include/glibmm-2.4/glibmm/containerhandle_shared.h: - -/usr/include/sigc++-2.0/sigc++/adaptors/retype.h: - -/usr/include/gtkmm-3.0/gtkmm/widget.h: - -/usr/include/giomm-2.4/giomm/liststore.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h: - -/usr/include/gtk-3.0/gdk/gdkcairo.h: - -/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h: - -/usr/include/bits/sigthread.h: - -/usr/include/c++/11.2.0/bits/invoke.h: - -/usr/include/gtk-3.0/gtk/gtkappchooser.h: - -/usr/include/glib-2.0/gio/gresource.h: - -/usr/include/bits/types/clock_t.h: - -/usr/include/bits/siginfo-consts.h: - -/usr/include/gtk-3.0/gtk/gtkscrollbar.h: - -/usr/include/glib-2.0/glib/gvarianttype.h: - -/usr/include/c++/11.2.0/ext/concurrence.h: - -/usr/include/c++/11.2.0/cctype: - -/usr/include/gtkmm-3.0/gtkmm/recentfilter.h: - -/usr/include/glibmm-2.4/glibmm/variantdbusstring.h: - -/usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h: - -/usr/include/bits/wchar.h: - -/usr/include/c++/11.2.0/bits/move.h: - -/usr/include/gnu/stubs.h: - -/usr/include/glib-2.0/gio/gdbusintrospection.h: - -/usr/include/pangomm-1.4/pangomm/coverage.h: - -/usr/include/c++/11.2.0/bits/nested_exception.h: - -/usr/include/glibmm-2.4/glibmm/timer.h: - -/usr/include/glib-2.0/glib/gslice.h: - -/usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h: - -/usr/include/c++/11.2.0/new: - -/usr/lib/glibmm-2.4/include/glibmmconfig.h: - -/usr/include/giomm-2.4/giomm/asyncresult.h: - -/usr/include/c++/11.2.0/bits/exception_defines.h: - -/usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h: - -/usr/include/glib-2.0/glib/gtestutils.h: - -/usr/include/c++/11.2.0/bits/exception_ptr.h: - -/usr/include/gtkmm-3.0/gtkmm/fontchooser.h: - -/usr/include/giomm-2.4/giomm/settings.h: - -/usr/include/gtk-3.0/gdk/gdktypes.h: - -/usr/include/pangomm-1.4/pangomm/color.h: - -/usr/include/gtkmm-3.0/gtkmm/texttag.h: - -/usr/include/glib-2.0/gobject/gvalue.h: - -/usr/include/glib-2.0/glib/gshell.h: - -/usr/include/locale.h: - -/usr/include/bits/setjmp.h: - -/usr/include/gtkmm-3.0/gtkmm/statusicon.h: - -/usr/include/bits/errno.h: - -/usr/include/bits/pthread_stack_min-dynamic.h: - -/usr/include/c++/11.2.0/backward/auto_ptr.h: - -/usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h: - -/usr/include/gtk-3.0/gtk/gtkrecentchooser.h: - -/usr/include/glib-2.0/gio/gioenumtypes.h: - -/usr/include/glib-2.0/glib/ghmac.h: - -/usr/include/c++/11.2.0/bits/basic_ios.tcc: - -/usr/include/gtk-3.0/gtk/gtksearchentry.h: - -/usr/include/bits/libc-header-start.h: - -/usr/include/glib-2.0/glib/grefcount.h: - -/usr/include/freetype2/freetype/config/ftstdlib.h: - -/usr/include/gtkmm-3.0/gtkmm/gesturepan.h: - -/usr/include/glib-2.0/glib/gtimezone.h: - -/usr/include/bits/local_lim.h: - -/usr/include/gtkmm-3.0/gtkmm/fixed.h: - -/usr/include/gtkmm-3.0/gtkmm/aboutdialog.h: - -/usr/include/c++/11.2.0/ostream: - -/usr/include/freetype2/freetype/config/ftconfig.h: - -/usr/include/glib-2.0/glib/gmem.h: - -/usr/include/bits/signal_ext.h: - -/usr/include/gtkmm-3.0/gtkmm/button.h: - -/usr/include/bits/types/cookie_io_functions_t.h: - -/usr/include/c++/11.2.0/bits/ios_base.h: - -/usr/include/bits/posix2_lim.h: - -/usr/include/giomm-2.4/giomm/simpleactiongroup.h: - -/usr/include/c++/11.2.0/bits/atomic_base.h: - -/usr/include/glib-2.0/gio/gsrvtarget.h: - -/usr/include/giomm-2.4/giomm/settingsschemakey.h: - -/usr/include/atk-1.0/atk/atk-enum-types.h: - -/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h: - -/usr/include/bits/types/struct_sched_param.h: - -/usr/include/giomm-2.4/giomm/resolver.h: - -/usr/include/giomm-2.4/giomm/tlsinteraction.h: - -/usr/include/gtkmm-3.0/gtkmm/eventbox.h: - -/usr/include/c++/11.2.0/bits/unordered_map.h: - -/usr/include/atk-1.0/atk/atknoopobjectfactory.h: - -/usr/include/atkmm-1.6/atkmm/implementor.h: - -/usr/include/glib-2.0/glib/gmain.h: - -/usr/include/sched.h: - -/usr/include/c++/11.2.0/cwctype: - -/usr/include/glib-2.0/glib/gutils.h: - -/usr/include/glib-2.0/gio/gnetworkaddress.h: - -/usr/include/giomm-2.4/giomm/menumodel.h: - -/usr/include/bits/types/__locale_t.h: - -/usr/include/pango-1.0/pango/pango-context.h: - -/usr/include/atk-1.0/atk/atkvalue.h: - -/usr/include/pangomm-1.4/pangomm/layoutiter.h: - -/usr/include/atk-1.0/atk/atkrelationset.h: - -/usr/include/sigc++-2.0/sigc++/functors/functor_trait.h: - -/usr/include/c++/11.2.0/bits/concept_check.h: - -/usr/include/glib-2.0/gio/gsubprocesslauncher.h: - -/usr/include/gtk-3.0/gtk/gtktreeselection.h: - -/home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc: - -/usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h: - -/usr/include/glib-2.0/gio/gapplication.h: - -/usr/include/c++/11.2.0/codecvt: - -/usr/include/sys/ucontext.h: - -/usr/include/glib-2.0/gio/gdrive.h: - -/usr/include/pango-1.0/pango/pango-layout.h: - -/usr/include/c++/11.2.0/bits/charconv.h: - -/usr/include/giomm-2.4/giomm/pollableoutputstream.h: - -/usr/include/giomm-2.4/giomm/menuattributeiter.h: - -/usr/include/asm-generic/types.h: - -/usr/include/c++/11.2.0/bits/vector.tcc: - -/usr/include/gtk-3.0/gdk/x11/gdkx11screen.h: - -/usr/include/glibmm-2.4/glibmm/signalproxy.h: - -/usr/include/c++/11.2.0/sstream: - -/usr/include/glib-2.0/gobject/gobject-autocleanups.h: - -/usr/include/giomm-2.4/giomm/error.h: - -/usr/include/glib-2.0/glib/gbase64.h: - -/usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h: - -/usr/include/c++/11.2.0/pstl/pstl_config.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h: - -/usr/include/c++/11.2.0/clocale: - -/usr/include/glib-2.0/gio/gmenuexporter.h: - -/usr/include/gtkmm-3.0/gtkmm/treepath.h: - -/usr/include/glib-2.0/gio/gsubprocess.h: - -/usr/include/sigc++-2.0/sigc++/signal_base.h: - -/usr/include/giomm-2.4/giomm/settingsschema.h: - -/usr/include/gtk-3.0/gdk/gdkdevicepad.h: - -/usr/include/pango-1.0/pango/pango-glyph-item.h: - -/usr/include/bits/pthreadtypes-arch.h: - -/usr/include/pangomm-1.4/pangomm/fontmetrics.h: - -/usr/include/c++/11.2.0/limits: - -/usr/include/freetype2/freetype/fterrors.h: - -/usr/include/gtk-3.0/gtk/gtkmenu.h: - -/usr/include/c++/11.2.0/type_traits: - -/usr/include/freetype2/ft2build.h: - -/usr/include/bits/endian.h: - -/usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h: - -/usr/include/giomm-2.4/giomm.h: - -/usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h: - -/usr/include/glib-2.0/gio/gapplicationcommandline.h: - -/usr/include/c++/11.2.0/bits/valarray_array.h: - -/usr/include/gtk-3.0/gtk/gtkx.h: - -/usr/lib/gtkmm-3.0/include/gtkmmconfig.h: - -/usr/include/pangomm-1.4/pangomm/item.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/types/struct_itimerspec.h: - -/usr/include/glibmm-2.4/glibmm/arrayhandle.h: - -/usr/include/c++/11.2.0/ratio: - -/usr/include/c++/11.2.0/stdexcept: - -/usr/include/gtk-3.0/gtk/gtkwindowgroup.h: - -/usr/include/giomm-2.4/giomm/socketservice.h: - -/usr/include/glib-2.0/glib/gfileutils.h: - -/usr/include/glib-2.0/gobject/gparam.h: - -/usr/include/gtk-3.0/gdk/gdkmonitor.h: - -/usr/include/glibmm-2.4/glibmm/spawn.h: - -/usr/include/c++/11.2.0/bits/stl_algobase.h: - -/usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h: - -/usr/include/glib-2.0/glib/gkeyfile.h: - -/usr/include/bits/cpu-set.h: - -/usr/include/bits/typesizes.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h: - -/usr/include/c++/11.2.0/ext/new_allocator.h: - -/usr/include/glibmm-2.4/glibmm/variantiter.h: - -/usr/include/c++/11.2.0/cstdio: - -/usr/include/bits/types/sig_atomic_t.h: - -/usr/include/linux/close_range.h: - -/usr/include/glib-2.0/gio/ginetaddress.h: - -/usr/include/bits/uintn-identity.h: - -/usr/include/gtk-3.0/gdk/gdkvisual.h: - -/usr/include/bits/time64.h: - -/usr/include/sigc++-2.0/sigc++/visit_each.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h: - -/usr/include/bits/endianness.h: - -/usr/include/c++/11.2.0/bits/postypes.h: - -/usr/include/gtk-3.0/gtk/gtkdrawingarea.h: - -/usr/include/glib-2.0/gio/gcancellable.h: - -/usr/include/c++/11.2.0/vector: - -/usr/include/endian.h: - -/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h: - -/usr/include/bits/types/__FILE.h: - -/usr/include/gtkmm-3.0/gtkmm/stockid.h: - -/usr/include/glibmm-2.4/glibmm/threadpool.h: - -/usr/include/bits/types/siginfo_t.h: - -/usr/include/glib-2.0/glib/guuid.h: - -/usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h: - -/usr/include/atk-1.0/atk/atk-autocleanups.h: - -/usr/include/stdlib.h: - -/usr/include/glib-2.0/gio/gnativevolumemonitor.h: - -/usr/include/giomm-2.4/giomm/networkservice.h: - -/usr/include/c++/11.2.0/bits/fstream.tcc: - -/usr/include/c++/11.2.0/ext/type_traits.h: - -/usr/include/glib-2.0/gio/gnotification.h: - -/usr/include/bits/long-double.h: - -/usr/include/c++/11.2.0/bits/predefined_ops.h: - -/usr/include/glib-2.0/gio/gdbusinterface.h: - -/usr/include/gtk-3.0/gdk/gdkscreen.h: - -/usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h: - -/usr/include/atk-1.0/atk/atkhyperlinkimpl.h: - -/usr/include/gtk-3.0/gtk/gtktreemodelfilter.h: - -/usr/include/glibmm-2.4/glibmm/keyfile.h: - -/usr/include/c++/11.2.0/backward/binders.h: - -/usr/include/c++/11.2.0/bits/basic_string.h: - -/usr/include/glib-2.0/gio/gpollableinputstream.h: - -/usr/include/glib-2.0/gio/gdbusmessage.h: - -/usr/include/features-time64.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h: - -/usr/include/c++/11.2.0/bits/slice_array.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h: - -/usr/include/c++/11.2.0/bits/streambuf.tcc: - -/usr/include/glib-2.0/gobject/gsignal.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h: - -/usr/include/gtk-3.0/gdk/gdkseat.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h: - -/usr/include/c++/11.2.0/ios: - -/usr/include/sigc++-2.0/sigc++/adaptors/bind.h: - -/usr/include/glibmm-2.4/glibmm/quark.h: - -/usr/include/sys/types.h: - -/usr/include/gtk-3.0/gtk/gtkscalebutton.h: - -/usr/include/glib-2.0/gio/gbytesicon.h: - -/usr/include/c++/11.2.0/ext/numeric_traits.h: - -/usr/include/glibmm-2.4/glibmm/bytes.h: - -/usr/include/gtk-3.0/gtk/gtkentrybuffer.h: - -/usr/include/pango-1.0/pango/pango-attributes.h: - -/usr/include/signal.h: - -/usr/include/bits/atomic_wide_counter.h: - -/usr/include/c++/11.2.0/bits/shared_ptr_atomic.h: - -/usr/include/gdkmm-3.0/gdkmm/pixbuf.h: - -/usr/include/c++/11.2.0/tr1/poly_hermite.tcc: - -/usr/include/glib-2.0/glib/gerror.h: - -/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h: - -/usr/include/bits/types/struct___jmp_buf_tag.h: - -/usr/include/gtk-3.0/gtk/gtkimcontextsimple.h: - -/usr/include/giomm-2.4/giomm/filteroutputstream.h: - -/usr/include/c++/11.2.0/bits/exception.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h: - -/usr/include/glib-2.0/glib/garray.h: - -/usr/include/glib-2.0/glib/gatomic.h: - -/usr/include/c++/11.2.0/tr1/hypergeometric.tcc: - -/usr/include/bits/stdlib-bsearch.h: - -/usr/include/glibmm-2.4/glibmm/dispatcher.h: - -/usr/include/c++/11.2.0/bits/memoryfwd.h: - -/usr/include/c++/11.2.0/bits/sstream.tcc: - -/usr/include/features.h: - -/usr/include/atk-1.0/atk/atkutil.h: - -/usr/include/giomm-2.4/giomm/proxyresolver.h: - -/usr/include/bits/types/struct_timespec.h: - -/usr/include/glibmm-2.4/glibmm/main.h: - -/usr/include/pangomm-1.4/pangomm/fontface.h: - -/usr/include/time.h: - -/usr/include/c++/11.2.0/bits/ptr_traits.h: - -/usr/include/bits/types/time_t.h: - -/usr/include/c++/11.2.0/bits/std_mutex.h: - -/usr/include/gtkmm-3.0/gtkmm/base.h: - -/usr/include/c++/11.2.0/bits/std_abs.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/atk-1.0/atk/atkrange.h: - -/usr/include/gtk-3.0/gtk/gtktreesortable.h: - -/usr/include/c++/11.2.0/bits/stl_tempbuf.h: - -/usr/include/c++/11.2.0/bits/allocated_ptr.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h: - -/usr/include/gdkmm-3.0/gdkmm/timecoord.h: - -/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h: - -/usr/include/glib-2.0/glib/deprecated/gallocator.h: - -/usr/include/glib-2.0/gio/ginetaddressmask.h: - -/usr/include/gtkmm-3.0/gtkmm/treemodel.h: - -/usr/include/gtk-3.0/gdk/gdkselection.h: - -/usr/include/glib-2.0/glib/gstring.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/c++/11.2.0/bits/allocator.h: - -/usr/include/c++/11.2.0/iosfwd: - -/usr/include/c++/11.2.0/bits/codecvt.h: - -/usr/include/c++/11.2.0/bits/functexcept.h: - -/usr/include/c++/11.2.0/bits/stl_multimap.h: - -/usr/include/atk-1.0/atk/atkstate.h: - -/usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h: - -/usr/include/glib-2.0/glib/gthreadpool.h: - -/usr/include/sigc++-2.0/sigc++/slot.h: - -/usr/lib/glib-2.0/include/glibconfig.h: - -/usr/include/glibmm-2.4/glibmm/value.h: - -/usr/include/c++/11.2.0/exception: - -/usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h: - -/usr/include/giomm-2.4/giomm/permission.h: - -/usr/include/c++/11.2.0/pstl/execution_defs.h: - -/usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc: - -/usr/include/c++/11.2.0/bits/ostream_insert.h: - -/usr/include/bits/wctype-wchar.h: - -/usr/include/bits/stdint-intn.h: - -/usr/include/giomm-2.4/giomm/fileinputstream.h: - -/usr/include/bits/sched.h: - -/usr/include/c++/11.2.0/bits/cxxabi_forced.h: - -/usr/include/gdkmm-3.0/gdkmm.h: - -/usr/include/glib-2.0/gio/gbufferedoutputstream.h: - -/usr/include/c++/11.2.0/bits/stl_function.h: - -/usr/include/gtk-3.0/gdk/gdkframetimings.h: - -/usr/include/gtkmm-3.0/gtkmm/placessidebar.h: - -/usr/include/glib-2.0/glib/grand.h: - -/usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h: - -/usr/include/sigc++-2.0/sigc++/connection.h: - -/usr/include/c++/11.2.0/string_view: - -/usr/include/glibmm-2.4/glibmm/fileutils.h: - -/usr/include/c++/11.2.0/bits/cpp_type_traits.h: - -/usr/include/c++/11.2.0/bits/range_access.h: - -/usr/include/bits/unistd_ext.h: - -/usr/include/pango-1.0/pango/pango-utils.h: - -/usr/include/bits/types/struct_tm.h: - -/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h: - -/usr/include/gtk-3.0/gtk/gtkappchooserwidget.h: - -/usr/include/giomm-2.4/giomm/dbusmenumodel.h: - -/usr/include/c++/11.2.0/bits/shared_ptr.h: - -/usr/include/stdio.h: - -/usr/include/giomm-2.4/giomm/simplepermission.h: - -/usr/include/c++/11.2.0/initializer_list: - -/usr/include/glib-2.0/gio/gaction.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11utils.h: - -/usr/include/c++/11.2.0/bits/basic_string.tcc: - -/usr/include/c++/11.2.0/iostream: - -/usr/include/c++/11.2.0/cmath: - -/usr/include/c++/11.2.0/ext/alloc_traits.h: - -/usr/include/bits/ss_flags.h: - -/usr/include/gtkmm-3.0/gtkmm/menushell.h: - -/usr/include/c++/11.2.0/bits/stl_construct.h: - -/usr/include/gtk-3.0/gtk/gtkdragdest.h: - -/usr/include/glib-2.0/gio/gio-autocleanups.h: - -/usr/include/gtkmm-3.0/gtkmm/action.h: - -/usr/include/bits/select.h: - -/usr/include/c++/11.2.0/system_error: - -/usr/include/c++/11.2.0/functional: - -/usr/include/glib-2.0/gio/gtcpconnection.h: - -/usr/include/giomm-2.4/giomm/actiongroup.h: - -/usr/include/glib-2.0/gio/gactionmap.h: - -/usr/include/gtk-3.0/gtk/gtkaspectframe.h: - -/usr/include/pango-1.0/pango/pango-types.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11display.h: - -/usr/include/bits/types/clockid_t.h: - -/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h: - -/usr/include/bits/types/timer_t.h: - -/usr/include/glib-2.0/gio/gliststore.h: - -/usr/include/gtk-3.0/gtk/gtkfilechooser.h: - -/usr/lib/cairomm-1.0/include/cairommconfig.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/sys/select.h: - -/usr/include/bits/types/__sigval_t.h: - -/usr/include/bits/stdint-uintn.h: - -/usr/include/asm/errno.h: - -/usr/include/glib-2.0/gio/gfile.h: - -/usr/include/glibmm-2.4/glibmm/enums.h: - -/usr/include/bits/timesize.h: - -/usr/include/glib-2.0/gio/gconverter.h: - -/usr/include/giomm-2.4/giomm/dbusconnection.h: - -/usr/include/bits/types/struct_FILE.h: - -/usr/include/gtk-3.0/gtk/gtklabel.h: - -/usr/include/gtkmm-3.0/gtkmm/dialog.h: - -/usr/include/bits/stdio.h: - -/usr/include/c++/11.2.0/cerrno: - -/usr/include/giomm-2.4/giomm/dbusproxy.h: - -/usr/include/gtkmm-3.0/gtkmm/statusbar.h: - -/usr/include/gtk-3.0/gtk/gtkassistant.h: - -/usr/include/bits/getopt_posix.h: - -/usr/include/gtkmm-3.0/gtkmm/assistant.h: - -/usr/include/glib-2.0/glib/gquark.h: - -/usr/include/errno.h: - -/usr/include/linux/limits.h: - -/usr/include/giomm-2.4/giomm/menu.h: - -/usr/include/linux/errno.h: - -/usr/include/gtkmm-3.0/gtkmm/textmark.h: - -/usr/include/giomm-2.4/giomm/dbusinterfacevtable.h: - -/usr/include/c++/11.2.0/cwchar: - -/usr/include/giomm-2.4/giomm/application.h: - -/usr/include/gtk-3.0/gtk/gtkcontainer.h: - -/usr/include/asm-generic/errno-base.h: - -/usr/include/gtkmm-3.0/gtkmm/separator.h: - -/usr/include/glibmm-2.4/glibmm/regex.h: - -/usr/include/atk-1.0/atk/atkselection.h: - -/usr/include/glib-2.0/glib/gmarkup.h: - -/usr/include/bits/types/error_t.h: - -/usr/include/c++/11.2.0/bits/hash_bytes.h: - -/usr/include/linux/stddef.h: - -/usr/include/bits/fp-logb.h: - -/usr/include/c++/11.2.0/bits/locale_classes.tcc: - -/usr/include/bits/fp-fast.h: - -/usr/include/gtkmm-3.0/gtkmm/toggleaction.h: - -/usr/include/pangomm-1.4/pangomm/font.h: - -/usr/include/glib-2.0/gio/gactiongroup.h: - -/usr/include/gtkmm-3.0/gtkmm/menuitem.h: - -/usr/include/c++/11.2.0/streambuf: - -/usr/include/c++/11.2.0/bits/hashtable_policy.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h: - -/usr/include/giomm-2.4/giomm/socketconnectable.h: - -/usr/include/gtk-3.0/gtk/gtkprogressbar.h: - -/usr/include/c++/11.2.0/bits/basic_ios.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h: - -/usr/include/glibmm-2.4/glibmm/variant.h: - -/usr/include/c++/11.2.0/bits/streambuf_iterator.h: - -/usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h: - -/usr/include/gtk-3.0/gtk/gtkactionable.h: - -/usr/include/c++/11.2.0/bits/locale_facets.tcc: - -/usr/include/giomm-2.4/giomm/volume.h: - -/usr/include/c++/11.2.0/istream: - -/usr/include/gtk-3.0/gdk/gdkmain.h: - -/usr/include/c++/11.2.0/bits/istream.tcc: - -/usr/include/bits/siginfo-arch.h: - -/usr/include/c++/11.2.0/bits/stl_uninitialized.h: - -/usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h: - -/usr/include/gtk-3.0/gtk/gtklevelbar.h: - -/usr/include/glib-2.0/gobject/glib-types.h: - -/usr/include/gtkmm-3.0/gtkmm.h: - -/usr/include/gtk-3.0/gtk/gtkgestureswipe.h: - -/usr/include/c++/11.2.0/bit: - -/usr/include/bits/sigstack.h: - -/usr/include/bits/signum-arch.h: - -/usr/lib/giomm-2.4/include/giommconfig.h: - -/usr/include/glib-2.0/gio/gcredentials.h: - -/usr/include/glib-2.0/gio/gtlscertificate.h: - -/usr/include/bits/types/__sigset_t.h: - -/usr/include/bits/thread-shared-types.h: - -/usr/include/giomm-2.4/giomm/simpleiostream.h: - -/usr/include/glib-2.0/glib/gscanner.h: - -/usr/include/pthread.h: - -/usr/include/glib-2.0/glib/gstringchunk.h: - -/usr/include/giomm-2.4/giomm/fileiostream.h: - -/usr/include/bits/types/sigset_t.h: - -/usr/include/glibmm-2.4/glibmm/base64.h: - -/usr/include/c++/11.2.0/tuple: - -/usr/include/giomm-2.4/giomm/inputstream.h: - -/usr/include/gtkmm-3.0/gtkmm/alignment.h: - -/usr/include/pango-1.0/pango/pango-glyph.h: - -/usr/include/c++/11.2.0/tr1/legendre_function.tcc: - -/usr/include/glib-2.0/gobject/gtypeplugin.h: - -/usr/include/glib-2.0/gobject/gmarshal.h: - -/usr/include/c++/11.2.0/ext/aligned_buffer.h: - -/usr/include/giomm-2.4/giomm/networkaddress.h: - -/usr/include/glib-2.0/glib.h: - -/usr/include/freetype2/freetype/fttypes.h: - -/usr/include/bits/types/__fpos64_t.h: - -/usr/include/glib-2.0/gio/gsimpleiostream.h: - -/usr/include/glibmm-2.4/glibmm/binding.h: - -/usr/include/gtkmm-3.0/gtkmm/stackswitcher.h: - -/usr/include/freetype2/freetype/config/ftheader.h: - -/usr/include/c++/11.2.0/bits/deque.tcc: - -/usr/include/giomm-2.4/giomm/actionmap.h: - -/usr/include/glib-2.0/glib/gspawn.h: - -/usr/include/cairomm-1.0/cairomm/pattern.h: - -/usr/include/pangomm-1.4/pangomm/layoutrun.h: - -/usr/include/glib-2.0/glib/galloca.h: - -/usr/include/gtk-3.0/gtk/gtkcellrendererspin.h: - -/usr/include/bits/floatn.h: - -/usr/include/glib-2.0/gobject/gvaluetypes.h: - -/usr/include/glib-2.0/glib/gmacros.h: - -/usr/include/giomm-2.4/giomm/loadableicon.h: - -/usr/include/glib-2.0/gio/gdatainputstream.h: - -/usr/include/wchar.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h: - -/usr/include/glib-2.0/glib/gbytes.h: - -/usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h: - -/usr/include/c++/11.2.0/bits/fs_ops.h: - -/usr/include/gtkmm-3.0/gtkmm/buildable.h: - -/usr/include/gtkmm-3.0/gtkmm/accelkey.h: - -/usr/include/c++/11.2.0/bits/stl_relops.h: - -/usr/include/bits/xopen_lim.h: - -/usr/include/bits/uio_lim.h: - -/usr/include/c++/11.2.0/tr1/exp_integral.tcc: - -/usr/include/glib-2.0/glib/gversion.h: - -/usr/include/glib-2.0/glib/gversionmacros.h: - -/usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h: - -/usr/include/pangomm-1.4/pangomm/layoutline.h: - -/usr/include/string.h: - -/usr/include/glib-2.0/glib/gthread.h: - -/usr/include/glib-2.0/glib/gbacktrace.h: - -/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h: - -/usr/include/glib-2.0/glib/gdataset.h: - -/usr/include/bits/signum-generic.h: - -/usr/include/giomm-2.4/giomm/simpleaction.h: - -/usr/include/c++/11.2.0/bits/refwrap.h: - -/usr/include/bits/types/sigval_t.h: - -/usr/include/giomm-2.4/giomm/memoryinputstream.h: - -/usr/include/glib-2.0/gio/gioenums.h: - -/usr/include/gtk-3.0/gtk/gtk.h: - -/usr/include/gdkmm-3.0/gdkmm/frameclock.h: - -/usr/include/stdc-predef.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h: - -/usr/include/atk-1.0/atk/atktext.h: - -/usr/include/glib-2.0/gio/gdbusactiongroup.h: - -/usr/include/glib-2.0/gio/gdbusaddress.h: - -/usr/include/gtkmm-3.0/gtkmm/colorselection.h: - -/usr/include/glib-2.0/gio/gdbusauthobserver.h: - -/usr/include/harfbuzz/hb-style.h: - -/usr/include/gtk-3.0/gtk/gtkcolorutils.h: - -/usr/include/glib-2.0/gio/gdbusmenumodel.h: - -/usr/include/glib-2.0/gio/gdbusnameowning.h: - -/usr/include/glib-2.0/glib/deprecated/gmain.h: - -/usr/include/c++/11.2.0/cstdint: - -/usr/include/atk-1.0/atk/atkplug.h: - -/usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h: - -/usr/include/bits/sigevent-consts.h: - -/usr/include/glib-2.0/gio/gdbusmethodinvocation.h: - -/usr/include/glib-2.0/gio/gdbusnamewatching.h: - -/usr/include/glib-2.0/gio/gasyncinitable.h: - -/usr/include/glib-2.0/gobject/gsourceclosure.h: - -/usr/include/gdkmm-3.0/gdkmm/visual.h: - -/usr/include/gtkmm-3.0/gtkmm/iconfactory.h: - -/usr/include/gtk-3.0/gtk/gtkentrycompletion.h: - -/usr/include/glib-2.0/gio/gdbusobjectmanager.h: - -/usr/include/gtkmm-3.0/gtkmm/uimanager.h: - -/usr/include/glib-2.0/gio/gfileiostream.h: - -/usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h: - -/usr/include/gtk-3.0/gtk/gtkborder.h: - -/usr/include/glib-2.0/gio/gdbusobjectproxy.h: - -/usr/include/glib-2.0/gio/gdebugcontroller.h: - -/usr/include/gtk-3.0/gdk/gdkconfig.h: - -/usr/include/gtk-3.0/gdk/gdkdnd.h: - -/usr/include/glib-2.0/gio/gdbusobjectskeleton.h: - -/usr/include/glib-2.0/gio/gdbusproxy.h: - -/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h: - -/usr/include/glib-2.0/glib/gstrvbuilder.h: - -/usr/include/c++/11.2.0/tr1/special_function_util.h: - -/usr/include/glib-2.0/gio/gdbusutils.h: - -/usr/include/glib-2.0/gio/gdebugcontrollerdbus.h: - -/usr/include/glib-2.0/gio/gdtlsclientconnection.h: - -/usr/include/glibmm-2.4/glibmm/markup.h: - -/usr/include/glib-2.0/gio/gdtlsconnection.h: - -/usr/include/c++/11.2.0/stdlib.h: - -/usr/include/glib-2.0/gio/gemblemedicon.h: - -/usr/include/glib-2.0/gio/gicon.h: - -/usr/include/linux/types.h: - -/usr/include/glib-2.0/gio/gemblem.h: - -/usr/include/glib-2.0/gio/gfileattribute.h: - -/usr/include/glibmm-2.4/glibmm/object.h: - -/usr/include/gtk-3.0/gtk/gtkenums.h: - -/usr/include/gtkmm-3.0/gtkmm/stylecontext.h: - -/usr/include/glib-2.0/gio/gfileinputstream.h: - -/usr/include/glib-2.0/gio/giostream.h: - -/usr/include/c++/11.2.0/stack: - -/usr/include/glib-2.0/gio/gfileoutputstream.h: - -/usr/include/glib-2.0/gio/ginetsocketaddress.h: - -/usr/include/giomm-2.4/giomm/filenamecompleter.h: - -/usr/include/glib-2.0/gio/gsocketaddress.h: - -/usr/include/glib-2.0/gmodule.h: - -/usr/include/glib-2.0/gio/gproxyresolver.h: - -/usr/include/glib-2.0/gio/glistmodel.h: - -/usr/include/pangomm-1.4/pangomm/language.h: - -/usr/include/gtk-3.0/gtk/gtktreemodelsort.h: - -/usr/include/freetype2/freetype/fterrdef.h: - -/usr/include/gtk-3.0/gdk/gdkenumtypes.h: - -/usr/include/atk-1.0/atk/atkaction.h: - -/usr/include/c++/11.2.0/bits/unique_ptr.h: - -/usr/include/glib-2.0/gio/gmemoryinputstream.h: - -/usr/include/glib-2.0/gio/gpollableoutputstream.h: - -/usr/include/glib-2.0/gio/gmemorymonitor.h: - -/usr/include/gtkmm-3.0/gtkmm/scale.h: - -/usr/include/glib-2.0/gio/gmemoryoutputstream.h: - -/usr/include/c++/11.2.0/bits/algorithmfwd.h: - -/usr/include/bits/stat.h: - -/usr/include/glib-2.0/gio/gmenu.h: - -/usr/include/glib-2.0/gio/gmenumodel.h: - -/usr/include/glib-2.0/gio/gmount.h: - -/usr/include/gtk-3.0/gtk/gtktoolshell.h: - -/usr/include/glib-2.0/gio/gmountoperation.h: - -/usr/include/gtkmm-3.0/gtkmm/filechoosernative.h: - -/usr/include/glib-2.0/glib/gmessages.h: - -/usr/include/pango-1.0/pango/pango-fontmap.h: - -/usr/include/glib-2.0/gio/gnativesocketaddress.h: - -/usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h: - -/usr/include/bits/dirent.h: - -/usr/include/glib-2.0/gio/gvolumemonitor.h: - -/usr/include/glib-2.0/gio/gnetworkmonitor.h: - -/usr/include/cairomm-1.0/cairomm/refptr.h: - -/usr/include/glib-2.0/gio/gnetworkservice.h: - -/usr/include/glib-2.0/gio/gpermission.h: - -/usr/include/glib-2.0/gio/gpowerprofilemonitor.h: - -/usr/include/sigc++-2.0/sigc++/trackable.h: - -/usr/include/glib-2.0/gio/gpropertyaction.h: - -/usr/include/glib-2.0/gio/gproxyaddress.h: - -/usr/include/giomm-2.4/giomm/contenttype.h: - -/usr/include/glib-2.0/gio/gproxyaddressenumerator.h: - -/usr/include/glib-2.0/gio/gresolver.h: - -/usr/include/pangomm-1.4/pangomm/tabarray.h: - -/usr/include/glib-2.0/gio/gseekable.h: - -/usr/include/giomm-2.4/giomm/iostream.h: - -/usr/include/c++/11.2.0/cstddef: - -/usr/include/glib-2.0/gio/gsettings.h: - -/usr/include/gtk-3.0/gtk/gtkpopover.h: - -/usr/include/atk-1.0/atk/atktablecell.h: - -/usr/include/glib-2.0/gio/gsettingsschema.h: - -/usr/include/glib-2.0/gio/gsimpleaction.h: - -/usr/include/glib-2.0/gio/gsimpleactiongroup.h: - -/usr/include/giomm-2.4/giomm/file.h: - -/usr/include/glib-2.0/gio/gsimplepermission.h: - -/usr/include/giomm-2.4/giomm/dbussubtreevtable.h: - -/usr/include/glibmm-2.4/glibmm/property.h: - -/usr/include/glib-2.0/gio/gsocket.h: - -/usr/include/glib-2.0/gio/gsocketconnection.h: - -/usr/include/glib-2.0/gio/gsocketcontrolmessage.h: - -/usr/include/glib-2.0/gio/gsocketlistener.h: - -/usr/include/giomm-2.4/giomm/fileicon.h: - -/usr/include/glib-2.0/gio/gsocketservice.h: - -/usr/include/gtk-3.0/gtk/gtkeventbox.h: - -/usr/include/glib-2.0/gio/gtask.h: - -/usr/include/giomm-2.4/giomm/dbusinterface.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h: - -/usr/include/gdkmm-3.0/gdkmm/seat.h: - -/usr/include/atk-1.0/atk/atkregistry.h: - -/usr/include/glib-2.0/glib-object.h: - -/usr/include/glib-2.0/gio/gtcpwrapperconnection.h: - -/usr/include/glib-2.0/gobject/gsignalgroup.h: - -/usr/include/glib-2.0/gio/gtestdbus.h: - -/usr/include/glibmm-2.4/glibmm/miscutils.h: - -/usr/include/limits.h: - -/usr/include/glib-2.0/gio/gthemedicon.h: - -/usr/include/glib-2.0/gio/gthreadedsocketservice.h: - -/usr/include/gdkmm-3.0/gdkmm/rectangle.h: - -/usr/include/glib-2.0/gio/gtlsclientconnection.h: - -/usr/include/glib-2.0/gio/gtlsconnection.h: - -/usr/include/glib-2.0/gio/gtlsinteraction.h: - -/usr/include/glib-2.0/gio/gtlsserverconnection.h: - -/usr/include/glib-2.0/gio/gvfs.h: - -/usr/include/giomm-2.4/giomm/dbuserrorutils.h: - -/usr/include/pangomm-1.4/pangomm/attriter.h: - -/usr/include/glib-2.0/gio/gzlibcompressor.h: - -/usr/include/glib-2.0/gio/gzlibdecompressor.h: - -/usr/include/X11/X.h: - -/usr/include/gtkmm-3.0/gtkmm/invisible.h: - -/usr/include/glib-2.0/glib/gasyncqueue.h: - -/usr/include/bits/confname.h: - -/usr/include/giomm-2.4/giomm/appinfo.h: - -/usr/include/giomm-2.4/giomm/proxyaddress.h: - -/usr/include/giomm-2.4/giomm/applaunchcontext.h: - -/usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h: - -/usr/include/giomm-2.4/giomm/tcpwrapperconnection.h: - -/usr/include/giomm-2.4/giomm/icon.h: - -/usr/include/giomm-2.4/giomm/cancellable.h: - -/usr/include/glibmm-2.4/glibmm/value_basictypes.h: - -/usr/include/giomm-2.4/giomm/applicationcommandline.h: - -/usr/include/giomm-2.4/giomm/fileattributeinfolist.h: - -/usr/include/giomm-2.4/giomm/fileenumerator.h: - -/usr/include/pwd.h: - -/usr/include/bits/mathcalls.h: - -/usr/include/giomm-2.4/giomm/fileinfo.h: - -/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: - -/usr/include/giomm-2.4/giomm/outputstream.h: - -/usr/include/giomm-2.4/giomm/filemonitor.h: - -/usr/include/giomm-2.4/giomm/fileoutputstream.h: - -/usr/include/c++/11.2.0/bits/valarray_array.tcc: - -/usr/include/gtk-3.0/gtk/gtkviewport.h: - -/usr/include/giomm-2.4/giomm/mount.h: - -/usr/include/gtkmm-3.0/gtkmm/togglebutton.h: - -/usr/include/bits/types/FILE.h: - -/usr/include/giomm-2.4/giomm/initable.h: - -/usr/include/cairomm-1.0/cairomm/device.h: - -/usr/include/giomm-2.4/giomm/asyncinitable.h: - -/usr/include/gtk-3.0/gtk/gtkframe.h: - -/usr/include/gdkmm-3.0/gdkmm/rgba.h: - -/usr/include/giomm-2.4/giomm/credentials.h: - -/usr/include/giomm-2.4/giomm/socketconnection.h: - -/usr/include/atk-1.0/atk/atkgobjectaccessible.h: - -/usr/include/giomm-2.4/giomm/dbusmethodinvocation.h: - -/usr/include/stdint.h: - -/usr/include/giomm-2.4/giomm/dbusmessage.h: - -/usr/include/giomm-2.4/giomm/unixfdlist.h: - -/usr/include/giomm-2.4/giomm/dbusobjectproxy.h: - -/usr/include/bits/struct_rwlock.h: - -/usr/include/giomm-2.4/giomm/dbusintrospection.h: - -/usr/include/glib-2.0/gio/gdatagrambased.h: - -/usr/include/giomm-2.4/giomm/notification.h: - -/usr/include/c++/11.2.0/ctime: - -/usr/include/giomm-2.4/giomm/bufferedinputstream.h: - -/usr/include/glibmm-2.4/glibmm/iochannel.h: - -/usr/include/giomm-2.4/giomm/bufferedoutputstream.h: - -/usr/include/giomm-2.4/giomm/charsetconverter.h: - -/usr/include/gdkmm-3.0/gdkmm/drawingcontext.h: - -/usr/include/giomm-2.4/giomm/converterinputstream.h: - -/usr/include/cairo/cairo.h: - -/usr/include/gtkmm-3.0/gtkmm/layout.h: - -/usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/gtk-3.0/gdk/gdkkeys.h: - -/usr/include/giomm-2.4/giomm/pollableinputstream.h: - -/usr/include/giomm-2.4/giomm/datainputstream.h: - -/usr/include/gtk-3.0/gdk/gdkwindow.h: - -/usr/include/atkmm-1.6/atkmm/relation.h: - -/usr/include/giomm-2.4/giomm/dbusactiongroup.h: - -/usr/include/gtkmm-3.0/gtkmm/cellareacontext.h: - -/usr/include/gtkmm-3.0/gtkmm/selectiondata.h: - -/usr/include/giomm-2.4/giomm/remoteactiongroup.h: - -/usr/include/giomm-2.4/giomm/dbusaddress.h: - -/usr/include/giomm-2.4/giomm/dbuserror.h: - -/usr/include/giomm-2.4/giomm/dbusobjectskeleton.h: - -/usr/include/bits/wordsize.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11window.h: - -/usr/include/giomm-2.4/giomm/dbusownname.h: - -/usr/include/giomm-2.4/giomm/dbusserver.h: - -/usr/include/giomm-2.4/giomm/drive.h: - -/usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h: - -/usr/include/c++/11.2.0/bits/stl_stack.h: - -/usr/include/giomm-2.4/giomm/dbuswatchname.h: - -/usr/include/gtk-3.0/gtk/gtklistbox.h: - -/usr/include/gtk-3.0/gtk/gtktogglebutton.h: - -/usr/include/gtk-3.0/gtk/gtkaccelgroup.h: - -/usr/include/giomm-2.4/giomm/desktopappinfo.h: - -/usr/include/c++/11.2.0/bits/stl_bvector.h: - -/usr/include/giomm-2.4/giomm/emblem.h: - -/usr/include/glibmm-2.4/glibmm/vectorutils.h: - -/usr/include/giomm-2.4/giomm/srvtarget.h: - -/usr/include/giomm-2.4/giomm/unixconnection.h: - -/usr/include/giomm-2.4/giomm/inetaddress.h: - -/usr/include/asm-generic/bitsperlong.h: - -/usr/include/giomm-2.4/giomm/inetsocketaddress.h: - -/usr/include/giomm-2.4/giomm/socketaddress.h: - -/usr/include/atk-1.0/atk/atkimage.h: - -/usr/include/c++/11.2.0/bits/stl_iterator.h: - -/usr/include/giomm-2.4/giomm/socketaddressenumerator.h: - -/usr/include/gtkmm-3.0/gtkmm/viewport.h: - -/usr/include/glibmm-2.4/glibmm/interface.h: - -/usr/include/giomm-2.4/giomm/init.h: - -/usr/include/giomm-2.4/giomm/wrap_init.h: - -/usr/include/giomm-2.4/giomm/listmodel.h: - -/usr/include/c++/11.2.0/bits/fs_dir.h: - -/usr/include/giomm-2.4/giomm/menulinkiter.h: - -/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h: - -/usr/include/atk-1.0/atk/atksocket.h: - -/usr/include/giomm-2.4/giomm/networkmonitor.h: - -/usr/include/giomm-2.4/giomm/proxy.h: - -/usr/include/giomm-2.4/giomm/settingsschemasource.h: - -/usr/include/glib-2.0/gio/gbufferedinputstream.h: - -/usr/include/giomm-2.4/giomm/socket.h: - -/usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h: - -/usr/include/giomm-2.4/giomm/socketclient.h: - -/usr/include/gtk-3.0/gtk/gtkversion.h: - -/usr/include/c++/11.2.0/bits/stl_multiset.h: - -/usr/include/glib-2.0/glib/gtypes.h: - -/usr/include/giomm-2.4/giomm/socketlistener.h: - -/usr/include/giomm-2.4/giomm/converteroutputstream.h: - -/usr/include/giomm-2.4/giomm/tcpconnection.h: - -/usr/include/setjmp.h: - -/usr/include/math.h: - -/usr/include/giomm-2.4/giomm/themedicon.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h: - -/usr/include/giomm-2.4/giomm/tlscertificate.h: - -/usr/include/gtk-3.0/gdk/gdkdisplay.h: - -/usr/include/giomm-2.4/giomm/tlsconnection.h: - -/usr/include/giomm-2.4/giomm/tlsdatabase.h: - -/usr/include/glib-2.0/gio/gdbuserror.h: - -/usr/include/pangomm-1.4/pangomm/glyph.h: - -/usr/include/pango-1.0/pango/pango-script.h: - -/usr/include/glib-2.0/glib/gpoll.h: - -/usr/include/giomm-2.4/giomm/tlspassword.h: - -/usr/include/giomm-2.4/giomm/tlsserverconnection.h: - -/usr/include/gtkmm-3.0/gtkmm/enums.h: - -/usr/include/giomm-2.4/giomm/unixfdmessage.h: - -/usr/include/c++/11.2.0/bits/stl_heap.h: - -/usr/include/giomm-2.4/giomm/unixinputstream.h: - -/usr/include/giomm-2.4/giomm/unixoutputstream.h: - -/usr/include/gtkmm-3.0/gtkmm/calendar.h: - -/usr/include/gdkmm-3.0/gdkmm/pixbufloader.h: - -/usr/include/pangomm-1.4/pangomm/rectangle.h: - -/usr/include/c++/11.2.0/ext/atomicity.h: - -/usr/include/pangomm-1.4/pangomm/attrlist.h: - -/usr/include/giomm-2.4/giomm/unixsocketaddress.h: - -/usr/include/gtkmm-3.0/gtkmm/cellareabox.h: - -/usr/include/gtk-3.0/gtk/gtkentry.h: - -/usr/include/giomm-2.4/giomm/zlibcompressor.h: - -/usr/include/glibmm-2.4/glibmm/checksum.h: - -/usr/include/giomm-2.4/giomm/zlibdecompressor.h: - -/usr/include/gdkmm-3.0/gdkmm/dragcontext.h: - -/usr/include/glibmm-2.4/glibmm/thread.h: - -/usr/include/gdkmm-3.0/gdkmm/color.h: - -/usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h: - -/usr/lib/pangomm-1.4/include/pangommconfig.h: - -/usr/include/pangomm-1.4/pangomm/types.h: - -/usr/include/gtkmm-3.0/gtkmm/window.h: - -/usr/include/pangomm-1.4/pangomm/context.h: - -/usr/include/gtk-3.0/gdk/gdk.h: - -/usr/include/glib-2.0/glib/ghash.h: - -/usr/include/gtk-3.0/gdk/gdkversionmacros.h: - -/usr/include/pango-1.0/pango/pango.h: - -/usr/include/c++/11.2.0/cstdlib: - -/usr/include/bits/statx.h: - -/usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h: - -/usr/include/pango-1.0/pango/pango-font.h: - -/usr/include/bits/types/mbstate_t.h: - -/usr/include/pango-1.0/pango/pango-version-macros.h: - -/usr/include/pango-1.0/pango/pango-features.h: - -/usr/include/harfbuzz/hb.h: - -/usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h: - -/usr/include/c++/11.2.0/bits/stl_tree.h: - -/usr/include/harfbuzz/hb-blob.h: - -/usr/include/harfbuzz/hb-unicode.h: - -/usr/include/gtkmm-3.0/gtkmm/stock.h: - -/usr/include/giomm-2.4/giomm/enums.h: - -/usr/include/harfbuzz/hb-font.h: - -/usr/include/pango-1.0/pango/pango-enum-types.h: - -/usr/include/harfbuzz/hb-face.h: - -/usr/include/harfbuzz/hb-draw.h: - -/usr/include/sigc++-2.0/sigc++/functors/functors.h: - -/usr/include/harfbuzz/hb-deprecated.h: - -/usr/include/gtk-3.0/gtk/gtkfixed.h: - -/usr/include/harfbuzz/hb-map.h: - -/usr/include/glib-2.0/glib/glib-typeof.h: - -/usr/include/harfbuzz/hb-shape.h: - -/usr/include/gtk-3.0/gtk/gtksizegroup.h: - -/usr/include/pango-1.0/pango/pango-gravity.h: - -/usr/include/glibmm-2.4/glibmm/class.h: - -/usr/include/pango-1.0/pango/pango-matrix.h: - -/usr/include/gtkmm-3.0/gtkmm/actionable.h: - -/usr/include/pango-1.0/pango/pango-bidi-type.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h: - -/usr/include/pango-1.0/pango/pango-direction.h: - -/usr/include/pango-1.0/pango/pango-color.h: - -/usr/include/pango-1.0/pango/pango-break.h: - -/usr/include/glib-2.0/glib/gstrfuncs.h: - -/usr/include/glibmm-2.4/glibmm.h: - -/usr/include/pango-1.0/pango/pango-item.h: - -/usr/include/pango-1.0/pango/pango-fontset.h: - -/usr/lib/gdkmm-3.0/include/gdkmmconfig.h: - -/usr/include/pango-1.0/pango/pango-engine.h: - -/usr/include/pango-1.0/pango/pango-fontset-simple.h: - -/usr/include/glibmm-2.4/glibmm/convert.h: - -/usr/include/c++/11.2.0/array: - -/usr/include/pango-1.0/pango/pango-tabs.h: - -/usr/include/gdkmm-3.0/gdkmm/event.h: - -/usr/include/pango-1.0/pango/pango-markup.h: - -/usr/include/gtk-3.0/gtk/gtktestutils.h: - -/usr/include/pango-1.0/pango/pango-renderer.h: - -/usr/include/c++/11.2.0/bits/locale_classes.h: - -/usr/include/gdkmm-3.0/gdkmm/monitor.h: - -/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h: - -/usr/include/cairo/cairo-features.h: - -/usr/include/giomm-2.4/giomm/emblemedicon.h: - -/usr/include/cairo/cairo-deprecated.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11property.h: - -/usr/include/gtk-3.0/gdk/gdkevents.h: - -/usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc: - -/usr/include/gtk-3.0/gdk/gdkdevicemanager.h: - -/usr/include/giomm-2.4/giomm/menuitem.h: - -/usr/include/gtk-3.0/gdk/gdkframeclock.h: - -/usr/include/gtkmm-3.0/gtkmm/overlay.h: - -/usr/include/bits/types/struct_timeval.h: - -/usr/include/gtk-3.0/gdk/gdkrectangle.h: - -/usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h: - -/usr/include/gtk-3.0/gdk/gdkpixbuf.h: - -/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h: - -/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: - -/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: - -/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h: - -/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: - -/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: - -/usr/include/gtk-3.0/gtk/gtktexttagtable.h: - -/usr/include/pango-1.0/pango/pangocairo.h: - -/usr/include/gtk-3.0/gdk/gdkcursor.h: - -/usr/include/gtk-3.0/gtk/gtkcelleditable.h: - -/usr/include/gtk-3.0/gdk/gdkdisplaymanager.h: - -/usr/include/gtk-3.0/gdk/gdkkeysyms.h: - -/usr/include/gtk-3.0/gdk/gdkpango.h: - -/usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h: - -/usr/include/gtk-3.0/gdk/gdktestutils.h: - -/usr/include/freetype2/freetype/ftimage.h: - -/usr/include/gtk-3.0/gdk/gdkthreads.h: - -/usr/include/gtk-3.0/gdk/gdk-autocleanup.h: - -/usr/include/gdkmm-3.0/gdkmm/pixbufformat.h: - -/usr/include/gdkmm-3.0/gdkmm/types.h: - -/usr/include/cairomm-1.0/cairomm/surface.h: - -/usr/include/c++/11.2.0/bits/hashtable.h: - -/usr/include/cairo/cairo-version.h: - -/usr/include/freetype2/freetype/freetype.h: - -/usr/include/c++/11.2.0/debug/assertions.h: - -/usr/include/cairomm-1.0/cairomm/enums.h: - -/usr/include/glib-2.0/gio/gvolume.h: - -/usr/include/cairo/cairo-ft.h: - -/usr/include/freetype2/freetype/config/ftoption.h: - -/usr/include/freetype2/freetype/config/integer-types.h: - -/usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h: - -/usr/include/harfbuzz/hb-version.h: - -/usr/include/freetype2/freetype/config/mac-support.h: - -/usr/include/gtkmm-3.0/gtkmm/switch.h: - -/usr/include/cairomm-1.0/cairomm/exception.h: - -/usr/include/glib-2.0/gio/gfileenumerator.h: - -/usr/include/freetype2/freetype/ftsystem.h: - -/usr/include/freetype2/freetype/ftmoderr.h: - -/usr/include/glibmm-2.4/glibmm/random.h: - -/usr/lib/atkmm-1.6/include/atkmmconfig.h: - -/usr/include/asm-generic/int-ll64.h: - -/usr/include/giomm-2.4/giomm/unixcredentialsmessage.h: - -/usr/include/asm/bitsperlong.h: - -/usr/include/linux/posix_types.h: - -/usr/include/asm/posix_types.h: - -/usr/include/gtk-3.0/gtk/gtklinkbutton.h: - -/usr/include/c++/11.2.0/bits/stringfwd.h: - -/usr/include/c++/11.2.0/set: - -/usr/include/asm/posix_types_64.h: - -/usr/include/asm-generic/posix_types.h: - -/usr/include/bits/types/struct_statx_timestamp.h: - -/usr/include/glib-2.0/gio/giomodule.h: - -/usr/include/bits/types/struct_statx.h: - -/usr/include/giomm-2.4/giomm/dbusobject.h: - -/usr/include/cairomm-1.0/cairomm/types.h: - -/usr/include/cairo/cairo-ps.h: - -/usr/include/cairo/cairo-svg.h: - -/usr/include/gtkmm-3.0/gtkmm/editable.h: - -/usr/include/c++/11.2.0/bits/stl_pair.h: - -/usr/include/glib-2.0/gio/gtlsdatabase.h: - -/usr/include/gdkmm-3.0/gdkmm/device.h: - -/usr/include/gdkmm-3.0/gdkmm/cursor.h: - -/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h: - -/usr/include/gdkmm-3.0/gdkmm/display.h: - -/usr/include/gdkmm-3.0/gdkmm/screen.h: - -/usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h: - -/usr/include/glib-2.0/gio/giotypes.h: - -/usr/include/bits/types/sigevent_t.h: - -/usr/include/glib-2.0/gio/gdbusobject.h: - -/usr/include/gdkmm-3.0/gdkmm/window.h: - -/usr/include/gtkmm-3.0/gtkmm/printjob.h: - -/usr/include/gtk-3.0/gtk/gtkeditable.h: - -/usr/include/cairomm-1.0/cairomm/region.h: - -/usr/include/cairomm-1.0/cairomm/context.h: - -/usr/include/cairomm-1.0/cairomm/fontface.h: - -/usr/include/cairomm-1.0/cairomm/matrix.h: - -/usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h: - -/usr/include/atk-1.0/atk/atkrelationtype.h: - -/usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h: - -/usr/include/gtk-3.0/gtk/gtkseparator.h: - -/usr/include/c++/11.2.0/bits/stl_list.h: - -/usr/include/cairomm-1.0/cairomm/path.h: - -/usr/include/cairomm-1.0/cairomm/scaledfont.h: - -/usr/include/glib-2.0/glib/guri.h: - -/usr/include/c++/11.2.0/valarray: - -/usr/include/gtkmm-3.0/gtkmm/spinner.h: - -/usr/include/glib-2.0/gio/gfilenamecompleter.h: - -/usr/include/bits/math-vector.h: - -/usr/include/c++/11.2.0/bits/locale_facets.h: - -/usr/include/glib-2.0/gio/gloadableicon.h: - -/usr/include/bits/libm-simd-decl-stubs.h: - -/usr/include/bits/flt-eval-method.h: - -/usr/include/giomm-2.4/giomm/converter.h: - -/usr/include/bits/mathcalls-helper-functions.h: - -/usr/include/giomm-2.4/giomm/seekable.h: - -/usr/include/bits/iscanonical.h: - -/usr/include/gtk-3.0/gtk/gtkmenubar.h: - -/usr/include/c++/11.2.0/bits/specfun.h: - -/usr/include/glib-2.0/gio/gioscheduler.h: - -/usr/include/c++/11.2.0/tr1/beta_function.tcc: - -/usr/include/pango-1.0/pango/pango-language.h: - -/usr/include/giomm-2.4/giomm/threadedsocketservice.h: - -/usr/include/c++/11.2.0/tr1/ell_integral.tcc: - -/usr/include/c++/11.2.0/tr1/poly_laguerre.tcc: - -/usr/include/X11/Xfuncproto.h: - -/usr/include/glib-2.0/gio/gtlsfiledatabase.h: - -/usr/include/cairomm-1.0/cairomm/fontoptions.h: - -/usr/include/c++/11.2.0/tr1/riemann_zeta.tcc: - -/usr/include/harfbuzz/hb-shape-plan.h: - -/usr/include/c++/11.2.0/bits/valarray_before.h: - -/usr/include/gtk-3.0/gtk/gtktreednd.h: - -/usr/include/c++/11.2.0/bits/valarray_after.h: - -/usr/include/glib-2.0/gio/gsimpleproxyresolver.h: - -/usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h: - -/usr/include/gdkmm-3.0/gdkmm/general.h: - -/usr/include/gdkmm-3.0/gdkmm/frametimings.h: - -/usr/include/gdkmm-3.0/gdkmm/glcontext.h: - -/usr/include/pangomm-1.4/pangomm/fontset.h: - -/usr/include/c++/11.2.0/deque: - -/usr/include/pangomm-1.4/pangomm/fontfamily.h: - -/usr/include/pangomm-1.4/pangomm/attributes.h: - -/usr/include/asm-generic/errno.h: - -/usr/include/atkmm-1.6/atkmm/object.h: - -/usr/include/gtk-3.0/gdk/gdkdevice.h: - -/usr/include/giomm-2.4/giomm/memoryoutputstream.h: - -/usr/include/atkmm-1.6/atkmm/component.h: - -/usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h: - -/usr/include/gtkmm-3.0/gtkmm/object.h: - -/usr/include/sys/stat.h: - -/usr/include/gtk-3.0/gtk/gtkaboutdialog.h: - -/usr/include/strings.h: - -/usr/include/gtk-3.0/gtk/gtkdialog.h: - -/usr/include/gtk-3.0/gtk/gtkgesturemultipress.h: - -/usr/include/gtk-3.0/gtk/gtkapplication.h: - -/usr/include/gtk-3.0/gtk/gtkwidget.h: - -/usr/include/gtk-3.0/gtk/gtktypes.h: - -/usr/include/atk-1.0/atk/atkeditabletext.h: - -/usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h: - -/usr/include/c++/11.2.0/memory: - -/usr/include/atk-1.0/atk/atk.h: - -/usr/include/glib-2.0/gobject/gtypemodule.h: - -/usr/include/atk-1.0/atk/atkdocument.h: - -/usr/include/glib-2.0/gio/gremoteactiongroup.h: - -/usr/include/pangomm-1.4/pangomm/fontmap.h: - -/usr/include/atk-1.0/atk/atkhyperlink.h: - -/usr/include/gtk-3.0/gdk/gdkproperty.h: - -/usr/include/gtk-3.0/gdk/gdkglcontext.h: - -/usr/include/atk-1.0/atk/atkhypertext.h: - -/usr/include/atk-1.0/atk/atknoopobject.h: - -/usr/include/glib-2.0/glib/gprimes.h: - -/usr/include/atk-1.0/atk/atkobjectfactory.h: - -/usr/include/atk-1.0/atk/atkstateset.h: - -/usr/include/gtkmm-3.0/gtkmm/windowgroup.h: - -/usr/include/pango-1.0/pango/pango-coverage.h: - -/usr/include/atk-1.0/atk/atktable.h: - -/usr/include/atk-1.0/atk/atkmisc.h: - -/usr/include/gtk-3.0/gdk/gdkrgba.h: - -/usr/include/atk-1.0/atk/atkwindow.h: - -/usr/include/gtkmm-3.0/gtkmm/linkbutton.h: - -/usr/include/gtk-3.0/gtk/gtkbin.h: - -/usr/include/gtk-3.0/gtk/gtkaccellabel.h: diff --git a/compile/CMakeFiles/ublexec.dir/compiler_depend.ts b/compile/CMakeFiles/ublexec.dir/compiler_depend.ts deleted file mode 100644 index fc19636..0000000 --- a/compile/CMakeFiles/ublexec.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for ublexec. diff --git a/compile/CMakeFiles/ublexec.dir/depend.make b/compile/CMakeFiles/ublexec.dir/depend.make deleted file mode 100644 index b1df505..0000000 --- a/compile/CMakeFiles/ublexec.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for ublexec. -# This may be replaced when dependencies are built. diff --git a/compile/CMakeFiles/ublexec.dir/flags.make b/compile/CMakeFiles/ublexec.dir/flags.make deleted file mode 100644 index a42e302..0000000 --- a/compile/CMakeFiles/ublexec.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.23 - -# compile CXX with /usr/bin/c++ -CXX_DEFINES = - -CXX_INCLUDES = -I/usr/include/gtkmm-3.0 -I/usr/lib/gtkmm-3.0/include -I/usr/include/giomm-2.4 -I/usr/lib/giomm-2.4/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/lzo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/cloudproviders -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/at-spi-2.0 -I/usr/include/cairomm-1.0 -I/usr/lib/cairomm-1.0/include -I/usr/include/pangomm-1.4 -I/usr/lib/pangomm-1.4/include -I/usr/include/atkmm-1.6 -I/usr/lib/atkmm-1.6/include -I/usr/include/gtk-3.0/unix-print -I/usr/include/gdkmm-3.0 -I/usr/lib/gdkmm-3.0/include - -CXX_FLAGS = -pedantic -Wmissing-declarations -fdiagnostics-color=always -O3 -DNDEBUG -pthread - diff --git a/compile/CMakeFiles/ublexec.dir/link.txt b/compile/CMakeFiles/ublexec.dir/link.txt deleted file mode 100644 index 5d24dcc..0000000 --- a/compile/CMakeFiles/ublexec.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/c++ -pedantic -Wmissing-declarations -fdiagnostics-color=always -O3 -DNDEBUG CMakeFiles/ublexec.dir/main.cc.o CMakeFiles/ublexec.dir/ublexec.cc.o -o ublexec -lgtkmm-3.0 -latkmm-1.6 -lgdkmm-3.0 -lgiomm-2.4 -lgtk-3 -lgdk-3 -lz -latk-1.0 -lcairo-gobject -lgio-2.0 -lpangomm-1.4 -lglibmm-2.4 -lcairomm-1.0 -lsigc-2.0 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -lcairo -lgdk_pixbuf-2.0 -lgobject-2.0 -lglib-2.0 -lpthread diff --git a/compile/CMakeFiles/ublexec.dir/main.cc.o b/compile/CMakeFiles/ublexec.dir/main.cc.o deleted file mode 100644 index 2eaa46283d27cf891d4f3a8cf4916d6928ee48ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 51232 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 D?Mo&$ diff --git a/compile/CMakeFiles/ublexec.dir/main.cc.o.d b/compile/CMakeFiles/ublexec.dir/main.cc.o.d deleted file mode 100644 index 3dd0f93..0000000 --- a/compile/CMakeFiles/ublexec.dir/main.cc.o.d +++ /dev/null @@ -1,1489 +0,0 @@ -CMakeFiles/ublexec.dir/main.cc.o: \ - /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/main.cc \ - /usr/include/stdc-predef.h /usr/include/c++/11.2.0/cstddef \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ - /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \ - /usr/include/c++/11.2.0/pstl/pstl_config.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \ - /usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \ - /usr/include/bits/libc-header-start.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \ - /usr/include/bits/floatn-common.h /usr/include/bits/types/locale_t.h \ - /usr/include/bits/types/__locale_t.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/bits/time64.h /usr/include/bits/types/clock_t.h \ - /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ - /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/endianness.h /usr/include/bits/byteswap.h \ - /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ - /usr/include/bits/types/__sigset_t.h \ - /usr/include/bits/types/struct_timeval.h \ - /usr/include/bits/types/struct_timespec.h \ - /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ - /usr/include/bits/pthreadtypes-arch.h \ - /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ - /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \ - /usr/include/c++/11.2.0/bits/std_abs.h /usr/include/c++/11.2.0/iostream \ - /usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \ - /usr/include/c++/11.2.0/iosfwd /usr/include/c++/11.2.0/bits/stringfwd.h \ - /usr/include/c++/11.2.0/bits/memoryfwd.h \ - /usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \ - /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \ - /usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \ - /usr/include/bits/types/mbstate_t.h \ - /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ - /usr/include/bits/types/FILE.h /usr/include/c++/11.2.0/exception \ - /usr/include/c++/11.2.0/bits/exception.h \ - /usr/include/c++/11.2.0/bits/exception_ptr.h \ - /usr/include/c++/11.2.0/bits/exception_defines.h \ - /usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \ - /usr/include/c++/11.2.0/typeinfo \ - /usr/include/c++/11.2.0/bits/hash_bytes.h /usr/include/c++/11.2.0/new \ - /usr/include/c++/11.2.0/bits/nested_exception.h \ - /usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \ - /usr/include/c++/11.2.0/bits/char_traits.h \ - /usr/include/c++/11.2.0/bits/stl_algobase.h \ - /usr/include/c++/11.2.0/bits/functexcept.h \ - /usr/include/c++/11.2.0/bits/cpp_type_traits.h \ - /usr/include/c++/11.2.0/ext/type_traits.h \ - /usr/include/c++/11.2.0/ext/numeric_traits.h \ - /usr/include/c++/11.2.0/bits/stl_pair.h \ - /usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \ - /usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/11.2.0/bits/concept_check.h \ - /usr/include/c++/11.2.0/debug/assertions.h \ - /usr/include/c++/11.2.0/bits/stl_iterator.h \ - /usr/include/c++/11.2.0/bits/ptr_traits.h \ - /usr/include/c++/11.2.0/debug/debug.h \ - /usr/include/c++/11.2.0/bits/predefined_ops.h \ - /usr/include/c++/11.2.0/cstdint \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/stdint-uintn.h \ - /usr/include/c++/11.2.0/bits/localefwd.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \ - /usr/include/c++/11.2.0/clocale /usr/include/locale.h \ - /usr/include/bits/locale.h /usr/include/c++/11.2.0/cctype \ - /usr/include/ctype.h /usr/include/c++/11.2.0/bits/ios_base.h \ - /usr/include/c++/11.2.0/ext/atomicity.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ - /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ - /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ - /usr/include/bits/types/struct_tm.h \ - /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ - /usr/include/bits/types/struct___jmp_buf_tag.h \ - /usr/include/bits/pthread_stack_min-dynamic.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \ - /usr/include/sys/single_threaded.h \ - /usr/include/c++/11.2.0/bits/locale_classes.h \ - /usr/include/c++/11.2.0/string /usr/include/c++/11.2.0/bits/allocator.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \ - /usr/include/c++/11.2.0/ext/new_allocator.h \ - /usr/include/c++/11.2.0/bits/ostream_insert.h \ - /usr/include/c++/11.2.0/bits/cxxabi_forced.h \ - /usr/include/c++/11.2.0/bits/stl_function.h \ - /usr/include/c++/11.2.0/backward/binders.h \ - /usr/include/c++/11.2.0/bits/range_access.h \ - /usr/include/c++/11.2.0/initializer_list \ - /usr/include/c++/11.2.0/bits/basic_string.h \ - /usr/include/c++/11.2.0/ext/alloc_traits.h \ - /usr/include/c++/11.2.0/bits/alloc_traits.h \ - /usr/include/c++/11.2.0/bits/stl_construct.h \ - /usr/include/c++/11.2.0/string_view \ - /usr/include/c++/11.2.0/bits/functional_hash.h \ - /usr/include/c++/11.2.0/bits/string_view.tcc \ - /usr/include/c++/11.2.0/ext/string_conversions.h \ - /usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \ - /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ - /usr/include/bits/types/struct_FILE.h \ - /usr/include/bits/types/cookie_io_functions_t.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ - /usr/include/c++/11.2.0/cerrno /usr/include/errno.h \ - /usr/include/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ - /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \ - /usr/include/c++/11.2.0/bits/charconv.h \ - /usr/include/c++/11.2.0/bits/basic_string.tcc \ - /usr/include/c++/11.2.0/bits/locale_classes.tcc \ - /usr/include/c++/11.2.0/system_error \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \ - /usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \ - /usr/include/c++/11.2.0/bits/streambuf.tcc \ - /usr/include/c++/11.2.0/bits/basic_ios.h \ - /usr/include/c++/11.2.0/bits/locale_facets.h \ - /usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \ - /usr/include/bits/wctype-wchar.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \ - /usr/include/c++/11.2.0/bits/streambuf_iterator.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \ - /usr/include/c++/11.2.0/bits/locale_facets.tcc \ - /usr/include/c++/11.2.0/bits/basic_ios.tcc \ - /usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/istream \ - /usr/include/c++/11.2.0/bits/istream.tcc /usr/include/c++/11.2.0/memory \ - /usr/include/c++/11.2.0/bits/stl_uninitialized.h \ - /usr/include/c++/11.2.0/bits/stl_tempbuf.h \ - /usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h \ - /usr/include/c++/11.2.0/bits/align.h /usr/include/c++/11.2.0/bit \ - /usr/include/c++/11.2.0/bits/uses_allocator.h \ - /usr/include/c++/11.2.0/bits/unique_ptr.h \ - /usr/include/c++/11.2.0/utility \ - /usr/include/c++/11.2.0/bits/stl_relops.h /usr/include/c++/11.2.0/tuple \ - /usr/include/c++/11.2.0/array /usr/include/c++/11.2.0/bits/invoke.h \ - /usr/include/c++/11.2.0/bits/shared_ptr.h \ - /usr/include/c++/11.2.0/bits/shared_ptr_base.h \ - /usr/include/c++/11.2.0/bits/allocated_ptr.h \ - /usr/include/c++/11.2.0/bits/refwrap.h \ - /usr/include/c++/11.2.0/ext/aligned_buffer.h \ - /usr/include/c++/11.2.0/ext/concurrence.h \ - /usr/include/c++/11.2.0/bits/shared_ptr_atomic.h \ - /usr/include/c++/11.2.0/bits/atomic_base.h \ - /usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h \ - /usr/include/c++/11.2.0/backward/auto_ptr.h \ - /usr/include/c++/11.2.0/pstl/glue_memory_defs.h \ - /usr/include/c++/11.2.0/pstl/execution_defs.h \ - /usr/include/gtkmm-3.0/gtkmm.h /usr/include/glibmm-2.4/glibmm.h \ - /usr/lib/glibmm-2.4/include/glibmmconfig.h \ - /usr/include/glibmm-2.4/glibmm/thread.h /usr/include/glib-2.0/glib.h \ - /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ - /usr/lib/glib-2.0/include/glibconfig.h \ - /usr/include/glib-2.0/glib/gmacros.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h \ - /usr/include/glib-2.0/glib/gversionmacros.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/glib-2.0/glib/garray.h \ - /usr/include/glib-2.0/glib/gasyncqueue.h \ - /usr/include/glib-2.0/glib/gthread.h \ - /usr/include/glib-2.0/glib/gatomic.h \ - /usr/include/glib-2.0/glib/glib-typeof.h \ - /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ - /usr/include/glib-2.0/glib/gutils.h /usr/include/c++/11.2.0/stdlib.h \ - /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ - /usr/include/bits/signum-generic.h /usr/include/bits/signum-arch.h \ - /usr/include/bits/types/sig_atomic_t.h \ - /usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \ - /usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \ - /usr/include/bits/siginfo-consts-arch.h \ - /usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \ - /usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \ - /usr/include/bits/sigstksz.h /usr/include/unistd.h \ - /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ - /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ - /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/bits/ss_flags.h \ - /usr/include/bits/types/struct_sigstack.h /usr/include/bits/sigthread.h \ - /usr/include/bits/signal_ext.h /usr/include/glib-2.0/glib/gbase64.h \ - /usr/include/glib-2.0/glib/gbitlock.h \ - /usr/include/glib-2.0/glib/gbookmarkfile.h \ - /usr/include/glib-2.0/glib/gdatetime.h \ - /usr/include/glib-2.0/glib/gtimezone.h \ - /usr/include/glib-2.0/glib/gbytes.h \ - /usr/include/glib-2.0/glib/gcharset.h \ - /usr/include/glib-2.0/glib/gchecksum.h \ - /usr/include/glib-2.0/glib/gconvert.h \ - /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ - /usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \ - /usr/include/glib-2.0/glib/genviron.h \ - /usr/include/glib-2.0/glib/gfileutils.h \ - /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \ - /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ - /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \ - /usr/include/glib-2.0/glib/gchecksum.h \ - /usr/include/glib-2.0/glib/ghook.h \ - /usr/include/glib-2.0/glib/ghostutils.h \ - /usr/include/glib-2.0/glib/giochannel.h \ - /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ - /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ - /usr/include/glib-2.0/glib/gunicode.h \ - /usr/include/glib-2.0/glib/gkeyfile.h \ - /usr/include/glib-2.0/glib/gmappedfile.h \ - /usr/include/glib-2.0/glib/gmarkup.h \ - /usr/include/glib-2.0/glib/gmessages.h \ - /usr/include/glib-2.0/glib/gvariant.h \ - /usr/include/glib-2.0/glib/gvarianttype.h \ - /usr/include/glib-2.0/glib/goption.h \ - /usr/include/glib-2.0/glib/gpattern.h \ - /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ - /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ - /usr/include/glib-2.0/glib/grcbox.h \ - /usr/include/glib-2.0/glib/grefcount.h \ - /usr/include/glib-2.0/glib/grefstring.h \ - /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \ - /usr/include/glib-2.0/glib/gregex.h \ - /usr/include/glib-2.0/glib/gscanner.h \ - /usr/include/glib-2.0/glib/gsequence.h \ - /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \ - /usr/include/glib-2.0/glib/gspawn.h \ - /usr/include/glib-2.0/glib/gstrfuncs.h \ - /usr/include/glib-2.0/glib/gstringchunk.h \ - /usr/include/glib-2.0/glib/gstrvbuilder.h \ - /usr/include/glib-2.0/glib/gtestutils.h \ - /usr/include/glib-2.0/glib/gthreadpool.h \ - /usr/include/glib-2.0/glib/gtimer.h \ - /usr/include/glib-2.0/glib/gtrashstack.h \ - /usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \ - /usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \ - /usr/include/glib-2.0/glib/deprecated/gallocator.h \ - /usr/include/glib-2.0/glib/deprecated/gcache.h \ - /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ - /usr/include/glib-2.0/glib/deprecated/gmain.h \ - /usr/include/glib-2.0/glib/deprecated/grel.h \ - /usr/include/glib-2.0/glib/deprecated/gthread.h \ - /usr/include/glib-2.0/glib/glib-autocleanups.h \ - /usr/include/glibmm-2.4/glibmm/error.h \ - /usr/include/glibmm-2.4/glibmm/exception.h \ - /usr/include/glibmm-2.4/glibmm/ustring.h \ - /usr/include/glibmm-2.4/glibmm/unicode.h \ - /usr/include/c++/11.2.0/iterator \ - /usr/include/c++/11.2.0/bits/stream_iterator.h \ - /usr/include/c++/11.2.0/sstream /usr/include/c++/11.2.0/bits/sstream.tcc \ - /usr/include/glibmm-2.4/glibmm/value.h \ - /usr/include/glibmm-2.4/glibmm/refptr.h \ - /usr/include/glibmm-2.4/glibmm/enums.h \ - /usr/include/glib-2.0/glib-object.h \ - /usr/include/glib-2.0/gobject/gbinding.h \ - /usr/include/glib-2.0/gobject/gobject.h \ - /usr/include/glib-2.0/gobject/gtype.h \ - /usr/include/glib-2.0/gobject/gvalue.h \ - /usr/include/glib-2.0/gobject/gparam.h \ - /usr/include/glib-2.0/gobject/gclosure.h \ - /usr/include/glib-2.0/gobject/gsignal.h \ - /usr/include/glib-2.0/gobject/gmarshal.h \ - /usr/include/glib-2.0/gobject/gboxed.h \ - /usr/include/glib-2.0/gobject/glib-types.h \ - /usr/include/glib-2.0/gobject/gbindinggroup.h \ - /usr/include/glib-2.0/gobject/genums.h \ - /usr/include/glib-2.0/gobject/glib-enumtypes.h \ - /usr/include/glib-2.0/gobject/gparamspecs.h \ - /usr/include/glib-2.0/gobject/gsignalgroup.h \ - /usr/include/glib-2.0/gobject/gsourceclosure.h \ - /usr/include/glib-2.0/gobject/gtypemodule.h \ - /usr/include/glib-2.0/gobject/gtypeplugin.h \ - /usr/include/glib-2.0/gobject/gvaluearray.h \ - /usr/include/glib-2.0/gobject/gvaluetypes.h \ - /usr/include/glib-2.0/gobject/gobject-autocleanups.h \ - /usr/include/c++/11.2.0/vector /usr/include/c++/11.2.0/bits/stl_vector.h \ - /usr/include/c++/11.2.0/bits/stl_bvector.h \ - /usr/include/c++/11.2.0/bits/vector.tcc \ - /usr/include/glibmm-2.4/glibmm/value_custom.h \ - /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ - /usr/include/glibmm-2.4/glibmm/timeval.h \ - /usr/include/sigc++-2.0/sigc++/sigc++.h \ - /usr/include/sigc++-2.0/sigc++/signal.h /usr/include/c++/11.2.0/list \ - /usr/include/c++/11.2.0/bits/stl_list.h \ - /usr/include/c++/11.2.0/bits/list.tcc \ - /usr/include/sigc++-2.0/sigc++/signal_base.h \ - /usr/lib/sigc++-2.0/include/sigc++config.h \ - /usr/include/sigc++-2.0/sigc++/type_traits.h \ - /usr/include/sigc++-2.0/sigc++/trackable.h \ - /usr/include/sigc++-2.0/sigc++/functors/slot.h \ - /usr/include/sigc++-2.0/sigc++/visit_each.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ - /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ - /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ - /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ - /usr/include/sigc++-2.0/sigc++/limit_reference.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ - /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ - /usr/include/sigc++-2.0/sigc++/connection.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ - /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ - /usr/include/c++/11.2.0/functional \ - /usr/include/c++/11.2.0/bits/std_function.h \ - /usr/include/c++/11.2.0/unordered_map \ - /usr/include/c++/11.2.0/bits/hashtable.h \ - /usr/include/c++/11.2.0/bits/hashtable_policy.h \ - /usr/include/c++/11.2.0/bits/node_handle.h \ - /usr/include/c++/11.2.0/bits/unordered_map.h \ - /usr/include/c++/11.2.0/bits/erase_if.h \ - /usr/include/c++/11.2.0/bits/stl_algo.h \ - /usr/include/c++/11.2.0/bits/algorithmfwd.h \ - /usr/include/c++/11.2.0/bits/stl_heap.h \ - /usr/include/c++/11.2.0/bits/uniform_int_dist.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h \ - /usr/include/sigc++-2.0/sigc++/functors/functors.h \ - /usr/include/glibmm-2.4/glibmm/threads.h \ - /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ - /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ - /usr/include/glibmm-2.4/glibmm/variant.h \ - /usr/include/glibmm-2.4/glibmm/varianttype.h \ - /usr/include/glibmm-2.4/glibmm/variantiter.h \ - /usr/include/glibmm-2.4/glibmm/variantdbusstring.h \ - /usr/include/c++/11.2.0/map /usr/include/c++/11.2.0/bits/stl_tree.h \ - /usr/include/c++/11.2.0/bits/stl_map.h \ - /usr/include/c++/11.2.0/bits/stl_multimap.h \ - /usr/include/glibmm-2.4/glibmm/variant_basictypes.h \ - /usr/include/glibmm-2.4/glibmm/wrap.h \ - /usr/include/glibmm-2.4/glibmm/objectbase.h \ - /usr/include/glibmm-2.4/glibmm/class.h \ - /usr/include/glibmm-2.4/glibmm/signalproxy.h \ - /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ - /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ - /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ - /usr/include/glibmm-2.4/glibmm/quark.h \ - /usr/include/glibmm-2.4/glibmm/debug.h /usr/include/c++/11.2.0/mutex \ - /usr/include/c++/11.2.0/chrono /usr/include/c++/11.2.0/ratio \ - /usr/include/c++/11.2.0/limits /usr/include/c++/11.2.0/ctime \ - /usr/include/c++/11.2.0/bits/parse_numbers.h \ - /usr/include/c++/11.2.0/bits/std_mutex.h \ - /usr/include/c++/11.2.0/bits/unique_lock.h \ - /usr/include/c++/11.2.0/algorithm \ - /usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h \ - /usr/include/c++/11.2.0/deque /usr/include/c++/11.2.0/bits/stl_deque.h \ - /usr/include/c++/11.2.0/bits/deque.tcc \ - /usr/include/glibmm-2.4/glibmm/balancedtree.h \ - /usr/include/glibmm-2.4/glibmm/base64.h \ - /usr/include/glibmm-2.4/glibmm/binding.h \ - /usr/include/glibmm-2.4/glibmm/object.h \ - /usr/include/glibmm-2.4/glibmm/utility.h \ - /usr/include/glibmm-2.4/glibmm/bytearray.h \ - /usr/include/sigc++-2.0/sigc++/slot.h \ - /usr/include/glibmm-2.4/glibmm/bytes.h \ - /usr/include/glibmm-2.4/glibmm/checksum.h \ - /usr/include/glibmm-2.4/glibmm/convert.h \ - /usr/include/glibmm-2.4/glibmm/date.h \ - /usr/include/glibmm-2.4/glibmm/datetime.h \ - /usr/include/glibmm-2.4/glibmm/timezone.h \ - /usr/include/glibmm-2.4/glibmm/dispatcher.h \ - /usr/include/glibmm-2.4/glibmm/main.h \ - /usr/include/glibmm-2.4/glibmm/priorities.h \ - /usr/include/glibmm-2.4/glibmm/iochannel.h \ - /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ - /usr/include/glibmm-2.4/glibmm/fileutils.h \ - /usr/include/glibmm-2.4/glibmm/helperlist.h \ - /usr/include/glibmm-2.4/glibmm/containers.h \ - /usr/include/glibmm-2.4/glibmm/sarray.h \ - /usr/include/glibmm-2.4/glibmm/interface.h \ - /usr/include/glibmm-2.4/glibmm/init.h \ - /usr/include/glibmm-2.4/glibmm/keyfile.h \ - /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ - /usr/include/glibmm-2.4/glibmm/listhandle.h \ - /usr/include/glibmm-2.4/glibmm/markup.h \ - /usr/include/glibmm-2.4/glibmm/miscutils.h \ - /usr/include/glibmm-2.4/glibmm/module.h \ - /usr/include/glibmm-2.4/glibmm/nodetree.h /usr/include/c++/11.2.0/stack \ - /usr/include/c++/11.2.0/bits/stl_stack.h \ - /usr/include/glibmm-2.4/glibmm/optioncontext.h \ - /usr/include/glibmm-2.4/glibmm/optionentry.h \ - /usr/include/glibmm-2.4/glibmm/optiongroup.h \ - /usr/include/glibmm-2.4/glibmm/pattern.h \ - /usr/include/glibmm-2.4/glibmm/property.h \ - /usr/include/glibmm-2.4/glibmm/random.h \ - /usr/include/glibmm-2.4/glibmm/regex.h \ - /usr/include/glibmm-2.4/glibmm/shell.h \ - /usr/include/glibmm-2.4/glibmm/slisthandle.h \ - /usr/include/glibmm-2.4/glibmm/spawn.h \ - /usr/include/glibmm-2.4/glibmm/stringutils.h \ - /usr/include/glibmm-2.4/glibmm/threadpool.h \ - /usr/include/glibmm-2.4/glibmm/timer.h \ - /usr/include/glibmm-2.4/glibmm/uriutils.h \ - /usr/include/glibmm-2.4/glibmm/valuearray.h \ - /usr/include/glibmm-2.4/glibmm/variantdict.h \ - /usr/include/glibmm-2.4/glibmm/vectorutils.h \ - /usr/include/glibmm-2.4/glibmm/weakref.h /usr/include/giomm-2.4/giomm.h \ - /usr/include/giomm-2.4/giomm/action.h \ - /usr/lib/giomm-2.4/include/giommconfig.h /usr/include/glib-2.0/gio/gio.h \ - /usr/include/glib-2.0/gio/giotypes.h \ - /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/gio/gaction.h \ - /usr/include/glib-2.0/gio/gactiongroup.h \ - /usr/include/glib-2.0/gio/gactiongroupexporter.h \ - /usr/include/glib-2.0/gio/gactionmap.h \ - /usr/include/glib-2.0/gio/gappinfo.h \ - /usr/include/glib-2.0/gio/gapplication.h \ - /usr/include/glib-2.0/gio/gapplicationcommandline.h \ - /usr/include/glib-2.0/gio/gasyncinitable.h \ - /usr/include/glib-2.0/gio/ginitable.h \ - /usr/include/glib-2.0/gio/gasyncresult.h \ - /usr/include/glib-2.0/gio/gbufferedinputstream.h \ - /usr/include/glib-2.0/gio/gfilterinputstream.h \ - /usr/include/glib-2.0/gio/ginputstream.h \ - /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ - /usr/include/glib-2.0/gio/gfilteroutputstream.h \ - /usr/include/glib-2.0/gio/goutputstream.h \ - /usr/include/glib-2.0/gio/gbytesicon.h \ - /usr/include/glib-2.0/gio/gcancellable.h \ - /usr/include/glib-2.0/gio/gcharsetconverter.h \ - /usr/include/glib-2.0/gio/gconverter.h \ - /usr/include/glib-2.0/gio/gcontenttype.h \ - /usr/include/glib-2.0/gio/gconverterinputstream.h \ - /usr/include/glib-2.0/gio/gconverteroutputstream.h \ - /usr/include/glib-2.0/gio/gcredentials.h \ - /usr/include/glib-2.0/gio/gdatagrambased.h \ - /usr/include/glib-2.0/gio/gdatainputstream.h \ - /usr/include/glib-2.0/gio/gdataoutputstream.h \ - /usr/include/glib-2.0/gio/gdbusactiongroup.h \ - /usr/include/glib-2.0/gio/giotypes.h \ - /usr/include/glib-2.0/gio/gdbusaddress.h \ - /usr/include/glib-2.0/gio/gdbusauthobserver.h \ - /usr/include/glib-2.0/gio/gdbusconnection.h \ - /usr/include/glib-2.0/gio/gdbuserror.h \ - /usr/include/glib-2.0/gio/gdbusinterface.h \ - /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ - /usr/include/glib-2.0/gio/gdbusintrospection.h \ - /usr/include/glib-2.0/gio/gdbusmenumodel.h \ - /usr/include/glib-2.0/gio/gdbusmessage.h \ - /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ - /usr/include/glib-2.0/gio/gdbusnameowning.h \ - /usr/include/glib-2.0/gio/gdbusnamewatching.h \ - /usr/include/glib-2.0/gio/gdbusobject.h \ - /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ - /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ - /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ - /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ - /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ - /usr/include/glib-2.0/gio/gdbusproxy.h \ - /usr/include/glib-2.0/gio/gdbusserver.h \ - /usr/include/glib-2.0/gio/gdbusutils.h \ - /usr/include/glib-2.0/gio/gdebugcontroller.h \ - /usr/include/glib-2.0/gio/gdebugcontrollerdbus.h \ - /usr/include/glib-2.0/gio/gdrive.h \ - /usr/include/glib-2.0/gio/gdtlsclientconnection.h \ - /usr/include/glib-2.0/gio/gdtlsconnection.h \ - /usr/include/glib-2.0/gio/gdtlsserverconnection.h \ - /usr/include/glib-2.0/gio/gemblemedicon.h \ - /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ - /usr/include/glib-2.0/gio/gfile.h \ - /usr/include/glib-2.0/gio/gfileattribute.h \ - /usr/include/glib-2.0/gio/gfileenumerator.h \ - /usr/include/glib-2.0/gio/gfileicon.h \ - /usr/include/glib-2.0/gio/gfileinfo.h \ - /usr/include/glib-2.0/gio/gfileinputstream.h \ - /usr/include/glib-2.0/gio/gfileiostream.h \ - /usr/include/glib-2.0/gio/giostream.h \ - /usr/include/glib-2.0/gio/gioerror.h \ - /usr/include/glib-2.0/gio/gfilemonitor.h \ - /usr/include/glib-2.0/gio/gfilenamecompleter.h \ - /usr/include/glib-2.0/gio/gfileoutputstream.h \ - /usr/include/glib-2.0/gio/ginetaddress.h \ - /usr/include/glib-2.0/gio/ginetaddressmask.h \ - /usr/include/glib-2.0/gio/ginetsocketaddress.h \ - /usr/include/glib-2.0/gio/gsocketaddress.h \ - /usr/include/glib-2.0/gio/gioenumtypes.h \ - /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ - /usr/include/glib-2.0/gio/gioscheduler.h \ - /usr/include/glib-2.0/gio/glistmodel.h \ - /usr/include/glib-2.0/gio/gliststore.h \ - /usr/include/glib-2.0/gio/gloadableicon.h \ - /usr/include/glib-2.0/gio/gmemoryinputstream.h \ - /usr/include/glib-2.0/gio/gmemorymonitor.h \ - /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ - /usr/include/glib-2.0/gio/gmenu.h /usr/include/glib-2.0/gio/gmenumodel.h \ - /usr/include/glib-2.0/gio/gmenuexporter.h \ - /usr/include/glib-2.0/gio/gmount.h \ - /usr/include/glib-2.0/gio/gmountoperation.h \ - /usr/include/glib-2.0/gio/gnativesocketaddress.h \ - /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ - /usr/include/glib-2.0/gio/gvolumemonitor.h \ - /usr/include/glib-2.0/gio/gnetworkaddress.h \ - /usr/include/glib-2.0/gio/gnetworkmonitor.h \ - /usr/include/glib-2.0/gio/gnetworkservice.h \ - /usr/include/glib-2.0/gio/gnotification.h \ - /usr/include/glib-2.0/gio/gpermission.h \ - /usr/include/glib-2.0/gio/gpollableinputstream.h \ - /usr/include/glib-2.0/gio/gpollableoutputstream.h \ - /usr/include/glib-2.0/gio/gpollableutils.h \ - /usr/include/glib-2.0/gio/gpowerprofilemonitor.h \ - /usr/include/glib-2.0/gio/gpropertyaction.h \ - /usr/include/glib-2.0/gio/gproxy.h \ - /usr/include/glib-2.0/gio/gproxyaddress.h \ - /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ - /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ - /usr/include/glib-2.0/gio/gproxyresolver.h \ - /usr/include/glib-2.0/gio/gremoteactiongroup.h \ - /usr/include/glib-2.0/gio/gresolver.h \ - /usr/include/glib-2.0/gio/gresource.h \ - /usr/include/glib-2.0/gio/gseekable.h \ - /usr/include/glib-2.0/gio/gsettings.h \ - /usr/include/glib-2.0/gio/gsettingsschema.h \ - /usr/include/glib-2.0/gio/gsimpleaction.h \ - /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ - /usr/include/glib-2.0/gio/gactiongroup.h \ - /usr/include/glib-2.0/gio/gactionmap.h \ - /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ - /usr/include/glib-2.0/gio/gsimpleiostream.h \ - /usr/include/glib-2.0/gio/gsimplepermission.h \ - /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ - /usr/include/glib-2.0/gio/gsocket.h \ - /usr/include/glib-2.0/gio/gsocketclient.h \ - /usr/include/glib-2.0/gio/gsocketconnectable.h \ - /usr/include/glib-2.0/gio/gsocketconnection.h \ - /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ - /usr/include/glib-2.0/gio/gsocketlistener.h \ - /usr/include/glib-2.0/gio/gsocketservice.h \ - /usr/include/glib-2.0/gio/gsrvtarget.h \ - /usr/include/glib-2.0/gio/gsubprocess.h \ - /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ - /usr/include/glib-2.0/gio/gtask.h \ - /usr/include/glib-2.0/gio/gtcpconnection.h \ - /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ - /usr/include/glib-2.0/gio/gtestdbus.h \ - /usr/include/glib-2.0/gio/gthemedicon.h \ - /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ - /usr/include/glib-2.0/gio/gtlsbackend.h \ - /usr/include/glib-2.0/gio/gtlscertificate.h \ - /usr/include/glib-2.0/gio/gtlsclientconnection.h \ - /usr/include/glib-2.0/gio/gtlsconnection.h \ - /usr/include/glib-2.0/gio/gtlsdatabase.h \ - /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ - /usr/include/glib-2.0/gio/gtlsinteraction.h \ - /usr/include/glib-2.0/gio/gtlspassword.h \ - /usr/include/glib-2.0/gio/gtlsserverconnection.h \ - /usr/include/glib-2.0/gio/gvfs.h /usr/include/glib-2.0/gio/gvolume.h \ - /usr/include/glib-2.0/gio/gzlibcompressor.h \ - /usr/include/glib-2.0/gio/gzlibdecompressor.h \ - /usr/include/glib-2.0/gio/gio-autocleanups.h \ - /usr/include/giomm-2.4/giomm/actiongroup.h \ - /usr/include/giomm-2.4/giomm/actionmap.h \ - /usr/include/giomm-2.4/giomm/simpleaction.h \ - /usr/include/giomm-2.4/giomm/appinfo.h \ - /usr/include/giomm-2.4/giomm/applaunchcontext.h \ - /usr/include/giomm-2.4/giomm/icon.h \ - /usr/include/giomm-2.4/giomm/asyncresult.h \ - /usr/include/giomm-2.4/giomm/cancellable.h \ - /usr/include/giomm-2.4/giomm/application.h \ - /usr/include/giomm-2.4/giomm/applicationcommandline.h \ - /usr/include/giomm-2.4/giomm/file.h \ - /usr/include/giomm-2.4/giomm/fileattributeinfolist.h \ - /usr/include/giomm-2.4/giomm/fileattributeinfo.h \ - /usr/include/giomm-2.4/giomm/fileenumerator.h \ - /usr/include/giomm-2.4/giomm/fileinfo.h \ - /usr/include/giomm-2.4/giomm/fileinputstream.h \ - /usr/include/giomm-2.4/giomm/inputstream.h \ - /usr/include/giomm-2.4/giomm/seekable.h \ - /usr/include/giomm-2.4/giomm/fileiostream.h \ - /usr/include/giomm-2.4/giomm/iostream.h \ - /usr/include/giomm-2.4/giomm/outputstream.h \ - /usr/include/giomm-2.4/giomm/filemonitor.h \ - /usr/include/giomm-2.4/giomm/fileoutputstream.h \ - /usr/include/giomm-2.4/giomm/mountoperation.h \ - /usr/include/giomm-2.4/giomm/drive.h \ - /usr/include/giomm-2.4/giomm/mount.h \ - /usr/include/giomm-2.4/giomm/error.h \ - /usr/include/giomm-2.4/giomm/dbusconnection.h \ - /usr/include/giomm-2.4/giomm/initable.h \ - /usr/include/giomm-2.4/giomm/asyncinitable.h \ - /usr/include/giomm-2.4/giomm/dbusauthobserver.h \ - /usr/include/giomm-2.4/giomm/credentials.h \ - /usr/include/giomm-2.4/giomm/dbusmethodinvocation.h \ - /usr/include/giomm-2.4/giomm/dbusmessage.h \ - /usr/include/giomm-2.4/giomm/unixfdlist.h \ - /usr/include/giomm-2.4/giomm/dbusintrospection.h \ - /usr/include/giomm-2.4/giomm/dbussubtreevtable.h \ - /usr/include/giomm-2.4/giomm/dbusinterfacevtable.h \ - /usr/include/giomm-2.4/giomm/notification.h \ - /usr/include/giomm-2.4/giomm/bufferedinputstream.h \ - /usr/include/giomm-2.4/giomm/filterinputstream.h \ - /usr/include/giomm-2.4/giomm/bufferedoutputstream.h \ - /usr/include/giomm-2.4/giomm/filteroutputstream.h \ - /usr/include/giomm-2.4/giomm/charsetconverter.h \ - /usr/include/giomm-2.4/giomm/converter.h \ - /usr/include/giomm-2.4/giomm/contenttype.h \ - /usr/include/giomm-2.4/giomm/converterinputstream.h \ - /usr/include/giomm-2.4/giomm/pollableinputstream.h \ - /usr/include/giomm-2.4/giomm/converteroutputstream.h \ - /usr/include/giomm-2.4/giomm/pollableoutputstream.h \ - /usr/include/giomm-2.4/giomm/datainputstream.h \ - /usr/include/giomm-2.4/giomm/enums.h \ - /usr/include/giomm-2.4/giomm/dataoutputstream.h \ - /usr/include/giomm-2.4/giomm/dbusactiongroup.h \ - /usr/include/giomm-2.4/giomm/remoteactiongroup.h \ - /usr/include/giomm-2.4/giomm/dbusaddress.h \ - /usr/include/giomm-2.4/giomm/dbuserror.h \ - /usr/include/giomm-2.4/giomm/dbuserrorutils.h \ - /usr/include/giomm-2.4/giomm/dbusinterface.h \ - /usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h \ - /usr/include/giomm-2.4/giomm/dbusmenumodel.h \ - /usr/include/giomm-2.4/giomm/menumodel.h \ - /usr/include/giomm-2.4/giomm/dbusobject.h \ - /usr/include/giomm-2.4/giomm/dbusobjectmanager.h \ - /usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h \ - /usr/include/giomm-2.4/giomm/dbusobjectproxy.h \ - /usr/include/giomm-2.4/giomm/dbusproxy.h \ - /usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h \ - /usr/include/giomm-2.4/giomm/dbusobjectskeleton.h \ - /usr/include/giomm-2.4/giomm/dbusownname.h \ - /usr/include/giomm-2.4/giomm/dbusserver.h \ - /usr/include/giomm-2.4/giomm/dbusutils.h \ - /usr/include/giomm-2.4/giomm/dbuswatchname.h \ - /usr/include/giomm-2.4/giomm/desktopappinfo.h \ - /usr/include/giomm-2.4/giomm/emblem.h \ - /usr/include/giomm-2.4/giomm/emblemedicon.h \ - /usr/include/giomm-2.4/giomm/fileicon.h \ - /usr/include/giomm-2.4/giomm/loadableicon.h \ - /usr/include/giomm-2.4/giomm/filenamecompleter.h \ - /usr/include/giomm-2.4/giomm/inetaddress.h \ - /usr/include/giomm-2.4/giomm/inetsocketaddress.h \ - /usr/include/giomm-2.4/giomm/socketaddress.h \ - /usr/include/giomm-2.4/giomm/socketconnectable.h \ - /usr/include/giomm-2.4/giomm/socketaddressenumerator.h \ - /usr/include/giomm-2.4/giomm/init.h \ - /usr/include/giomm-2.4/giomm/wrap_init.h \ - /usr/include/giomm-2.4/giomm/listmodel.h \ - /usr/include/giomm-2.4/giomm/liststore.h \ - /usr/include/giomm-2.4/giomm/memoryinputstream.h \ - /usr/include/giomm-2.4/giomm/memoryoutputstream.h \ - /usr/include/giomm-2.4/giomm/menu.h \ - /usr/include/giomm-2.4/giomm/menuitem.h \ - /usr/include/giomm-2.4/giomm/menuattributeiter.h \ - /usr/include/giomm-2.4/giomm/menulinkiter.h \ - /usr/include/giomm-2.4/giomm/networkaddress.h \ - /usr/include/giomm-2.4/giomm/networkmonitor.h \ - /usr/include/giomm-2.4/giomm/networkservice.h \ - /usr/include/giomm-2.4/giomm/permission.h \ - /usr/include/giomm-2.4/giomm/proxy.h \ - /usr/include/giomm-2.4/giomm/proxyaddress.h \ - /usr/include/giomm-2.4/giomm/proxyresolver.h \ - /usr/include/giomm-2.4/giomm/resolver.h \ - /usr/include/giomm-2.4/giomm/srvtarget.h \ - /usr/include/giomm-2.4/giomm/resource.h \ - /usr/include/giomm-2.4/giomm/settings.h \ - /usr/include/giomm-2.4/giomm/settingsschema.h \ - /usr/include/giomm-2.4/giomm/settingsschemakey.h \ - /usr/include/giomm-2.4/giomm/settingsschemasource.h \ - /usr/include/giomm-2.4/giomm/simpleactiongroup.h \ - /usr/include/giomm-2.4/giomm/simpleiostream.h \ - /usr/include/giomm-2.4/giomm/simplepermission.h \ - /usr/include/giomm-2.4/giomm/socket.h \ - /usr/include/giomm-2.4/giomm/socketclient.h \ - /usr/include/giomm-2.4/giomm/socketconnection.h \ - /usr/include/giomm-2.4/giomm/socketcontrolmessage.h \ - /usr/include/c++/11.2.0/set /usr/include/c++/11.2.0/bits/stl_set.h \ - /usr/include/c++/11.2.0/bits/stl_multiset.h \ - /usr/include/giomm-2.4/giomm/socketlistener.h \ - /usr/include/giomm-2.4/giomm/socketservice.h \ - /usr/include/giomm-2.4/giomm/socketsource.h \ - /usr/include/giomm-2.4/giomm/tcpconnection.h \ - /usr/include/giomm-2.4/giomm/tcpwrapperconnection.h \ - /usr/include/giomm-2.4/giomm/themedicon.h \ - /usr/include/giomm-2.4/giomm/threadedsocketservice.h \ - /usr/include/giomm-2.4/giomm/tlscertificate.h \ - /usr/include/giomm-2.4/giomm/tlsclientconnection.h \ - /usr/include/giomm-2.4/giomm/tlsconnection.h \ - /usr/include/giomm-2.4/giomm/tlsdatabase.h \ - /usr/include/giomm-2.4/giomm/tlsinteraction.h \ - /usr/include/giomm-2.4/giomm/tlspassword.h \ - /usr/include/giomm-2.4/giomm/tlsserverconnection.h \ - /usr/include/giomm-2.4/giomm/unixconnection.h \ - /usr/include/giomm-2.4/giomm/unixcredentialsmessage.h \ - /usr/include/giomm-2.4/giomm/unixfdmessage.h \ - /usr/include/giomm-2.4/giomm/unixinputstream.h \ - /usr/include/giomm-2.4/giomm/unixoutputstream.h \ - /usr/include/giomm-2.4/giomm/unixsocketaddress.h \ - /usr/include/giomm-2.4/giomm/volume.h \ - /usr/include/giomm-2.4/giomm/volumemonitor.h \ - /usr/include/giomm-2.4/giomm/zlibcompressor.h \ - /usr/include/giomm-2.4/giomm/zlibdecompressor.h \ - /usr/include/gdkmm-3.0/gdkmm/dragcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/color.h \ - /usr/lib/gdkmm-3.0/include/gdkmmconfig.h \ - /usr/lib/pangomm-1.4/include/pangommconfig.h \ - /usr/include/gtk-3.0/gdk/gdk.h /usr/include/gtk-3.0/gdk/gdkconfig.h \ - /usr/include/gtk-3.0/gdk/gdkversionmacros.h \ - /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h \ - /usr/include/gtk-3.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ - /usr/include/pango-1.0/pango/pango-attributes.h \ - /usr/include/pango-1.0/pango/pango-font.h \ - /usr/include/pango-1.0/pango/pango-coverage.h \ - /usr/include/pango-1.0/pango/pango-version-macros.h \ - /usr/include/pango-1.0/pango/pango-features.h /usr/include/harfbuzz/hb.h \ - /usr/include/harfbuzz/hb-blob.h /usr/include/harfbuzz/hb-common.h \ - /usr/include/harfbuzz/hb-buffer.h /usr/include/harfbuzz/hb-unicode.h \ - /usr/include/harfbuzz/hb-font.h /usr/include/harfbuzz/hb-face.h \ - /usr/include/harfbuzz/hb-set.h /usr/include/harfbuzz/hb-draw.h \ - /usr/include/harfbuzz/hb.h /usr/include/harfbuzz/hb-deprecated.h \ - /usr/include/harfbuzz/hb-map.h /usr/include/harfbuzz/hb-shape.h \ - /usr/include/harfbuzz/hb-shape-plan.h /usr/include/harfbuzz/hb-style.h \ - /usr/include/harfbuzz/hb-version.h \ - /usr/include/pango-1.0/pango/pango-types.h \ - /usr/include/pango-1.0/pango/pango-gravity.h \ - /usr/include/pango-1.0/pango/pango-matrix.h \ - /usr/include/pango-1.0/pango/pango-script.h \ - /usr/include/pango-1.0/pango/pango-language.h \ - /usr/include/pango-1.0/pango/pango-bidi-type.h \ - /usr/include/pango-1.0/pango/pango-direction.h \ - /usr/include/pango-1.0/pango/pango-color.h \ - /usr/include/pango-1.0/pango/pango-break.h \ - /usr/include/pango-1.0/pango/pango-item.h \ - /usr/include/pango-1.0/pango/pango-context.h \ - /usr/include/pango-1.0/pango/pango-fontmap.h \ - /usr/include/pango-1.0/pango/pango-fontset.h \ - /usr/include/pango-1.0/pango/pango-engine.h \ - /usr/include/pango-1.0/pango/pango-glyph.h \ - /usr/include/pango-1.0/pango/pango-enum-types.h \ - /usr/include/pango-1.0/pango/pango-fontset-simple.h \ - /usr/include/pango-1.0/pango/pango-glyph-item.h \ - /usr/include/pango-1.0/pango/pango-layout.h \ - /usr/include/pango-1.0/pango/pango-tabs.h \ - /usr/include/pango-1.0/pango/pango-markup.h \ - /usr/include/pango-1.0/pango/pango-renderer.h \ - /usr/include/pango-1.0/pango/pango-utils.h /usr/include/cairo/cairo.h \ - /usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \ - /usr/include/cairo/cairo-deprecated.h \ - /usr/include/gtk-3.0/gdk/gdkscreen.h \ - /usr/include/gtk-3.0/gdk/gdkdisplay.h \ - /usr/include/gtk-3.0/gdk/gdkevents.h /usr/include/gtk-3.0/gdk/gdkdnd.h \ - /usr/include/gtk-3.0/gdk/gdkdevice.h \ - /usr/include/gtk-3.0/gdk/gdkdevicetool.h \ - /usr/include/gtk-3.0/gdk/gdkdevicemanager.h \ - /usr/include/gtk-3.0/gdk/gdkseat.h /usr/include/gtk-3.0/gdk/gdkwindow.h \ - /usr/include/gtk-3.0/gdk/gdkdrawingcontext.h \ - /usr/include/gtk-3.0/gdk/gdkframeclock.h \ - /usr/include/gtk-3.0/gdk/gdkframetimings.h \ - /usr/include/gtk-3.0/gdk/gdkmonitor.h \ - /usr/include/gtk-3.0/gdk/gdkrectangle.h \ - /usr/include/gtk-3.0/gdk/gdkcairo.h \ - /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h \ - /usr/include/gtk-3.0/gdk/gdkrgba.h /usr/include/gtk-3.0/gdk/gdkpixbuf.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h \ - /usr/include/pango-1.0/pango/pangocairo.h \ - /usr/include/gtk-3.0/gdk/gdkcursor.h \ - /usr/include/gtk-3.0/gdk/gdkdevicepad.h \ - /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h \ - /usr/include/gtk-3.0/gdk/gdkenumtypes.h \ - /usr/include/gtk-3.0/gdk/gdkglcontext.h \ - /usr/include/gtk-3.0/gdk/gdkkeys.h /usr/include/gtk-3.0/gdk/gdkkeysyms.h \ - /usr/include/gtk-3.0/gdk/gdkmain.h /usr/include/gtk-3.0/gdk/gdkpango.h \ - /usr/include/gtk-3.0/gdk/gdkproperty.h \ - /usr/include/gtk-3.0/gdk/gdkselection.h \ - /usr/include/gtk-3.0/gdk/gdktestutils.h \ - /usr/include/gtk-3.0/gdk/gdkthreads.h \ - /usr/include/gtk-3.0/gdk/gdkvisual.h \ - /usr/include/gtk-3.0/gdk/gdk-autocleanup.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbuf.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufformat.h \ - /usr/include/gdkmm-3.0/gdkmm/types.h \ - /usr/include/cairomm-1.0/cairomm/surface.h \ - /usr/include/cairomm-1.0/cairomm/enums.h /usr/include/cairo/cairo-ft.h \ - /usr/include/cairo/cairo.h /usr/include/freetype2/ft2build.h \ - /usr/include/freetype2/freetype/config/ftheader.h \ - /usr/include/freetype2/freetype/freetype.h \ - /usr/include/freetype2/freetype/config/ftconfig.h \ - /usr/include/freetype2/freetype/config/ftoption.h \ - /usr/include/freetype2/freetype/config/ftstdlib.h /usr/include/setjmp.h \ - /usr/include/freetype2/freetype/config/integer-types.h \ - /usr/include/freetype2/freetype/config/public-macros.h \ - /usr/include/freetype2/freetype/config/mac-support.h \ - /usr/include/freetype2/freetype/fttypes.h \ - /usr/include/freetype2/freetype/ftsystem.h \ - /usr/include/freetype2/freetype/ftimage.h \ - /usr/include/freetype2/freetype/fterrors.h \ - /usr/include/freetype2/freetype/ftmoderr.h \ - /usr/include/freetype2/freetype/fterrdef.h \ - /usr/include/fontconfig/fontconfig.h /usr/include/sys/stat.h \ - /usr/include/bits/stat.h /usr/include/bits/struct_stat.h \ - /usr/include/bits/statx.h /usr/include/linux/stat.h \ - /usr/include/linux/types.h /usr/include/asm/types.h \ - /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ - /usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \ - /usr/include/linux/posix_types.h /usr/include/linux/stddef.h \ - /usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \ - /usr/include/bits/types/struct_statx_timestamp.h \ - /usr/include/bits/types/struct_statx.h \ - /usr/include/cairomm-1.0/cairomm/exception.h \ - /usr/lib/cairomm-1.0/include/cairommconfig.h \ - /usr/include/cairomm-1.0/cairomm/device.h \ - /usr/include/cairomm-1.0/cairomm/types.h \ - /usr/include/cairomm-1.0/cairomm/refptr.h \ - /usr/include/cairomm-1.0/cairomm/fontoptions.h \ - /usr/include/cairo/cairo-pdf.h /usr/include/cairo/cairo-ps.h \ - /usr/include/cairo/cairo-svg.h /usr/include/gdkmm-3.0/gdkmm/device.h \ - /usr/include/gdkmm-3.0/gdkmm/cursor.h \ - /usr/include/gdkmm-3.0/gdkmm/display.h \ - /usr/include/gdkmm-3.0/gdkmm/screen.h \ - /usr/include/gdkmm-3.0/gdkmm/rectangle.h \ - /usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/event.h \ - /usr/include/gdkmm-3.0/gdkmm/timecoord.h /usr/include/gdkmm-3.0/gdkmm.h \ - /usr/include/gdkmm-3.0/gdkmm/visual.h \ - /usr/include/gdkmm-3.0/gdkmm/window.h \ - /usr/include/cairomm-1.0/cairomm/region.h \ - /usr/include/cairomm-1.0/cairomm/pattern.h \ - /usr/include/gdkmm-3.0/gdkmm/rgba.h \ - /usr/include/cairomm-1.0/cairomm/context.h \ - /usr/include/cairomm-1.0/cairomm/fontface.h \ - /usr/include/cairomm-1.0/cairomm/matrix.h \ - /usr/include/cairomm-1.0/cairomm/path.h \ - /usr/include/cairomm-1.0/cairomm/scaledfont.h \ - /usr/include/c++/11.2.0/valarray /usr/include/c++/11.2.0/cmath \ - /usr/include/math.h /usr/include/bits/math-vector.h \ - /usr/include/bits/libm-simd-decl-stubs.h \ - /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ - /usr/include/bits/fp-fast.h \ - /usr/include/bits/mathcalls-helper-functions.h \ - /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ - /usr/include/bits/iscanonical.h /usr/include/c++/11.2.0/bits/specfun.h \ - /usr/include/c++/11.2.0/tr1/gamma.tcc \ - /usr/include/c++/11.2.0/tr1/special_function_util.h \ - /usr/include/c++/11.2.0/tr1/bessel_function.tcc \ - /usr/include/c++/11.2.0/tr1/beta_function.tcc \ - /usr/include/c++/11.2.0/tr1/ell_integral.tcc \ - /usr/include/c++/11.2.0/tr1/exp_integral.tcc \ - /usr/include/c++/11.2.0/tr1/hypergeometric.tcc \ - /usr/include/c++/11.2.0/tr1/legendre_function.tcc \ - /usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc \ - /usr/include/c++/11.2.0/tr1/poly_hermite.tcc \ - /usr/include/c++/11.2.0/tr1/poly_laguerre.tcc \ - /usr/include/c++/11.2.0/tr1/riemann_zeta.tcc \ - /usr/include/c++/11.2.0/bits/valarray_array.h \ - /usr/include/c++/11.2.0/bits/valarray_array.tcc \ - /usr/include/c++/11.2.0/bits/valarray_before.h \ - /usr/include/c++/11.2.0/bits/slice_array.h \ - /usr/include/c++/11.2.0/bits/valarray_after.h \ - /usr/include/c++/11.2.0/bits/gslice.h \ - /usr/include/c++/11.2.0/bits/gslice_array.h \ - /usr/include/c++/11.2.0/bits/mask_array.h \ - /usr/include/c++/11.2.0/bits/indirect_array.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufloader.h \ - /usr/include/gdkmm-3.0/gdkmm/drawingcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/frameclock.h \ - /usr/include/gdkmm-3.0/gdkmm/frametimings.h \ - /usr/include/gdkmm-3.0/gdkmm/glcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/displaymanager.h \ - /usr/include/gdkmm-3.0/gdkmm/devicemanager.h \ - /usr/include/gdkmm-3.0/gdkmm/seat.h \ - /usr/include/gdkmm-3.0/gdkmm/monitor.h \ - /usr/include/gdkmm-3.0/gdkmm/general.h \ - /usr/include/gtkmm-3.0/gtkmm/toggleaction.h \ - /usr/include/gtkmm-3.0/gtkmm/action.h \ - /usr/lib/gtkmm-3.0/include/gtkmmconfig.h \ - /usr/include/gtkmm-3.0/gtkmm/widget.h \ - /usr/include/pangomm-1.4/pangomm/context.h \ - /usr/include/pangomm-1.4/pangomm/fontdescription.h \ - /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ - /usr/include/pangomm-1.4/pangomm/fontset.h \ - /usr/include/pangomm-1.4/pangomm/language.h \ - /usr/include/pangomm-1.4/pangomm/font.h \ - /usr/include/pangomm-1.4/pangomm/rectangle.h \ - /usr/include/pangomm-1.4/pangomm/glyph.h \ - /usr/include/pangomm-1.4/pangomm/coverage.h \ - /usr/include/pangomm-1.4/pangomm/fontmap.h \ - /usr/include/pangomm-1.4/pangomm/fontfamily.h \ - /usr/include/pangomm-1.4/pangomm/fontface.h \ - /usr/include/pangomm-1.4/pangomm/item.h \ - /usr/include/pangomm-1.4/pangomm/attributes.h \ - /usr/include/pangomm-1.4/pangomm/color.h \ - /usr/include/pangomm-1.4/pangomm/attrlist.h \ - /usr/include/pangomm-1.4/pangomm/attriter.h \ - /usr/include/pangomm-1.4/pangomm/types.h \ - /usr/include/pangomm-1.4/pangomm/layout.h \ - /usr/include/pangomm-1.4/pangomm/tabarray.h \ - /usr/include/pangomm-1.4/pangomm/layoutline.h \ - /usr/include/pangomm-1.4/pangomm/layoutiter.h \ - /usr/include/pangomm-1.4/pangomm/layoutrun.h \ - /usr/include/atkmm-1.6/atkmm/object.h \ - /usr/include/atkmm-1.6/atkmm/component.h \ - /usr/lib/atkmm-1.6/include/atkmmconfig.h \ - /usr/include/atkmm-1.6/atkmm/relation.h \ - /usr/include/atkmm-1.6/atkmm/implementor.h \ - /usr/include/gtkmm-3.0/gtkmm/object.h \ - /usr/include/gtkmm-3.0/gtkmm/base.h \ - /usr/include/gtkmm-3.0/gtkmm/buildable.h \ - /usr/include/gtkmm-3.0/gtkmm/enums.h /usr/include/gtk-3.0/gtk/gtk.h \ - /usr/include/gtk-3.0/gtk/gtkaboutdialog.h \ - /usr/include/gtk-3.0/gtk/gtkdialog.h \ - /usr/include/gtk-3.0/gtk/gtkwindow.h \ - /usr/include/gtk-3.0/gtk/gtkapplication.h \ - /usr/include/gtk-3.0/gtk/gtkwidget.h \ - /usr/include/gtk-3.0/gtk/gtkaccelgroup.h \ - /usr/include/gtk-3.0/gtk/gtkenums.h /usr/include/gtk-3.0/gtk/gtkborder.h \ - /usr/include/gtk-3.0/gtk/gtktypes.h /usr/include/atk-1.0/atk/atk.h \ - /usr/include/atk-1.0/atk/atkobject.h \ - /usr/include/atk-1.0/atk/atkversion.h \ - /usr/include/atk-1.0/atk/atkstate.h \ - /usr/include/atk-1.0/atk/atkrelationtype.h \ - /usr/include/atk-1.0/atk/atkaction.h \ - /usr/include/atk-1.0/atk/atkcomponent.h \ - /usr/include/atk-1.0/atk/atkutil.h \ - /usr/include/atk-1.0/atk/atkdocument.h \ - /usr/include/atk-1.0/atk/atkeditabletext.h \ - /usr/include/atk-1.0/atk/atktext.h \ - /usr/include/atk-1.0/atk/atk-enum-types.h \ - /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ - /usr/include/atk-1.0/atk/atkhyperlink.h \ - /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ - /usr/include/atk-1.0/atk/atkhypertext.h \ - /usr/include/atk-1.0/atk/atkimage.h \ - /usr/include/atk-1.0/atk/atknoopobject.h \ - /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkplug.h /usr/include/atk-1.0/atk/atkrange.h \ - /usr/include/atk-1.0/atk/atkregistry.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkrelation.h \ - /usr/include/atk-1.0/atk/atkrelationset.h \ - /usr/include/atk-1.0/atk/atkselection.h \ - /usr/include/atk-1.0/atk/atksocket.h \ - /usr/include/atk-1.0/atk/atkstateset.h \ - /usr/include/atk-1.0/atk/atkstreamablecontent.h \ - /usr/include/atk-1.0/atk/atktable.h \ - /usr/include/atk-1.0/atk/atktablecell.h \ - /usr/include/atk-1.0/atk/atkmisc.h /usr/include/atk-1.0/atk/atkvalue.h \ - /usr/include/atk-1.0/atk/atkwindow.h \ - /usr/include/atk-1.0/atk/atk-autocleanups.h \ - /usr/include/gtk-3.0/gtk/gtkbin.h \ - /usr/include/gtk-3.0/gtk/gtkcontainer.h \ - /usr/include/gtk-3.0/gtk/gtkaccellabel.h \ - /usr/include/gtk-3.0/gtk/gtklabel.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h \ - /usr/include/gtk-3.0/gtk/gtkmenu.h \ - /usr/include/gtk-3.0/gtk/gtkmenushell.h \ - /usr/include/gtk-3.0/gtk/gtkaccelmap.h \ - /usr/include/gtk-3.0/gtk/gtkaccessible.h \ - /usr/include/gtk-3.0/gtk/gtkactionable.h \ - /usr/include/gtk-3.0/gtk/gtkactionbar.h \ - /usr/include/gtk-3.0/gtk/gtkadjustment.h \ - /usr/include/gtk-3.0/gtk/gtkappchooser.h \ - /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkbox.h \ - /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h \ - /usr/include/gtk-3.0/gtk/gtkcombobox.h \ - /usr/include/gtk-3.0/gtk/gtktreemodel.h \ - /usr/include/gtk-3.0/gtk/gtktreeview.h \ - /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderer.h \ - /usr/include/gtk-3.0/gtk/gtkcelleditable.h \ - /usr/include/gtk-3.0/gtk/gtktreesortable.h \ - /usr/include/gtk-3.0/gtk/gtkcellarea.h /usr/include/gtk-3.0/gtk/gtkdnd.h \ - /usr/include/gtk-3.0/gtk/gtkselection.h \ - /usr/include/gtk-3.0/gtk/gtktextiter.h \ - /usr/include/gtk-3.0/gtk/gtktextattributes.h \ - /usr/include/gtk-3.0/gtk/gtktextchild.h \ - /usr/include/gtk-3.0/gtk/gtktexttag.h \ - /usr/include/gtk-3.0/gtk/gtkentry.h \ - /usr/include/gtk-3.0/gtk/gtkeditable.h \ - /usr/include/gtk-3.0/gtk/gtkimcontext.h \ - /usr/include/gtk-3.0/gtk/gtkentrybuffer.h \ - /usr/include/gtk-3.0/gtk/gtkentrycompletion.h \ - /usr/include/gtk-3.0/gtk/gtkliststore.h \ - /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h \ - /usr/include/gtk-3.0/gtk/gtkimage.h \ - /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutswindow.h \ - /usr/include/gtk-3.0/gtk/gtkaspectframe.h \ - /usr/include/gtk-3.0/gtk/gtkframe.h \ - /usr/include/gtk-3.0/gtk/gtkassistant.h \ - /usr/include/gtk-3.0/gtk/gtkbbox.h \ - /usr/include/gtk-3.0/gtk/gtkbindings.h \ - /usr/include/gtk-3.0/gtk/gtkbuildable.h \ - /usr/include/gtk-3.0/gtk/gtkbuilder.h \ - /usr/include/gtk-3.0/gtk/gtkbutton.h \ - /usr/include/gtk-3.0/gtk/gtkcalendar.h \ - /usr/include/gtk-3.0/gtk/gtkcellareabox.h \ - /usr/include/gtk-3.0/gtk/gtkcellareacontext.h \ - /usr/include/gtk-3.0/gtk/gtkcelllayout.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h \ - /usr/include/gtk-3.0/gtk/gtkcellview.h \ - /usr/include/gtk-3.0/gtk/gtkcheckbutton.h \ - /usr/include/gtk-3.0/gtk/gtktogglebutton.h \ - /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkmenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkclipboard.h \ - /usr/include/gtk-3.0/gtk/gtkcolorbutton.h \ - /usr/include/gtk-3.0/gtk/gtkcolorchooser.h \ - /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkcolorutils.h \ - /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h \ - /usr/include/gtk-3.0/gtk/gtkcssprovider.h \ - /usr/include/gtk-3.0/gtk/gtkcsssection.h \ - /usr/include/gtk-3.0/gtk/gtkdebug.h \ - /usr/include/gtk-3.0/gtk/gtkdragdest.h \ - /usr/include/gtk-3.0/gtk/gtkdragsource.h \ - /usr/include/gtk-3.0/gtk/gtkdrawingarea.h \ - /usr/include/gtk-3.0/gtk/gtkeventbox.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontroller.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h \ - /usr/include/gtk-3.0/gtk/gtkexpander.h \ - /usr/include/gtk-3.0/gtk/gtkfixed.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooser.h \ - /usr/include/gtk-3.0/gtk/gtkfilefilter.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkfilechoosernative.h \ - /usr/include/gtk-3.0/gtk/gtknativedialog.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkflowbox.h \ - /usr/include/gtk-3.0/gtk/gtkfontbutton.h \ - /usr/include/gtk-3.0/gtk/gtkfontchooser.h \ - /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkgesture.h \ - /usr/include/gtk-3.0/gtk/gtkgesturedrag.h \ - /usr/include/gtk-3.0/gtk/gtkgesturesingle.h \ - /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h \ - /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h \ - /usr/include/gtk-3.0/gtk/gtkgesturepan.h \ - /usr/include/gtk-3.0/gtk/gtkgesturerotate.h \ - /usr/include/gtk-3.0/gtk/gtkgesturestylus.h \ - /usr/include/gtk-3.0/gtk/gtkgestureswipe.h \ - /usr/include/gtk-3.0/gtk/gtkgesturezoom.h \ - /usr/include/gtk-3.0/gtk/gtkglarea.h /usr/include/gtk-3.0/gtk/gtkgrid.h \ - /usr/include/gtk-3.0/gtk/gtkheaderbar.h \ - /usr/include/gtk-3.0/gtk/gtkicontheme.h \ - /usr/include/gtk-3.0/gtk/gtkstylecontext.h \ - /usr/include/gtk-3.0/gtk/gtkstyleprovider.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h \ - /usr/include/gtk-3.0/gtk/gtkiconview.h \ - /usr/include/gtk-3.0/gtk/gtktooltip.h \ - /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h \ - /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h \ - /usr/include/gtk-3.0/gtk/gtkimmulticontext.h \ - /usr/include/gtk-3.0/gtk/gtkinfobar.h \ - /usr/include/gtk-3.0/gtk/gtkinvisible.h \ - /usr/include/gtk-3.0/gtk/gtklayout.h \ - /usr/include/gtk-3.0/gtk/gtklevelbar.h \ - /usr/include/gtk-3.0/gtk/gtklinkbutton.h \ - /usr/include/gtk-3.0/gtk/gtklistbox.h \ - /usr/include/gtk-3.0/gtk/gtklockbutton.h \ - /usr/include/gtk-3.0/gtk/gtkmain.h /usr/include/gtk-3.0/gtk/gtkmenubar.h \ - /usr/include/gtk-3.0/gtk/gtkmenubutton.h \ - /usr/include/gtk-3.0/gtk/gtkpopover.h \ - /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtktoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtktoolitem.h \ - /usr/include/gtk-3.0/gtk/gtksizegroup.h \ - /usr/include/gtk-3.0/gtk/gtkmessagedialog.h \ - /usr/include/gtk-3.0/gtk/gtkmodelbutton.h \ - /usr/include/gtk-3.0/gtk/gtkmodules.h \ - /usr/include/gtk-3.0/gtk/gtkmountoperation.h \ - /usr/include/gtk-3.0/gtk/gtknotebook.h \ - /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h \ - /usr/include/gtk-3.0/gtk/gtkorientable.h \ - /usr/include/gtk-3.0/gtk/gtkoverlay.h \ - /usr/include/gtk-3.0/gtk/gtkpadcontroller.h \ - /usr/include/gtk-3.0/gtk/gtkpagesetup.h \ - /usr/include/gtk-3.0/gtk/gtkpapersize.h \ - /usr/include/gtk-3.0/gtk/gtkpaned.h \ - /usr/include/gtk-3.0/gtk/gtkplacessidebar.h \ - /usr/include/gtk-3.0/gtk/gtkpopovermenu.h \ - /usr/include/gtk-3.0/gtk/gtkprintcontext.h \ - /usr/include/gtk-3.0/gtk/gtkprintoperation.h \ - /usr/include/gtk-3.0/gtk/gtkprintsettings.h \ - /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h \ - /usr/include/gtk-3.0/gtk/gtkprogressbar.h \ - /usr/include/gtk-3.0/gtk/gtkradiobutton.h \ - /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtkrange.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchooser.h \ - /usr/include/gtk-3.0/gtk/gtkrecentmanager.h \ - /usr/include/gtk-3.0/gtk/gtkrecentfilter.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkrender.h \ - /usr/include/gtk-3.0/gtk/gtkrevealer.h \ - /usr/include/gtk-3.0/gtk/gtkscale.h \ - /usr/include/gtk-3.0/gtk/gtkscalebutton.h \ - /usr/include/gtk-3.0/gtk/gtkscrollable.h \ - /usr/include/gtk-3.0/gtk/gtkscrollbar.h \ - /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h \ - /usr/include/gtk-3.0/gtk/gtksearchbar.h \ - /usr/include/gtk-3.0/gtk/gtksearchentry.h \ - /usr/include/gtk-3.0/gtk/gtkseparator.h \ - /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h \ - /usr/include/gtk-3.0/gtk/gtksettings.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutlabel.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutssection.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h \ - /usr/include/gtk-3.0/gtk/gtkshow.h \ - /usr/include/gtk-3.0/gtk/gtkstacksidebar.h \ - /usr/include/gtk-3.0/gtk/gtkstack.h \ - /usr/include/gtk-3.0/gtk/gtksizerequest.h \ - /usr/include/gtk-3.0/gtk/gtkspinbutton.h \ - /usr/include/gtk-3.0/gtk/gtkspinner.h \ - /usr/include/gtk-3.0/gtk/gtkstackswitcher.h \ - /usr/include/gtk-3.0/gtk/gtkstatusbar.h \ - /usr/include/gtk-3.0/gtk/gtkswitch.h \ - /usr/include/gtk-3.0/gtk/gtktextbuffer.h \ - /usr/include/gtk-3.0/gtk/gtktexttagtable.h \ - /usr/include/gtk-3.0/gtk/gtktextmark.h \ - /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h \ - /usr/include/gtk-3.0/gtk/gtktextview.h \ - /usr/include/gtk-3.0/gtk/gtktoolbar.h \ - /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h \ - /usr/include/gtk-3.0/gtk/gtktoolpalette.h \ - /usr/include/gtk-3.0/gtk/gtktoolshell.h \ - /usr/include/gtk-3.0/gtk/gtktestutils.h \ - /usr/include/gtk-3.0/gtk/gtktreednd.h \ - /usr/include/gtk-3.0/gtk/gtktreemodelsort.h \ - /usr/include/gtk-3.0/gtk/gtktreeselection.h \ - /usr/include/gtk-3.0/gtk/gtktreestore.h \ - /usr/include/gtk-3.0/gtk/gtktypebuiltins.h \ - /usr/include/gtk-3.0/gtk/gtkversion.h \ - /usr/include/gtk-3.0/gtk/gtkviewport.h \ - /usr/include/gtk-3.0/gtk/gtkvolumebutton.h \ - /usr/include/gtk-3.0/gtk/gtkwidgetpath.h \ - /usr/include/gtk-3.0/gtk/gtkwindowgroup.h \ - /usr/include/gtk-3.0/gtk/gtkwindow.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtktable.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h \ - /usr/include/gtk-3.0/gtk/gtk-autocleanups.h \ - /usr/include/gtkmm-3.0/gtkmm/targetlist.h \ - /usr/include/gtkmm-3.0/gtkmm/targetentry.h \ - /usr/include/gtkmm-3.0/gtkmm/clipboard.h \ - /usr/include/gtkmm-3.0/gtkmm/selectiondata.h \ - /usr/include/gtkmm-3.0/gtkmm/requisition.h \ - /usr/include/gtkmm-3.0/gtkmm/stylecontext.h \ - /usr/include/gtkmm-3.0/gtkmm/styleprovider.h \ - /usr/include/gtkmm-3.0/gtkmm/border.h \ - /usr/include/gtkmm-3.0/gtkmm/iconsource.h \ - /usr/include/gtkmm-3.0/gtkmm/iconset.h \ - /usr/include/gtkmm-3.0/gtkmm/stockid.h \ - /usr/include/gtkmm-3.0/gtkmm/widgetpath.h \ - /usr/include/gtkmm-3.0/gtkmm/accelgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/radioaction.h \ - /usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h \ - /usr/include/gtkmm-3.0/gtkmm/aboutdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/dialog.h \ - /usr/include/gtkmm-3.0/gtkmm/window.h /usr/include/gtkmm-3.0/gtkmm/bin.h \ - /usr/include/gtkmm-3.0/gtkmm/container.h \ - /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h \ - /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h \ - /usr/include/gtkmm-3.0/gtkmm/application.h \ - /usr/include/gtkmm-3.0/gtkmm/actiongroup.h \ - /usr/include/gtkmm-3.0/gtkmm/accelkey.h \ - /usr/include/gtkmm-3.0/gtkmm/windowgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/box.h \ - /usr/include/gtkmm-3.0/gtkmm/orientable.h \ - /usr/include/gtkmm-3.0/gtkmm/hvbox.h \ - /usr/include/gtkmm-3.0/gtkmm/button.h \ - /usr/include/gtkmm-3.0/gtkmm/activatable.h \ - /usr/include/gtkmm-3.0/gtkmm/buttonbox.h \ - /usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h \ - /usr/include/gtkmm-3.0/gtkmm/headerbar.h \ - /usr/include/gtkmm-3.0/gtkmm/accelmap.h \ - /usr/include/gtkmm-3.0/gtkmm/actionable.h \ - /usr/include/gtkmm-3.0/gtkmm/actionbar.h \ - /usr/include/gtkmm-3.0/gtkmm/adjustment.h \ - /usr/include/gtkmm-3.0/gtkmm/alignment.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/combobox.h \ - /usr/include/gtkmm-3.0/gtkmm/celllayout.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderer.h \ - /usr/include/gtkmm-3.0/gtkmm/celleditable.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodel.h \ - /usr/include/gtkmm-3.0/gtkmm/treeiter.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h \ - /usr/include/gtkmm-3.0/gtkmm/cellarea.h \ - /usr/include/gtkmm-3.0/gtkmm/cellareacontext.h \ - /usr/include/gtkmm-3.0/gtkmm/treeview.h \ - /usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h \ - /usr/include/gtkmm-3.0/gtkmm/treeselection.h \ - /usr/include/gtkmm-3.0/gtkmm/treepath.h \ - /usr/include/gtkmm-3.0/gtkmm/scrollable.h \ - /usr/include/gtkmm-3.0/gtkmm/entry.h \ - /usr/include/gtkmm-3.0/gtkmm/editable.h \ - /usr/include/gtkmm-3.0/gtkmm/menu.h \ - /usr/include/gtkmm-3.0/gtkmm/menushell.h \ - /usr/include/gtkmm-3.0/gtkmm/menuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/accellabel.h \ - /usr/include/gtkmm-3.0/gtkmm/label.h /usr/include/gtkmm-3.0/gtkmm/misc.h \ - /usr/include/gtkmm-3.0/gtkmm/entrycompletion.h \ - /usr/include/gtkmm-3.0/gtkmm/image.h \ - /usr/include/gtkmm-3.0/gtkmm/entrybuffer.h \ - /usr/include/gtkmm-3.0/gtkmm/tooltip.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/applicationwindow.h \ - /usr/include/gtkmm-3.0/gtkmm/arrow.h \ - /usr/include/gtkmm-3.0/gtkmm/aspectframe.h \ - /usr/include/gtkmm-3.0/gtkmm/frame.h \ - /usr/include/gtkmm-3.0/gtkmm/assistant.h \ - /usr/include/gtkmm-3.0/gtkmm/builder.h \ - /usr/include/gtkmm-3.0/gtkmm/cellareabox.h \ - /usr/include/gtkmm-3.0/gtkmm/cellview.h \ - /usr/include/gtkmm-3.0/gtkmm/checkbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/togglebutton.h \ - /usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h \ - /usr/include/gtkmm-3.0/gtkmm/colorbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/colorchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/colorselection.h \ - /usr/include/gtkmm-3.0/gtkmm/comboboxtext.h \ - /usr/include/gtkmm-3.0/gtkmm/cssprovider.h \ - /usr/include/gtkmm-3.0/gtkmm/csssection.h \ - /usr/include/gtkmm-3.0/gtkmm/drawingarea.h \ - /usr/include/gtkmm-3.0/gtkmm/expander.h \ - /usr/include/gtkmm-3.0/gtkmm/eventbox.h \ - /usr/include/gtkmm-3.0/gtkmm/eventcontroller.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooser.h \ - /usr/include/gtkmm-3.0/gtkmm/filefilter.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/filechoosernative.h \ - /usr/include/gtkmm-3.0/gtkmm/nativedialog.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/fixed.h \ - /usr/include/gtkmm-3.0/gtkmm/flowbox.h \ - /usr/include/gtkmm-3.0/gtkmm/flowboxchild.h \ - /usr/include/gtkmm-3.0/gtkmm/fontbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/fontchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/fontselection.h \ - /usr/include/gtkmm-3.0/gtkmm/gesture.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturedrag.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturesingle.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturepan.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturerotate.h \ - /usr/include/gtkmm-3.0/gtkmm/gestureswipe.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturezoom.h \ - /usr/include/gtkmm-3.0/gtkmm/glarea.h \ - /usr/include/gtkmm-3.0/gtkmm/grid.h \ - /usr/include/gtkmm-3.0/gtkmm/handlebox.h \ - /usr/include/gtkmm-3.0/gtkmm/hvpaned.h \ - /usr/include/gtkmm-3.0/gtkmm/paned.h \ - /usr/include/gtkmm-3.0/gtkmm/hvscale.h \ - /usr/include/gtkmm-3.0/gtkmm/scale.h \ - /usr/include/gtkmm-3.0/gtkmm/range.h \ - /usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h \ - /usr/include/gtkmm-3.0/gtkmm/scrollbar.h \ - /usr/include/gtkmm-3.0/gtkmm/hvseparator.h \ - /usr/include/gtkmm-3.0/gtkmm/separator.h \ - /usr/include/gtkmm-3.0/gtkmm/iconfactory.h \ - /usr/include/gtkmm-3.0/gtkmm/icontheme.h \ - /usr/include/gtkmm-3.0/gtkmm/iconinfo.h \ - /usr/include/gtkmm-3.0/gtkmm/iconview.h \ - /usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/infobar.h \ - /usr/include/gtkmm-3.0/gtkmm/calendar.h \ - /usr/include/gtkmm-3.0/gtkmm/invisible.h \ - /usr/include/gtkmm-3.0/gtkmm/layout.h \ - /usr/include/gtkmm-3.0/gtkmm/levelbar.h \ - /usr/include/gtkmm-3.0/gtkmm/listbox.h \ - /usr/include/gtkmm-3.0/gtkmm/listboxrow.h \ - /usr/include/gtkmm-3.0/gtkmm/liststore.h \ - /usr/include/gtkmm-3.0/gtkmm/treesortable.h \ - /usr/include/gtkmm-3.0/gtkmm/treedragdest.h \ - /usr/include/gtkmm-3.0/gtkmm/treedragsource.h \ - /usr/include/gtkmm-3.0/gtkmm/listviewtext.h \ - /usr/include/gtkmm-3.0/gtkmm/linkbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/main.h \ - /usr/include/gtkmm-3.0/gtkmm/menubar.h \ - /usr/include/gtkmm-3.0/gtkmm/menubutton.h \ - /usr/include/gtkmm-3.0/gtkmm/popover.h \ - /usr/include/gtkmm-3.0/gtkmm/messagedialog.h \ - /usr/include/gtkmm-3.0/gtkmm/modelbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/notebook.h \ - /usr/include/gtkmm-3.0/gtkmm/numerableicon.h \ - /usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h \ - /usr/include/gtkmm-3.0/gtkmm/overlay.h \ - /usr/include/gtkmm-3.0/gtkmm/pagesetup.h \ - /usr/include/gtkmm-3.0/gtkmm/papersize.h \ - /usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/printsettings.h \ - /usr/include/gtkmm-3.0/gtkmm/placessidebar.h \ - /usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h \ - /usr/include/gtkmm-3.0/gtkmm/popovermenu.h \ - /usr/include/gtkmm-3.0/gtkmm/printcontext.h \ - /usr/include/gtkmm-3.0/gtkmm/printer.h \ - /usr/include/gtkmm-3.0/gtkmm/printjob.h \ - /usr/include/gtkmm-3.0/gtkmm/printoperation.h \ - /usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h \ - /usr/include/gtkmm-3.0/gtkmm/printunixdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/progressbar.h \ - /usr/include/gtkmm-3.0/gtkmm/radiobutton.h \ - /usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/toolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/toolitem.h \ - /usr/include/gtkmm-3.0/gtkmm/sizegroup.h \ - /usr/include/gtkmm-3.0/gtkmm/recentaction.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/recentinfo.h \ - /usr/include/gtkmm-3.0/gtkmm/recentfilter.h \ - /usr/include/gtkmm-3.0/gtkmm/recentmanager.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/revealer.h \ - /usr/include/gtkmm-3.0/gtkmm/scalebutton.h \ - /usr/include/gtkmm-3.0/gtkmm/searchbar.h \ - /usr/include/gtkmm-3.0/gtkmm/searchentry.h \ - /usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h \ - /usr/include/gtkmm-3.0/gtkmm/settings.h \ - /usr/include/gtkmm-3.0/gtkmm/toolbar.h \ - /usr/include/gtkmm-3.0/gtkmm/toolshell.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutssection.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h \ - /usr/include/gtkmm-3.0/gtkmm/spinbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/spinner.h \ - /usr/include/gtkmm-3.0/gtkmm/stack.h \ - /usr/include/gtkmm-3.0/gtkmm/stacksidebar.h \ - /usr/include/gtkmm-3.0/gtkmm/stackswitcher.h \ - /usr/include/gtkmm-3.0/gtkmm/statusbar.h \ - /usr/include/gtkmm-3.0/gtkmm/statusicon.h \ - /usr/include/gtkmm-3.0/gtkmm/stock.h \ - /usr/include/gtkmm-3.0/gtkmm/stockitem.h \ - /usr/include/gtkmm-3.0/gtkmm/styleproperty.h \ - /usr/include/gtkmm-3.0/gtkmm/switch.h \ - /usr/include/gtkmm-3.0/gtkmm/table.h \ - /usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/textbuffer.h \ - /usr/include/gtkmm-3.0/gtkmm/texttagtable.h \ - /usr/include/gtkmm-3.0/gtkmm/texttag.h \ - /usr/include/gtkmm-3.0/gtkmm/textchildanchor.h \ - /usr/include/gtkmm-3.0/gtkmm/textmark.h \ - /usr/include/gtkmm-3.0/gtkmm/textiter.h \ - /usr/include/gtkmm-3.0/gtkmm/textattributes.h \ - /usr/include/gtkmm-3.0/gtkmm/textview.h \ - /usr/include/gtkmm-3.0/gtkmm/toolpalette.h \ - /usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodelsort.h \ - /usr/include/gtkmm-3.0/gtkmm/treerowreference.h \ - /usr/include/gtkmm-3.0/gtkmm/treestore.h \ - /usr/include/gtkmm-3.0/gtkmm/uimanager.h \ - /usr/include/gtkmm-3.0/gtkmm/viewport.h \ - /usr/include/gtkmm-3.0/gtkmm/volumebutton.h \ - /usr/include/c++/11.2.0/fstream /usr/include/c++/11.2.0/bits/codecvt.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h \ - /usr/include/c++/11.2.0/bits/fstream.tcc /usr/include/libintl.h \ - /usr/include/gtkmm-3.0/gtkmm/plug.h /usr/include/gtk-3.0/gtk/gtkx.h \ - /usr/include/gtk-3.0/gtk/gtksocket.h /usr/include/gtk-3.0/gdk/gdkx.h \ - /usr/include/X11/Xlib.h /usr/include/X11/X.h \ - /usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \ - /usr/include/X11/Xutil.h /usr/include/X11/keysym.h \ - /usr/include/X11/keysymdef.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11device.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11display.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11property.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11window.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h \ - /usr/include/gtk-3.0/gtk/gtkplug.h \ - /usr/include/gtk-3.0/gtk/gtkx-autocleanups.h /usr/include/pwd.h \ - /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h \ - /usr/include/c++/11.2.0/filesystem /usr/include/c++/11.2.0/bits/fs_fwd.h \ - /usr/include/c++/11.2.0/bits/fs_path.h /usr/include/c++/11.2.0/locale \ - /usr/include/c++/11.2.0/bits/locale_facets_nonio.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h \ - /usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc \ - /usr/include/c++/11.2.0/bits/locale_conv.h \ - /usr/include/c++/11.2.0/iomanip \ - /usr/include/c++/11.2.0/bits/quoted_string.h \ - /usr/include/c++/11.2.0/codecvt /usr/include/c++/11.2.0/bits/fs_dir.h \ - /usr/include/c++/11.2.0/bits/fs_ops.h diff --git a/compile/CMakeFiles/ublexec.dir/progress.make b/compile/CMakeFiles/ublexec.dir/progress.make deleted file mode 100644 index 6a9dc74..0000000 --- a/compile/CMakeFiles/ublexec.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = 1 -CMAKE_PROGRESS_2 = 2 -CMAKE_PROGRESS_3 = 3 - diff --git a/compile/CMakeFiles/ublexec.dir/ublexec.cc.o.d b/compile/CMakeFiles/ublexec.dir/ublexec.cc.o.d deleted file mode 100644 index 28b346d..0000000 --- a/compile/CMakeFiles/ublexec.dir/ublexec.cc.o.d +++ /dev/null @@ -1,1490 +0,0 @@ -CMakeFiles/ublexec.dir/ublexec.cc.o: \ - /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.cc \ - /usr/include/stdc-predef.h /usr/include/c++/11.2.0/cstddef \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ - /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \ - /usr/include/c++/11.2.0/pstl/pstl_config.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \ - /usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \ - /usr/include/bits/libc-header-start.h /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \ - /usr/include/bits/floatn-common.h /usr/include/bits/types/locale_t.h \ - /usr/include/bits/types/__locale_t.h /usr/include/sys/types.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/bits/time64.h /usr/include/bits/types/clock_t.h \ - /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ - /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/endianness.h /usr/include/bits/byteswap.h \ - /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ - /usr/include/bits/types/__sigset_t.h \ - /usr/include/bits/types/struct_timeval.h \ - /usr/include/bits/types/struct_timespec.h \ - /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ - /usr/include/bits/pthreadtypes-arch.h \ - /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ - /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \ - /usr/include/c++/11.2.0/bits/std_abs.h /usr/include/c++/11.2.0/iostream \ - /usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \ - /usr/include/c++/11.2.0/iosfwd /usr/include/c++/11.2.0/bits/stringfwd.h \ - /usr/include/c++/11.2.0/bits/memoryfwd.h \ - /usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \ - /usr/include/wchar.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \ - /usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \ - /usr/include/bits/types/mbstate_t.h \ - /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ - /usr/include/bits/types/FILE.h /usr/include/c++/11.2.0/exception \ - /usr/include/c++/11.2.0/bits/exception.h \ - /usr/include/c++/11.2.0/bits/exception_ptr.h \ - /usr/include/c++/11.2.0/bits/exception_defines.h \ - /usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \ - /usr/include/c++/11.2.0/typeinfo \ - /usr/include/c++/11.2.0/bits/hash_bytes.h /usr/include/c++/11.2.0/new \ - /usr/include/c++/11.2.0/bits/nested_exception.h \ - /usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \ - /usr/include/c++/11.2.0/bits/char_traits.h \ - /usr/include/c++/11.2.0/bits/stl_algobase.h \ - /usr/include/c++/11.2.0/bits/functexcept.h \ - /usr/include/c++/11.2.0/bits/cpp_type_traits.h \ - /usr/include/c++/11.2.0/ext/type_traits.h \ - /usr/include/c++/11.2.0/ext/numeric_traits.h \ - /usr/include/c++/11.2.0/bits/stl_pair.h \ - /usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \ - /usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/11.2.0/bits/concept_check.h \ - /usr/include/c++/11.2.0/debug/assertions.h \ - /usr/include/c++/11.2.0/bits/stl_iterator.h \ - /usr/include/c++/11.2.0/bits/ptr_traits.h \ - /usr/include/c++/11.2.0/debug/debug.h \ - /usr/include/c++/11.2.0/bits/predefined_ops.h \ - /usr/include/c++/11.2.0/cstdint \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \ - /usr/include/stdint.h /usr/include/bits/stdint-uintn.h \ - /usr/include/c++/11.2.0/bits/localefwd.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \ - /usr/include/c++/11.2.0/clocale /usr/include/locale.h \ - /usr/include/bits/locale.h /usr/include/c++/11.2.0/cctype \ - /usr/include/ctype.h /usr/include/c++/11.2.0/bits/ios_base.h \ - /usr/include/c++/11.2.0/ext/atomicity.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ - /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ - /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ - /usr/include/bits/types/struct_tm.h \ - /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ - /usr/include/bits/types/struct___jmp_buf_tag.h \ - /usr/include/bits/pthread_stack_min-dynamic.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \ - /usr/include/sys/single_threaded.h \ - /usr/include/c++/11.2.0/bits/locale_classes.h \ - /usr/include/c++/11.2.0/string /usr/include/c++/11.2.0/bits/allocator.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \ - /usr/include/c++/11.2.0/ext/new_allocator.h \ - /usr/include/c++/11.2.0/bits/ostream_insert.h \ - /usr/include/c++/11.2.0/bits/cxxabi_forced.h \ - /usr/include/c++/11.2.0/bits/stl_function.h \ - /usr/include/c++/11.2.0/backward/binders.h \ - /usr/include/c++/11.2.0/bits/range_access.h \ - /usr/include/c++/11.2.0/initializer_list \ - /usr/include/c++/11.2.0/bits/basic_string.h \ - /usr/include/c++/11.2.0/ext/alloc_traits.h \ - /usr/include/c++/11.2.0/bits/alloc_traits.h \ - /usr/include/c++/11.2.0/bits/stl_construct.h \ - /usr/include/c++/11.2.0/string_view \ - /usr/include/c++/11.2.0/bits/functional_hash.h \ - /usr/include/c++/11.2.0/bits/string_view.tcc \ - /usr/include/c++/11.2.0/ext/string_conversions.h \ - /usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \ - /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ - /usr/include/bits/types/struct_FILE.h \ - /usr/include/bits/types/cookie_io_functions_t.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ - /usr/include/c++/11.2.0/cerrno /usr/include/errno.h \ - /usr/include/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ - /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \ - /usr/include/c++/11.2.0/bits/charconv.h \ - /usr/include/c++/11.2.0/bits/basic_string.tcc \ - /usr/include/c++/11.2.0/bits/locale_classes.tcc \ - /usr/include/c++/11.2.0/system_error \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \ - /usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \ - /usr/include/c++/11.2.0/bits/streambuf.tcc \ - /usr/include/c++/11.2.0/bits/basic_ios.h \ - /usr/include/c++/11.2.0/bits/locale_facets.h \ - /usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \ - /usr/include/bits/wctype-wchar.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \ - /usr/include/c++/11.2.0/bits/streambuf_iterator.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \ - /usr/include/c++/11.2.0/bits/locale_facets.tcc \ - /usr/include/c++/11.2.0/bits/basic_ios.tcc \ - /usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/istream \ - /usr/include/c++/11.2.0/bits/istream.tcc /usr/include/c++/11.2.0/memory \ - /usr/include/c++/11.2.0/bits/stl_uninitialized.h \ - /usr/include/c++/11.2.0/bits/stl_tempbuf.h \ - /usr/include/c++/11.2.0/bits/stl_raw_storage_iter.h \ - /usr/include/c++/11.2.0/bits/align.h /usr/include/c++/11.2.0/bit \ - /usr/include/c++/11.2.0/bits/uses_allocator.h \ - /usr/include/c++/11.2.0/bits/unique_ptr.h \ - /usr/include/c++/11.2.0/utility \ - /usr/include/c++/11.2.0/bits/stl_relops.h /usr/include/c++/11.2.0/tuple \ - /usr/include/c++/11.2.0/array /usr/include/c++/11.2.0/bits/invoke.h \ - /usr/include/c++/11.2.0/bits/shared_ptr.h \ - /usr/include/c++/11.2.0/bits/shared_ptr_base.h \ - /usr/include/c++/11.2.0/bits/allocated_ptr.h \ - /usr/include/c++/11.2.0/bits/refwrap.h \ - /usr/include/c++/11.2.0/ext/aligned_buffer.h \ - /usr/include/c++/11.2.0/ext/concurrence.h \ - /usr/include/c++/11.2.0/bits/shared_ptr_atomic.h \ - /usr/include/c++/11.2.0/bits/atomic_base.h \ - /usr/include/c++/11.2.0/bits/atomic_lockfree_defines.h \ - /usr/include/c++/11.2.0/backward/auto_ptr.h \ - /usr/include/c++/11.2.0/pstl/glue_memory_defs.h \ - /usr/include/c++/11.2.0/pstl/execution_defs.h \ - /usr/include/gtkmm-3.0/gtkmm.h /usr/include/glibmm-2.4/glibmm.h \ - /usr/lib/glibmm-2.4/include/glibmmconfig.h \ - /usr/include/glibmm-2.4/glibmm/thread.h /usr/include/glib-2.0/glib.h \ - /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ - /usr/lib/glib-2.0/include/glibconfig.h \ - /usr/include/glib-2.0/glib/gmacros.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/limits.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ - /usr/include/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/float.h \ - /usr/include/glib-2.0/glib/gversionmacros.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/glib-2.0/glib/garray.h \ - /usr/include/glib-2.0/glib/gasyncqueue.h \ - /usr/include/glib-2.0/glib/gthread.h \ - /usr/include/glib-2.0/glib/gatomic.h \ - /usr/include/glib-2.0/glib/glib-typeof.h \ - /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ - /usr/include/glib-2.0/glib/gutils.h /usr/include/c++/11.2.0/stdlib.h \ - /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ - /usr/include/bits/signum-generic.h /usr/include/bits/signum-arch.h \ - /usr/include/bits/types/sig_atomic_t.h \ - /usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \ - /usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \ - /usr/include/bits/siginfo-consts-arch.h \ - /usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \ - /usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \ - /usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \ - /usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \ - /usr/include/bits/sigstksz.h /usr/include/unistd.h \ - /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ - /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ - /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/bits/ss_flags.h \ - /usr/include/bits/types/struct_sigstack.h /usr/include/bits/sigthread.h \ - /usr/include/bits/signal_ext.h /usr/include/glib-2.0/glib/gbase64.h \ - /usr/include/glib-2.0/glib/gbitlock.h \ - /usr/include/glib-2.0/glib/gbookmarkfile.h \ - /usr/include/glib-2.0/glib/gdatetime.h \ - /usr/include/glib-2.0/glib/gtimezone.h \ - /usr/include/glib-2.0/glib/gbytes.h \ - /usr/include/glib-2.0/glib/gcharset.h \ - /usr/include/glib-2.0/glib/gchecksum.h \ - /usr/include/glib-2.0/glib/gconvert.h \ - /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ - /usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \ - /usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \ - /usr/include/glib-2.0/glib/genviron.h \ - /usr/include/glib-2.0/glib/gfileutils.h \ - /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \ - /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ - /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \ - /usr/include/glib-2.0/glib/gchecksum.h \ - /usr/include/glib-2.0/glib/ghook.h \ - /usr/include/glib-2.0/glib/ghostutils.h \ - /usr/include/glib-2.0/glib/giochannel.h \ - /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ - /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ - /usr/include/glib-2.0/glib/gunicode.h \ - /usr/include/glib-2.0/glib/gkeyfile.h \ - /usr/include/glib-2.0/glib/gmappedfile.h \ - /usr/include/glib-2.0/glib/gmarkup.h \ - /usr/include/glib-2.0/glib/gmessages.h \ - /usr/include/glib-2.0/glib/gvariant.h \ - /usr/include/glib-2.0/glib/gvarianttype.h \ - /usr/include/glib-2.0/glib/goption.h \ - /usr/include/glib-2.0/glib/gpattern.h \ - /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ - /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ - /usr/include/glib-2.0/glib/grcbox.h \ - /usr/include/glib-2.0/glib/grefcount.h \ - /usr/include/glib-2.0/glib/grefstring.h \ - /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \ - /usr/include/glib-2.0/glib/gregex.h \ - /usr/include/glib-2.0/glib/gscanner.h \ - /usr/include/glib-2.0/glib/gsequence.h \ - /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \ - /usr/include/glib-2.0/glib/gspawn.h \ - /usr/include/glib-2.0/glib/gstrfuncs.h \ - /usr/include/glib-2.0/glib/gstringchunk.h \ - /usr/include/glib-2.0/glib/gstrvbuilder.h \ - /usr/include/glib-2.0/glib/gtestutils.h \ - /usr/include/glib-2.0/glib/gthreadpool.h \ - /usr/include/glib-2.0/glib/gtimer.h \ - /usr/include/glib-2.0/glib/gtrashstack.h \ - /usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \ - /usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \ - /usr/include/glib-2.0/glib/deprecated/gallocator.h \ - /usr/include/glib-2.0/glib/deprecated/gcache.h \ - /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ - /usr/include/glib-2.0/glib/deprecated/gmain.h \ - /usr/include/glib-2.0/glib/deprecated/grel.h \ - /usr/include/glib-2.0/glib/deprecated/gthread.h \ - /usr/include/glib-2.0/glib/glib-autocleanups.h \ - /usr/include/glibmm-2.4/glibmm/error.h \ - /usr/include/glibmm-2.4/glibmm/exception.h \ - /usr/include/glibmm-2.4/glibmm/ustring.h \ - /usr/include/glibmm-2.4/glibmm/unicode.h \ - /usr/include/c++/11.2.0/iterator \ - /usr/include/c++/11.2.0/bits/stream_iterator.h \ - /usr/include/c++/11.2.0/sstream /usr/include/c++/11.2.0/bits/sstream.tcc \ - /usr/include/glibmm-2.4/glibmm/value.h \ - /usr/include/glibmm-2.4/glibmm/refptr.h \ - /usr/include/glibmm-2.4/glibmm/enums.h \ - /usr/include/glib-2.0/glib-object.h \ - /usr/include/glib-2.0/gobject/gbinding.h \ - /usr/include/glib-2.0/gobject/gobject.h \ - /usr/include/glib-2.0/gobject/gtype.h \ - /usr/include/glib-2.0/gobject/gvalue.h \ - /usr/include/glib-2.0/gobject/gparam.h \ - /usr/include/glib-2.0/gobject/gclosure.h \ - /usr/include/glib-2.0/gobject/gsignal.h \ - /usr/include/glib-2.0/gobject/gmarshal.h \ - /usr/include/glib-2.0/gobject/gboxed.h \ - /usr/include/glib-2.0/gobject/glib-types.h \ - /usr/include/glib-2.0/gobject/gbindinggroup.h \ - /usr/include/glib-2.0/gobject/genums.h \ - /usr/include/glib-2.0/gobject/glib-enumtypes.h \ - /usr/include/glib-2.0/gobject/gparamspecs.h \ - /usr/include/glib-2.0/gobject/gsignalgroup.h \ - /usr/include/glib-2.0/gobject/gsourceclosure.h \ - /usr/include/glib-2.0/gobject/gtypemodule.h \ - /usr/include/glib-2.0/gobject/gtypeplugin.h \ - /usr/include/glib-2.0/gobject/gvaluearray.h \ - /usr/include/glib-2.0/gobject/gvaluetypes.h \ - /usr/include/glib-2.0/gobject/gobject-autocleanups.h \ - /usr/include/c++/11.2.0/vector /usr/include/c++/11.2.0/bits/stl_vector.h \ - /usr/include/c++/11.2.0/bits/stl_bvector.h \ - /usr/include/c++/11.2.0/bits/vector.tcc \ - /usr/include/glibmm-2.4/glibmm/value_custom.h \ - /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ - /usr/include/glibmm-2.4/glibmm/timeval.h \ - /usr/include/sigc++-2.0/sigc++/sigc++.h \ - /usr/include/sigc++-2.0/sigc++/signal.h /usr/include/c++/11.2.0/list \ - /usr/include/c++/11.2.0/bits/stl_list.h \ - /usr/include/c++/11.2.0/bits/list.tcc \ - /usr/include/sigc++-2.0/sigc++/signal_base.h \ - /usr/lib/sigc++-2.0/include/sigc++config.h \ - /usr/include/sigc++-2.0/sigc++/type_traits.h \ - /usr/include/sigc++-2.0/sigc++/trackable.h \ - /usr/include/sigc++-2.0/sigc++/functors/slot.h \ - /usr/include/sigc++-2.0/sigc++/visit_each.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ - /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ - /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ - /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ - /usr/include/sigc++-2.0/sigc++/limit_reference.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ - /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ - /usr/include/sigc++-2.0/sigc++/connection.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ - /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ - /usr/include/c++/11.2.0/functional \ - /usr/include/c++/11.2.0/bits/std_function.h \ - /usr/include/c++/11.2.0/unordered_map \ - /usr/include/c++/11.2.0/bits/hashtable.h \ - /usr/include/c++/11.2.0/bits/hashtable_policy.h \ - /usr/include/c++/11.2.0/bits/node_handle.h \ - /usr/include/c++/11.2.0/bits/unordered_map.h \ - /usr/include/c++/11.2.0/bits/erase_if.h \ - /usr/include/c++/11.2.0/bits/stl_algo.h \ - /usr/include/c++/11.2.0/bits/algorithmfwd.h \ - /usr/include/c++/11.2.0/bits/stl_heap.h \ - /usr/include/c++/11.2.0/bits/uniform_int_dist.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ - /usr/include/sigc++-2.0/sigc++/adaptors/track_obj.h \ - /usr/include/sigc++-2.0/sigc++/functors/functors.h \ - /usr/include/glibmm-2.4/glibmm/threads.h \ - /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ - /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ - /usr/include/glibmm-2.4/glibmm/variant.h \ - /usr/include/glibmm-2.4/glibmm/varianttype.h \ - /usr/include/glibmm-2.4/glibmm/variantiter.h \ - /usr/include/glibmm-2.4/glibmm/variantdbusstring.h \ - /usr/include/c++/11.2.0/map /usr/include/c++/11.2.0/bits/stl_tree.h \ - /usr/include/c++/11.2.0/bits/stl_map.h \ - /usr/include/c++/11.2.0/bits/stl_multimap.h \ - /usr/include/glibmm-2.4/glibmm/variant_basictypes.h \ - /usr/include/glibmm-2.4/glibmm/wrap.h \ - /usr/include/glibmm-2.4/glibmm/objectbase.h \ - /usr/include/glibmm-2.4/glibmm/class.h \ - /usr/include/glibmm-2.4/glibmm/signalproxy.h \ - /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ - /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ - /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ - /usr/include/glibmm-2.4/glibmm/quark.h \ - /usr/include/glibmm-2.4/glibmm/debug.h /usr/include/c++/11.2.0/mutex \ - /usr/include/c++/11.2.0/chrono /usr/include/c++/11.2.0/ratio \ - /usr/include/c++/11.2.0/limits /usr/include/c++/11.2.0/ctime \ - /usr/include/c++/11.2.0/bits/parse_numbers.h \ - /usr/include/c++/11.2.0/bits/std_mutex.h \ - /usr/include/c++/11.2.0/bits/unique_lock.h \ - /usr/include/c++/11.2.0/algorithm \ - /usr/include/c++/11.2.0/pstl/glue_algorithm_defs.h \ - /usr/include/c++/11.2.0/deque /usr/include/c++/11.2.0/bits/stl_deque.h \ - /usr/include/c++/11.2.0/bits/deque.tcc \ - /usr/include/glibmm-2.4/glibmm/balancedtree.h \ - /usr/include/glibmm-2.4/glibmm/base64.h \ - /usr/include/glibmm-2.4/glibmm/binding.h \ - /usr/include/glibmm-2.4/glibmm/object.h \ - /usr/include/glibmm-2.4/glibmm/utility.h \ - /usr/include/glibmm-2.4/glibmm/bytearray.h \ - /usr/include/sigc++-2.0/sigc++/slot.h \ - /usr/include/glibmm-2.4/glibmm/bytes.h \ - /usr/include/glibmm-2.4/glibmm/checksum.h \ - /usr/include/glibmm-2.4/glibmm/convert.h \ - /usr/include/glibmm-2.4/glibmm/date.h \ - /usr/include/glibmm-2.4/glibmm/datetime.h \ - /usr/include/glibmm-2.4/glibmm/timezone.h \ - /usr/include/glibmm-2.4/glibmm/dispatcher.h \ - /usr/include/glibmm-2.4/glibmm/main.h \ - /usr/include/glibmm-2.4/glibmm/priorities.h \ - /usr/include/glibmm-2.4/glibmm/iochannel.h \ - /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ - /usr/include/glibmm-2.4/glibmm/fileutils.h \ - /usr/include/glibmm-2.4/glibmm/helperlist.h \ - /usr/include/glibmm-2.4/glibmm/containers.h \ - /usr/include/glibmm-2.4/glibmm/sarray.h \ - /usr/include/glibmm-2.4/glibmm/interface.h \ - /usr/include/glibmm-2.4/glibmm/init.h \ - /usr/include/glibmm-2.4/glibmm/keyfile.h \ - /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ - /usr/include/glibmm-2.4/glibmm/listhandle.h \ - /usr/include/glibmm-2.4/glibmm/markup.h \ - /usr/include/glibmm-2.4/glibmm/miscutils.h \ - /usr/include/glibmm-2.4/glibmm/module.h \ - /usr/include/glibmm-2.4/glibmm/nodetree.h /usr/include/c++/11.2.0/stack \ - /usr/include/c++/11.2.0/bits/stl_stack.h \ - /usr/include/glibmm-2.4/glibmm/optioncontext.h \ - /usr/include/glibmm-2.4/glibmm/optionentry.h \ - /usr/include/glibmm-2.4/glibmm/optiongroup.h \ - /usr/include/glibmm-2.4/glibmm/pattern.h \ - /usr/include/glibmm-2.4/glibmm/property.h \ - /usr/include/glibmm-2.4/glibmm/random.h \ - /usr/include/glibmm-2.4/glibmm/regex.h \ - /usr/include/glibmm-2.4/glibmm/shell.h \ - /usr/include/glibmm-2.4/glibmm/slisthandle.h \ - /usr/include/glibmm-2.4/glibmm/spawn.h \ - /usr/include/glibmm-2.4/glibmm/stringutils.h \ - /usr/include/glibmm-2.4/glibmm/threadpool.h \ - /usr/include/glibmm-2.4/glibmm/timer.h \ - /usr/include/glibmm-2.4/glibmm/uriutils.h \ - /usr/include/glibmm-2.4/glibmm/valuearray.h \ - /usr/include/glibmm-2.4/glibmm/variantdict.h \ - /usr/include/glibmm-2.4/glibmm/vectorutils.h \ - /usr/include/glibmm-2.4/glibmm/weakref.h /usr/include/giomm-2.4/giomm.h \ - /usr/include/giomm-2.4/giomm/action.h \ - /usr/lib/giomm-2.4/include/giommconfig.h /usr/include/glib-2.0/gio/gio.h \ - /usr/include/glib-2.0/gio/giotypes.h \ - /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/gio/gaction.h \ - /usr/include/glib-2.0/gio/gactiongroup.h \ - /usr/include/glib-2.0/gio/gactiongroupexporter.h \ - /usr/include/glib-2.0/gio/gactionmap.h \ - /usr/include/glib-2.0/gio/gappinfo.h \ - /usr/include/glib-2.0/gio/gapplication.h \ - /usr/include/glib-2.0/gio/gapplicationcommandline.h \ - /usr/include/glib-2.0/gio/gasyncinitable.h \ - /usr/include/glib-2.0/gio/ginitable.h \ - /usr/include/glib-2.0/gio/gasyncresult.h \ - /usr/include/glib-2.0/gio/gbufferedinputstream.h \ - /usr/include/glib-2.0/gio/gfilterinputstream.h \ - /usr/include/glib-2.0/gio/ginputstream.h \ - /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ - /usr/include/glib-2.0/gio/gfilteroutputstream.h \ - /usr/include/glib-2.0/gio/goutputstream.h \ - /usr/include/glib-2.0/gio/gbytesicon.h \ - /usr/include/glib-2.0/gio/gcancellable.h \ - /usr/include/glib-2.0/gio/gcharsetconverter.h \ - /usr/include/glib-2.0/gio/gconverter.h \ - /usr/include/glib-2.0/gio/gcontenttype.h \ - /usr/include/glib-2.0/gio/gconverterinputstream.h \ - /usr/include/glib-2.0/gio/gconverteroutputstream.h \ - /usr/include/glib-2.0/gio/gcredentials.h \ - /usr/include/glib-2.0/gio/gdatagrambased.h \ - /usr/include/glib-2.0/gio/gdatainputstream.h \ - /usr/include/glib-2.0/gio/gdataoutputstream.h \ - /usr/include/glib-2.0/gio/gdbusactiongroup.h \ - /usr/include/glib-2.0/gio/giotypes.h \ - /usr/include/glib-2.0/gio/gdbusaddress.h \ - /usr/include/glib-2.0/gio/gdbusauthobserver.h \ - /usr/include/glib-2.0/gio/gdbusconnection.h \ - /usr/include/glib-2.0/gio/gdbuserror.h \ - /usr/include/glib-2.0/gio/gdbusinterface.h \ - /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ - /usr/include/glib-2.0/gio/gdbusintrospection.h \ - /usr/include/glib-2.0/gio/gdbusmenumodel.h \ - /usr/include/glib-2.0/gio/gdbusmessage.h \ - /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ - /usr/include/glib-2.0/gio/gdbusnameowning.h \ - /usr/include/glib-2.0/gio/gdbusnamewatching.h \ - /usr/include/glib-2.0/gio/gdbusobject.h \ - /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ - /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ - /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ - /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ - /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ - /usr/include/glib-2.0/gio/gdbusproxy.h \ - /usr/include/glib-2.0/gio/gdbusserver.h \ - /usr/include/glib-2.0/gio/gdbusutils.h \ - /usr/include/glib-2.0/gio/gdebugcontroller.h \ - /usr/include/glib-2.0/gio/gdebugcontrollerdbus.h \ - /usr/include/glib-2.0/gio/gdrive.h \ - /usr/include/glib-2.0/gio/gdtlsclientconnection.h \ - /usr/include/glib-2.0/gio/gdtlsconnection.h \ - /usr/include/glib-2.0/gio/gdtlsserverconnection.h \ - /usr/include/glib-2.0/gio/gemblemedicon.h \ - /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ - /usr/include/glib-2.0/gio/gfile.h \ - /usr/include/glib-2.0/gio/gfileattribute.h \ - /usr/include/glib-2.0/gio/gfileenumerator.h \ - /usr/include/glib-2.0/gio/gfileicon.h \ - /usr/include/glib-2.0/gio/gfileinfo.h \ - /usr/include/glib-2.0/gio/gfileinputstream.h \ - /usr/include/glib-2.0/gio/gfileiostream.h \ - /usr/include/glib-2.0/gio/giostream.h \ - /usr/include/glib-2.0/gio/gioerror.h \ - /usr/include/glib-2.0/gio/gfilemonitor.h \ - /usr/include/glib-2.0/gio/gfilenamecompleter.h \ - /usr/include/glib-2.0/gio/gfileoutputstream.h \ - /usr/include/glib-2.0/gio/ginetaddress.h \ - /usr/include/glib-2.0/gio/ginetaddressmask.h \ - /usr/include/glib-2.0/gio/ginetsocketaddress.h \ - /usr/include/glib-2.0/gio/gsocketaddress.h \ - /usr/include/glib-2.0/gio/gioenumtypes.h \ - /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ - /usr/include/glib-2.0/gio/gioscheduler.h \ - /usr/include/glib-2.0/gio/glistmodel.h \ - /usr/include/glib-2.0/gio/gliststore.h \ - /usr/include/glib-2.0/gio/gloadableicon.h \ - /usr/include/glib-2.0/gio/gmemoryinputstream.h \ - /usr/include/glib-2.0/gio/gmemorymonitor.h \ - /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ - /usr/include/glib-2.0/gio/gmenu.h /usr/include/glib-2.0/gio/gmenumodel.h \ - /usr/include/glib-2.0/gio/gmenuexporter.h \ - /usr/include/glib-2.0/gio/gmount.h \ - /usr/include/glib-2.0/gio/gmountoperation.h \ - /usr/include/glib-2.0/gio/gnativesocketaddress.h \ - /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ - /usr/include/glib-2.0/gio/gvolumemonitor.h \ - /usr/include/glib-2.0/gio/gnetworkaddress.h \ - /usr/include/glib-2.0/gio/gnetworkmonitor.h \ - /usr/include/glib-2.0/gio/gnetworkservice.h \ - /usr/include/glib-2.0/gio/gnotification.h \ - /usr/include/glib-2.0/gio/gpermission.h \ - /usr/include/glib-2.0/gio/gpollableinputstream.h \ - /usr/include/glib-2.0/gio/gpollableoutputstream.h \ - /usr/include/glib-2.0/gio/gpollableutils.h \ - /usr/include/glib-2.0/gio/gpowerprofilemonitor.h \ - /usr/include/glib-2.0/gio/gpropertyaction.h \ - /usr/include/glib-2.0/gio/gproxy.h \ - /usr/include/glib-2.0/gio/gproxyaddress.h \ - /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ - /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ - /usr/include/glib-2.0/gio/gproxyresolver.h \ - /usr/include/glib-2.0/gio/gremoteactiongroup.h \ - /usr/include/glib-2.0/gio/gresolver.h \ - /usr/include/glib-2.0/gio/gresource.h \ - /usr/include/glib-2.0/gio/gseekable.h \ - /usr/include/glib-2.0/gio/gsettings.h \ - /usr/include/glib-2.0/gio/gsettingsschema.h \ - /usr/include/glib-2.0/gio/gsimpleaction.h \ - /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ - /usr/include/glib-2.0/gio/gactiongroup.h \ - /usr/include/glib-2.0/gio/gactionmap.h \ - /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ - /usr/include/glib-2.0/gio/gsimpleiostream.h \ - /usr/include/glib-2.0/gio/gsimplepermission.h \ - /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ - /usr/include/glib-2.0/gio/gsocket.h \ - /usr/include/glib-2.0/gio/gsocketclient.h \ - /usr/include/glib-2.0/gio/gsocketconnectable.h \ - /usr/include/glib-2.0/gio/gsocketconnection.h \ - /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ - /usr/include/glib-2.0/gio/gsocketlistener.h \ - /usr/include/glib-2.0/gio/gsocketservice.h \ - /usr/include/glib-2.0/gio/gsrvtarget.h \ - /usr/include/glib-2.0/gio/gsubprocess.h \ - /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ - /usr/include/glib-2.0/gio/gtask.h \ - /usr/include/glib-2.0/gio/gtcpconnection.h \ - /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ - /usr/include/glib-2.0/gio/gtestdbus.h \ - /usr/include/glib-2.0/gio/gthemedicon.h \ - /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ - /usr/include/glib-2.0/gio/gtlsbackend.h \ - /usr/include/glib-2.0/gio/gtlscertificate.h \ - /usr/include/glib-2.0/gio/gtlsclientconnection.h \ - /usr/include/glib-2.0/gio/gtlsconnection.h \ - /usr/include/glib-2.0/gio/gtlsdatabase.h \ - /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ - /usr/include/glib-2.0/gio/gtlsinteraction.h \ - /usr/include/glib-2.0/gio/gtlspassword.h \ - /usr/include/glib-2.0/gio/gtlsserverconnection.h \ - /usr/include/glib-2.0/gio/gvfs.h /usr/include/glib-2.0/gio/gvolume.h \ - /usr/include/glib-2.0/gio/gzlibcompressor.h \ - /usr/include/glib-2.0/gio/gzlibdecompressor.h \ - /usr/include/glib-2.0/gio/gio-autocleanups.h \ - /usr/include/giomm-2.4/giomm/actiongroup.h \ - /usr/include/giomm-2.4/giomm/actionmap.h \ - /usr/include/giomm-2.4/giomm/simpleaction.h \ - /usr/include/giomm-2.4/giomm/appinfo.h \ - /usr/include/giomm-2.4/giomm/applaunchcontext.h \ - /usr/include/giomm-2.4/giomm/icon.h \ - /usr/include/giomm-2.4/giomm/asyncresult.h \ - /usr/include/giomm-2.4/giomm/cancellable.h \ - /usr/include/giomm-2.4/giomm/application.h \ - /usr/include/giomm-2.4/giomm/applicationcommandline.h \ - /usr/include/giomm-2.4/giomm/file.h \ - /usr/include/giomm-2.4/giomm/fileattributeinfolist.h \ - /usr/include/giomm-2.4/giomm/fileattributeinfo.h \ - /usr/include/giomm-2.4/giomm/fileenumerator.h \ - /usr/include/giomm-2.4/giomm/fileinfo.h \ - /usr/include/giomm-2.4/giomm/fileinputstream.h \ - /usr/include/giomm-2.4/giomm/inputstream.h \ - /usr/include/giomm-2.4/giomm/seekable.h \ - /usr/include/giomm-2.4/giomm/fileiostream.h \ - /usr/include/giomm-2.4/giomm/iostream.h \ - /usr/include/giomm-2.4/giomm/outputstream.h \ - /usr/include/giomm-2.4/giomm/filemonitor.h \ - /usr/include/giomm-2.4/giomm/fileoutputstream.h \ - /usr/include/giomm-2.4/giomm/mountoperation.h \ - /usr/include/giomm-2.4/giomm/drive.h \ - /usr/include/giomm-2.4/giomm/mount.h \ - /usr/include/giomm-2.4/giomm/error.h \ - /usr/include/giomm-2.4/giomm/dbusconnection.h \ - /usr/include/giomm-2.4/giomm/initable.h \ - /usr/include/giomm-2.4/giomm/asyncinitable.h \ - /usr/include/giomm-2.4/giomm/dbusauthobserver.h \ - /usr/include/giomm-2.4/giomm/credentials.h \ - /usr/include/giomm-2.4/giomm/dbusmethodinvocation.h \ - /usr/include/giomm-2.4/giomm/dbusmessage.h \ - /usr/include/giomm-2.4/giomm/unixfdlist.h \ - /usr/include/giomm-2.4/giomm/dbusintrospection.h \ - /usr/include/giomm-2.4/giomm/dbussubtreevtable.h \ - /usr/include/giomm-2.4/giomm/dbusinterfacevtable.h \ - /usr/include/giomm-2.4/giomm/notification.h \ - /usr/include/giomm-2.4/giomm/bufferedinputstream.h \ - /usr/include/giomm-2.4/giomm/filterinputstream.h \ - /usr/include/giomm-2.4/giomm/bufferedoutputstream.h \ - /usr/include/giomm-2.4/giomm/filteroutputstream.h \ - /usr/include/giomm-2.4/giomm/charsetconverter.h \ - /usr/include/giomm-2.4/giomm/converter.h \ - /usr/include/giomm-2.4/giomm/contenttype.h \ - /usr/include/giomm-2.4/giomm/converterinputstream.h \ - /usr/include/giomm-2.4/giomm/pollableinputstream.h \ - /usr/include/giomm-2.4/giomm/converteroutputstream.h \ - /usr/include/giomm-2.4/giomm/pollableoutputstream.h \ - /usr/include/giomm-2.4/giomm/datainputstream.h \ - /usr/include/giomm-2.4/giomm/enums.h \ - /usr/include/giomm-2.4/giomm/dataoutputstream.h \ - /usr/include/giomm-2.4/giomm/dbusactiongroup.h \ - /usr/include/giomm-2.4/giomm/remoteactiongroup.h \ - /usr/include/giomm-2.4/giomm/dbusaddress.h \ - /usr/include/giomm-2.4/giomm/dbuserror.h \ - /usr/include/giomm-2.4/giomm/dbuserrorutils.h \ - /usr/include/giomm-2.4/giomm/dbusinterface.h \ - /usr/include/giomm-2.4/giomm/dbusinterfaceskeleton.h \ - /usr/include/giomm-2.4/giomm/dbusmenumodel.h \ - /usr/include/giomm-2.4/giomm/menumodel.h \ - /usr/include/giomm-2.4/giomm/dbusobject.h \ - /usr/include/giomm-2.4/giomm/dbusobjectmanager.h \ - /usr/include/giomm-2.4/giomm/dbusobjectmanagerclient.h \ - /usr/include/giomm-2.4/giomm/dbusobjectproxy.h \ - /usr/include/giomm-2.4/giomm/dbusproxy.h \ - /usr/include/giomm-2.4/giomm/dbusobjectmanagerserver.h \ - /usr/include/giomm-2.4/giomm/dbusobjectskeleton.h \ - /usr/include/giomm-2.4/giomm/dbusownname.h \ - /usr/include/giomm-2.4/giomm/dbusserver.h \ - /usr/include/giomm-2.4/giomm/dbusutils.h \ - /usr/include/giomm-2.4/giomm/dbuswatchname.h \ - /usr/include/giomm-2.4/giomm/desktopappinfo.h \ - /usr/include/giomm-2.4/giomm/emblem.h \ - /usr/include/giomm-2.4/giomm/emblemedicon.h \ - /usr/include/giomm-2.4/giomm/fileicon.h \ - /usr/include/giomm-2.4/giomm/loadableicon.h \ - /usr/include/giomm-2.4/giomm/filenamecompleter.h \ - /usr/include/giomm-2.4/giomm/inetaddress.h \ - /usr/include/giomm-2.4/giomm/inetsocketaddress.h \ - /usr/include/giomm-2.4/giomm/socketaddress.h \ - /usr/include/giomm-2.4/giomm/socketconnectable.h \ - /usr/include/giomm-2.4/giomm/socketaddressenumerator.h \ - /usr/include/giomm-2.4/giomm/init.h \ - /usr/include/giomm-2.4/giomm/wrap_init.h \ - /usr/include/giomm-2.4/giomm/listmodel.h \ - /usr/include/giomm-2.4/giomm/liststore.h \ - /usr/include/giomm-2.4/giomm/memoryinputstream.h \ - /usr/include/giomm-2.4/giomm/memoryoutputstream.h \ - /usr/include/giomm-2.4/giomm/menu.h \ - /usr/include/giomm-2.4/giomm/menuitem.h \ - /usr/include/giomm-2.4/giomm/menuattributeiter.h \ - /usr/include/giomm-2.4/giomm/menulinkiter.h \ - /usr/include/giomm-2.4/giomm/networkaddress.h \ - /usr/include/giomm-2.4/giomm/networkmonitor.h \ - /usr/include/giomm-2.4/giomm/networkservice.h \ - /usr/include/giomm-2.4/giomm/permission.h \ - /usr/include/giomm-2.4/giomm/proxy.h \ - /usr/include/giomm-2.4/giomm/proxyaddress.h \ - /usr/include/giomm-2.4/giomm/proxyresolver.h \ - /usr/include/giomm-2.4/giomm/resolver.h \ - /usr/include/giomm-2.4/giomm/srvtarget.h \ - /usr/include/giomm-2.4/giomm/resource.h \ - /usr/include/giomm-2.4/giomm/settings.h \ - /usr/include/giomm-2.4/giomm/settingsschema.h \ - /usr/include/giomm-2.4/giomm/settingsschemakey.h \ - /usr/include/giomm-2.4/giomm/settingsschemasource.h \ - /usr/include/giomm-2.4/giomm/simpleactiongroup.h \ - /usr/include/giomm-2.4/giomm/simpleiostream.h \ - /usr/include/giomm-2.4/giomm/simplepermission.h \ - /usr/include/giomm-2.4/giomm/socket.h \ - /usr/include/giomm-2.4/giomm/socketclient.h \ - /usr/include/giomm-2.4/giomm/socketconnection.h \ - /usr/include/giomm-2.4/giomm/socketcontrolmessage.h \ - /usr/include/c++/11.2.0/set /usr/include/c++/11.2.0/bits/stl_set.h \ - /usr/include/c++/11.2.0/bits/stl_multiset.h \ - /usr/include/giomm-2.4/giomm/socketlistener.h \ - /usr/include/giomm-2.4/giomm/socketservice.h \ - /usr/include/giomm-2.4/giomm/socketsource.h \ - /usr/include/giomm-2.4/giomm/tcpconnection.h \ - /usr/include/giomm-2.4/giomm/tcpwrapperconnection.h \ - /usr/include/giomm-2.4/giomm/themedicon.h \ - /usr/include/giomm-2.4/giomm/threadedsocketservice.h \ - /usr/include/giomm-2.4/giomm/tlscertificate.h \ - /usr/include/giomm-2.4/giomm/tlsclientconnection.h \ - /usr/include/giomm-2.4/giomm/tlsconnection.h \ - /usr/include/giomm-2.4/giomm/tlsdatabase.h \ - /usr/include/giomm-2.4/giomm/tlsinteraction.h \ - /usr/include/giomm-2.4/giomm/tlspassword.h \ - /usr/include/giomm-2.4/giomm/tlsserverconnection.h \ - /usr/include/giomm-2.4/giomm/unixconnection.h \ - /usr/include/giomm-2.4/giomm/unixcredentialsmessage.h \ - /usr/include/giomm-2.4/giomm/unixfdmessage.h \ - /usr/include/giomm-2.4/giomm/unixinputstream.h \ - /usr/include/giomm-2.4/giomm/unixoutputstream.h \ - /usr/include/giomm-2.4/giomm/unixsocketaddress.h \ - /usr/include/giomm-2.4/giomm/volume.h \ - /usr/include/giomm-2.4/giomm/volumemonitor.h \ - /usr/include/giomm-2.4/giomm/zlibcompressor.h \ - /usr/include/giomm-2.4/giomm/zlibdecompressor.h \ - /usr/include/gdkmm-3.0/gdkmm/dragcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/color.h \ - /usr/lib/gdkmm-3.0/include/gdkmmconfig.h \ - /usr/lib/pangomm-1.4/include/pangommconfig.h \ - /usr/include/gtk-3.0/gdk/gdk.h /usr/include/gtk-3.0/gdk/gdkconfig.h \ - /usr/include/gtk-3.0/gdk/gdkversionmacros.h \ - /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h \ - /usr/include/gtk-3.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ - /usr/include/pango-1.0/pango/pango-attributes.h \ - /usr/include/pango-1.0/pango/pango-font.h \ - /usr/include/pango-1.0/pango/pango-coverage.h \ - /usr/include/pango-1.0/pango/pango-version-macros.h \ - /usr/include/pango-1.0/pango/pango-features.h /usr/include/harfbuzz/hb.h \ - /usr/include/harfbuzz/hb-blob.h /usr/include/harfbuzz/hb-common.h \ - /usr/include/harfbuzz/hb-buffer.h /usr/include/harfbuzz/hb-unicode.h \ - /usr/include/harfbuzz/hb-font.h /usr/include/harfbuzz/hb-face.h \ - /usr/include/harfbuzz/hb-set.h /usr/include/harfbuzz/hb-draw.h \ - /usr/include/harfbuzz/hb.h /usr/include/harfbuzz/hb-deprecated.h \ - /usr/include/harfbuzz/hb-map.h /usr/include/harfbuzz/hb-shape.h \ - /usr/include/harfbuzz/hb-shape-plan.h /usr/include/harfbuzz/hb-style.h \ - /usr/include/harfbuzz/hb-version.h \ - /usr/include/pango-1.0/pango/pango-types.h \ - /usr/include/pango-1.0/pango/pango-gravity.h \ - /usr/include/pango-1.0/pango/pango-matrix.h \ - /usr/include/pango-1.0/pango/pango-script.h \ - /usr/include/pango-1.0/pango/pango-language.h \ - /usr/include/pango-1.0/pango/pango-bidi-type.h \ - /usr/include/pango-1.0/pango/pango-direction.h \ - /usr/include/pango-1.0/pango/pango-color.h \ - /usr/include/pango-1.0/pango/pango-break.h \ - /usr/include/pango-1.0/pango/pango-item.h \ - /usr/include/pango-1.0/pango/pango-context.h \ - /usr/include/pango-1.0/pango/pango-fontmap.h \ - /usr/include/pango-1.0/pango/pango-fontset.h \ - /usr/include/pango-1.0/pango/pango-engine.h \ - /usr/include/pango-1.0/pango/pango-glyph.h \ - /usr/include/pango-1.0/pango/pango-enum-types.h \ - /usr/include/pango-1.0/pango/pango-fontset-simple.h \ - /usr/include/pango-1.0/pango/pango-glyph-item.h \ - /usr/include/pango-1.0/pango/pango-layout.h \ - /usr/include/pango-1.0/pango/pango-tabs.h \ - /usr/include/pango-1.0/pango/pango-markup.h \ - /usr/include/pango-1.0/pango/pango-renderer.h \ - /usr/include/pango-1.0/pango/pango-utils.h /usr/include/cairo/cairo.h \ - /usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \ - /usr/include/cairo/cairo-deprecated.h \ - /usr/include/gtk-3.0/gdk/gdkscreen.h \ - /usr/include/gtk-3.0/gdk/gdkdisplay.h \ - /usr/include/gtk-3.0/gdk/gdkevents.h /usr/include/gtk-3.0/gdk/gdkdnd.h \ - /usr/include/gtk-3.0/gdk/gdkdevice.h \ - /usr/include/gtk-3.0/gdk/gdkdevicetool.h \ - /usr/include/gtk-3.0/gdk/gdkdevicemanager.h \ - /usr/include/gtk-3.0/gdk/gdkseat.h /usr/include/gtk-3.0/gdk/gdkwindow.h \ - /usr/include/gtk-3.0/gdk/gdkdrawingcontext.h \ - /usr/include/gtk-3.0/gdk/gdkframeclock.h \ - /usr/include/gtk-3.0/gdk/gdkframetimings.h \ - /usr/include/gtk-3.0/gdk/gdkmonitor.h \ - /usr/include/gtk-3.0/gdk/gdkrectangle.h \ - /usr/include/gtk-3.0/gdk/gdkcairo.h \ - /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h \ - /usr/include/gtk-3.0/gdk/gdkrgba.h /usr/include/gtk-3.0/gdk/gdkpixbuf.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ - /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h \ - /usr/include/pango-1.0/pango/pangocairo.h \ - /usr/include/gtk-3.0/gdk/gdkcursor.h \ - /usr/include/gtk-3.0/gdk/gdkdevicepad.h \ - /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h \ - /usr/include/gtk-3.0/gdk/gdkenumtypes.h \ - /usr/include/gtk-3.0/gdk/gdkglcontext.h \ - /usr/include/gtk-3.0/gdk/gdkkeys.h /usr/include/gtk-3.0/gdk/gdkkeysyms.h \ - /usr/include/gtk-3.0/gdk/gdkmain.h /usr/include/gtk-3.0/gdk/gdkpango.h \ - /usr/include/gtk-3.0/gdk/gdkproperty.h \ - /usr/include/gtk-3.0/gdk/gdkselection.h \ - /usr/include/gtk-3.0/gdk/gdktestutils.h \ - /usr/include/gtk-3.0/gdk/gdkthreads.h \ - /usr/include/gtk-3.0/gdk/gdkvisual.h \ - /usr/include/gtk-3.0/gdk/gdk-autocleanup.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbuf.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufformat.h \ - /usr/include/gdkmm-3.0/gdkmm/types.h \ - /usr/include/cairomm-1.0/cairomm/surface.h \ - /usr/include/cairomm-1.0/cairomm/enums.h /usr/include/cairo/cairo-ft.h \ - /usr/include/cairo/cairo.h /usr/include/freetype2/ft2build.h \ - /usr/include/freetype2/freetype/config/ftheader.h \ - /usr/include/freetype2/freetype/freetype.h \ - /usr/include/freetype2/freetype/config/ftconfig.h \ - /usr/include/freetype2/freetype/config/ftoption.h \ - /usr/include/freetype2/freetype/config/ftstdlib.h /usr/include/setjmp.h \ - /usr/include/freetype2/freetype/config/integer-types.h \ - /usr/include/freetype2/freetype/config/public-macros.h \ - /usr/include/freetype2/freetype/config/mac-support.h \ - /usr/include/freetype2/freetype/fttypes.h \ - /usr/include/freetype2/freetype/ftsystem.h \ - /usr/include/freetype2/freetype/ftimage.h \ - /usr/include/freetype2/freetype/fterrors.h \ - /usr/include/freetype2/freetype/ftmoderr.h \ - /usr/include/freetype2/freetype/fterrdef.h \ - /usr/include/fontconfig/fontconfig.h /usr/include/sys/stat.h \ - /usr/include/bits/stat.h /usr/include/bits/struct_stat.h \ - /usr/include/bits/statx.h /usr/include/linux/stat.h \ - /usr/include/linux/types.h /usr/include/asm/types.h \ - /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ - /usr/include/asm/bitsperlong.h /usr/include/asm-generic/bitsperlong.h \ - /usr/include/linux/posix_types.h /usr/include/linux/stddef.h \ - /usr/include/asm/posix_types.h /usr/include/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h /usr/include/bits/statx-generic.h \ - /usr/include/bits/types/struct_statx_timestamp.h \ - /usr/include/bits/types/struct_statx.h \ - /usr/include/cairomm-1.0/cairomm/exception.h \ - /usr/lib/cairomm-1.0/include/cairommconfig.h \ - /usr/include/cairomm-1.0/cairomm/device.h \ - /usr/include/cairomm-1.0/cairomm/types.h \ - /usr/include/cairomm-1.0/cairomm/refptr.h \ - /usr/include/cairomm-1.0/cairomm/fontoptions.h \ - /usr/include/cairo/cairo-pdf.h /usr/include/cairo/cairo-ps.h \ - /usr/include/cairo/cairo-svg.h /usr/include/gdkmm-3.0/gdkmm/device.h \ - /usr/include/gdkmm-3.0/gdkmm/cursor.h \ - /usr/include/gdkmm-3.0/gdkmm/display.h \ - /usr/include/gdkmm-3.0/gdkmm/screen.h \ - /usr/include/gdkmm-3.0/gdkmm/rectangle.h \ - /usr/include/gdkmm-3.0/gdkmm/applaunchcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/event.h \ - /usr/include/gdkmm-3.0/gdkmm/timecoord.h /usr/include/gdkmm-3.0/gdkmm.h \ - /usr/include/gdkmm-3.0/gdkmm/visual.h \ - /usr/include/gdkmm-3.0/gdkmm/window.h \ - /usr/include/cairomm-1.0/cairomm/region.h \ - /usr/include/cairomm-1.0/cairomm/pattern.h \ - /usr/include/gdkmm-3.0/gdkmm/rgba.h \ - /usr/include/cairomm-1.0/cairomm/context.h \ - /usr/include/cairomm-1.0/cairomm/fontface.h \ - /usr/include/cairomm-1.0/cairomm/matrix.h \ - /usr/include/cairomm-1.0/cairomm/path.h \ - /usr/include/cairomm-1.0/cairomm/scaledfont.h \ - /usr/include/c++/11.2.0/valarray /usr/include/c++/11.2.0/cmath \ - /usr/include/math.h /usr/include/bits/math-vector.h \ - /usr/include/bits/libm-simd-decl-stubs.h \ - /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ - /usr/include/bits/fp-fast.h \ - /usr/include/bits/mathcalls-helper-functions.h \ - /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ - /usr/include/bits/iscanonical.h /usr/include/c++/11.2.0/bits/specfun.h \ - /usr/include/c++/11.2.0/tr1/gamma.tcc \ - /usr/include/c++/11.2.0/tr1/special_function_util.h \ - /usr/include/c++/11.2.0/tr1/bessel_function.tcc \ - /usr/include/c++/11.2.0/tr1/beta_function.tcc \ - /usr/include/c++/11.2.0/tr1/ell_integral.tcc \ - /usr/include/c++/11.2.0/tr1/exp_integral.tcc \ - /usr/include/c++/11.2.0/tr1/hypergeometric.tcc \ - /usr/include/c++/11.2.0/tr1/legendre_function.tcc \ - /usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc \ - /usr/include/c++/11.2.0/tr1/poly_hermite.tcc \ - /usr/include/c++/11.2.0/tr1/poly_laguerre.tcc \ - /usr/include/c++/11.2.0/tr1/riemann_zeta.tcc \ - /usr/include/c++/11.2.0/bits/valarray_array.h \ - /usr/include/c++/11.2.0/bits/valarray_array.tcc \ - /usr/include/c++/11.2.0/bits/valarray_before.h \ - /usr/include/c++/11.2.0/bits/slice_array.h \ - /usr/include/c++/11.2.0/bits/valarray_after.h \ - /usr/include/c++/11.2.0/bits/gslice.h \ - /usr/include/c++/11.2.0/bits/gslice_array.h \ - /usr/include/c++/11.2.0/bits/mask_array.h \ - /usr/include/c++/11.2.0/bits/indirect_array.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufanimation.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufanimationiter.h \ - /usr/include/gdkmm-3.0/gdkmm/pixbufloader.h \ - /usr/include/gdkmm-3.0/gdkmm/drawingcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/frameclock.h \ - /usr/include/gdkmm-3.0/gdkmm/frametimings.h \ - /usr/include/gdkmm-3.0/gdkmm/glcontext.h \ - /usr/include/gdkmm-3.0/gdkmm/displaymanager.h \ - /usr/include/gdkmm-3.0/gdkmm/devicemanager.h \ - /usr/include/gdkmm-3.0/gdkmm/seat.h \ - /usr/include/gdkmm-3.0/gdkmm/monitor.h \ - /usr/include/gdkmm-3.0/gdkmm/general.h \ - /usr/include/gtkmm-3.0/gtkmm/toggleaction.h \ - /usr/include/gtkmm-3.0/gtkmm/action.h \ - /usr/lib/gtkmm-3.0/include/gtkmmconfig.h \ - /usr/include/gtkmm-3.0/gtkmm/widget.h \ - /usr/include/pangomm-1.4/pangomm/context.h \ - /usr/include/pangomm-1.4/pangomm/fontdescription.h \ - /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ - /usr/include/pangomm-1.4/pangomm/fontset.h \ - /usr/include/pangomm-1.4/pangomm/language.h \ - /usr/include/pangomm-1.4/pangomm/font.h \ - /usr/include/pangomm-1.4/pangomm/rectangle.h \ - /usr/include/pangomm-1.4/pangomm/glyph.h \ - /usr/include/pangomm-1.4/pangomm/coverage.h \ - /usr/include/pangomm-1.4/pangomm/fontmap.h \ - /usr/include/pangomm-1.4/pangomm/fontfamily.h \ - /usr/include/pangomm-1.4/pangomm/fontface.h \ - /usr/include/pangomm-1.4/pangomm/item.h \ - /usr/include/pangomm-1.4/pangomm/attributes.h \ - /usr/include/pangomm-1.4/pangomm/color.h \ - /usr/include/pangomm-1.4/pangomm/attrlist.h \ - /usr/include/pangomm-1.4/pangomm/attriter.h \ - /usr/include/pangomm-1.4/pangomm/types.h \ - /usr/include/pangomm-1.4/pangomm/layout.h \ - /usr/include/pangomm-1.4/pangomm/tabarray.h \ - /usr/include/pangomm-1.4/pangomm/layoutline.h \ - /usr/include/pangomm-1.4/pangomm/layoutiter.h \ - /usr/include/pangomm-1.4/pangomm/layoutrun.h \ - /usr/include/atkmm-1.6/atkmm/object.h \ - /usr/include/atkmm-1.6/atkmm/component.h \ - /usr/lib/atkmm-1.6/include/atkmmconfig.h \ - /usr/include/atkmm-1.6/atkmm/relation.h \ - /usr/include/atkmm-1.6/atkmm/implementor.h \ - /usr/include/gtkmm-3.0/gtkmm/object.h \ - /usr/include/gtkmm-3.0/gtkmm/base.h \ - /usr/include/gtkmm-3.0/gtkmm/buildable.h \ - /usr/include/gtkmm-3.0/gtkmm/enums.h /usr/include/gtk-3.0/gtk/gtk.h \ - /usr/include/gtk-3.0/gtk/gtkaboutdialog.h \ - /usr/include/gtk-3.0/gtk/gtkdialog.h \ - /usr/include/gtk-3.0/gtk/gtkwindow.h \ - /usr/include/gtk-3.0/gtk/gtkapplication.h \ - /usr/include/gtk-3.0/gtk/gtkwidget.h \ - /usr/include/gtk-3.0/gtk/gtkaccelgroup.h \ - /usr/include/gtk-3.0/gtk/gtkenums.h /usr/include/gtk-3.0/gtk/gtkborder.h \ - /usr/include/gtk-3.0/gtk/gtktypes.h /usr/include/atk-1.0/atk/atk.h \ - /usr/include/atk-1.0/atk/atkobject.h \ - /usr/include/atk-1.0/atk/atkversion.h \ - /usr/include/atk-1.0/atk/atkstate.h \ - /usr/include/atk-1.0/atk/atkrelationtype.h \ - /usr/include/atk-1.0/atk/atkaction.h \ - /usr/include/atk-1.0/atk/atkcomponent.h \ - /usr/include/atk-1.0/atk/atkutil.h \ - /usr/include/atk-1.0/atk/atkdocument.h \ - /usr/include/atk-1.0/atk/atkeditabletext.h \ - /usr/include/atk-1.0/atk/atktext.h \ - /usr/include/atk-1.0/atk/atk-enum-types.h \ - /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ - /usr/include/atk-1.0/atk/atkhyperlink.h \ - /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ - /usr/include/atk-1.0/atk/atkhypertext.h \ - /usr/include/atk-1.0/atk/atkimage.h \ - /usr/include/atk-1.0/atk/atknoopobject.h \ - /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkplug.h /usr/include/atk-1.0/atk/atkrange.h \ - /usr/include/atk-1.0/atk/atkregistry.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkrelation.h \ - /usr/include/atk-1.0/atk/atkrelationset.h \ - /usr/include/atk-1.0/atk/atkselection.h \ - /usr/include/atk-1.0/atk/atksocket.h \ - /usr/include/atk-1.0/atk/atkstateset.h \ - /usr/include/atk-1.0/atk/atkstreamablecontent.h \ - /usr/include/atk-1.0/atk/atktable.h \ - /usr/include/atk-1.0/atk/atktablecell.h \ - /usr/include/atk-1.0/atk/atkmisc.h /usr/include/atk-1.0/atk/atkvalue.h \ - /usr/include/atk-1.0/atk/atkwindow.h \ - /usr/include/atk-1.0/atk/atk-autocleanups.h \ - /usr/include/gtk-3.0/gtk/gtkbin.h \ - /usr/include/gtk-3.0/gtk/gtkcontainer.h \ - /usr/include/gtk-3.0/gtk/gtkaccellabel.h \ - /usr/include/gtk-3.0/gtk/gtklabel.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h \ - /usr/include/gtk-3.0/gtk/gtkmenu.h \ - /usr/include/gtk-3.0/gtk/gtkmenushell.h \ - /usr/include/gtk-3.0/gtk/gtkaccelmap.h \ - /usr/include/gtk-3.0/gtk/gtkaccessible.h \ - /usr/include/gtk-3.0/gtk/gtkactionable.h \ - /usr/include/gtk-3.0/gtk/gtkactionbar.h \ - /usr/include/gtk-3.0/gtk/gtkadjustment.h \ - /usr/include/gtk-3.0/gtk/gtkappchooser.h \ - /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkbox.h \ - /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h \ - /usr/include/gtk-3.0/gtk/gtkcombobox.h \ - /usr/include/gtk-3.0/gtk/gtktreemodel.h \ - /usr/include/gtk-3.0/gtk/gtktreeview.h \ - /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderer.h \ - /usr/include/gtk-3.0/gtk/gtkcelleditable.h \ - /usr/include/gtk-3.0/gtk/gtktreesortable.h \ - /usr/include/gtk-3.0/gtk/gtkcellarea.h /usr/include/gtk-3.0/gtk/gtkdnd.h \ - /usr/include/gtk-3.0/gtk/gtkselection.h \ - /usr/include/gtk-3.0/gtk/gtktextiter.h \ - /usr/include/gtk-3.0/gtk/gtktextattributes.h \ - /usr/include/gtk-3.0/gtk/gtktextchild.h \ - /usr/include/gtk-3.0/gtk/gtktexttag.h \ - /usr/include/gtk-3.0/gtk/gtkentry.h \ - /usr/include/gtk-3.0/gtk/gtkeditable.h \ - /usr/include/gtk-3.0/gtk/gtkimcontext.h \ - /usr/include/gtk-3.0/gtk/gtkentrybuffer.h \ - /usr/include/gtk-3.0/gtk/gtkentrycompletion.h \ - /usr/include/gtk-3.0/gtk/gtkliststore.h \ - /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h \ - /usr/include/gtk-3.0/gtk/gtkimage.h \ - /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutswindow.h \ - /usr/include/gtk-3.0/gtk/gtkaspectframe.h \ - /usr/include/gtk-3.0/gtk/gtkframe.h \ - /usr/include/gtk-3.0/gtk/gtkassistant.h \ - /usr/include/gtk-3.0/gtk/gtkbbox.h \ - /usr/include/gtk-3.0/gtk/gtkbindings.h \ - /usr/include/gtk-3.0/gtk/gtkbuildable.h \ - /usr/include/gtk-3.0/gtk/gtkbuilder.h \ - /usr/include/gtk-3.0/gtk/gtkbutton.h \ - /usr/include/gtk-3.0/gtk/gtkcalendar.h \ - /usr/include/gtk-3.0/gtk/gtkcellareabox.h \ - /usr/include/gtk-3.0/gtk/gtkcellareacontext.h \ - /usr/include/gtk-3.0/gtk/gtkcelllayout.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h \ - /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h \ - /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h \ - /usr/include/gtk-3.0/gtk/gtkcellview.h \ - /usr/include/gtk-3.0/gtk/gtkcheckbutton.h \ - /usr/include/gtk-3.0/gtk/gtktogglebutton.h \ - /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkmenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkclipboard.h \ - /usr/include/gtk-3.0/gtk/gtkcolorbutton.h \ - /usr/include/gtk-3.0/gtk/gtkcolorchooser.h \ - /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkcolorutils.h \ - /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h \ - /usr/include/gtk-3.0/gtk/gtkcssprovider.h \ - /usr/include/gtk-3.0/gtk/gtkcsssection.h \ - /usr/include/gtk-3.0/gtk/gtkdebug.h \ - /usr/include/gtk-3.0/gtk/gtkdragdest.h \ - /usr/include/gtk-3.0/gtk/gtkdragsource.h \ - /usr/include/gtk-3.0/gtk/gtkdrawingarea.h \ - /usr/include/gtk-3.0/gtk/gtkeventbox.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontroller.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontrollerkey.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontrollermotion.h \ - /usr/include/gtk-3.0/gtk/gtkeventcontrollerscroll.h \ - /usr/include/gtk-3.0/gtk/gtkexpander.h \ - /usr/include/gtk-3.0/gtk/gtkfixed.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooser.h \ - /usr/include/gtk-3.0/gtk/gtkfilefilter.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkfilechoosernative.h \ - /usr/include/gtk-3.0/gtk/gtknativedialog.h \ - /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkflowbox.h \ - /usr/include/gtk-3.0/gtk/gtkfontbutton.h \ - /usr/include/gtk-3.0/gtk/gtkfontchooser.h \ - /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkgesture.h \ - /usr/include/gtk-3.0/gtk/gtkgesturedrag.h \ - /usr/include/gtk-3.0/gtk/gtkgesturesingle.h \ - /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h \ - /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h \ - /usr/include/gtk-3.0/gtk/gtkgesturepan.h \ - /usr/include/gtk-3.0/gtk/gtkgesturerotate.h \ - /usr/include/gtk-3.0/gtk/gtkgesturestylus.h \ - /usr/include/gtk-3.0/gtk/gtkgestureswipe.h \ - /usr/include/gtk-3.0/gtk/gtkgesturezoom.h \ - /usr/include/gtk-3.0/gtk/gtkglarea.h /usr/include/gtk-3.0/gtk/gtkgrid.h \ - /usr/include/gtk-3.0/gtk/gtkheaderbar.h \ - /usr/include/gtk-3.0/gtk/gtkicontheme.h \ - /usr/include/gtk-3.0/gtk/gtkstylecontext.h \ - /usr/include/gtk-3.0/gtk/gtkstyleprovider.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h \ - /usr/include/gtk-3.0/gtk/gtkiconview.h \ - /usr/include/gtk-3.0/gtk/gtktooltip.h \ - /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h \ - /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h \ - /usr/include/gtk-3.0/gtk/gtkimmulticontext.h \ - /usr/include/gtk-3.0/gtk/gtkinfobar.h \ - /usr/include/gtk-3.0/gtk/gtkinvisible.h \ - /usr/include/gtk-3.0/gtk/gtklayout.h \ - /usr/include/gtk-3.0/gtk/gtklevelbar.h \ - /usr/include/gtk-3.0/gtk/gtklinkbutton.h \ - /usr/include/gtk-3.0/gtk/gtklistbox.h \ - /usr/include/gtk-3.0/gtk/gtklockbutton.h \ - /usr/include/gtk-3.0/gtk/gtkmain.h /usr/include/gtk-3.0/gtk/gtkmenubar.h \ - /usr/include/gtk-3.0/gtk/gtkmenubutton.h \ - /usr/include/gtk-3.0/gtk/gtkpopover.h \ - /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtktoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtktoolitem.h \ - /usr/include/gtk-3.0/gtk/gtksizegroup.h \ - /usr/include/gtk-3.0/gtk/gtkmessagedialog.h \ - /usr/include/gtk-3.0/gtk/gtkmodelbutton.h \ - /usr/include/gtk-3.0/gtk/gtkmodules.h \ - /usr/include/gtk-3.0/gtk/gtkmountoperation.h \ - /usr/include/gtk-3.0/gtk/gtknotebook.h \ - /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h \ - /usr/include/gtk-3.0/gtk/gtkorientable.h \ - /usr/include/gtk-3.0/gtk/gtkoverlay.h \ - /usr/include/gtk-3.0/gtk/gtkpadcontroller.h \ - /usr/include/gtk-3.0/gtk/gtkpagesetup.h \ - /usr/include/gtk-3.0/gtk/gtkpapersize.h \ - /usr/include/gtk-3.0/gtk/gtkpaned.h \ - /usr/include/gtk-3.0/gtk/gtkplacessidebar.h \ - /usr/include/gtk-3.0/gtk/gtkpopovermenu.h \ - /usr/include/gtk-3.0/gtk/gtkprintcontext.h \ - /usr/include/gtk-3.0/gtk/gtkprintoperation.h \ - /usr/include/gtk-3.0/gtk/gtkprintsettings.h \ - /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h \ - /usr/include/gtk-3.0/gtk/gtkprogressbar.h \ - /usr/include/gtk-3.0/gtk/gtkradiobutton.h \ - /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h \ - /usr/include/gtk-3.0/gtk/gtkrange.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchooser.h \ - /usr/include/gtk-3.0/gtk/gtkrecentmanager.h \ - /usr/include/gtk-3.0/gtk/gtkrecentfilter.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h \ - /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h \ - /usr/include/gtk-3.0/gtk/gtkrender.h \ - /usr/include/gtk-3.0/gtk/gtkrevealer.h \ - /usr/include/gtk-3.0/gtk/gtkscale.h \ - /usr/include/gtk-3.0/gtk/gtkscalebutton.h \ - /usr/include/gtk-3.0/gtk/gtkscrollable.h \ - /usr/include/gtk-3.0/gtk/gtkscrollbar.h \ - /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h \ - /usr/include/gtk-3.0/gtk/gtksearchbar.h \ - /usr/include/gtk-3.0/gtk/gtksearchentry.h \ - /usr/include/gtk-3.0/gtk/gtkseparator.h \ - /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h \ - /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h \ - /usr/include/gtk-3.0/gtk/gtksettings.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutlabel.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutsgroup.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutssection.h \ - /usr/include/gtk-3.0/gtk/gtkshortcutsshortcut.h \ - /usr/include/gtk-3.0/gtk/gtkshow.h \ - /usr/include/gtk-3.0/gtk/gtkstacksidebar.h \ - /usr/include/gtk-3.0/gtk/gtkstack.h \ - /usr/include/gtk-3.0/gtk/gtksizerequest.h \ - /usr/include/gtk-3.0/gtk/gtkspinbutton.h \ - /usr/include/gtk-3.0/gtk/gtkspinner.h \ - /usr/include/gtk-3.0/gtk/gtkstackswitcher.h \ - /usr/include/gtk-3.0/gtk/gtkstatusbar.h \ - /usr/include/gtk-3.0/gtk/gtkswitch.h \ - /usr/include/gtk-3.0/gtk/gtktextbuffer.h \ - /usr/include/gtk-3.0/gtk/gtktexttagtable.h \ - /usr/include/gtk-3.0/gtk/gtktextmark.h \ - /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h \ - /usr/include/gtk-3.0/gtk/gtktextview.h \ - /usr/include/gtk-3.0/gtk/gtktoolbar.h \ - /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h \ - /usr/include/gtk-3.0/gtk/gtktoolpalette.h \ - /usr/include/gtk-3.0/gtk/gtktoolshell.h \ - /usr/include/gtk-3.0/gtk/gtktestutils.h \ - /usr/include/gtk-3.0/gtk/gtktreednd.h \ - /usr/include/gtk-3.0/gtk/gtktreemodelsort.h \ - /usr/include/gtk-3.0/gtk/gtktreeselection.h \ - /usr/include/gtk-3.0/gtk/gtktreestore.h \ - /usr/include/gtk-3.0/gtk/gtktypebuiltins.h \ - /usr/include/gtk-3.0/gtk/gtkversion.h \ - /usr/include/gtk-3.0/gtk/gtkviewport.h \ - /usr/include/gtk-3.0/gtk/gtkvolumebutton.h \ - /usr/include/gtk-3.0/gtk/gtkwidgetpath.h \ - /usr/include/gtk-3.0/gtk/gtkwindowgroup.h \ - /usr/include/gtk-3.0/gtk/gtkwindow.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtktable.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h \ - /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h \ - /usr/include/gtk-3.0/gtk/gtk-autocleanups.h \ - /usr/include/gtkmm-3.0/gtkmm/targetlist.h \ - /usr/include/gtkmm-3.0/gtkmm/targetentry.h \ - /usr/include/gtkmm-3.0/gtkmm/clipboard.h \ - /usr/include/gtkmm-3.0/gtkmm/selectiondata.h \ - /usr/include/gtkmm-3.0/gtkmm/requisition.h \ - /usr/include/gtkmm-3.0/gtkmm/stylecontext.h \ - /usr/include/gtkmm-3.0/gtkmm/styleprovider.h \ - /usr/include/gtkmm-3.0/gtkmm/border.h \ - /usr/include/gtkmm-3.0/gtkmm/iconsource.h \ - /usr/include/gtkmm-3.0/gtkmm/iconset.h \ - /usr/include/gtkmm-3.0/gtkmm/stockid.h \ - /usr/include/gtkmm-3.0/gtkmm/widgetpath.h \ - /usr/include/gtkmm-3.0/gtkmm/accelgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/radioaction.h \ - /usr/include/gtkmm-3.0/gtkmm/radiobuttongroup.h \ - /usr/include/gtkmm-3.0/gtkmm/aboutdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/dialog.h \ - /usr/include/gtkmm-3.0/gtkmm/window.h /usr/include/gtkmm-3.0/gtkmm/bin.h \ - /usr/include/gtkmm-3.0/gtkmm/container.h \ - /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy.h \ - /usr/include/gtkmm-3.0/gtkmm/childpropertyproxy_base.h \ - /usr/include/gtkmm-3.0/gtkmm/application.h \ - /usr/include/gtkmm-3.0/gtkmm/actiongroup.h \ - /usr/include/gtkmm-3.0/gtkmm/accelkey.h \ - /usr/include/gtkmm-3.0/gtkmm/windowgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/box.h \ - /usr/include/gtkmm-3.0/gtkmm/orientable.h \ - /usr/include/gtkmm-3.0/gtkmm/hvbox.h \ - /usr/include/gtkmm-3.0/gtkmm/button.h \ - /usr/include/gtkmm-3.0/gtkmm/activatable.h \ - /usr/include/gtkmm-3.0/gtkmm/buttonbox.h \ - /usr/include/gtkmm-3.0/gtkmm/hvbuttonbox.h \ - /usr/include/gtkmm-3.0/gtkmm/headerbar.h \ - /usr/include/gtkmm-3.0/gtkmm/accelmap.h \ - /usr/include/gtkmm-3.0/gtkmm/actionable.h \ - /usr/include/gtkmm-3.0/gtkmm/actionbar.h \ - /usr/include/gtkmm-3.0/gtkmm/adjustment.h \ - /usr/include/gtkmm-3.0/gtkmm/alignment.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooserbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/combobox.h \ - /usr/include/gtkmm-3.0/gtkmm/celllayout.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderer.h \ - /usr/include/gtkmm-3.0/gtkmm/celleditable.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderer_generation.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderertext.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererpixbuf.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderertoggle.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendereraccel.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodel.h \ - /usr/include/gtkmm-3.0/gtkmm/treeiter.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodelcolumn.h \ - /usr/include/gtkmm-3.0/gtkmm/cellarea.h \ - /usr/include/gtkmm-3.0/gtkmm/cellareacontext.h \ - /usr/include/gtkmm-3.0/gtkmm/treeview.h \ - /usr/include/gtkmm-3.0/gtkmm/treeviewcolumn.h \ - /usr/include/gtkmm-3.0/gtkmm/treeselection.h \ - /usr/include/gtkmm-3.0/gtkmm/treepath.h \ - /usr/include/gtkmm-3.0/gtkmm/scrollable.h \ - /usr/include/gtkmm-3.0/gtkmm/entry.h \ - /usr/include/gtkmm-3.0/gtkmm/editable.h \ - /usr/include/gtkmm-3.0/gtkmm/menu.h \ - /usr/include/gtkmm-3.0/gtkmm/menushell.h \ - /usr/include/gtkmm-3.0/gtkmm/menuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/accellabel.h \ - /usr/include/gtkmm-3.0/gtkmm/label.h /usr/include/gtkmm-3.0/gtkmm/misc.h \ - /usr/include/gtkmm-3.0/gtkmm/entrycompletion.h \ - /usr/include/gtkmm-3.0/gtkmm/image.h \ - /usr/include/gtkmm-3.0/gtkmm/entrybuffer.h \ - /usr/include/gtkmm-3.0/gtkmm/tooltip.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/appchooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/applicationwindow.h \ - /usr/include/gtkmm-3.0/gtkmm/arrow.h \ - /usr/include/gtkmm-3.0/gtkmm/aspectframe.h \ - /usr/include/gtkmm-3.0/gtkmm/frame.h \ - /usr/include/gtkmm-3.0/gtkmm/assistant.h \ - /usr/include/gtkmm-3.0/gtkmm/builder.h \ - /usr/include/gtkmm-3.0/gtkmm/cellareabox.h \ - /usr/include/gtkmm-3.0/gtkmm/cellview.h \ - /usr/include/gtkmm-3.0/gtkmm/checkbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/togglebutton.h \ - /usr/include/gtkmm-3.0/gtkmm/checkmenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrenderercombo.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererprogress.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererspin.h \ - /usr/include/gtkmm-3.0/gtkmm/cellrendererspinner.h \ - /usr/include/gtkmm-3.0/gtkmm/colorbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/colorchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/colorchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/colorselection.h \ - /usr/include/gtkmm-3.0/gtkmm/comboboxtext.h \ - /usr/include/gtkmm-3.0/gtkmm/cssprovider.h \ - /usr/include/gtkmm-3.0/gtkmm/csssection.h \ - /usr/include/gtkmm-3.0/gtkmm/drawingarea.h \ - /usr/include/gtkmm-3.0/gtkmm/expander.h \ - /usr/include/gtkmm-3.0/gtkmm/eventbox.h \ - /usr/include/gtkmm-3.0/gtkmm/eventcontroller.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooser.h \ - /usr/include/gtkmm-3.0/gtkmm/filefilter.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooserbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/filechoosernative.h \ - /usr/include/gtkmm-3.0/gtkmm/nativedialog.h \ - /usr/include/gtkmm-3.0/gtkmm/filechooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/fixed.h \ - /usr/include/gtkmm-3.0/gtkmm/flowbox.h \ - /usr/include/gtkmm-3.0/gtkmm/flowboxchild.h \ - /usr/include/gtkmm-3.0/gtkmm/fontbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/fontchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/fontchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/fontchooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/fontselection.h \ - /usr/include/gtkmm-3.0/gtkmm/gesture.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturedrag.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturesingle.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturelongpress.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturemultipress.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturepan.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturerotate.h \ - /usr/include/gtkmm-3.0/gtkmm/gestureswipe.h \ - /usr/include/gtkmm-3.0/gtkmm/gesturezoom.h \ - /usr/include/gtkmm-3.0/gtkmm/glarea.h \ - /usr/include/gtkmm-3.0/gtkmm/grid.h \ - /usr/include/gtkmm-3.0/gtkmm/handlebox.h \ - /usr/include/gtkmm-3.0/gtkmm/hvpaned.h \ - /usr/include/gtkmm-3.0/gtkmm/paned.h \ - /usr/include/gtkmm-3.0/gtkmm/hvscale.h \ - /usr/include/gtkmm-3.0/gtkmm/scale.h \ - /usr/include/gtkmm-3.0/gtkmm/range.h \ - /usr/include/gtkmm-3.0/gtkmm/hvscrollbar.h \ - /usr/include/gtkmm-3.0/gtkmm/scrollbar.h \ - /usr/include/gtkmm-3.0/gtkmm/hvseparator.h \ - /usr/include/gtkmm-3.0/gtkmm/separator.h \ - /usr/include/gtkmm-3.0/gtkmm/iconfactory.h \ - /usr/include/gtkmm-3.0/gtkmm/icontheme.h \ - /usr/include/gtkmm-3.0/gtkmm/iconinfo.h \ - /usr/include/gtkmm-3.0/gtkmm/iconview.h \ - /usr/include/gtkmm-3.0/gtkmm/imagemenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/infobar.h \ - /usr/include/gtkmm-3.0/gtkmm/calendar.h \ - /usr/include/gtkmm-3.0/gtkmm/invisible.h \ - /usr/include/gtkmm-3.0/gtkmm/layout.h \ - /usr/include/gtkmm-3.0/gtkmm/levelbar.h \ - /usr/include/gtkmm-3.0/gtkmm/listbox.h \ - /usr/include/gtkmm-3.0/gtkmm/listboxrow.h \ - /usr/include/gtkmm-3.0/gtkmm/liststore.h \ - /usr/include/gtkmm-3.0/gtkmm/treesortable.h \ - /usr/include/gtkmm-3.0/gtkmm/treedragdest.h \ - /usr/include/gtkmm-3.0/gtkmm/treedragsource.h \ - /usr/include/gtkmm-3.0/gtkmm/listviewtext.h \ - /usr/include/gtkmm-3.0/gtkmm/linkbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/main.h \ - /usr/include/gtkmm-3.0/gtkmm/menubar.h \ - /usr/include/gtkmm-3.0/gtkmm/menubutton.h \ - /usr/include/gtkmm-3.0/gtkmm/popover.h \ - /usr/include/gtkmm-3.0/gtkmm/messagedialog.h \ - /usr/include/gtkmm-3.0/gtkmm/modelbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/notebook.h \ - /usr/include/gtkmm-3.0/gtkmm/numerableicon.h \ - /usr/include/gtkmm-3.0/gtkmm/offscreenwindow.h \ - /usr/include/gtkmm-3.0/gtkmm/overlay.h \ - /usr/include/gtkmm-3.0/gtkmm/pagesetup.h \ - /usr/include/gtkmm-3.0/gtkmm/papersize.h \ - /usr/include/gtkmm-3.0/gtkmm/pagesetupunixdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/printsettings.h \ - /usr/include/gtkmm-3.0/gtkmm/placessidebar.h \ - /usr/include/gtkmm-3.0/gtkmm/scrolledwindow.h \ - /usr/include/gtkmm-3.0/gtkmm/popovermenu.h \ - /usr/include/gtkmm-3.0/gtkmm/printcontext.h \ - /usr/include/gtkmm-3.0/gtkmm/printer.h \ - /usr/include/gtkmm-3.0/gtkmm/printjob.h \ - /usr/include/gtkmm-3.0/gtkmm/printoperation.h \ - /usr/include/gtkmm-3.0/gtkmm/printoperationpreview.h \ - /usr/include/gtkmm-3.0/gtkmm/printunixdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/progressbar.h \ - /usr/include/gtkmm-3.0/gtkmm/radiobutton.h \ - /usr/include/gtkmm-3.0/gtkmm/radiomenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/radiotoolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/toggletoolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/toolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/toolitem.h \ - /usr/include/gtkmm-3.0/gtkmm/sizegroup.h \ - /usr/include/gtkmm-3.0/gtkmm/recentaction.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchooser.h \ - /usr/include/gtkmm-3.0/gtkmm/recentinfo.h \ - /usr/include/gtkmm-3.0/gtkmm/recentfilter.h \ - /usr/include/gtkmm-3.0/gtkmm/recentmanager.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchooserdialog.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchoosermenu.h \ - /usr/include/gtkmm-3.0/gtkmm/recentchooserwidget.h \ - /usr/include/gtkmm-3.0/gtkmm/revealer.h \ - /usr/include/gtkmm-3.0/gtkmm/scalebutton.h \ - /usr/include/gtkmm-3.0/gtkmm/searchbar.h \ - /usr/include/gtkmm-3.0/gtkmm/searchentry.h \ - /usr/include/gtkmm-3.0/gtkmm/separatormenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/separatortoolitem.h \ - /usr/include/gtkmm-3.0/gtkmm/settings.h \ - /usr/include/gtkmm-3.0/gtkmm/toolbar.h \ - /usr/include/gtkmm-3.0/gtkmm/toolshell.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutlabel.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutsgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutssection.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutsshortcut.h \ - /usr/include/gtkmm-3.0/gtkmm/shortcutswindow.h \ - /usr/include/gtkmm-3.0/gtkmm/spinbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/spinner.h \ - /usr/include/gtkmm-3.0/gtkmm/stack.h \ - /usr/include/gtkmm-3.0/gtkmm/stacksidebar.h \ - /usr/include/gtkmm-3.0/gtkmm/stackswitcher.h \ - /usr/include/gtkmm-3.0/gtkmm/statusbar.h \ - /usr/include/gtkmm-3.0/gtkmm/statusicon.h \ - /usr/include/gtkmm-3.0/gtkmm/stock.h \ - /usr/include/gtkmm-3.0/gtkmm/stockitem.h \ - /usr/include/gtkmm-3.0/gtkmm/styleproperty.h \ - /usr/include/gtkmm-3.0/gtkmm/switch.h \ - /usr/include/gtkmm-3.0/gtkmm/table.h \ - /usr/include/gtkmm-3.0/gtkmm/tearoffmenuitem.h \ - /usr/include/gtkmm-3.0/gtkmm/textbuffer.h \ - /usr/include/gtkmm-3.0/gtkmm/texttagtable.h \ - /usr/include/gtkmm-3.0/gtkmm/texttag.h \ - /usr/include/gtkmm-3.0/gtkmm/textchildanchor.h \ - /usr/include/gtkmm-3.0/gtkmm/textmark.h \ - /usr/include/gtkmm-3.0/gtkmm/textiter.h \ - /usr/include/gtkmm-3.0/gtkmm/textattributes.h \ - /usr/include/gtkmm-3.0/gtkmm/textview.h \ - /usr/include/gtkmm-3.0/gtkmm/toolpalette.h \ - /usr/include/gtkmm-3.0/gtkmm/toolitemgroup.h \ - /usr/include/gtkmm-3.0/gtkmm/menutoolbutton.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodelfilter.h \ - /usr/include/gtkmm-3.0/gtkmm/treemodelsort.h \ - /usr/include/gtkmm-3.0/gtkmm/treerowreference.h \ - /usr/include/gtkmm-3.0/gtkmm/treestore.h \ - /usr/include/gtkmm-3.0/gtkmm/uimanager.h \ - /usr/include/gtkmm-3.0/gtkmm/viewport.h \ - /usr/include/gtkmm-3.0/gtkmm/volumebutton.h \ - /usr/include/c++/11.2.0/fstream /usr/include/c++/11.2.0/bits/codecvt.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/basic_file.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++io.h \ - /usr/include/c++/11.2.0/bits/fstream.tcc \ - /usr/include/c++/11.2.0/filesystem /usr/include/c++/11.2.0/bits/fs_fwd.h \ - /usr/include/c++/11.2.0/bits/fs_path.h /usr/include/c++/11.2.0/locale \ - /usr/include/c++/11.2.0/bits/locale_facets_nonio.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/time_members.h \ - /usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/messages_members.h \ - /usr/include/libintl.h \ - /usr/include/c++/11.2.0/bits/locale_facets_nonio.tcc \ - /usr/include/c++/11.2.0/bits/locale_conv.h \ - /usr/include/c++/11.2.0/iomanip \ - /usr/include/c++/11.2.0/bits/quoted_string.h \ - /usr/include/c++/11.2.0/codecvt /usr/include/c++/11.2.0/bits/fs_dir.h \ - /usr/include/c++/11.2.0/bits/fs_ops.h \ - /usr/include/gtkmm-3.0/gtkmm/plug.h /usr/include/gtk-3.0/gtk/gtkx.h \ - /usr/include/gtk-3.0/gtk/gtksocket.h /usr/include/gtk-3.0/gdk/gdkx.h \ - /usr/include/X11/Xlib.h /usr/include/X11/X.h \ - /usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \ - /usr/include/X11/Xutil.h /usr/include/X11/keysym.h \ - /usr/include/X11/keysymdef.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11device.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11display.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11monitor.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11property.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx11window.h \ - /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h \ - /usr/include/gtk-3.0/gtk/gtkplug.h \ - /usr/include/gtk-3.0/gtk/gtkx-autocleanups.h /usr/include/pwd.h \ - /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source/ublexec.h diff --git a/compile/Makefile b/compile/Makefile deleted file mode 100644 index 812b91e..0000000 --- a/compile/Makefile +++ /dev/null @@ -1,257 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.23 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." - /usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." - /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - /usr/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - /usr/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." - /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." - /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." - /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." - /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named ublexec - -# Build rule for target. -ublexec: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ublexec -.PHONY : ublexec - -# fast build rule for target. -ublexec/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/build -.PHONY : ublexec/fast - -main.o: main.cc.o -.PHONY : main.o - -# target to build an object file -main.cc.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/main.cc.o -.PHONY : main.cc.o - -main.i: main.cc.i -.PHONY : main.i - -# target to preprocess a source file -main.cc.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/main.cc.i -.PHONY : main.cc.i - -main.s: main.cc.s -.PHONY : main.s - -# target to generate assembly for a file -main.cc.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/main.cc.s -.PHONY : main.cc.s - -ublexec.o: ublexec.cc.o -.PHONY : ublexec.o - -# target to build an object file -ublexec.cc.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/ublexec.cc.o -.PHONY : ublexec.cc.o - -ublexec.i: ublexec.cc.i -.PHONY : ublexec.i - -# target to preprocess a source file -ublexec.cc.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/ublexec.cc.i -.PHONY : ublexec.cc.i - -ublexec.s: ublexec.cc.s -.PHONY : ublexec.s - -# target to generate assembly for a file -ublexec.cc.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/ublexec.dir/build.make CMakeFiles/ublexec.dir/ublexec.cc.s -.PHONY : ublexec.cc.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... ublexec" - @echo "... main.o" - @echo "... main.i" - @echo "... main.s" - @echo "... ublexec.o" - @echo "... ublexec.i" - @echo "... ublexec.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/compile/cmake_install.cmake b/compile/cmake_install.cmake deleted file mode 100644 index 1283f0d..0000000 --- a/compile/cmake_install.cmake +++ /dev/null @@ -1,70 +0,0 @@ -# Install script for directory: /home/superadmin/Документы/Проект/ubconfig_new/ublexec/source - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/usr") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Release") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Install shared libraries without execute permission? -if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) - set(CMAKE_INSTALL_SO_NO_EXE "0") -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/usr/bin/objdump") -endif() - -if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/ublexec" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/ublexec") - file(RPATH_CHECK - FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/ublexec" - RPATH "") - endif() - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/ublexec") - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/ublexec" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/ublexec") - if(CMAKE_INSTALL_DO_STRIP) - execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/ublexec") - endif() - endif() -endif() - -if(CMAKE_INSTALL_COMPONENT) - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") -file(WRITE "/home/superadmin/Документы/Проект/ubconfig_new/ublexec/compile/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/source/ublexec.cc b/source/ublexec.cc index 7dc3963..b841dcf 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -208,17 +208,56 @@ void MainWindow::event(){ btnMessageErrorOk->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::message_gui_close)); btnStartMenuOK->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::start_menu_entry_app)); btnStartMenuExit->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::close_start_menu)); - iconGraphics->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Graphics)); + btnStartMenuOK->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::ok_close_entry_app)); + iconTools->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Tools)); + iconInternet->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Internet)); + iconMultimedia->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Multimedia)); + iconSettings->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Settings)); + iconEducation->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Education)); + iconOffice->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Office)); + iconOther->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Other)); + iconDevelopment->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Development)); + iconSystem->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_System)); + +} + +void MainWindow::ok_close_entry_app(){ + dialogStartMenu->hide(); } void MainWindow::select_Graphics(){ this->tempate_icon_select(iconGraphics,list_Graphics); } - +void MainWindow::select_Tools(){ + this->tempate_icon_select(iconTools,list_Tools); +} +void MainWindow::select_Internet(){ + this->tempate_icon_select(iconInternet,list_Internet); +} +void MainWindow::select_Multimedia(){ + this->tempate_icon_select(iconMultimedia,list_Multimedia); +} +void MainWindow::select_Settings(){ + this->tempate_icon_select(iconSettings,list_Settings); +} +void MainWindow::select_Education(){ + this->tempate_icon_select(iconEducation,list_Education); +} +void MainWindow::select_Office(){ + this->tempate_icon_select(iconOffice,list_Office); +} +void MainWindow::select_Other(){ + this->tempate_icon_select(iconOther,list_Other); +} +void MainWindow::select_Development(){ + this->tempate_icon_select(iconDevelopment,list_Development); +} +void MainWindow::select_System(){ + this->tempate_icon_select(iconSystem,list_System); +} void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtr >k_list){ - typedef std::list type_list_paths; - type_list_paths selected = icon->get_selected_items(); + auto selected = (*icon).get_selected_items(); if(!selected.empty()) { const Gtk::TreeModel::Path& path = *selected.begin(); @@ -229,6 +268,7 @@ void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtrset_text(name_app); + } } diff --git a/source/ublexec.h b/source/ublexec.h index 16253c9..362a867 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -91,6 +91,16 @@ public: void on_item_activated(const Gtk::TreeModel::Path& path); void tempalte_row(string name, string path, Glib::RefPtr &dtk_list); void tempate_icon_select(Gtk::IconView *icon, Glib::RefPtr >k_list); + void ok_close_entry_app(); + void select_Tools(); + void select_Internet(); + void select_Multimedia(); + void select_Settings(); + void select_Education(); + void select_Office(); + void select_Other(); + void select_Development(); + void select_System(); vector split(const std::string &s, char delim); public: diff --git a/ublexec.glade b/ublexec.glade index 6cdc251..458368a 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -9,6 +9,8 @@ 10 + 200 + 400 False @@ -403,6 +405,8 @@ ОК + -1 + -1 True True True From e29ba906ad1b686f34fd4efc9d1268fd9dee7bca Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Thu, 2 Feb 2023 12:33:13 +0600 Subject: [PATCH 04/31] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=B0=D0=B4=D0=B0=D0=BF=D1=82=D0=B8=D0=B2=D0=BD?= =?UTF-8?q?=D1=8B=D0=B9=20=D0=B4=D0=B8=D0=B7=D0=B0=D0=B9=D0=BD=20=D0=BC?= =?UTF-8?q?=D0=B5=D0=BD=D1=8E=20=D0=B2=D1=8B=D0=B1=D0=BE=D1=80=D0=B0=20?= =?UTF-8?q?=D0=BF=D1=80=D0=B8=D0=BB=D0=BE=D0=B6=D0=B5=D0=BD=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/CMakeLists.txt | 4 +- source/ublexec.cc | 51 ++-- source/ublexec.h | 7 +- ublexec.glade | 695 ++++++++++++++++++++++-------------------- 4 files changed, 386 insertions(+), 371 deletions(-) diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index d9ace9b..d7bb690 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -8,8 +8,8 @@ include_directories(${GTK_INCLUDE_DIRS}) link_directories(${GTK_LIBRARY_DIRS}) add_definitions(${GTK_CFLAGS_OTHER}) -#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wall -Wextra -Werror -Wmissing-declarations -fdiagnostics-color=always -std=c++2a") -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wmissing-declarations -fdiagnostics-color=always") +#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wall -Wextra -Werror -Wmissing-declarations -fdiagnostics-color=always -std=c++2a -g") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wmissing-declarations -fdiagnostics-color=always -g") set(SOURCE_FILES main.cc diff --git a/source/ublexec.cc b/source/ublexec.cc index b841dcf..d60a60a 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -88,7 +88,6 @@ void MainWindow::get_builder(){ builder->get_widget("dialogStartMenu", dialogStartMenu); builder->get_widget("btnStartMenuOK", btnStartMenuOK); builder->get_widget("btnStartMenuExit", btnStartMenuExit); - builder->get_widget("boxlistProgramm", boxlistProgramm); builder->get_widget("lblInfoHead", lblInfoHead); builder->get_widget("lblinfoCmd", lblinfoCmd); builder->get_widget("lblInfoTime", lblInfoTime); @@ -133,14 +132,6 @@ void MainWindow::get_builder(){ this->template_apps_obj(iconDevelopment, list_Development); this->template_apps_obj(iconSystem, list_System); - /* - list_Graphics = Gtk::ListStore::create( m_Columns ); - list_Graphics->set_sort_column( m_Columns.m_col_description, Gtk::SORT_ASCENDING ); - iconGraphics->set_model(list_Graphics); - iconGraphics->set_markup_column(m_Columns.m_col_description); - iconGraphics->set_pixbuf_column(m_Columns.m_col_pixbuf); - - */ } void MainWindow::template_apps_obj(Gtk::IconView *icon, Glib::RefPtr >k_list_app){ @@ -149,6 +140,7 @@ void MainWindow::template_apps_obj(Gtk::IconView *icon, Glib::RefPtrset_model(gtk_list_app); icon->set_markup_column(m_Columns.m_col_description); icon->set_pixbuf_column(m_Columns.m_col_pixbuf); + //icon->set_tooltip_column(m_Columns.app_name_exec); } @@ -209,6 +201,7 @@ void MainWindow::event(){ btnStartMenuOK->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::start_menu_entry_app)); btnStartMenuExit->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::close_start_menu)); btnStartMenuOK->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::ok_close_entry_app)); + iconGraphics->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Graphics)); iconTools->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Tools)); iconInternet->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Internet)); iconMultimedia->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Multimedia)); @@ -264,10 +257,10 @@ void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtrget_iter(path); Gtk::TreeModel::Row row = *iter; - //const std::string filename = row[m_Columns.m_col_filename]; + auto app_name_exec = row[m_Columns.app_name_exec]; const Glib::ustring description = row[m_Columns.m_col_description]; - name_app = description; - txtCmd->set_text(name_app); + txtCmd->set_text(app_name_exec); + name_app = txtCmd->get_text(); } } @@ -332,54 +325,54 @@ void MainWindow::get_path_filemaneg(){ } } -void MainWindow::tempalte_row(string name, string path, Glib::RefPtr &dtk_list){ +void MainWindow::tempalte_row(string Name, string Exec, string path , Glib::RefPtr &dtk_list){ Gtk::TreeModel::Row row = *(dtk_list->append()); row[m_Columns.m_col_filename] = path; - row[m_Columns.m_col_description] = name; + row[m_Columns.m_col_description] = Name; + row[m_Columns.app_name_exec] = Exec; if (std::ifstream(path)){ row[m_Columns.m_col_pixbuf] = Gdk::Pixbuf::create_from_file(path); } else{ - path = "/usr/share/icons/Faenza/emblems/32/emblem-danger.png"; + path = "/usr/share/icons/Faenza/emblems/16/emblem-danger.png"; row[m_Columns.m_col_pixbuf] = Gdk::Pixbuf::create_from_file(path); } } void MainWindow::open_list_app(){ string path = ""; - for ( const auto &str_app : list_app){ - for ( const auto &str_categor : str_app.Categories){ - path = "/usr/share/icons/hicolor/32x32/apps/" + str_app.Icon + ".png"; - cout << str_categor << endl; + for ( const auto &st_app : list_app){ + for ( const auto &str_categor : st_app.Categories){ + path = "/usr/share/icons/hicolor/16x16/apps/" + st_app.Icon + ".png"; if (str_categor=="Graphics"){ - this->tempalte_row(str_app.Name, path, list_Graphics); + this->tempalte_row(st_app.Name,st_app.Exec, path, list_Graphics); } else if (str_categor=="Utility"){ - this->tempalte_row(str_app.Name, path, list_Tools); + this->tempalte_row(st_app.Name,st_app.Exec, path, list_Tools); } else if (str_categor=="Network"){ - this->tempalte_row(str_app.Name, path, list_Internet); + this->tempalte_row(st_app.Name,st_app.Exec, path,list_Internet); } else if (str_categor=="Multimedia" || str_categor== "Video" || str_categor== "Player" || str_categor== "AudioVideo"){ - this->tempalte_row(str_app.Name, path, list_Multimedia); + this->tempalte_row(st_app.Name,st_app.Exec, path, list_Multimedia); } else if (str_categor=="Settings"){ - this->tempalte_row(str_app.Name, path, list_Settings); + this->tempalte_row(st_app.Name,st_app.Exec, path, list_Settings); } else if (str_categor=="Education"){ - this->tempalte_row(str_app.Name, path, list_Education); + this->tempalte_row(st_app.Name,st_app.Exec, path, list_Education); } else if (str_categor=="Office"){ - this->tempalte_row(str_app.Name, path, list_Office); + this->tempalte_row(st_app.Name,st_app.Exec, path, list_Office); } else if (str_categor=="Other"){ - this->tempalte_row(str_app.Name, path, list_Other); + this->tempalte_row(st_app.Name,st_app.Exec, path, list_Other); } else if (str_categor=="Development"){ - this->tempalte_row(str_app.Name, path, list_Development); + this->tempalte_row(st_app.Name,st_app.Exec, path, list_Development); } else if (str_categor=="System"){ - this->tempalte_row(str_app.Name, path, list_System); + this->tempalte_row(st_app.Name,st_app.Exec, path, list_System); } } diff --git a/source/ublexec.h b/source/ublexec.h index 362a867..4b89d16 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -89,7 +89,7 @@ public: void select_Graphics(); void tmp_desktop(string cmd_name); void on_item_activated(const Gtk::TreeModel::Path& path); - void tempalte_row(string name, string path, Glib::RefPtr &dtk_list); + void tempalte_row(string Name, string Exec, string path , Glib::RefPtr &dtk_list); void tempate_icon_select(Gtk::IconView *icon, Glib::RefPtr >k_list); void ok_close_entry_app(); void select_Tools(); @@ -113,11 +113,15 @@ public: add(m_col_filename); add(m_col_description); add(m_col_pixbuf); + add(app_name_exec); + } Gtk::TreeModelColumn m_col_filename; Gtk::TreeModelColumn m_col_description; + Gtk::TreeModelColumn app_name_exec; Gtk::TreeModelColumn > m_col_pixbuf; + }; ModelColumns m_Columns; @@ -148,7 +152,6 @@ public: Gtk::Label *lblMessageError; Gtk::Button *btnStartMenuOK; Gtk::Button *btnStartMenuExit; - Gtk::Box *boxlistProgramm; Gtk::Window *dialogStartMenu; Gtk::Box *boxColor; Gtk::Label *lblInfoHead; diff --git a/ublexec.glade b/ublexec.glade index 458368a..a04c7f9 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -9,7 +9,7 @@ 10 - 200 + 500 400 False @@ -35,360 +35,379 @@ True in - - True + False + 5 + 5 + 5 + 5 + 5 + natural - + True False - vertical - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Графика - - - False - True - 0 - - - - - True - True - 6 - 75 - 1 - 1 - True - - - False - True - 1 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Инструменты - - - False - True - 2 - - - - - True - True - 1 - 1 - 1 - - - False - True - 3 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Интернет - - - False - True - 4 - - - - - True - True - 1 - 1 - 1 - - - False - True - 5 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Мультимедиа - - - False - True - 6 - - - - - True - True - 1 - 1 - 1 - - - False - True - 7 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Настройки - - - False - True - 8 - - - - - True - True - 1 - 1 - 1 - - - False - True - 9 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Образование - - - False - True - 10 - - - - - True - True - 1 - 1 - 1 - - - False - True - 11 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Офис - - - False - True - 12 - - - - - True - True - 1 - 1 - 1 - - - False - True - 13 - - - - - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Прочие - - - False - True - 14 - - - - - True - True - 1 - 1 - 1 - - - False - True - 15 - - + 1 + 1 + 5 + 0 + etched-out - + True False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Разработка - - - False - True - 16 - - - - - True - True - 1 - 1 - 1 + 12 + + + True + False + vertical + + + True + False + start + Графика + + + False + True + 0 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 1 + + + + + True + False + start + Инструменты + + + False + True + 2 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 3 + + + + + True + False + start + Интернет + + + False + True + 4 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 5 + + + + + True + False + start + Мультимедия + + + False + True + 6 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 7 + + + + + True + False + start + Настройки + + + False + True + 8 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 9 + + + + + True + False + start + Образование + + + False + True + 10 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 11 + + + + + True + False + start + Офис + + + False + True + 12 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 13 + + + + + True + False + start + Прочее + + + False + True + 14 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 15 + + + + + True + False + start + Разработка + + + False + True + 16 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 17 + + + + + True + False + start + Система + + + False + True + 18 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 19 + + + + + - - False - True - 17 - - - + + True False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - Система - - False - True - 18 - - - - - True - True - 1 - 1 - 1 - - - False - True - 19 - + + + True From b38ffcb1de5478adb14b1d828c1adbbba51a9062 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Thu, 2 Feb 2023 13:34:28 +0600 Subject: [PATCH 05/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=B1=D0=B0=D0=B3=20=D1=81=20=D0=B4=D1=83?= =?UTF-8?q?=D0=B1=D0=BB=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5?= =?UTF-8?q?=D0=BC=20=D0=B8=D0=BA=D0=BE=D0=BD=D0=BE=D0=BA=20=D0=BF=D1=80?= =?UTF-8?q?=D0=B8=D0=BB=D0=BE=D0=B6=D0=B5=D0=BD=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 43 +++++++++++++++++++++++++++++++------------ source/ublexec.h | 6 ++++-- 2 files changed, 35 insertions(+), 14 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index d60a60a..0782862 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -120,20 +120,12 @@ void MainWindow::get_builder(){ builder->get_widget("iconDevelopment", iconDevelopment); builder->get_widget("iconSystem", iconSystem); builder->get_widget("lblSystem", lblSystem); - this->template_apps_obj(iconGraphics, list_Graphics); - this->template_apps_obj(iconTools, list_Tools); - this->template_apps_obj(iconInternet, list_Internet); - this->template_apps_obj(iconMultimedia, list_Multimedia); - this->template_apps_obj(iconSettings, list_Settings); - this->template_apps_obj(iconEducation, list_Education); - this->template_apps_obj(iconOffice, list_Office); - this->template_apps_obj(iconOther, list_Other); - this->template_apps_obj(iconDevelopment, list_Development); - this->template_apps_obj(iconSystem, list_System); } + + void MainWindow::template_apps_obj(Gtk::IconView *icon, Glib::RefPtr >k_list_app){ gtk_list_app = Gtk::ListStore::create(m_Columns); gtk_list_app->set_sort_column(m_Columns.m_col_description, Gtk::SORT_ASCENDING); @@ -199,7 +191,7 @@ void MainWindow::event(){ cbxExecuteEpriority->signal_toggled().connect(sigc::mem_fun(*this, &MainWindow::activ_or_block_execute_epriority)); btnMessageErrorOk->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::message_gui_close)); btnStartMenuOK->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::start_menu_entry_app)); - btnStartMenuExit->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::close_start_menu)); + btnStartMenuExit->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::close_entry_app)); btnStartMenuOK->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::ok_close_entry_app)); iconGraphics->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Graphics)); iconTools->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Tools)); @@ -215,7 +207,22 @@ void MainWindow::event(){ } +void MainWindow::icon_clear(){ + list_Graphics->clear(); + list_Tools->clear(); + list_Internet->clear(); + list_Multimedia->clear(); + list_Settings->clear(); + list_Education->clear(); + list_Graphics->clear(); + list_Office->clear(); + list_Other->clear(); + list_Development->clear(); + list_System->clear(); +} + void MainWindow::ok_close_entry_app(){ + this->icon_clear(); dialogStartMenu->hide(); } @@ -291,7 +298,8 @@ void MainWindow::settings(){ rbSudo->set_sensitive(false); } -void MainWindow::close_start_menu(){ +void MainWindow::close_entry_app(){ + this->icon_clear(); dialogStartMenu->hide(); } @@ -340,6 +348,17 @@ void MainWindow::tempalte_row(string Name, string Exec, string path , Glib::Ref } void MainWindow::open_list_app(){ + this->template_apps_obj(iconGraphics, list_Graphics); + + this->template_apps_obj(iconTools, list_Tools); + this->template_apps_obj(iconInternet, list_Internet); + this->template_apps_obj(iconMultimedia, list_Multimedia); + this->template_apps_obj(iconSettings, list_Settings); + this->template_apps_obj(iconEducation, list_Education); + this->template_apps_obj(iconOffice, list_Office); + this->template_apps_obj(iconOther, list_Other); + this->template_apps_obj(iconDevelopment, list_Development); + this->template_apps_obj(iconSystem, list_System); string path = ""; for ( const auto &st_app : list_app){ for ( const auto &str_categor : st_app.Categories){ diff --git a/source/ublexec.h b/source/ublexec.h index 4b89d16..8abbcf9 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -68,7 +68,7 @@ public: void localization(); void event(); void settings(); - void close_start_menu(); + void close_entry_app(); void start_menu_entry_app(); void message_gui_close(); void activ_or_block_execute_epriority(); @@ -101,6 +101,7 @@ public: void select_Other(); void select_Development(); void select_System(); + void icon_clear(); vector split(const std::string &s, char delim); public: @@ -220,7 +221,8 @@ public: vector Categories; }; list list_app; - set set_categories; + set set_categories; + int index_exec_gui_apps = 0; }; From 1fbcb692cef29c5b1bd622a4be947eff84c1bce3 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Thu, 2 Feb 2023 14:37:43 +0600 Subject: [PATCH 06/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=B1=D0=B0=D0=B3=20=D1=81=20=D1=84=D0=BB?= =?UTF-8?q?=D0=B0=D0=B3=D0=B0=D0=BC=D0=B8=20=D0=B7=D0=B0=D1=83=D0=BF=D1=81?= =?UTF-8?q?=D0=BA=D0=B0=20=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=BC?= =?UTF-8?q?=D0=B0,=20=D1=84=D0=BB=D0=B0=D0=B3=D0=B8=20=D1=83=D0=B4=D0=B0?= =?UTF-8?q?=D0=BB=D1=8F=D1=8E=D1=82=D1=81=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 24 +++++++++++++++++++++++- source/ublexec.h | 1 + 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 0782862..5204ecc 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -28,6 +28,7 @@ #include #include #include +#include #include "ublexec.h" using namespace std; @@ -268,6 +269,18 @@ void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtrset_text(app_name_exec); name_app = txtCmd->get_text(); + int len_name_app = name_app.length(); + string array_del[] = {"%f","%F","%d","%D","%n","%N"}; + for (auto &del_sim: array_del){ + cout << del_sim << endl; + str_remove(name_app, del_sim); + if (name_app.length()!=len_name_app){ + txtCmd->set_text(name_app); + break; + } + + } + } } @@ -372,7 +385,7 @@ void MainWindow::open_list_app(){ else if (str_categor=="Network"){ this->tempalte_row(st_app.Name,st_app.Exec, path,list_Internet); } - else if (str_categor=="Multimedia" || str_categor== "Video" || str_categor== "Player" || str_categor== "AudioVideo"){ + else if (str_categor== "AudioVideo"){ this->tempalte_row(st_app.Name,st_app.Exec, path, list_Multimedia); } else if (str_categor=="Settings"){ @@ -580,6 +593,15 @@ vector MainWindow::split(const std::string &s, char delim) { return elems; } +string MainWindow::str_remove(std::string& source, const std::string& to_remove){ + auto begin = source.find(to_remove); + if (begin!=std::string::npos){ + int len_to_remove = to_remove.length(); + source.erase(begin, begin+len_to_remove); + } + return source; +} + void MainWindow::pars_apps(){ if (list_app.size()!=0){return;} namespace fs = std::filesystem; diff --git a/source/ublexec.h b/source/ublexec.h index 8abbcf9..a7f5ca3 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -102,6 +102,7 @@ public: void select_Development(); void select_System(); void icon_clear(); + string str_remove(std::string& source, const std::string& to_remove); vector split(const std::string &s, char delim); public: From 046081fcabafb1f5c647d7ab3eed2242ab5c4124 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Thu, 2 Feb 2023 16:38:56 +0600 Subject: [PATCH 07/31] =?UTF-8?q?=D0=A0=D0=B5=D1=88=D0=B5=D0=BD=D0=B0=20?= =?UTF-8?q?=D0=BF=D1=80=D0=BE=D0=B1=D0=BB=D0=B5=D0=BC=D0=B0=20=D1=81=20?= =?UTF-8?q?=D0=BA=D0=BE=D0=BF=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4=D1=8B=20=D0=B2=20?= =?UTF-8?q?=D0=BF=D0=BE=D0=BB=D0=B5=20=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4?= =?UTF-8?q?=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 45 +++++++++++++++++++++++++++++++++++++-------- source/ublexec.h | 15 ++++++++++++++- style.css | 3 ++- ublexec.glade | 4 +--- 4 files changed, 54 insertions(+), 13 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 5204ecc..121f5f3 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -259,8 +259,10 @@ void MainWindow::select_System(){ } void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtr >k_list){ auto selected = (*icon).get_selected_items(); + if(!selected.empty()) { + this->unselect_icon(icon); const Gtk::TreeModel::Path& path = *selected.begin(); Gtk::TreeModel::iterator iter = gtk_list->get_iter(path); Gtk::TreeModel::Row row = *iter; @@ -272,7 +274,6 @@ void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtrset_text(name_app); @@ -285,7 +286,18 @@ void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtrunselect_all(); + } + else{ + cout << "11111" << endl; + } + } +} void MainWindow::settings(){ this->pars_apps(); @@ -309,6 +321,7 @@ void MainWindow::settings(){ rbPkexec->set_sensitive(false); rbSu->set_sensitive(false); rbSudo->set_sensitive(false); + } void MainWindow::close_entry_app(){ @@ -420,7 +433,9 @@ void MainWindow::start_cmd(){ string str_variants_root = ""; string str_nice_cmd = ""; string user_cmd = ""; - user_cmd = txtCmd->get_text(); + if (name_app.length()==0 && path_file.length()==0){ + user_cmd = txtCmd->get_text(); + } //========================================= if (chbAnotherUser->get_active()){ if (geteuid()!=0){ @@ -473,8 +488,9 @@ void MainWindow::start_cmd(){ //========================================= //========================================= - if (user_cmd.length()==0){ + if (user_cmd.length()==0 && name_app.length()==0 && path_file.length()==0){ messageError->show(); + return; } if (chbTerminal->get_active()){ @@ -485,19 +501,32 @@ void MainWindow::start_cmd(){ } string cmd = ""; if (path_file!=""){ - - cmd = "" + str_cmd_terminal + str_variants_root + str_nice_cmd + " xdg-open '" + user_cmd + "' &"; + cmd = "" + str_cmd_terminal + str_variants_root + str_nice_cmd + " xdg-open '" + path_file + "' "; + //cmd = format_cmd(str_cmd_terminal,str_variants_root,str_nice_cmd,path_file, cmd); + } + else if (name_app!=""){ + cmd = "" + str_cmd_terminal + str_variants_root + str_nice_cmd + name_app; + //cmd = format_cmd(str_cmd_terminal,str_variants_root,str_nice_cmd,path_file, cmd); } else{ - - cmd = "" + str_cmd_terminal + str_variants_root + str_nice_cmd + user_cmd + " &"; + user_cmd = this->str_remove(user_cmd,str_cmd_terminal); + user_cmd = this->str_remove(user_cmd,str_variants_root); + user_cmd = this->str_remove(user_cmd,str_nice_cmd); + string amp = " &"; + user_cmd = this->str_remove(user_cmd, amp); + cmd = "" + str_cmd_terminal + str_variants_root + str_nice_cmd + user_cmd; + //cmd = format_cmd(str_cmd_terminal,str_variants_root,str_nice_cmd,path_file, cmd); } txtCmd->set_text(cmd); + cmd=cmd+ " &"; system(cmd.c_str()); path_file_name=""; path_file=""; + name_app=""; } + + void MainWindow::changed_user(){ Glib::ustring entry_user = cmbUser->get_active_text(); if (geteuid()==0 || entry_user == "root"){ diff --git a/source/ublexec.h b/source/ublexec.h index a7f5ca3..59261e6 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -102,6 +102,7 @@ public: void select_Development(); void select_System(); void icon_clear(); + void unselect_icon(Gtk::IconView *icon_entry); string str_remove(std::string& source, const std::string& to_remove); vector split(const std::string &s, char delim); @@ -223,7 +224,19 @@ public: }; list list_app; set set_categories; - int index_exec_gui_apps = 0; + int index_exec_gui_apps = 0; + Gtk::IconView* array_icon[10] = { + iconGraphics, + iconTools, + iconInternet, + iconMultimedia, + iconSettings, + iconEducation, + iconOffice, + iconOther, + iconDevelopment, + iconSystem + }; }; diff --git a/style.css b/style.css index d237a01..41a96a0 100644 --- a/style.css +++ b/style.css @@ -3,4 +3,5 @@ } .textHead{ text-shadow: 1px 1px #ffffff; -} \ No newline at end of file +} + diff --git a/ublexec.glade b/ublexec.glade index a04c7f9..e666d14 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -597,8 +597,6 @@ 330 True True - Дата -Формат: ДД.ММ.ГГГГ 5 5 5 @@ -607,7 +605,7 @@ 6 - False + True True 1 From 48ed820d7d9415b2dbcbf4f8721b8a2208a8d258 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Thu, 9 Feb 2023 16:44:33 +0600 Subject: [PATCH 08/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=B4=D0=B8=D0=B7=D0=B0=D0=B9=D0=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 81 +++++++++++++++++++++++++---------------------- source/ublexec.h | 14 ++------ ublexec.glade | 52 +++++++++++++++--------------- ublexec_ru.po | 19 +++++------ 4 files changed, 79 insertions(+), 87 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 121f5f3..867aa94 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -99,7 +99,7 @@ void MainWindow::get_builder(){ builder->get_widget("lblInfoNooPriority", lblInfoNooPriority); builder->get_widget("lblInfoExec", lblInfoExec); builder->get_widget("lblInfoPriority", lblInfoPriority); - builder->get_widget("lblInfoPriority", lblInfoEnterProg); + builder->get_widget("lblInfoEnterProg", lblInfoEnterProg); builder->get_widget("boxColor", boxColor); builder->get_widget("lblGraphics", lblGraphics); builder->get_widget("lblTools", lblTools); @@ -121,6 +121,17 @@ void MainWindow::get_builder(){ builder->get_widget("iconDevelopment", iconDevelopment); builder->get_widget("iconSystem", iconSystem); builder->get_widget("lblSystem", lblSystem); + Gtk::IconView *array_icon[10]; + array_icon[0]=this->iconGraphics; + array_icon[1]=this->iconTools; + array_icon[2]=this->iconInternet; + array_icon[3]=this->iconMultimedia; + array_icon[4]=this->iconSettings; + array_icon[5]=this->iconEducation; + array_icon[6]=this->iconOffice; + array_icon[7]=this->iconOther; + array_icon[8]=this->iconDevelopment; + array_icon[9]=this->iconSystem; } @@ -133,7 +144,6 @@ void MainWindow::template_apps_obj(Gtk::IconView *icon, Glib::RefPtrset_model(gtk_list_app); icon->set_markup_column(m_Columns.m_col_description); icon->set_pixbuf_column(m_Columns.m_col_pixbuf); - //icon->set_tooltip_column(m_Columns.app_name_exec); } @@ -153,17 +163,17 @@ void MainWindow::localization(){ this->set_title(gettext("ublexec")); btnStart->set_label(gettext("Run")); wndChooseFileWallpaper->set_title(gettext("Please select File")); - dialogStartMenu->set_title(gettext("Warning!")); - lblInfoHead->set_text(gettext("Running applications as a user with a\n specified priority")); + dialogStartMenu->set_title(gettext("Selecting Programs")); + lblInfoHead->set_text(gettext("Running applications as a user with a\nspecified priority")); lblinfoCmd->set_text(gettext("Command Line")); - lblInfoTime->set_text(gettext("Team:")); + lblInfoTime->set_text(gettext("Team")); labInfoExecutTerm->set_text(gettext("Run in the terminal emulator")); lblInfoUser->set_text(gettext("User")); lblInfoUserOther->set_text(gettext("Run as another user")); - lblInfoUserName->set_text(gettext("User Name:")); - lblInfoNooPriority->set_text(gettext("Priority:")); + lblInfoUserName->set_text(gettext("User Name")); + lblInfoNooPriority->set_text(gettext("Priority")); lblInfoExec->set_text(gettext("Change startup priority")); - lblInfoPriority->set_text(gettext("Priority:")); + lblInfoPriority->set_text(gettext("Priority")); lblMessageError->set_text(gettext("Select an executable file or program")); lblInfoEnterProg->set_text(gettext("Selecting Programs")); lblGraphics->set_text(gettext("Graphics")); @@ -204,7 +214,7 @@ void MainWindow::event(){ iconOther->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Other)); iconDevelopment->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Development)); iconSystem->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_System)); - + } @@ -228,73 +238,69 @@ void MainWindow::ok_close_entry_app(){ } void MainWindow::select_Graphics(){ - this->tempate_icon_select(iconGraphics,list_Graphics); + this->tempate_icon_select(this->iconGraphics,list_Graphics); } void MainWindow::select_Tools(){ - this->tempate_icon_select(iconTools,list_Tools); + this->tempate_icon_select(this->iconTools,list_Tools); } void MainWindow::select_Internet(){ - this->tempate_icon_select(iconInternet,list_Internet); + this->tempate_icon_select(this->iconInternet,list_Internet); } void MainWindow::select_Multimedia(){ - this->tempate_icon_select(iconMultimedia,list_Multimedia); + this->tempate_icon_select(this->iconMultimedia,list_Multimedia); } void MainWindow::select_Settings(){ - this->tempate_icon_select(iconSettings,list_Settings); + this->tempate_icon_select(this->iconSettings,list_Settings); } void MainWindow::select_Education(){ - this->tempate_icon_select(iconEducation,list_Education); + this->tempate_icon_select(this->iconEducation,list_Education); } void MainWindow::select_Office(){ - this->tempate_icon_select(iconOffice,list_Office); + this->tempate_icon_select(this->iconOffice,list_Office); } void MainWindow::select_Other(){ - this->tempate_icon_select(iconOther,list_Other); + this->tempate_icon_select(this->iconOther,list_Other); } void MainWindow::select_Development(){ - this->tempate_icon_select(iconDevelopment,list_Development); + this->tempate_icon_select(this->iconDevelopment,list_Development); } void MainWindow::select_System(){ - this->tempate_icon_select(iconSystem,list_System); + this->tempate_icon_select(this->iconSystem,list_System); } void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtr >k_list){ auto selected = (*icon).get_selected_items(); - if(!selected.empty()) { this->unselect_icon(icon); const Gtk::TreeModel::Path& path = *selected.begin(); Gtk::TreeModel::iterator iter = gtk_list->get_iter(path); Gtk::TreeModel::Row row = *iter; - auto app_name_exec = row[m_Columns.app_name_exec]; const Glib::ustring description = row[m_Columns.m_col_description]; txtCmd->set_text(app_name_exec); name_app = txtCmd->get_text(); int len_name_app = name_app.length(); - string array_del[] = {"%f","%F","%d","%D","%n","%N"}; + string array_del[] = {"%f","%F","%d","%D","%n","%N","%U"}; for (auto &del_sim: array_del){ str_remove(name_app, del_sim); if (name_app.length()!=len_name_app){ txtCmd->set_text(name_app); break; } - } - - } } void MainWindow::unselect_icon(Gtk::IconView *icon_entry){ - for (Gtk::IconView* &icon : array_icon) { - - if (icon_entry!=icon){ - cout << "22222" << endl; + for (int index=0; index<10; ++index){ + Gtk::IconView *icon = this->array_icon[index]; + printf("%p %p", icon, icon_entry); + if (&icon_entry!=&icon){ + cout << "11111" << endl; //icon->unselect_all(); } else{ - cout << "11111" << endl; + cout << "22222" << endl; } } } @@ -509,21 +515,20 @@ void MainWindow::start_cmd(){ //cmd = format_cmd(str_cmd_terminal,str_variants_root,str_nice_cmd,path_file, cmd); } else{ - user_cmd = this->str_remove(user_cmd,str_cmd_terminal); - user_cmd = this->str_remove(user_cmd,str_variants_root); - user_cmd = this->str_remove(user_cmd,str_nice_cmd); + user_cmd = this->str_remove(user_cmd, str_cmd_terminal); + user_cmd = this->str_remove(user_cmd, str_variants_root); + user_cmd = this->str_remove(user_cmd, str_nice_cmd); string amp = " &"; user_cmd = this->str_remove(user_cmd, amp); cmd = "" + str_cmd_terminal + str_variants_root + str_nice_cmd + user_cmd; - //cmd = format_cmd(str_cmd_terminal,str_variants_root,str_nice_cmd,path_file, cmd); } txtCmd->set_text(cmd); - cmd=cmd+ " &"; + cmd = cmd + " &"; system(cmd.c_str()); - path_file_name=""; - path_file=""; - name_app=""; + path_file_name = ""; + path_file = ""; + name_app = ""; } diff --git a/source/ublexec.h b/source/ublexec.h index 59261e6..3144e5e 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -190,6 +190,7 @@ public: Gtk::IconView *iconOther; Gtk::IconView *iconDevelopment; Gtk::IconView *iconSystem; + Gtk::IconView *iconEntry; Glib::RefPtr list_Graphics; Glib::RefPtr list_Tools; @@ -225,18 +226,7 @@ public: list list_app; set set_categories; int index_exec_gui_apps = 0; - Gtk::IconView* array_icon[10] = { - iconGraphics, - iconTools, - iconInternet, - iconMultimedia, - iconSettings, - iconEducation, - iconOffice, - iconOther, - iconDevelopment, - iconSystem - }; + Gtk::IconView* array_icon[10]; }; diff --git a/ublexec.glade b/ublexec.glade index e666d14..05c68d8 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -21,7 +21,7 @@ True False - Выбор программ + Selecting Programs False @@ -67,7 +67,7 @@ True False start - Графика + Graphics False @@ -99,7 +99,7 @@ True False start - Инструменты + Tools False @@ -131,7 +131,7 @@ True False start - Интернет + Internet False @@ -163,7 +163,7 @@ True False start - Мультимедия + Multimedia False @@ -195,7 +195,7 @@ True False start - Настройки + Settings False @@ -227,7 +227,7 @@ True False start - Образование + Education False @@ -259,7 +259,7 @@ True False start - Офис + Office False @@ -291,7 +291,7 @@ True False start - Прочее + Other False @@ -323,7 +323,7 @@ True False start - Разработка + Development False @@ -355,7 +355,7 @@ True False start - Система + System False @@ -522,8 +522,8 @@ 5 6 6 - Запуск приложений от имени пользователя с -указанным приоритетом + Running applications as a user with a +specified priority @@ -582,7 +582,7 @@ 5 6 6 - Команда: + Team True 0 @@ -722,7 +722,7 @@ True False - Выполнить в эмуляторе терминале + Run in the terminal emulator @@ -745,7 +745,7 @@ True False - Командная строка + Command Line @@ -807,7 +807,7 @@ True False - Выполнить от имени другого пользователя + Run as another user @@ -901,7 +901,7 @@ 5 6 6 - Имя поьзователя: + User Name True 0 @@ -942,7 +942,7 @@ True False - Пользователь + User @@ -1000,7 +1000,7 @@ True False - Изменить приоритет запуска + Change startup priority @@ -1025,7 +1025,7 @@ 5 6 6 - Приоритет: + Priority: True 0 @@ -1113,7 +1113,7 @@ 5 6 6 - 19 (Низкий) + 19 (Low) True 0 @@ -1135,7 +1135,7 @@ 5 6 6 - -20 (Высокий) + -20 (High) True 0 @@ -1175,7 +1175,7 @@ True False - Приоритет + Priority @@ -1194,7 +1194,7 @@ - Запустить + Run True True True @@ -1274,7 +1274,7 @@ 10 10 15 - Выберите исполняемый файл или программу + Select an executable file or program True diff --git a/ublexec_ru.po b/ublexec_ru.po index b718cd2..9259859 100644 --- a/ublexec_ru.po +++ b/ublexec_ru.po @@ -45,11 +45,11 @@ msgstr "Выход" msgid "Selecting Programs" msgstr "Выбор программ" -msgid "Running applications as a user with a\n specified priority" -msgstr "Запуск приложений от имени пользователя с\n указанным приоритетом" +msgid "Running applications as a user with a\nspecified priority" +msgstr "Запуск приложений от имени пользователя с\nуказанным приоритетом" -msgid "Team:" -msgstr "Команда:" +msgid "Team" +msgstr "Команда" msgid "Run in the terminal emulator" msgstr "Выполнить в эмуляторе терминале" @@ -69,8 +69,8 @@ msgstr "su" msgid "sudo" msgstr "sudo" -msgid "User Name:" -msgstr "Имя поьзователя:" +msgid "User Name" +msgstr "Имя поьзователя" msgid "User" msgstr "Пользователь" @@ -78,8 +78,8 @@ msgstr "Пользователь" msgid "Change startup priority" msgstr "Изменить приоритет запуска" -msgid "Priority:" -msgstr "Приоритет:" +msgid "Priority" +msgstr "Приоритет" msgid "19 (Low)" msgstr "19 (Низкий)" @@ -87,9 +87,6 @@ msgstr "19 (Низкий)" msgid "-20 (High)" msgstr "-20 (Высокий)" -msgid "Priority" -msgstr "Приоритет" - msgid "Run" msgstr "Запустить" From f68a0ad532919f36ffbbff0eb899dd175751e7b2 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Thu, 9 Feb 2023 17:02:50 +0600 Subject: [PATCH 09/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=B1=D0=B0=D0=B3=20=D1=81=20=D0=B2=D1=8B?= =?UTF-8?q?=D0=B4=D0=B5=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=D0=BC=20=D0=BF=D1=80?= =?UTF-8?q?=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 21 +++++++++++++-------- source/ublexec.h | 1 + 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 867aa94..1dd39c7 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -121,7 +121,13 @@ void MainWindow::get_builder(){ builder->get_widget("iconDevelopment", iconDevelopment); builder->get_widget("iconSystem", iconSystem); builder->get_widget("lblSystem", lblSystem); - Gtk::IconView *array_icon[10]; + + + +} + + +void MainWindow::set_icon_array(){ array_icon[0]=this->iconGraphics; array_icon[1]=this->iconTools; array_icon[2]=this->iconInternet; @@ -132,12 +138,9 @@ void MainWindow::get_builder(){ array_icon[7]=this->iconOther; array_icon[8]=this->iconDevelopment; array_icon[9]=this->iconSystem; - - } - void MainWindow::template_apps_obj(Gtk::IconView *icon, Glib::RefPtr >k_list_app){ gtk_list_app = Gtk::ListStore::create(m_Columns); gtk_list_app->set_sort_column(m_Columns.m_col_description, Gtk::SORT_ASCENDING); @@ -268,9 +271,12 @@ void MainWindow::select_System(){ this->tempate_icon_select(this->iconSystem,list_System); } void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtr >k_list){ + + auto selected = (*icon).get_selected_items(); if(!selected.empty()) - { + { + this->set_icon_array(); this->unselect_icon(icon); const Gtk::TreeModel::Path& path = *selected.begin(); Gtk::TreeModel::iterator iter = gtk_list->get_iter(path); @@ -294,10 +300,9 @@ void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtrarray_icon[index]; - printf("%p %p", icon, icon_entry); - if (&icon_entry!=&icon){ + if (icon_entry!=icon){ cout << "11111" << endl; - //icon->unselect_all(); + icon->unselect_all(); } else{ cout << "22222" << endl; diff --git a/source/ublexec.h b/source/ublexec.h index 3144e5e..2154caa 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -102,6 +102,7 @@ public: void select_Development(); void select_System(); void icon_clear(); + void set_icon_array(); void unselect_icon(Gtk::IconView *icon_entry); string str_remove(std::string& source, const std::string& to_remove); vector split(const std::string &s, char delim); From 94ebe29dc6cdc0c0bb49b0f2a0f0d7cdf710c4a4 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Fri, 10 Feb 2023 20:51:41 +0600 Subject: [PATCH 10/31] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20tooltip,=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D1=8B=20=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4?= =?UTF-8?q?=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 46 ++++++++++++++-------------------------------- source/ublexec.h | 23 +---------------------- 2 files changed, 15 insertions(+), 54 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 1dd39c7..bbd3f3f 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -35,7 +35,6 @@ using namespace std; string path_app= "/usr/bin/"; string path_glade= "/usr/share/ublexec/ui/ublexec.glade"; string path_css = "/usr/share/ublexec/css/style.css"; -//string path_app = "/home/superadmin/Документы/Проект/ubconfig_new/ubcall/"; string app_name = "ublexec"; CmdArgParser::CmdArgParser(const std::string& p_name, const std::string& p_description, const std::string& p_help) : Glib::OptionGroup{p_name, p_description, p_help} { @@ -49,18 +48,18 @@ CmdArgParser::CmdArgParser(const std::string& p_name, const std::string& p_descr ::Window CmdArgParser::GetSocketID() const{ return m_socketID; } + MainWindow::MainWindow(BaseObjectType* obj, Glib::RefPtr const& builder) : Gtk::ApplicationWindow(obj), builder{builder} { this->builder = builder; this->settings(); - } +} + MainWindow::MainWindow(Glib::RefPtr const& builder) { this->builder = builder; this->settings(); } - - void MainWindow::get_builder(){ builder->get_widget("btnFilemaneg", btnFilemaneg); builder->get_widget("btnListApp", btnListApp); @@ -80,7 +79,6 @@ void MainWindow::get_builder(){ builder->get_widget("btnFilemangerOk", btnFilemangerOk); builder->get_widget("lblTimeEpriorityLow", lblTimeEpriorityLow); builder->get_widget("lblTime4EpriorityHigh", lblTime4EpriorityHigh); - //builder->get_widget("lblUserName", lblUserName); builder->get_widget("messageError", messageError); builder->get_widget("lblMessageError", lblMessageError); builder->get_widget("btnMessageErrorOk", btnMessageErrorOk); @@ -121,12 +119,8 @@ void MainWindow::get_builder(){ builder->get_widget("iconDevelopment", iconDevelopment); builder->get_widget("iconSystem", iconSystem); builder->get_widget("lblSystem", lblSystem); - - - } - void MainWindow::set_icon_array(){ array_icon[0]=this->iconGraphics; array_icon[1]=this->iconTools; @@ -217,8 +211,6 @@ void MainWindow::event(){ iconOther->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Other)); iconDevelopment->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Development)); iconSystem->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_System)); - - } void MainWindow::icon_clear(){ @@ -271,8 +263,6 @@ void MainWindow::select_System(){ this->tempate_icon_select(this->iconSystem,list_System); } void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtr >k_list){ - - auto selected = (*icon).get_selected_items(); if(!selected.empty()) { @@ -301,12 +291,8 @@ void MainWindow::unselect_icon(Gtk::IconView *icon_entry){ for (int index=0; index<10; ++index){ Gtk::IconView *icon = this->array_icon[index]; if (icon_entry!=icon){ - cout << "11111" << endl; icon->unselect_all(); } - else{ - cout << "22222" << endl; - } } } @@ -332,8 +318,6 @@ void MainWindow::settings(){ rbPkexec->set_sensitive(false); rbSu->set_sensitive(false); rbSudo->set_sensitive(false); - - } void MainWindow::close_entry_app(){ this->icon_clear(); @@ -358,9 +342,11 @@ void MainWindow::activ_or_block_execute_epriority(){ void MainWindow::open_filemaneg(){ wndChooseFileWallpaper->show(); } + void MainWindow::close_filemaneg(){ wndChooseFileWallpaper->hide(); } + void MainWindow::get_path_filemaneg(){ path_file = wndChooseFileWallpaper->get_filename(); if (path_file.length()==0){} @@ -386,7 +372,6 @@ void MainWindow::tempalte_row(string Name, string Exec, string path , Glib::Ref void MainWindow::open_list_app(){ this->template_apps_obj(iconGraphics, list_Graphics); - this->template_apps_obj(iconTools, list_Tools); this->template_apps_obj(iconInternet, list_Internet); this->template_apps_obj(iconMultimedia, list_Multimedia); @@ -434,12 +419,10 @@ void MainWindow::open_list_app(){ } } dialogStartMenu->show_all(); - } void MainWindow::start_cmd(){ - //txtCmd->set_text(""); string str_cmd_terminal=""; string str_variants_root = ""; string str_nice_cmd = ""; @@ -477,7 +460,7 @@ void MainWindow::start_cmd(){ str_variants_root="su --user " + cmbUser->get_active_text() + " "; } else{ - str_variants_root="su" ; + str_variants_root="su"; } } else if (rbSudo->get_active()){ @@ -530,7 +513,6 @@ void MainWindow::start_cmd(){ txtCmd->set_text(cmd); cmd = cmd + " &"; system(cmd.c_str()); - path_file_name = ""; path_file = ""; name_app = ""; @@ -556,15 +538,12 @@ void MainWindow::changed_user(){ lblTime4EpriorityHigh->set_text("0 (Высокий)"); } } -//void MainWindow::execute_terminal(){} -//void MainWindow::execute_another_User(){} + void MainWindow::activ_or_block_other_user(){ bool flag = chbAnotherUser->get_active(); cmbUser->set_active(0); cmbUser->set_sensitive(flag); - lblInfoUserName->set_sensitive(flag); - //lblInfoUserOther->set_sensitive(flag); - + lblInfoUserName->set_sensitive(flag); if (flag_pkexec==true){ rbPkexec->set_sensitive(flag); } @@ -575,12 +554,15 @@ void MainWindow::activ_or_block_other_user(){ rbSudo->set_sensitive(flag); } } + void MainWindow::change_scale_priority(){ scalePriority->set_value(spinPriority->get_value_as_int()); } + void MainWindow::change_spin_priority(){ spinPriority->set_value(scalePriority->get_value()); } + void MainWindow::pars_dir_bin(){ namespace fs = std::filesystem; std::string path = "/bin"; @@ -601,9 +583,10 @@ void MainWindow::pars_dir_bin(){ rbSu->set_sensitive(flag_su); rbSudo->set_sensitive(flag_sudo); } + void MainWindow::pars_users(){ while (true) { - errno = 0; // so we can distinguish errors from no more entries + errno = 0; passwd* entry = getpwent(); if (!entry) { if (errno) { @@ -616,7 +599,6 @@ void MainWindow::pars_users(){ cmbUser->append(entry->pw_name); } } - cmbUser->append("root"); endpwent(); } @@ -627,7 +609,6 @@ vector MainWindow::split(const std::string &s, char delim) { std::vector elems; while (std::getline(ss, item, delim)) { elems.push_back(item); - // elems.push_back(std::move(item)); // if C++11 (based on comment from @mchiasson) } return elems; } @@ -687,6 +668,7 @@ void MainWindow::pars_apps(){ list_app.push_back(App); } } + SettingsPlug::SettingsPlug(::Window p_socketID, Glib::RefPtr builder) : Gtk::Plug{p_socketID} { MainWindow* wnd = nullptr; diff --git a/source/ublexec.h b/source/ublexec.h index 2154caa..7e79849 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -36,28 +36,17 @@ extern string app_name; extern string path_glade; extern string path_css; - class CmdArgParser : public Glib::OptionGroup { - public: - CmdArgParser(const std::string& p_name, const std::string& p_description, const std::string& p_help); - ::Window GetSocketID() const; private: - int m_socketID = 0; }; -// This is what is going to be plugged into xfce4-settings-manager: -// -// Documented here: -// -// https://developer.gnome.org/gtkmm-tutorial/3.22/sec-plugs-sockets-example.html.en -// class MainWindow : public Gtk::ApplicationWindow { public: MainWindow(BaseObjectType* obj, Glib::RefPtr const& builder); @@ -106,12 +95,10 @@ public: void unselect_icon(Gtk::IconView *icon_entry); string str_remove(std::string& source, const std::string& to_remove); vector split(const std::string &s, char delim); - public: class ModelColumns : public Gtk::TreeModel::ColumnRecord { public: - ModelColumns() { add(m_col_filename); @@ -120,14 +107,11 @@ public: add(app_name_exec); } - Gtk::TreeModelColumn m_col_filename; Gtk::TreeModelColumn m_col_description; Gtk::TreeModelColumn app_name_exec; Gtk::TreeModelColumn > m_col_pixbuf; - }; - ModelColumns m_Columns; public: Glib::RefPtr builder; @@ -203,10 +187,6 @@ public: Glib::RefPtr list_Other; Glib::RefPtr list_Development; Glib::RefPtr list_System; - - - - public: string execute_cmd = ""; string path_file = ""; @@ -222,8 +202,7 @@ public: string Icon; string MimeType; string Type; - vector Categories; - }; + vector Categories;}; list list_app; set set_categories; int index_exec_gui_apps = 0; From 5c82addd9e25237ee20d39ea414bdffffec2455b Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Tue, 14 Feb 2023 10:11:58 +0600 Subject: [PATCH 11/31] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B0=20=D0=B2=D0=BE=D0=B7=D0=BC=D0=BE=D0=B6=D0=BD?= =?UTF-8?q?=D0=BE=D1=81=D1=82=D1=8C=20=D0=B7=D0=B0=D0=BF=D1=83=D1=81=D0=BA?= =?UTF-8?q?=D0=B0=D1=82=D1=8C=20=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC?= =?UTF-8?q?=D0=BC=D1=8B=20=D1=81=20pkexec?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nohup.out | 80 +++++++++++++++++++++++++++++++++++++++++++ source/CMakeLists.txt | 7 ++-- source/main.cc | 21 ++---------- source/ublexec.cc | 40 ++++++++++------------ source/ublexec.h | 29 ++++------------ ublexec.glade | 2 +- ublexec_ru.po | 2 +- 7 files changed, 114 insertions(+), 67 deletions(-) create mode 100644 nohup.out diff --git a/nohup.out b/nohup.out new file mode 100644 index 0000000..cf235df --- /dev/null +++ b/nohup.out @@ -0,0 +1,80 @@ +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Refusing to render service to dead parents. +Gtk-Message: 14:21:06.968: Failed to load module "colorreload-gtk-module" +Gtk-Message: 14:21:06.968: Failed to load module "window-decorations-gtk-module" +Gtk-Message: 14:21:14.239: Failed to load module "colorreload-gtk-module" +Gtk-Message: 14:21:14.240: Failed to load module "window-decorations-gtk-module" +Gtk-Message: 14:21:14.318: Failed to load module "colorreload-gtk-module" +Gtk-Message: 14:21:14.318: Failed to load module "window-decorations-gtk-module" +Gtk-Message: 14:21:49.400: Failed to load module "colorreload-gtk-module" +Gtk-Message: 14:21:49.401: Failed to load module "window-decorations-gtk-module" +Gtk-Message: 14:21:49.463: Failed to load module "colorreload-gtk-module" +Gtk-Message: 14:21:49.463: Failed to load module "window-decorations-gtk-module" +javaldx: Could not find a Java Runtime Environment! +Warning: failed to read path from javaldx +Gtk-Message: 14:22:25.948: Failed to load module "colorreload-gtk-module" +Gtk-Message: 14:22:25.949: Failed to load module "window-decorations-gtk-module" +Gtk-Message: 14:22:41.171: Failed to load module "colorreload-gtk-module" +Gtk-Message: 14:22:41.171: Failed to load module "window-decorations-gtk-module" +Gtk-Message: 14:22:41.236: Failed to load module "colorreload-gtk-module" +Gtk-Message: 14:22:41.237: Failed to load module "window-decorations-gtk-module" +Gtk-Message: 14:22:50.959: Failed to load module "colorreload-gtk-module" +Gtk-Message: 14:22:50.959: Failed to load module "window-decorations-gtk-module" +Gtk-Message: 14:22:51.022: Failed to load module "colorreload-gtk-module" +Gtk-Message: 14:22:51.023: Failed to load module "window-decorations-gtk-module" +xhost: bad hostname "superadmin" +X Error of failed request: BadValue (integer parameter out of range for operation) + Major opcode of failed request: 109 (X_ChangeHosts) + Value in failed request: 0xa + Serial number of failed request: 7 + Current serial number in output stream: 9 +localuser: being added to access control list +xhost: bad hostname "superadmin" +X Error of failed request: BadValue (integer parameter out of range for operation) + Major opcode of failed request: 109 (X_ChangeHosts) + Value in failed request: 0xa + Serial number of failed request: 7 + Current serial number in output stream: 9 +localuser: being added to access control list +xhost: bad hostname "superadmin" +X Error of failed request: BadValue (integer parameter out of range for operation) + Major opcode of failed request: 109 (X_ChangeHosts) + Value in failed request: 0xa + Serial number of failed request: 7 + Current serial number in output stream: 9 +localuser: being added to access control list +xhost: bad hostname "superadmin" +X Error of failed request: BadValue (integer parameter out of range for operation) + Major opcode of failed request: 109 (X_ChangeHosts) + Value in failed request: 0xa + Serial number of failed request: 7 + Current serial number in output stream: 9 +localuser: being added to access control list +xhost: bad hostname "superadmin" +X Error of failed request: BadValue (integer parameter out of range for operation) + Major opcode of failed request: 109 (X_ChangeHosts) + Value in failed request: 0xa + Serial number of failed request: 7 + Current serial number in output stream: 9 +localuser: being added to access control list diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index d7bb690..82357c3 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -7,9 +7,12 @@ pkg_check_modules(GTK REQUIRED gtkmm-3.0) include_directories(${GTK_INCLUDE_DIRS}) link_directories(${GTK_LIBRARY_DIRS}) add_definitions(${GTK_CFLAGS_OTHER}) +find_package(Threads REQUIRED) #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wall -Wextra -Werror -Wmissing-declarations -fdiagnostics-color=always -std=c++2a -g") -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wmissing-declarations -fdiagnostics-color=always -g") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wmissing-declarations -fdiagnostics-color=always") +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_STANDARD_REQUIRED ON) set(SOURCE_FILES main.cc @@ -21,5 +24,5 @@ set(LIBRARIES pthread) add_executable(ublexec ${SOURCE_FILES}) -target_link_libraries(ublexec ${LIBRARIES}) +target_link_libraries(ublexec ${LIBRARIES} Threads::Threads) install(TARGETS ublexec DESTINATION bin) diff --git a/source/main.cc b/source/main.cc index 9c08001..7a27f08 100644 --- a/source/main.cc +++ b/source/main.cc @@ -1,32 +1,15 @@ +#include #include #include -#include -#include #include -#include #include -#include #include #include -#include -#include -#include #include -#include -#include -#include -#include #include #include -#include -#include #include -#include -#include -#include -#include -#include -#include +#include #include "ublexec.h" diff --git a/source/ublexec.cc b/source/ublexec.cc index bbd3f3f..c0ffc58 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -4,7 +4,6 @@ #include #include #include -#include #include #include #include @@ -15,20 +14,12 @@ #include #include #include -#include #include #include #include #include -#include -#include -#include -#include -#include -#include #include -#include -#include +#include #include "ublexec.h" using namespace std; @@ -433,21 +424,22 @@ void MainWindow::start_cmd(){ //========================================= if (chbAnotherUser->get_active()){ if (geteuid()!=0){ - chbTerminal->set_active(true); + //chbTerminal->set_active(true); } if (rbPkexec->get_active()){ - + //string user_execute = cmbUser->get_active_text(); if ((chbAnotherUser->get_active()) && (cmbUser->get_active_text().length()==0)) { - str_variants_root = "pkexec env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; + + str_variants_root = "xhost SI:localuser:${USER}; pkexec --user ${USER} env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; //this->tmp_desktop(user_cmd); } else if (chbAnotherUser->get_active()){ - str_variants_root = "pkexec --user " + cmbUser->get_active_text() + " env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; + str_variants_root = "xhost SI:localuser: "+ cmbUser->get_active_text() +"; pkexec --user " + cmbUser->get_active_text() + " env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; } else{ - str_variants_root = "pkexec env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; + str_variants_root = "xhost SI:localuser:${USER}; pkexec --user ${USER} env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; //this->tmp_desktop(user_cmd); //user_cmd = "/tmp/" + user_cmd + ".desktop"; } @@ -506,18 +498,28 @@ void MainWindow::start_cmd(){ user_cmd = this->str_remove(user_cmd, str_cmd_terminal); user_cmd = this->str_remove(user_cmd, str_variants_root); user_cmd = this->str_remove(user_cmd, str_nice_cmd); + string str_del = "xterm -e"; + user_cmd = this->str_remove(user_cmd, str_del); + str_del = "pkexec --user superadmin env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY"; + user_cmd = this->str_remove(user_cmd, str_del); string amp = " &"; user_cmd = this->str_remove(user_cmd, amp); cmd = "" + str_cmd_terminal + str_variants_root + str_nice_cmd + user_cmd; } txtCmd->set_text(cmd); - cmd = cmd + " &"; - system(cmd.c_str()); + cmd = "nohup " + cmd + " > /dev/null 2>&1"; + //cmd = "bash -c \" " + cmd + " \" &"; + //system(cmd.c_str()); + std::thread t(&me_thread, cmd); + t.detach(); path_file_name = ""; path_file = ""; name_app = ""; } +void me_thread(string cmd){ + system(cmd.c_str()); +} void MainWindow::changed_user(){ Glib::ustring entry_user = cmbUser->get_active_text(); @@ -659,10 +661,6 @@ void MainWindow::pars_apps(){ } App.Name_desktop = file_name; App.Categories = split(str_Categories, ';'); - for ( const auto &text : App.Categories){ - set_categories.insert(text); - - } } list_app.push_back(App); diff --git a/source/ublexec.h b/source/ublexec.h index 7e79849..a06c417 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -1,41 +1,23 @@ -#include -#include + #include -#include #include -#include #include -#include #include #include -#include -#include -#include -#include -#include -#include -#include #include -#include #include #include -#include -#include #include -#include -#include -#include -#include -#include -#include -#include +#include +#include + using namespace std; extern string path_app; extern string app_name; extern string path_glade; extern string path_css; - +void me_thread(string cmd); class CmdArgParser : public Glib::OptionGroup { public: @@ -92,6 +74,7 @@ public: void select_System(); void icon_clear(); void set_icon_array(); + //static void me_thread(string cmd); void unselect_icon(Gtk::IconView *icon_entry); string str_remove(std::string& source, const std::string& to_remove); vector split(const std::string &s, char delim); diff --git a/ublexec.glade b/ublexec.glade index 05c68d8..f2edcde 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -527,7 +527,7 @@ specified priority - + diff --git a/ublexec_ru.po b/ublexec_ru.po index 9259859..926e51a 100644 --- a/ublexec_ru.po +++ b/ublexec_ru.po @@ -52,7 +52,7 @@ msgid "Team" msgstr "Команда" msgid "Run in the terminal emulator" -msgstr "Выполнить в эмуляторе терминале" +msgstr "Выполнить в эмуляторе терминала" msgid "Command Line" msgstr "Командная строка" From ec78965b21a00b7bd4491f871aaf5bceed7eb992 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Thu, 16 Feb 2023 10:57:46 +0000 Subject: [PATCH 12/31] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=20=D0=B4?= =?UTF-8?q?=D0=BE=D0=B1=D0=BE=D0=B2=D0=BB=D1=8F=D1=82=D1=8C=20=D0=B7=D0=B0?= =?UTF-8?q?=D0=B3=D0=BE=D0=BB=D0=BE=D0=B2=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nohup.out | 80 ---------------- source/main.cc | 1 + source/ublexec.cc | 53 +++++++---- ublexec.desktop | 3 +- ublexec.glade | 226 +++++++++++++++++++++++----------------------- 5 files changed, 150 insertions(+), 213 deletions(-) delete mode 100644 nohup.out diff --git a/nohup.out b/nohup.out deleted file mode 100644 index cf235df..0000000 --- a/nohup.out +++ /dev/null @@ -1,80 +0,0 @@ -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Refusing to render service to dead parents. -Gtk-Message: 14:21:06.968: Failed to load module "colorreload-gtk-module" -Gtk-Message: 14:21:06.968: Failed to load module "window-decorations-gtk-module" -Gtk-Message: 14:21:14.239: Failed to load module "colorreload-gtk-module" -Gtk-Message: 14:21:14.240: Failed to load module "window-decorations-gtk-module" -Gtk-Message: 14:21:14.318: Failed to load module "colorreload-gtk-module" -Gtk-Message: 14:21:14.318: Failed to load module "window-decorations-gtk-module" -Gtk-Message: 14:21:49.400: Failed to load module "colorreload-gtk-module" -Gtk-Message: 14:21:49.401: Failed to load module "window-decorations-gtk-module" -Gtk-Message: 14:21:49.463: Failed to load module "colorreload-gtk-module" -Gtk-Message: 14:21:49.463: Failed to load module "window-decorations-gtk-module" -javaldx: Could not find a Java Runtime Environment! -Warning: failed to read path from javaldx -Gtk-Message: 14:22:25.948: Failed to load module "colorreload-gtk-module" -Gtk-Message: 14:22:25.949: Failed to load module "window-decorations-gtk-module" -Gtk-Message: 14:22:41.171: Failed to load module "colorreload-gtk-module" -Gtk-Message: 14:22:41.171: Failed to load module "window-decorations-gtk-module" -Gtk-Message: 14:22:41.236: Failed to load module "colorreload-gtk-module" -Gtk-Message: 14:22:41.237: Failed to load module "window-decorations-gtk-module" -Gtk-Message: 14:22:50.959: Failed to load module "colorreload-gtk-module" -Gtk-Message: 14:22:50.959: Failed to load module "window-decorations-gtk-module" -Gtk-Message: 14:22:51.022: Failed to load module "colorreload-gtk-module" -Gtk-Message: 14:22:51.023: Failed to load module "window-decorations-gtk-module" -xhost: bad hostname "superadmin" -X Error of failed request: BadValue (integer parameter out of range for operation) - Major opcode of failed request: 109 (X_ChangeHosts) - Value in failed request: 0xa - Serial number of failed request: 7 - Current serial number in output stream: 9 -localuser: being added to access control list -xhost: bad hostname "superadmin" -X Error of failed request: BadValue (integer parameter out of range for operation) - Major opcode of failed request: 109 (X_ChangeHosts) - Value in failed request: 0xa - Serial number of failed request: 7 - Current serial number in output stream: 9 -localuser: being added to access control list -xhost: bad hostname "superadmin" -X Error of failed request: BadValue (integer parameter out of range for operation) - Major opcode of failed request: 109 (X_ChangeHosts) - Value in failed request: 0xa - Serial number of failed request: 7 - Current serial number in output stream: 9 -localuser: being added to access control list -xhost: bad hostname "superadmin" -X Error of failed request: BadValue (integer parameter out of range for operation) - Major opcode of failed request: 109 (X_ChangeHosts) - Value in failed request: 0xa - Serial number of failed request: 7 - Current serial number in output stream: 9 -localuser: being added to access control list -xhost: bad hostname "superadmin" -X Error of failed request: BadValue (integer parameter out of range for operation) - Major opcode of failed request: 109 (X_ChangeHosts) - Value in failed request: 0xa - Serial number of failed request: 7 - Current serial number in output stream: 9 -localuser: being added to access control list diff --git a/source/main.cc b/source/main.cc index 7a27f08..0995b90 100644 --- a/source/main.cc +++ b/source/main.cc @@ -57,6 +57,7 @@ int main(int argc, char** argv) return 0; } else { + MainWindow* wnd = nullptr; builder->get_widget_derived("window", wnd); auto r = app->run(*wnd); diff --git a/source/ublexec.cc b/source/ublexec.cc index c0ffc58..10eb8dc 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -136,6 +136,7 @@ void MainWindow::template_apps_obj(Gtk::IconView *icon, Glib::RefPtr cssProvider = Gtk::CssProvider::create(); cssProvider->load_from_path(path_css); Glib::RefPtr styleContext = Gtk::StyleContext::create(); @@ -145,6 +146,7 @@ void MainWindow::add_CSS(){ Glib::RefPtr context_lbl_head = lblInfoHead->get_style_context(); context_box->add_class("cssboxColor1"); context_lbl_head->add_class("textHead"); + } void MainWindow::localization(){ @@ -303,12 +305,24 @@ void MainWindow::settings(){ this->pars_dir_bin(); this->pars_users(); this->activ_or_block_execute_epriority(); + this->changed_user(); cmbUser->set_active(0); cmbUser->set_sensitive(false); lblInfoUserName->set_sensitive(false); rbPkexec->set_sensitive(false); rbSu->set_sensitive(false); rbSudo->set_sensitive(false); + + //Gtk::Widget *standartHead; + //Gtk::Widget *plugBox; + //Gtk::Window *window; + //Gtk::Widget *btnSave; + //builder->get_widget("standartHead",standartHead); + //builder->get_widget("plugBox",plugBox); + //builder->get_widget("window",window); + //builder->get_widget("btnSave",btnSave); + //ubl_get_standard_ui(standartHead,plugBox,btnSave,window,"ublexec.svg",gettext("Running applications as a user with a\nspecified priority"),gettext("ublexec"),0,0); + } void MainWindow::close_entry_app(){ this->icon_clear(); @@ -427,21 +441,17 @@ void MainWindow::start_cmd(){ //chbTerminal->set_active(true); } if (rbPkexec->get_active()){ - //string user_execute = cmbUser->get_active_text(); if ((chbAnotherUser->get_active()) && (cmbUser->get_active_text().length()==0)) { - str_variants_root = "xhost SI:localuser:${USER}; pkexec --user ${USER} env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - //this->tmp_desktop(user_cmd); + str_variants_root = " pkexec --user ${USER} env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; } else if (chbAnotherUser->get_active()){ - str_variants_root = "xhost SI:localuser: "+ cmbUser->get_active_text() +"; pkexec --user " + cmbUser->get_active_text() + " env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; + str_variants_root = " pkexec --user " + cmbUser->get_active_text() + " env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; } else{ - str_variants_root = "xhost SI:localuser:${USER}; pkexec --user ${USER} env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - //this->tmp_desktop(user_cmd); - //user_cmd = "/tmp/" + user_cmd + ".desktop"; + str_variants_root = " pkexec --user ${USER} env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; } } else if (rbSu->get_active()){ @@ -471,9 +481,6 @@ void MainWindow::start_cmd(){ str_nice_cmd = "nice -n " + to_string(spinPriority->get_value_as_int()) + " "; } - //========================================= - - //========================================= if (user_cmd.length()==0 && name_app.length()==0 && path_file.length()==0){ messageError->show(); return; @@ -487,12 +494,10 @@ void MainWindow::start_cmd(){ } string cmd = ""; if (path_file!=""){ - cmd = "" + str_cmd_terminal + str_variants_root + str_nice_cmd + " xdg-open '" + path_file + "' "; - //cmd = format_cmd(str_cmd_terminal,str_variants_root,str_nice_cmd,path_file, cmd); + cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + " xdg-open '" + path_file + "' "; } else if (name_app!=""){ - cmd = "" + str_cmd_terminal + str_variants_root + str_nice_cmd + name_app; - //cmd = format_cmd(str_cmd_terminal,str_variants_root,str_nice_cmd,path_file, cmd); + cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + name_app; } else{ user_cmd = this->str_remove(user_cmd, str_cmd_terminal); @@ -500,16 +505,24 @@ void MainWindow::start_cmd(){ user_cmd = this->str_remove(user_cmd, str_nice_cmd); string str_del = "xterm -e"; user_cmd = this->str_remove(user_cmd, str_del); + str_del = "nohup"; + user_cmd = this->str_remove(user_cmd, str_del); str_del = "pkexec --user superadmin env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY"; user_cmd = this->str_remove(user_cmd, str_del); - string amp = " &"; - user_cmd = this->str_remove(user_cmd, amp); - cmd = "" + str_cmd_terminal + str_variants_root + str_nice_cmd + user_cmd; + str_del = " &"; + user_cmd = this->str_remove(user_cmd, str_del); + for (int index=-20; index<20; index++){ + str_del = to_string(index); + user_cmd = this->str_remove(user_cmd, str_del); + } + str_del = cmbUser->get_active_text(); + user_cmd = this->str_remove(user_cmd, str_del); + + cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + user_cmd ; } + txtCmd->set_text(cmd); - cmd = "nohup " + cmd + " > /dev/null 2>&1"; - //cmd = "bash -c \" " + cmd + " \" &"; - //system(cmd.c_str()); + cmd += " > /dev/null 2>&1"; std::thread t(&me_thread, cmd); t.detach(); path_file_name = ""; diff --git a/ublexec.desktop b/ublexec.desktop index afa9126..ef0cc9d 100644 --- a/ublexec.desktop +++ b/ublexec.desktop @@ -10,4 +10,5 @@ Type=Application Exec=ublexec Icon=ublexec Terminal=false -Categories=XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-SystemSettings; \ No newline at end of file +X-XfcePluggable=true +Categories=XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-SystemSettings;X-UBL-SettingsManager;X-UBL-SystemSettings; \ No newline at end of file diff --git a/ublexec.glade b/ublexec.glade index f2edcde..6ecef10 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -470,14 +470,124 @@ 6 gtk-media-play + + False + Внимание! + dialog + + + False + vertical + 2 + + + False + True + end + + + + + + ОК + True + True + True + + + True + True + 1 + + + + + False + False + 0 + + + + + True + False + 10 + 10 + 15 + Select an executable file or program + + + True + True + 2 + + + + + False - Выполнить + UBConfig - ubexec True False vertical + + + True + False + + + True + False + 5 + 5 + 5 + 5 + 6 + 6 + 69 + ublexec + + + False + True + 0 + + + + + True + False + start + 5 + 5 + 5 + 5 + 6 + 6 + Running applications as a user with a +specified priority + + + + + + + + True + True + 1 + + + + + False + True + 0 + + True @@ -488,61 +598,6 @@ True False vertical - - - True - False - - - True - False - 5 - 5 - 5 - 5 - 6 - 6 - 69 - ublexec - - - False - True - 0 - - - - - True - False - start - 5 - 5 - 5 - 5 - 6 - 6 - Running applications as a user with a -specified priority - - - - - - - - True - True - 1 - - - - - False - True - 0 - - True @@ -616,6 +671,8 @@ specified priority True True end + 5 + 5 5 5 6 @@ -1025,7 +1082,7 @@ specified priority 5 6 6 - Priority: + Priority True 0 @@ -1224,61 +1281,6 @@ specified priority False True - 0 - - - - - - - False - Внимание! - dialog - - - False - vertical - 2 - - - False - True - end - - - - - - ОК - True - True - True - - - True - True - 1 - - - - - False - False - 0 - - - - - True - False - 10 - 10 - 15 - Select an executable file or program - - - True - True 2 From b4d65a1b873a447765ac03d5ee0bdc19fc6ad426 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Mon, 20 Feb 2023 12:13:55 +0600 Subject: [PATCH 13/31] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D1=91?= =?UTF-8?q?=D0=BD=20=D0=B4=D0=B8=D0=B7=D0=B0=D0=B9=D0=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ublexec.glade | 122 +++++++++++++++++++++++++------------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/ublexec.glade b/ublexec.glade index 6ecef10..ea391a6 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -470,61 +470,6 @@ 6 gtk-media-play - - False - Внимание! - dialog - - - False - vertical - 2 - - - False - True - end - - - - - - ОК - True - True - True - - - True - True - 1 - - - - - False - False - 0 - - - - - True - False - 10 - 10 - 15 - Select an executable file or program - - - True - True - 2 - - - - - False UBConfig - ubexec @@ -807,14 +752,14 @@ specified priority - False + True True 0 - False + True True 1 @@ -1004,14 +949,14 @@ specified priority - False + True True 0 - False + True True 2 @@ -1237,14 +1182,14 @@ specified priority - False + True True 0 - False + True True 3 @@ -1278,8 +1223,63 @@ specified priority + + True + True + 2 + + + + + + + False + Внимание! + dialog + + + False + vertical + 2 + + + False + True + end + + + + + + ОК + True + True + True + + + True + True + 1 + + + False + False + 0 + + + + + True + False + 10 + 10 + 15 + Select an executable file or program + + + True True 2 From 602f98c0777d7a956ddb03af5d66ad3c8b67b3c5 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Tue, 28 Feb 2023 11:43:47 +0600 Subject: [PATCH 14/31] =?UTF-8?q?=D0=98=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=B4=D0=B8=D0=B7=D0=B0=D0=B9=D0=BD,=20=D0=B4?= =?UTF-8?q?=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=20=D0=B7=D0=B0=D0=B3?= =?UTF-8?q?=D0=BE=D0=BB=D0=BE=D0=B2=D0=BE=D0=BA=20=D0=BE=D0=BA=D0=BD=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- #ublexec.glade# | 1505 +++++++++++++++++++++++++++++++++++++++++ nohup.out | 0 source/CMakeLists.txt | 2 +- source/main.cc | 2 +- source/ublexec.cc | 95 ++- source/ublexec.h | 8 + ublexec.glade | 176 ++++- ublexec_ru.po | 3 + 8 files changed, 1730 insertions(+), 61 deletions(-) create mode 100644 #ublexec.glade# create mode 100644 nohup.out mode change 100644 => 100755 source/main.cc diff --git a/#ublexec.glade# b/#ublexec.glade# new file mode 100644 index 0000000..15fcf33 --- /dev/null +++ b/#ublexec.glade# @@ -0,0 +1,1505 @@ + + + + + + False + О Программе + False + True + center + ubl-settings-datetime + dialog + True + ublexec + 1.2 + Copyright © 2023 - UBSoft Software LLC + Setting the date and time + https://ublinux.ru/ + Project Home Page + Это приложение распространяется без каких-либо гарантий. +Подробнее в <a href="https://www.gnu.org/licenses/old-licenses/gpl-2.0.html">GNU General Public License, версии 2 или позднее</a>. + UBGroup + UBGroup + ublexec + True + gpl-2-0 + + + False + vertical + 2 + + + False + end + + + + + + False + False + 0 + + + + + + + + + + -20 + 19 + 1 + 10 + + + 500 + 400 + False + + + True + False + vertical + + + True + False + Selecting Programs + + + False + True + 0 + + + + + True + True + in + + + False + 5 + 5 + 5 + 5 + 5 + natural + + + True + False + 1 + 1 + 5 + 0 + etched-out + + + True + False + 12 + + + True + False + vertical + + + True + False + start + Graphics + + + False + True + 0 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 1 + + + + + True + False + start + Tools + + + False + True + 2 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 3 + + + + + True + False + start + Internet + + + False + True + 4 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 5 + + + + + True + False + start + Multimedia + + + False + True + 6 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 7 + + + + + True + False + start + Settings + + + False + True + 8 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 9 + + + + + True + False + start + Education + + + False + True + 10 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 11 + + + + + True + False + start + Office + + + False + True + 12 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 13 + + + + + True + False + start + Other + + + False + True + 14 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 15 + + + + + True + False + start + Development + + + False + True + 16 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 17 + + + + + True + False + start + System + + + False + True + 18 + + + + + True + True + 1 + queue + 1 + 1 + 1 + + + + True + True + 19 + + + + + + + + + + True + False + + + + + + + + + + + + True + True + 1 + + + + + True + False + end + start + + + ОК + -1 + -1 + True + True + True + + + True + True + 0 + + + + + Выход + True + True + True + + + True + True + 1 + + + + + False + True + 2 + + + + + + + True + False + 5 + 5 + 5 + 5 + 6 + 6 + gtk-media-play + + + False + Внимание! + dialog + + + False + vertical + 2 + + + False + True + end + + + + + + ОК + True + True + True + + + True + True + 1 + + + + + False + False + 0 + + + + + True + False + 10 + 10 + 15 + Select an executable file or program + + + True + True + 2 + + + + + + + False + + + True + False + 0 + none + + + True + False + 5 + 5 + 5 + 5 + + + True + False + vertical + + + True + True + True + Synopsis + + + False + True + 2 + + + + + True + True + True + About the program + + + False + True + 3 + + + + + + + + + + + + + + False + + + True + False + vertical + + + True + False + + + True + False + 5 + 5 + 5 + 5 + 6 + 6 + 69 + ublexec + + + False + True + 0 + + + + + True + False + start + 5 + 5 + 5 + 5 + 6 + 6 + Running applications as a user with a +specified priority + + + + + + + + True + True + 1 + + + + + False + True + 0 + + + + + True + False + vertical + + + True + False + vertical + + + True + False + vertical + + + True + False + 5 + 5 + 5 + 5 + 6 + 6 + 0.019999999552965164 + in + + + True + False + 5 + 5 + vertical + + + True + False + + + 145 + True + False + 5 + 5 + 5 + 5 + 6 + 6 + Team + True + 0 + + + False + True + 0 + + + + + 330 + True + True + 5 + 5 + 5 + 5 + 6 + 6 + + + True + True + 1 + + + + + True + True + True + end + 5 + 5 + 5 + 5 + 6 + 6 + + + True + False + center + center + 5 + 5 + 5 + 5 + 6 + 6 + gtk-directory + + + + + False + True + 2 + + + + + True + True + True + end + 5 + 5 + 5 + 5 + 6 + 6 + + + True + False + center + center + 5 + 5 + 5 + 5 + 6 + 6 + edit-select-all + + + + + False + True + 3 + + + + + False + True + 0 + + + + + True + False + 6 + 6 + + + 131 + True + False + 15 + 5 + 15 + 5 + + + False + True + 0 + + + + + True + True + False + start + center + 5 + 5 + 5 + 5 + 6 + True + + + True + False + Run in the terminal emulator + + + + + False + True + 1 + + + + + False + True + 1 + + + + + + + True + False + Command Line + + + + + True + True + 0 + + + + + True + True + 1 + + + + + True + False + 5 + vertical + + + True + False + 5 + 5 + 5 + 5 + 0.019999999552965164 + in + + + True + False + 5 + 5 + vertical + + + True + False + + + True + True + False + start + center + 5 + 5 + 5 + 5 + 6 + 6 + True + + + True + False + Run as another user + + + + + False + True + 0 + + + + + pkexec + True + True + False + True + rbSu + + + False + True + 1 + + + + + su + True + True + False + True + rbPkexec + + + False + True + 2 + + + + + sudo + True + True + False + True + rbSu + + + False + True + 3 + + + + + 95 + True + False + end + 15 + 5 + 15 + 5 + + + False + True + 4 + + + + + False + True + 0 + + + + + True + False + + + 145 + True + False + 5 + 5 + 5 + 5 + 6 + 6 + User Name + True + 0 + + + False + True + 0 + + + + + 330 + True + False + 5 + 5 + 5 + 5 + 6 + 6 + + + False + True + 1 + + + + + False + True + 1 + + + + + + + True + False + User + + + + + True + True + 0 + + + + + True + True + 2 + + + + + True + False + 5 + vertical + + + True + False + 5 + 5 + 5 + 5 + 0.019999999552965164 + in + + + True + False + 5 + 5 + vertical + + + True + True + False + start + center + 5 + 5 + 5 + 5 + 6 + 6 + True + + + True + False + Change startup priority + + + + + False + True + 0 + + + + + True + False + + + 5 + True + False + 5 + 5 + 5 + 5 + 6 + 6 + Priority + True + 0 + + + False + True + 0 + + + + + True + True + 5 + 5 + 5 + 5 + 6 + 6 + adjustment1 + 20 + 0 + 0 + + + True + True + 1 + + + + + True + True + 5 + 5 + 5 + 5 + 6 + 6 + True + + + False + True + 2 + + + + + False + True + 1 + + + + + True + False + + + 65 + True + False + 15 + 5 + 15 + 5 + 0 + + + False + True + 0 + + + + + 145 + True + False + 5 + 5 + 5 + 5 + 6 + 6 + 19 (Low) + True + 0 + + + False + True + 1 + + + + + True + False + end + center + 5 + 5 + 5 + 5 + 6 + 6 + -20 (High) + True + 0 + + + True + True + 3 + + + + + 95 + True + False + end + 15 + 5 + 15 + 5 + + + False + True + 4 + + + + + False + True + 2 + + + + + + + True + False + Priority + + + + + True + True + 0 + + + + + True + True + 3 + + + + + Run + True + True + True + 5 + 5 + 5 + 5 + 6 + 6 + image1 + True + + + False + True + 4 + + + + + True + True + 0 + + + + + True + True + 2 + + + + + + + True + False + True + + + True + False + Ublexec + + + + + True + False + 32 + ublexec + + + + + True + False + + + True + True + False + True + True + none + popInfo + + + + + + False + True + 0 + + + + + end + 1 + + + + + + + False + Пожалуйста выберите Файл + True + center + 500 + 400 + True + dialog + True + True + + + False + vertical + 2 + + + False + end + + + gtk-cancel + True + True + True + True + + + True + True + 0 + + + + + gtk-ok + True + True + True + True + + + True + True + 1 + + + + + False + False + 0 + + + + + + + + + diff --git a/nohup.out b/nohup.out new file mode 100644 index 0000000..e69de29 diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 82357c3..96395cd 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -10,7 +10,7 @@ add_definitions(${GTK_CFLAGS_OTHER}) find_package(Threads REQUIRED) #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wall -Wextra -Werror -Wmissing-declarations -fdiagnostics-color=always -std=c++2a -g") -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wmissing-declarations -fdiagnostics-color=always") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wmissing-declarations -fdiagnostics-color=always -g") set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/source/main.cc b/source/main.cc old mode 100644 new mode 100755 index 0995b90..37d7cdb --- a/source/main.cc +++ b/source/main.cc @@ -65,4 +65,4 @@ int main(int argc, char** argv) return r; } -} +} \ No newline at end of file diff --git a/source/ublexec.cc b/source/ublexec.cc index 10eb8dc..41f48f3 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -110,6 +110,14 @@ void MainWindow::get_builder(){ builder->get_widget("iconDevelopment", iconDevelopment); builder->get_widget("iconSystem", iconSystem); builder->get_widget("lblSystem", lblSystem); + builder->get_widget("lblHeaderName", lblHeaderName); + builder->get_widget("popInfo", popInfo); + builder->get_widget("btnSynopsis", btnSynopsis); + builder->get_widget("btnAbout", btnAbout); + builder->get_widget("aboutWindows", aboutWindows); + builder->get_widget("btnSettings", btnSettings); + builder->get_widget("btnBoxAboutDialog", btnBoxAboutDialog); + } void MainWindow::set_icon_array(){ @@ -150,6 +158,9 @@ void MainWindow::add_CSS(){ } void MainWindow::localization(){ + aboutWindows->set_comments(gettext("ublexec")); + aboutWindows->set_website_label(gettext("Project Home Page")); + lblHeaderName->set_text(gettext("ublexec")); this->set_title(gettext("ublexec")); btnStart->set_label(gettext("Run")); wndChooseFileWallpaper->set_title(gettext("Please select File")); @@ -204,6 +215,14 @@ void MainWindow::event(){ iconOther->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Other)); iconDevelopment->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Development)); iconSystem->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_System)); + btnSynopsis->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::synopsis_show)); + btnAbout->signal_clicked().connect([&](){aboutWindows->show();}); + btnSettings->signal_clicked().connect([&](){popInfo->show();}); +} + +void MainWindow::synopsis_show(){ + //wrapper_system("xdg-open https://wiki.ublinux.ru/ru/home"); + } void MainWindow::icon_clear(){ @@ -312,6 +331,7 @@ void MainWindow::settings(){ rbPkexec->set_sensitive(false); rbSu->set_sensitive(false); rbSudo->set_sensitive(false); + btnBoxAboutDialog->set_visible(false); //Gtk::Widget *standartHead; //Gtk::Widget *plugBox; @@ -354,7 +374,7 @@ void MainWindow::close_filemaneg(){ void MainWindow::get_path_filemaneg(){ path_file = wndChooseFileWallpaper->get_filename(); - if (path_file.length()==0){} + if (path_file.length() == 0){} else{ txtCmd->set_text(path_file); this->close_filemaneg(); @@ -420,7 +440,6 @@ void MainWindow::open_list_app(){ else if (str_categor=="System"){ this->tempalte_row(st_app.Name,st_app.Exec, path, list_System); } - } } dialogStartMenu->show_all(); @@ -435,46 +454,28 @@ void MainWindow::start_cmd(){ if (name_app.length()==0 && path_file.length()==0){ user_cmd = txtCmd->get_text(); } - //========================================= if (chbAnotherUser->get_active()){ if (geteuid()!=0){ //chbTerminal->set_active(true); } if (rbPkexec->get_active()){ if ((chbAnotherUser->get_active()) && (cmbUser->get_active_text().length()==0)) { - str_variants_root = " pkexec --user ${USER} env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - } else if (chbAnotherUser->get_active()){ str_variants_root = " pkexec --user " + cmbUser->get_active_text() + " env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - } else{ str_variants_root = " pkexec --user ${USER} env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; } } else if (rbSu->get_active()){ - if ((chbAnotherUser->get_active()) && (cmbUser->get_active_text().length()==0)) { - str_variants_root="su "; - } - else if (chbAnotherUser->get_active()){ - str_variants_root="su --user " + cmbUser->get_active_text() + " "; - } - else{ - str_variants_root="su"; - } + chbTerminal->set_active(true); + str_variants_root="su -l " + cmbUser->get_active_text() + " -c \" DISPLAY=$DISPLAY "; } else if (rbSudo->get_active()){ - if ((chbAnotherUser->get_active()) && (cmbUser->get_active_text().length()==0)) { - str_variants_root="sudo "; - } - else if (chbAnotherUser->get_active()){ - str_variants_root="sudo --user " + cmbUser->get_active_text() + " "; - } - else{ - str_variants_root="sudo "; - } + chbTerminal->set_active(true); + str_variants_root="sudo -u " + cmbUser->get_active_text() + " "; } } if (cbxExecuteEpriority->get_active()){ @@ -487,38 +488,30 @@ void MainWindow::start_cmd(){ } if (chbTerminal->get_active()){ - str_cmd_terminal=" xterm -e "; + str_cmd_terminal = " xterm -e "; } else{ - str_cmd_terminal=""; + str_cmd_terminal = ""; } string cmd = ""; - if (path_file!=""){ + if (path_file != ""){ cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + " xdg-open '" + path_file + "' "; } else if (name_app!=""){ cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + name_app; } else{ - user_cmd = this->str_remove(user_cmd, str_cmd_terminal); - user_cmd = this->str_remove(user_cmd, str_variants_root); - user_cmd = this->str_remove(user_cmd, str_nice_cmd); - string str_del = "xterm -e"; - user_cmd = this->str_remove(user_cmd, str_del); - str_del = "nohup"; + string str_del = " "; user_cmd = this->str_remove(user_cmd, str_del); - str_del = "pkexec --user superadmin env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY"; + vector vec_user_cmd = this->split(user_cmd, ' '); + size_t vec_len = vec_user_cmd.size(); + user_cmd = vec_user_cmd[vec_len-1]; + str_del = "\""; user_cmd = this->str_remove(user_cmd, str_del); - str_del = " &"; - user_cmd = this->str_remove(user_cmd, str_del); - for (int index=-20; index<20; index++){ - str_del = to_string(index); - user_cmd = this->str_remove(user_cmd, str_del); - } - str_del = cmbUser->get_active_text(); - user_cmd = this->str_remove(user_cmd, str_del); - cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + user_cmd ; + if (str_variants_root.find("su -l") != string::npos){ + cmd += "\""; + } } txtCmd->set_text(cmd); @@ -559,13 +552,13 @@ void MainWindow::activ_or_block_other_user(){ cmbUser->set_active(0); cmbUser->set_sensitive(flag); lblInfoUserName->set_sensitive(flag); - if (flag_pkexec==true){ + if (flag_pkexec == true){ rbPkexec->set_sensitive(flag); } - if (flag_su==true){ + if (flag_su == true){ rbSu->set_sensitive(flag); } - if (flag_sudo==true){ + if (flag_sudo == true){ rbSudo->set_sensitive(flag); } } @@ -585,13 +578,13 @@ void MainWindow::pars_dir_bin(){ for (const auto & entry : fs::directory_iterator(path)){ file_name = entry.path().filename().string(); if (file_name=="su"){ - flag_su=true; + flag_su = true; } else if (file_name=="sudo"){ - flag_sudo=true; + flag_sudo = true; } else if (file_name=="pkexec"){ - flag_pkexec=true; + flag_pkexec = true; } } rbPkexec->set_sensitive(flag_pkexec); @@ -610,7 +603,7 @@ void MainWindow::pars_users(){ break; } - if (entry->pw_uid>=1000 && entry->pw_uid!=65534){ + if (entry->pw_uid >= 1000 && entry->pw_uid!=65534){ cmbUser->append(entry->pw_name); } } @@ -630,7 +623,7 @@ vector MainWindow::split(const std::string &s, char delim) { string MainWindow::str_remove(std::string& source, const std::string& to_remove){ auto begin = source.find(to_remove); - if (begin!=std::string::npos){ + if (begin != std::string::npos){ int len_to_remove = to_remove.length(); source.erase(begin, begin+len_to_remove); } diff --git a/source/ublexec.h b/source/ublexec.h index a06c417..9d6f608 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -74,6 +74,7 @@ public: void select_System(); void icon_clear(); void set_icon_array(); + void synopsis_show(); //static void me_thread(string cmd); void unselect_icon(Gtk::IconView *icon_entry); string str_remove(std::string& source, const std::string& to_remove); @@ -147,6 +148,7 @@ public: Gtk::Label *lblOther; Gtk::Label *lblDevelopment; Gtk::Label *lblSystem; + Gtk::Label *lblHeaderName; Gtk::IconView *iconGraphics; Gtk::IconView *iconTools; @@ -159,6 +161,12 @@ public: Gtk::IconView *iconDevelopment; Gtk::IconView *iconSystem; Gtk::IconView *iconEntry; + Gtk::Popover *popInfo; + Gtk::ModelButton *btnAbout; + Gtk::ModelButton *btnSynopsis; + Gtk::AboutDialog *aboutWindows; + Gtk::MenuButton *btnSettings; + Gtk::ButtonBox *btnBoxAboutDialog; Glib::RefPtr list_Graphics; Glib::RefPtr list_Tools; diff --git a/ublexec.glade b/ublexec.glade index 6ecef10..8898c27 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -2,6 +2,59 @@ + + False + + + + + + False + О Программе + False + True + center + ubl-settings-datetime + dialog + True + ublexec + 1.2 + Copyright © 2023 - UBSoft Software LLC + Setting the date and time + https://ublinux.ru/ + Project Home Page + Это приложение распространяется без каких-либо гарантий. +Подробнее в <a href="https://www.gnu.org/licenses/old-licenses/gpl-2.0.html">GNU General Public License, версии 2 или позднее</a>. + UBGroup + UBGroup + ublexec + True + gpl-2-0 + + + False + vertical + 2 + + + False + end + + + + + + False + False + 0 + + + + + + + + -20 19 @@ -525,9 +578,65 @@ + + False + + + True + False + 0 + none + + + True + False + 5 + 5 + 5 + 5 + + + True + False + vertical + + + True + True + True + Synopsis + + + False + True + 2 + + + + + True + True + True + About the program + + + False + True + 3 + + + + + + + + + + + + False - UBConfig - ubexec True @@ -807,14 +916,14 @@ specified priority - False + True True 0 - False + True True 1 @@ -1004,14 +1113,14 @@ specified priority - False + True True 0 - False + True True 2 @@ -1237,14 +1346,14 @@ specified priority - False + True True 0 - False + True True 3 @@ -1279,13 +1388,64 @@ specified priority - False + True True 2 + + + True + False + True + + + True + False + Ublexec + + + + + True + False + 32 + ublexec + + + + + True + False + + + True + True + False + True + True + none + popInfo + + + + + + False + True + 0 + + + + + end + 1 + + + + False diff --git a/ublexec_ru.po b/ublexec_ru.po index 926e51a..f3fb935 100644 --- a/ublexec_ru.po +++ b/ublexec_ru.po @@ -6,6 +6,9 @@ msgid "" msgstr "" +msgid "Project Home Page" +msgstr "Домашняя страница проекта" + msgid "System" msgstr "Система" From 781ee235c32858fac65785f44338be578f9f5273 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Tue, 28 Feb 2023 12:12:08 +0600 Subject: [PATCH 15/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=BF=D0=B5=D1=80=D0=B5=D0=B2=D0=BE=D0=B4?= =?UTF-8?q?=20=D0=B8=20=D1=81=D0=BA=D1=80=D0=B8=D0=BD=D1=88=D0=BE=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- #ublexec.glade# | 1505 ------------------------------------- .gitignore | 4 +- nohup.out | 0 screenshot/screenshot.png | Bin 65265 -> 62683 bytes source/main.cc | 16 +- source/ublexec.cc | 84 +-- source/ublexec.h | 20 +- ublexec.glade | 6 - ublexec_ru.po | 6 + 9 files changed, 54 insertions(+), 1587 deletions(-) delete mode 100644 #ublexec.glade# delete mode 100644 nohup.out diff --git a/#ublexec.glade# b/#ublexec.glade# deleted file mode 100644 index 15fcf33..0000000 --- a/#ublexec.glade# +++ /dev/null @@ -1,1505 +0,0 @@ - - - - - - False - О Программе - False - True - center - ubl-settings-datetime - dialog - True - ublexec - 1.2 - Copyright © 2023 - UBSoft Software LLC - Setting the date and time - https://ublinux.ru/ - Project Home Page - Это приложение распространяется без каких-либо гарантий. -Подробнее в <a href="https://www.gnu.org/licenses/old-licenses/gpl-2.0.html">GNU General Public License, версии 2 или позднее</a>. - UBGroup - UBGroup - ublexec - True - gpl-2-0 - - - False - vertical - 2 - - - False - end - - - - - - False - False - 0 - - - - - - - - - - -20 - 19 - 1 - 10 - - - 500 - 400 - False - - - True - False - vertical - - - True - False - Selecting Programs - - - False - True - 0 - - - - - True - True - in - - - False - 5 - 5 - 5 - 5 - 5 - natural - - - True - False - 1 - 1 - 5 - 0 - etched-out - - - True - False - 12 - - - True - False - vertical - - - True - False - start - Graphics - - - False - True - 0 - - - - - True - True - 1 - queue - 1 - 1 - 1 - - - - True - True - 1 - - - - - True - False - start - Tools - - - False - True - 2 - - - - - True - True - 1 - queue - 1 - 1 - 1 - - - - True - True - 3 - - - - - True - False - start - Internet - - - False - True - 4 - - - - - True - True - 1 - queue - 1 - 1 - 1 - - - - True - True - 5 - - - - - True - False - start - Multimedia - - - False - True - 6 - - - - - True - True - 1 - queue - 1 - 1 - 1 - - - - True - True - 7 - - - - - True - False - start - Settings - - - False - True - 8 - - - - - True - True - 1 - queue - 1 - 1 - 1 - - - - True - True - 9 - - - - - True - False - start - Education - - - False - True - 10 - - - - - True - True - 1 - queue - 1 - 1 - 1 - - - - True - True - 11 - - - - - True - False - start - Office - - - False - True - 12 - - - - - True - True - 1 - queue - 1 - 1 - 1 - - - - True - True - 13 - - - - - True - False - start - Other - - - False - True - 14 - - - - - True - True - 1 - queue - 1 - 1 - 1 - - - - True - True - 15 - - - - - True - False - start - Development - - - False - True - 16 - - - - - True - True - 1 - queue - 1 - 1 - 1 - - - - True - True - 17 - - - - - True - False - start - System - - - False - True - 18 - - - - - True - True - 1 - queue - 1 - 1 - 1 - - - - True - True - 19 - - - - - - - - - - True - False - - - - - - - - - - - - True - True - 1 - - - - - True - False - end - start - - - ОК - -1 - -1 - True - True - True - - - True - True - 0 - - - - - Выход - True - True - True - - - True - True - 1 - - - - - False - True - 2 - - - - - - - True - False - 5 - 5 - 5 - 5 - 6 - 6 - gtk-media-play - - - False - Внимание! - dialog - - - False - vertical - 2 - - - False - True - end - - - - - - ОК - True - True - True - - - True - True - 1 - - - - - False - False - 0 - - - - - True - False - 10 - 10 - 15 - Select an executable file or program - - - True - True - 2 - - - - - - - False - - - True - False - 0 - none - - - True - False - 5 - 5 - 5 - 5 - - - True - False - vertical - - - True - True - True - Synopsis - - - False - True - 2 - - - - - True - True - True - About the program - - - False - True - 3 - - - - - - - - - - - - - - False - - - True - False - vertical - - - True - False - - - True - False - 5 - 5 - 5 - 5 - 6 - 6 - 69 - ublexec - - - False - True - 0 - - - - - True - False - start - 5 - 5 - 5 - 5 - 6 - 6 - Running applications as a user with a -specified priority - - - - - - - - True - True - 1 - - - - - False - True - 0 - - - - - True - False - vertical - - - True - False - vertical - - - True - False - vertical - - - True - False - 5 - 5 - 5 - 5 - 6 - 6 - 0.019999999552965164 - in - - - True - False - 5 - 5 - vertical - - - True - False - - - 145 - True - False - 5 - 5 - 5 - 5 - 6 - 6 - Team - True - 0 - - - False - True - 0 - - - - - 330 - True - True - 5 - 5 - 5 - 5 - 6 - 6 - - - True - True - 1 - - - - - True - True - True - end - 5 - 5 - 5 - 5 - 6 - 6 - - - True - False - center - center - 5 - 5 - 5 - 5 - 6 - 6 - gtk-directory - - - - - False - True - 2 - - - - - True - True - True - end - 5 - 5 - 5 - 5 - 6 - 6 - - - True - False - center - center - 5 - 5 - 5 - 5 - 6 - 6 - edit-select-all - - - - - False - True - 3 - - - - - False - True - 0 - - - - - True - False - 6 - 6 - - - 131 - True - False - 15 - 5 - 15 - 5 - - - False - True - 0 - - - - - True - True - False - start - center - 5 - 5 - 5 - 5 - 6 - True - - - True - False - Run in the terminal emulator - - - - - False - True - 1 - - - - - False - True - 1 - - - - - - - True - False - Command Line - - - - - True - True - 0 - - - - - True - True - 1 - - - - - True - False - 5 - vertical - - - True - False - 5 - 5 - 5 - 5 - 0.019999999552965164 - in - - - True - False - 5 - 5 - vertical - - - True - False - - - True - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - True - - - True - False - Run as another user - - - - - False - True - 0 - - - - - pkexec - True - True - False - True - rbSu - - - False - True - 1 - - - - - su - True - True - False - True - rbPkexec - - - False - True - 2 - - - - - sudo - True - True - False - True - rbSu - - - False - True - 3 - - - - - 95 - True - False - end - 15 - 5 - 15 - 5 - - - False - True - 4 - - - - - False - True - 0 - - - - - True - False - - - 145 - True - False - 5 - 5 - 5 - 5 - 6 - 6 - User Name - True - 0 - - - False - True - 0 - - - - - 330 - True - False - 5 - 5 - 5 - 5 - 6 - 6 - - - False - True - 1 - - - - - False - True - 1 - - - - - - - True - False - User - - - - - True - True - 0 - - - - - True - True - 2 - - - - - True - False - 5 - vertical - - - True - False - 5 - 5 - 5 - 5 - 0.019999999552965164 - in - - - True - False - 5 - 5 - vertical - - - True - True - False - start - center - 5 - 5 - 5 - 5 - 6 - 6 - True - - - True - False - Change startup priority - - - - - False - True - 0 - - - - - True - False - - - 5 - True - False - 5 - 5 - 5 - 5 - 6 - 6 - Priority - True - 0 - - - False - True - 0 - - - - - True - True - 5 - 5 - 5 - 5 - 6 - 6 - adjustment1 - 20 - 0 - 0 - - - True - True - 1 - - - - - True - True - 5 - 5 - 5 - 5 - 6 - 6 - True - - - False - True - 2 - - - - - False - True - 1 - - - - - True - False - - - 65 - True - False - 15 - 5 - 15 - 5 - 0 - - - False - True - 0 - - - - - 145 - True - False - 5 - 5 - 5 - 5 - 6 - 6 - 19 (Low) - True - 0 - - - False - True - 1 - - - - - True - False - end - center - 5 - 5 - 5 - 5 - 6 - 6 - -20 (High) - True - 0 - - - True - True - 3 - - - - - 95 - True - False - end - 15 - 5 - 15 - 5 - - - False - True - 4 - - - - - False - True - 2 - - - - - - - True - False - Priority - - - - - True - True - 0 - - - - - True - True - 3 - - - - - Run - True - True - True - 5 - 5 - 5 - 5 - 6 - 6 - image1 - True - - - False - True - 4 - - - - - True - True - 0 - - - - - True - True - 2 - - - - - - - True - False - True - - - True - False - Ublexec - - - - - True - False - 32 - ublexec - - - - - True - False - - - True - True - False - True - True - none - popInfo - - - - - - False - True - 0 - - - - - end - 1 - - - - - - - False - Пожалуйста выберите Файл - True - center - 500 - 400 - True - dialog - True - True - - - False - vertical - 2 - - - False - end - - - gtk-cancel - True - True - True - True - - - True - True - 0 - - - - - gtk-ok - True - True - True - True - - - True - True - 1 - - - - - False - False - 0 - - - - - - - - - diff --git a/.gitignore b/.gitignore index 3716db2..e4c2d7b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ ublexec.glade~ +#ublexec.glade# test.cpp .vscode -ublexec \ No newline at end of file +ublexec +nohup.out \ No newline at end of file diff --git a/nohup.out b/nohup.out deleted file mode 100644 index e69de29..0000000 diff --git a/screenshot/screenshot.png b/screenshot/screenshot.png index 1b575f2deace2600703de43246a9fb3115eda613..f2c3476fb31e75e6a6136bcfa747abe34e998070 100644 GIT binary patch literal 62683 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 TRdL`M1pL#wqYE!nwFvn)V{{Dl literal 65265 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 hL#HnYug)tHHmpp2;Xf3Z)F*{U4boBe(zn diff --git a/source/main.cc b/source/main.cc index 37d7cdb..dea0329 100755 --- a/source/main.cc +++ b/source/main.cc @@ -1,21 +1,6 @@ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include #include "ublexec.h" - - - int main(int argc, char** argv) { @@ -30,6 +15,7 @@ int main(int argc, char** argv) } auto app = Gtk::Application::create(argc, argv, "org.gtkmm.example.plug"); auto builder = Gtk::Builder::create_from_file(path_glade); + setlocale(LC_ALL, ""); bindtextdomain("ublexec", "/usr/share/locale/"); bind_textdomain_codeset("ublexec", "UTF-8"); textdomain("ublexec"); diff --git a/source/ublexec.cc b/source/ublexec.cc index 41f48f3..7fbf303 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -1,25 +1,3 @@ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include #include "ublexec.h" using namespace std; @@ -158,35 +136,37 @@ void MainWindow::add_CSS(){ } void MainWindow::localization(){ - aboutWindows->set_comments(gettext("ublexec")); - aboutWindows->set_website_label(gettext("Project Home Page")); - lblHeaderName->set_text(gettext("ublexec")); - this->set_title(gettext("ublexec")); - btnStart->set_label(gettext("Run")); - wndChooseFileWallpaper->set_title(gettext("Please select File")); - dialogStartMenu->set_title(gettext("Selecting Programs")); - lblInfoHead->set_text(gettext("Running applications as a user with a\nspecified priority")); - lblinfoCmd->set_text(gettext("Command Line")); - lblInfoTime->set_text(gettext("Team")); - labInfoExecutTerm->set_text(gettext("Run in the terminal emulator")); - lblInfoUser->set_text(gettext("User")); - lblInfoUserOther->set_text(gettext("Run as another user")); - lblInfoUserName->set_text(gettext("User Name")); - lblInfoNooPriority->set_text(gettext("Priority")); - lblInfoExec->set_text(gettext("Change startup priority")); - lblInfoPriority->set_text(gettext("Priority")); - lblMessageError->set_text(gettext("Select an executable file or program")); - lblInfoEnterProg->set_text(gettext("Selecting Programs")); - lblGraphics->set_text(gettext("Graphics")); - lblTools->set_text(gettext("Tools")); - lblInternet->set_text(gettext("Internet")); - lblMultimedia->set_text(gettext("Multimedia")); - lblSettings->set_text(gettext("Settings")); - lblEducation->set_text(gettext("Education")); - lblOffice->set_text(gettext("Office")); - lblOther->set_text(gettext("Other")); - lblDevelopment->set_text(gettext("Development")); - lblSystem->set_text(gettext("System")); + btnSynopsis->set_label(_("Synopsis")); + btnAbout->set_label(_("About the program")); + aboutWindows->set_comments(_("ublexec")); + aboutWindows->set_website_label(_("Project Home Page")); + lblHeaderName->set_text(_("ublexec")); + this->set_title(_("ublexec")); + btnStart->set_label(_("Run")); + wndChooseFileWallpaper->set_title(_("Please select File")); + dialogStartMenu->set_title(_("Selecting Programs")); + lblInfoHead->set_text(_("Running applications as a user with a\nspecified priority")); + lblinfoCmd->set_text(_("Command Line")); + lblInfoTime->set_text(_("Team")); + labInfoExecutTerm->set_text(_("Run in the terminal emulator")); + lblInfoUser->set_text(_("User")); + lblInfoUserOther->set_text(_("Run as another user")); + lblInfoUserName->set_text(_("User Name")); + lblInfoNooPriority->set_text(_("Priority")); + lblInfoExec->set_text(_("Change startup priority")); + lblInfoPriority->set_text(_("Priority")); + lblMessageError->set_text(_("Select an executable file or program")); + lblInfoEnterProg->set_text(_("Selecting Programs")); + lblGraphics->set_text(_("Graphics")); + lblTools->set_text(_("Tools")); + lblInternet->set_text(_("Internet")); + lblMultimedia->set_text(_("Multimedia")); + lblSettings->set_text(_("Settings")); + lblEducation->set_text(_("Education")); + lblOffice->set_text(_("Office")); + lblOther->set_text(_("Other")); + lblDevelopment->set_text(_("Development")); + lblSystem->set_text(_("System")); } void MainWindow::event(){ @@ -341,7 +321,7 @@ void MainWindow::settings(){ //builder->get_widget("plugBox",plugBox); //builder->get_widget("window",window); //builder->get_widget("btnSave",btnSave); - //ubl_get_standard_ui(standartHead,plugBox,btnSave,window,"ublexec.svg",gettext("Running applications as a user with a\nspecified priority"),gettext("ublexec"),0,0); + //ubl_get_standard_ui(standartHead,plugBox,btnSave,window,"ublexec.svg",_("Running applications as a user with a\nspecified priority"),_("ublexec"),0,0); } void MainWindow::close_entry_app(){ diff --git a/source/ublexec.h b/source/ublexec.h index 9d6f608..16e2a3d 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -1,15 +1,19 @@ - -#include +#include +#include +#include +#include #include +#include +#include #include +#include #include -#include +#include +#include #include -#include -#include -#include -#include -#include +#include +#include +#include using namespace std; diff --git a/ublexec.glade b/ublexec.glade index 8898c27..15fcf33 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -2,12 +2,6 @@ - - False - - - - False О Программе diff --git a/ublexec_ru.po b/ublexec_ru.po index f3fb935..7eb916b 100644 --- a/ublexec_ru.po +++ b/ublexec_ru.po @@ -6,6 +6,12 @@ msgid "" msgstr "" +msgid "About the program" +msgstr "О программе" + +msgid "Synopsis" +msgstr "Справка" + msgid "Project Home Page" msgstr "Домашняя страница проекта" From 37a1570fbf48bb309d17d2eab335925039ab87da Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Tue, 28 Feb 2023 14:00:43 +0600 Subject: [PATCH 16/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D1=8B=20=D0=B1=D0=B0=D0=B3=D0=B8=20=D1=81=20?= =?UTF-8?q?=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4=D0=BD=D0=BE=D0=B9=20=D1=81?= =?UTF-8?q?=D1=82=D1=80=D0=BE=D0=BA=D0=BE=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 69 +++++++++++++++++++++++------------------------ source/ublexec.h | 3 ++- ublexec.glade | 14 +++++++++- 3 files changed, 49 insertions(+), 37 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 7fbf303..0795d13 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -1,6 +1,5 @@ #include "ublexec.h" using namespace std; - string path_app= "/usr/bin/"; string path_glade= "/usr/share/ublexec/ui/ublexec.glade"; string path_css = "/usr/share/ublexec/css/style.css"; @@ -95,7 +94,6 @@ void MainWindow::get_builder(){ builder->get_widget("aboutWindows", aboutWindows); builder->get_widget("btnSettings", btnSettings); builder->get_widget("btnBoxAboutDialog", btnBoxAboutDialog); - } void MainWindow::set_icon_array(){ @@ -111,7 +109,6 @@ void MainWindow::set_icon_array(){ array_icon[9]=this->iconSystem; } - void MainWindow::template_apps_obj(Gtk::IconView *icon, Glib::RefPtr >k_list_app){ gtk_list_app = Gtk::ListStore::create(m_Columns); gtk_list_app->set_sort_column(m_Columns.m_col_description, Gtk::SORT_ASCENDING); @@ -120,9 +117,7 @@ void MainWindow::template_apps_obj(Gtk::IconView *icon, Glib::RefPtrset_pixbuf_column(m_Columns.m_col_pixbuf); } - void MainWindow::add_CSS(){ - Glib::RefPtr cssProvider = Gtk::CssProvider::create(); cssProvider->load_from_path(path_css); Glib::RefPtr styleContext = Gtk::StyleContext::create(); @@ -132,7 +127,6 @@ void MainWindow::add_CSS(){ Glib::RefPtr context_lbl_head = lblInfoHead->get_style_context(); context_box->add_class("cssboxColor1"); context_lbl_head->add_class("textHead"); - } void MainWindow::localization(){ @@ -201,8 +195,7 @@ void MainWindow::event(){ } void MainWindow::synopsis_show(){ - //wrapper_system("xdg-open https://wiki.ublinux.ru/ru/home"); - + system("xdg-open https://wiki.ublinux.ru/ru/home &"); } void MainWindow::icon_clear(){ @@ -312,18 +305,16 @@ void MainWindow::settings(){ rbSu->set_sensitive(false); rbSudo->set_sensitive(false); btnBoxAboutDialog->set_visible(false); - - //Gtk::Widget *standartHead; - //Gtk::Widget *plugBox; - //Gtk::Window *window; - //Gtk::Widget *btnSave; - //builder->get_widget("standartHead",standartHead); - //builder->get_widget("plugBox",plugBox); - //builder->get_widget("window",window); - //builder->get_widget("btnSave",btnSave); - //ubl_get_standard_ui(standartHead,plugBox,btnSave,window,"ublexec.svg",_("Running applications as a user with a\nspecified priority"),_("ublexec"),0,0); - -} + /* + Gtk::Widget *boxButton; + Gtk::Widget *boxAbout; + builder->get_widget("plugBox",plugBox); + builder->get_widget("window",window); + builder->get_widget("boxButton",boxButton); + builder->get_widget("boxAbout",boxAbout); + ubl_make_plugs(boxAbout,boxButton, socket_ext_id_I, socket_trd_id_I); + */ +} void MainWindow::close_entry_app(){ this->icon_clear(); dialogStartMenu->hide(); @@ -459,7 +450,7 @@ void MainWindow::start_cmd(){ } } if (cbxExecuteEpriority->get_active()){ - str_nice_cmd = "nice -n " + to_string(spinPriority->get_value_as_int()) + " "; + str_nice_cmd = "nice -n " + to_string(spinPriority->get_value_as_int()); } if (user_cmd.length()==0 && name_app.length()==0 && path_file.length()==0){ @@ -468,7 +459,7 @@ void MainWindow::start_cmd(){ } if (chbTerminal->get_active()){ - str_cmd_terminal = " xterm -e "; + str_cmd_terminal = "xterm -e "; } else{ str_cmd_terminal = ""; @@ -481,16 +472,25 @@ void MainWindow::start_cmd(){ cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + name_app; } else{ + bool flag_xdg = false; + if (user_cmd.find("xdg-open")!=string::npos){ + flag_xdg=true; + } string str_del = " "; - user_cmd = this->str_remove(user_cmd, str_del); + this->str_remove(user_cmd, str_del); + str_del = "\""; + this->str_remove(user_cmd, str_del); vector vec_user_cmd = this->split(user_cmd, ' '); size_t vec_len = vec_user_cmd.size(); user_cmd = vec_user_cmd[vec_len-1]; - str_del = "\""; - user_cmd = this->str_remove(user_cmd, str_del); - cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + user_cmd ; - if (str_variants_root.find("su -l") != string::npos){ - cmd += "\""; + if (flag_xdg==false){ + cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + user_cmd; + if (str_variants_root.find("su -l") != string::npos){ + cmd += "\""; + } + } + else{ + cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + " xdg-open " + user_cmd ; } } @@ -601,13 +601,12 @@ vector MainWindow::split(const std::string &s, char delim) { return elems; } -string MainWindow::str_remove(std::string& source, const std::string& to_remove){ - auto begin = source.find(to_remove); - if (begin != std::string::npos){ - int len_to_remove = to_remove.length(); - source.erase(begin, begin+len_to_remove); - } - return source; +void MainWindow::str_remove(std::string& source, std::string & to_remove){ + string::size_type n = to_remove.length(); + for (string::size_type i = source.find(to_remove); + i != string::npos; + i = source.find(to_remove)) + source.erase(i, n); } void MainWindow::pars_apps(){ diff --git a/source/ublexec.h b/source/ublexec.h index 16e2a3d..d4a1e0e 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -14,6 +14,7 @@ #include #include #include +#include using namespace std; @@ -81,7 +82,7 @@ public: void synopsis_show(); //static void me_thread(string cmd); void unselect_icon(Gtk::IconView *icon_entry); - string str_remove(std::string& source, const std::string& to_remove); + void str_remove(std::string& source, std::string & to_remove); vector split(const std::string &s, char delim); public: class ModelColumns : public Gtk::TreeModel::ColumnRecord diff --git a/ublexec.glade b/ublexec.glade index 15fcf33..21c9d66 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -1410,7 +1410,7 @@ specified priority - + True False @@ -1438,6 +1438,18 @@ specified priority 1 + + + True + False + + + + + + 2 + + From 146b314d2f776b51819ed9f2ed0552c1daeb89ab Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Wed, 1 Mar 2023 12:22:15 +0600 Subject: [PATCH 17/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=B4=D0=B8=D0=B7=D0=B0=D0=B9=D0=BD=20?= =?UTF-8?q?=D0=BE=D0=BA=D0=BD=D0=B0=20=D0=B2=D1=8B=D0=B7=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=20=D0=BF=D1=80=D0=B8=D0=BB=D0=BE=D0=B6=D0=B5=D0=BD=D0=B8=D0=B9?= =?UTF-8?q?,=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=20?= =?UTF-8?q?=D0=B1=D0=B0=D0=B3=20=D1=81=20=D0=BF=D0=BE=D0=B2=D1=82=D0=BE?= =?UTF-8?q?=D1=80=D0=B5=D0=BD=D0=B8=D0=B5=D0=BC=20=D1=8D=D0=BB=D0=B5=D0=BC?= =?UTF-8?q?=D0=B5=D0=BD=D1=82=D0=BE=D0=B2=20=D0=BE=D0=BA=D0=BD=D0=B0=20?= =?UTF-8?q?=D0=B2=D1=8B=D0=B7=D0=BE=D0=B2=D0=B0=20=D0=BF=D1=80=D0=B8=D0=BB?= =?UTF-8?q?=D0=BE=D0=B6=D0=B5=D0=BD=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 45 ++-- source/ublexec.h | 5 +- ublexec.glade | 640 ++++++++++++++++++++++++++++------------------ 3 files changed, 422 insertions(+), 268 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 0795d13..a54e101 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -65,7 +65,6 @@ void MainWindow::get_builder(){ builder->get_widget("lblInfoNooPriority", lblInfoNooPriority); builder->get_widget("lblInfoExec", lblInfoExec); builder->get_widget("lblInfoPriority", lblInfoPriority); - builder->get_widget("lblInfoEnterProg", lblInfoEnterProg); builder->get_widget("boxColor", boxColor); builder->get_widget("lblGraphics", lblGraphics); builder->get_widget("lblTools", lblTools); @@ -113,8 +112,8 @@ void MainWindow::template_apps_obj(Gtk::IconView *icon, Glib::RefPtrset_sort_column(m_Columns.m_col_description, Gtk::SORT_ASCENDING); icon->set_model(gtk_list_app); - icon->set_markup_column(m_Columns.m_col_description); - icon->set_pixbuf_column(m_Columns.m_col_pixbuf); + icon->set_text_column(m_Columns.m_col_description); + //icon->set_pixbuf_column(m_Columns.m_col_pixbuf); } void MainWindow::add_CSS(){ @@ -150,7 +149,6 @@ void MainWindow::localization(){ lblInfoExec->set_text(_("Change startup priority")); lblInfoPriority->set_text(_("Priority")); lblMessageError->set_text(_("Select an executable file or program")); - lblInfoEnterProg->set_text(_("Selecting Programs")); lblGraphics->set_text(_("Graphics")); lblTools->set_text(_("Tools")); lblInternet->set_text(_("Internet")); @@ -205,7 +203,6 @@ void MainWindow::icon_clear(){ list_Multimedia->clear(); list_Settings->clear(); list_Education->clear(); - list_Graphics->clear(); list_Office->clear(); list_Other->clear(); list_Development->clear(); @@ -356,7 +353,6 @@ void MainWindow::tempalte_row(string Name, string Exec, string path , Glib::Ref Gtk::TreeModel::Row row = *(dtk_list->append()); row[m_Columns.m_col_filename] = path; row[m_Columns.m_col_description] = Name; - row[m_Columns.app_name_exec] = Exec; if (std::ifstream(path)){ row[m_Columns.m_col_pixbuf] = Gdk::Pixbuf::create_from_file(path); } @@ -364,6 +360,9 @@ void MainWindow::tempalte_row(string Name, string Exec, string path , Glib::Ref path = "/usr/share/icons/Faenza/emblems/16/emblem-danger.png"; row[m_Columns.m_col_pixbuf] = Gdk::Pixbuf::create_from_file(path); } + row[m_Columns.app_name_exec] = Exec; + row[m_Columns.float_h_align] = 0.5; + row[m_Columns.float_w_align] = 0.5; } void MainWindow::open_list_app(){ @@ -430,29 +429,31 @@ void MainWindow::start_cmd(){ //chbTerminal->set_active(true); } if (rbPkexec->get_active()){ - if ((chbAnotherUser->get_active()) && (cmbUser->get_active_text().length()==0)) { - str_variants_root = " pkexec --user ${USER} env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - } - else if (chbAnotherUser->get_active()){ - str_variants_root = " pkexec --user " + cmbUser->get_active_text() + " env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - } - else{ - str_variants_root = " pkexec --user ${USER} env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; + str_variants_root = " pkexec --user " + cmbUser->get_active_text(); + if (cbxExecuteEpriority->get_active()){ + str_variants_root += " nice -n " + to_string(spinPriority->get_value_as_int()); } + str_variants_root += " env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; } else if (rbSu->get_active()){ chbTerminal->set_active(true); - str_variants_root="su -l " + cmbUser->get_active_text() + " -c \" DISPLAY=$DISPLAY "; + str_variants_root="su -l " + cmbUser->get_active_text(); + if (cbxExecuteEpriority->get_active()){ + str_variants_root += " nice -n " + to_string(spinPriority->get_value_as_int()); + } + str_variants_root += + " -c \" DISPLAY=$DISPLAY "; } else if (rbSudo->get_active()){ chbTerminal->set_active(true); str_variants_root="sudo -u " + cmbUser->get_active_text() + " "; + if (cbxExecuteEpriority->get_active()){ + str_variants_root += " nice -n " + to_string(spinPriority->get_value_as_int()) + " "; + } } } - if (cbxExecuteEpriority->get_active()){ - str_nice_cmd = "nice -n " + to_string(spinPriority->get_value_as_int()); + if ((cbxExecuteEpriority->get_active()) && (chbAnotherUser->get_active()==false)){ + str_nice_cmd = " nice -n " + to_string(spinPriority->get_value_as_int()) + " "; } - if (user_cmd.length()==0 && name_app.length()==0 && path_file.length()==0){ messageError->show(); return; @@ -466,10 +467,10 @@ void MainWindow::start_cmd(){ } string cmd = ""; if (path_file != ""){ - cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + " xdg-open '" + path_file + "' "; + cmd = "nohup " + str_nice_cmd + str_cmd_terminal + str_variants_root + " xdg-open '" + path_file + "' "; } else if (name_app!=""){ - cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + name_app; + cmd = "nohup " + str_nice_cmd + str_cmd_terminal + str_variants_root + name_app; } else{ bool flag_xdg = false; @@ -484,13 +485,13 @@ void MainWindow::start_cmd(){ size_t vec_len = vec_user_cmd.size(); user_cmd = vec_user_cmd[vec_len-1]; if (flag_xdg==false){ - cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + user_cmd; + cmd = "nohup " + str_nice_cmd + str_cmd_terminal + str_variants_root + user_cmd; if (str_variants_root.find("su -l") != string::npos){ cmd += "\""; } } else{ - cmd = str_nice_cmd + " nohup " + str_cmd_terminal + str_variants_root + " xdg-open " + user_cmd ; + cmd = "nohup " + str_nice_cmd + str_cmd_terminal + str_variants_root + " xdg-open " + user_cmd ; } } diff --git a/source/ublexec.h b/source/ublexec.h index d4a1e0e..cda2475 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -94,12 +94,16 @@ public: add(m_col_description); add(m_col_pixbuf); add(app_name_exec); + add(float_h_align); + add(float_w_align); } Gtk::TreeModelColumn m_col_filename; Gtk::TreeModelColumn m_col_description; Gtk::TreeModelColumn app_name_exec; Gtk::TreeModelColumn > m_col_pixbuf; + Gtk::TreeModelColumn float_h_align; + Gtk::TreeModelColumn float_w_align; }; ModelColumns m_Columns; public: @@ -141,7 +145,6 @@ public: Gtk::Label *lblInfoNooPriority; Gtk::Label *lblInfoExec; Gtk::Label *lblInfoPriority; - Gtk::Label *lblInfoEnterProg; Gtk::Label *lblGraphics; Gtk::Label *lblTools; diff --git a/ublexec.glade b/ublexec.glade index 21c9d66..298e5e8 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -12,7 +12,7 @@ dialog True ublexec - 1.2 + 1.0 Copyright © 2023 - UBSoft Software LLC Setting the date and time https://ublinux.ru/ @@ -56,26 +56,14 @@ 10 - 500 - 400 + 450 + 240 False True False vertical - - - True - False - Selecting Programs - - - False - True - 0 - - True @@ -83,6 +71,7 @@ in + True False 5 5 @@ -110,321 +99,466 @@ False vertical - - True - False - start - Graphics - - - False - True - 0 - - - - + True True - 1 - queue - 1 - 1 - 1 - - - - True - True - 1 - - - - - True - False - start - Tools + + + True + True + 1 + horizontal + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 4 + 5 + + + + + + + True + False + Graphics + + False True - 2 + 1 - + True True - 1 - queue - 1 - 1 - 1 - - - - True - True - 3 - - - - - True - False - start - Internet + + + True + True + 1 + queue + horizontal + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + + + True + False + Tools + + False True - 4 + 3 - + True True - 1 - queue - 1 - 1 - 1 - - - - True - True - 5 - - - - - True - False - start - Multimedia + + + True + True + 1 + queue + horizontal + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + + + True + False + Internet + + False True - 6 + 5 - + True True - 1 - queue - 1 - 1 - 1 - - - - True - True - 7 - - - - - True - False - start - Settings + + + True + True + 1 + queue + horizontal + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + + + True + False + Multimedia + + False True - 8 + 7 - + True True - 1 - queue - 1 - 1 - 1 - - - - True - True - 9 - - - - - True - False - start - Education + + + True + True + 1 + queue + horizontal + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + + + True + False + Settings + + False True - 10 + 9 - + True True - 1 - queue - 1 - 1 - 1 - - - - True - True - 11 - - - - - True - False - start - Office + + + True + True + 0 + queue + horizontal + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + + + True + False + Education + + False True - 12 + 11 - + True True - 1 - queue - 1 - 1 - 1 - - - - True - True - 13 - - - - - True - False - start - Other + + + True + True + 1 + queue + horizontal + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + + + True + False + Office + + False True - 14 + 13 - + True True - 1 - queue - 1 - 1 - 1 - - - - True - True - 15 - - - - - True - False - start - Development + + + True + True + 1 + queue + horizontal + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + + + True + False + Other + + False True - 16 + 15 - + True True - 1 - queue - 1 - 1 - 1 - - - - True - True - 17 - - - - - True - False - start - System + + + True + True + 1 + queue + horizontal + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + + + True + False + Development + + False True - 18 + 17 - + True True - 1 - queue - 1 - 1 - 1 - + + + True + True + 1 + queue + horizontal + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + + + True + False + System + + - True + False True 19 @@ -517,6 +651,22 @@ 6 gtk-media-play + + + + + + + + + + + + + + + + False Внимание! From f5206fb2561fdc7c87af0e14cfea3bae03b6f63a Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Wed, 1 Mar 2023 16:57:27 +0600 Subject: [PATCH 18/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=B1=D0=B0=D0=B3=20=D1=81=20=D0=B2=D1=8B?= =?UTF-8?q?=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD=D0=B8=D0=B5=D0=BC=20su=20?= =?UTF-8?q?=D0=BE=D1=82=20root?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 16 +++++++++++----- ublexec.glade | 6 ++++++ 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index a54e101..6f681cb 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -113,7 +113,6 @@ void MainWindow::template_apps_obj(Gtk::IconView *icon, Glib::RefPtrset_sort_column(m_Columns.m_col_description, Gtk::SORT_ASCENDING); icon->set_model(gtk_list_app); icon->set_text_column(m_Columns.m_col_description); - //icon->set_pixbuf_column(m_Columns.m_col_pixbuf); } void MainWindow::add_CSS(){ @@ -437,11 +436,18 @@ void MainWindow::start_cmd(){ } else if (rbSu->get_active()){ chbTerminal->set_active(true); - str_variants_root="su -l " + cmbUser->get_active_text(); - if (cbxExecuteEpriority->get_active()){ - str_variants_root += " nice -n " + to_string(spinPriority->get_value_as_int()); + string str_user = cmbUser->get_active_text(); + if (str_user!="root"){ + str_variants_root = "su -l " + cmbUser->get_active_text(); + } + else{ + str_variants_root = "su "; } + str_variants_root += + " -c \" DISPLAY=$DISPLAY "; + if (cbxExecuteEpriority->get_active()){ + str_variants_root += "nice -n " + to_string(spinPriority->get_value_as_int()) + " "; + } } else if (rbSudo->get_active()){ chbTerminal->set_active(true); @@ -486,7 +492,7 @@ void MainWindow::start_cmd(){ user_cmd = vec_user_cmd[vec_len-1]; if (flag_xdg==false){ cmd = "nohup " + str_nice_cmd + str_cmd_terminal + str_variants_root + user_cmd; - if (str_variants_root.find("su -l") != string::npos){ + if (cmd.find("-e su ") != string::npos){ cmd += "\""; } } diff --git a/ublexec.glade b/ublexec.glade index 298e5e8..ddd1e1f 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -2,6 +2,11 @@ + + True + True + 6 + False О Программе @@ -528,6 +533,7 @@ 1 queue horizontal + 120 1 From 4a9086614543208c1860e4dc3316d9afb43587cf Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Thu, 2 Mar 2023 12:15:06 +0600 Subject: [PATCH 19/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D1=8B=20=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4?= =?UTF-8?q?=D1=8B=20=D0=B7=D0=B0=D0=BF=D1=83=D1=81=D0=BA=D0=B0,=20=D0=B8?= =?UTF-8?q?=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=20=D0=B4=D0=B8?= =?UTF-8?q?=D0=B7=D0=B0=D0=B9=D0=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 9 +- ublexec.glade | 683 ++++++++++++++++++++++++++++++++-------------- 2 files changed, 485 insertions(+), 207 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 6f681cb..01d53a3 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -278,6 +278,7 @@ void MainWindow::unselect_icon(Gtk::IconView *icon_entry){ } void MainWindow::settings(){ + system("nohup xhost + local: > /dev/null 2>&1 &"); this->pars_apps(); this->get_builder(); this->event(); @@ -451,7 +452,12 @@ void MainWindow::start_cmd(){ } else if (rbSudo->get_active()){ chbTerminal->set_active(true); - str_variants_root="sudo -u " + cmbUser->get_active_text() + " "; + if (getlogin()==cmbUser->get_active_text()){ + str_variants_root="sudo "; + } + else{ + str_variants_root="sudo -u " + cmbUser->get_active_text() + " "; + } if (cbxExecuteEpriority->get_active()){ str_variants_root += " nice -n " + to_string(spinPriority->get_value_as_int()) + " "; } @@ -508,6 +514,7 @@ void MainWindow::start_cmd(){ path_file_name = ""; path_file = ""; name_app = ""; + } void me_thread(string cmd){ diff --git a/ublexec.glade b/ublexec.glade index ddd1e1f..3eff964 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -108,27 +108,54 @@ True True - + True - True - 1 - horizontal - 120 - 1 + False - - - 5 - 5 - 2 - + + True + False + 7 + 7 + 7 + 7 + + + False + True + 0 + - - - 4 - 5 - + + True + True + 1 + horizontal + 1 + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 4 + 5 + + + + + False + True + 1 + @@ -151,32 +178,59 @@ True True - + True - True - 1 - queue - horizontal - 120 - 1 + False - - - 5 - 5 - 2 - + + True + False + 7 + 7 + 7 + 7 + + + False + True + 0 + - - - 5 - 4 - + + True + True + 1 + queue + horizontal + 1 + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + False + True + 1 + - @@ -197,33 +251,61 @@ True True + 1 - + True - True - 1 - queue - horizontal - 120 - 1 + False - - - 5 - 5 - 2 - + + True + False + 7 + 7 + 7 + 7 + + + False + True + 0 + - - - 5 - 4 - + + True + True + 1 + queue + horizontal + 1 + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + False + True + 1 + - @@ -245,32 +327,59 @@ True True - + True - True - 1 - queue - horizontal - 120 - 1 + False - - - 5 - 5 - 2 - + + True + False + 7 + 7 + 7 + 7 + + + False + True + 0 + - - - 5 - 4 - + + True + True + 1 + queue + horizontal + 1 + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + False + True + 1 + - @@ -292,32 +401,59 @@ True True - + True - True - 1 - queue - horizontal - 120 - 1 + False - - - 5 - 5 - 2 - + + True + False + 7 + 7 + 7 + 7 + + + False + True + 0 + - - - 5 - 4 - + + True + True + 1 + queue + horizontal + 1 + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + False + True + 1 + - @@ -339,32 +475,59 @@ True True - + True - True - 0 - queue - horizontal - 120 - 1 + False - - - 5 - 5 - 2 - + + True + False + 7 + 7 + 7 + 7 + + + False + True + 0 + - - - 5 - 4 - + + True + True + 6 + queue + horizontal + 1 + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + False + True + 1 + - @@ -386,32 +549,59 @@ True True - + True - True - 1 - queue - horizontal - 120 - 1 + False - - - 5 - 5 - 2 - + + True + False + 7 + 7 + 7 + 7 + + + False + True + 0 + - - - 5 - 4 - + + True + True + 1 + queue + horizontal + 1 + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + False + True + 1 + - @@ -433,32 +623,59 @@ True True - + True - True - 1 - queue - horizontal - 120 - 1 + False - - - 5 - 5 - 2 - + + True + False + 7 + 7 + 7 + 7 + + + False + True + 0 + - - - 5 - 4 - + + True + True + 1 + queue + horizontal + 1 + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + False + True + 1 + - @@ -480,32 +697,59 @@ True True - + True - True - 1 - queue - horizontal - 120 - 1 + False - - - 5 - 5 - 2 - + + True + False + 7 + 7 + 7 + 7 + + + False + True + 0 + - - - 5 - 4 - + + True + True + 1 + queue + horizontal + 1 + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + False + True + 1 + - @@ -527,32 +771,59 @@ True True - + True - True - 1 - queue - horizontal - 120 - 1 + False - - - 5 - 5 - 2 - + + True + False + 7 + 7 + 7 + 7 + + + False + True + 0 + - - - 5 - 4 - + + True + True + 1 + queue + horizontal + 1 + 120 + 1 + + + + 5 + 5 + 2 + + + + + + 5 + 4 + + + + + + False + True + 1 + - From 327d96560a4845c85c89c88149d79bf3ab2cf1ee Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Thu, 2 Mar 2023 16:13:48 +0600 Subject: [PATCH 20/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=B4=D0=B8=D0=B7=D0=B0=D0=B9=D0=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 6 +- source/ublexec.h | 5 +- style.css | 68 +++++++++++++++++ ublexec.glade | 182 +++++++++++++++++++--------------------------- 4 files changed, 147 insertions(+), 114 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 01d53a3..6a254ee 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -87,7 +87,6 @@ void MainWindow::get_builder(){ builder->get_widget("iconSystem", iconSystem); builder->get_widget("lblSystem", lblSystem); builder->get_widget("lblHeaderName", lblHeaderName); - builder->get_widget("popInfo", popInfo); builder->get_widget("btnSynopsis", btnSynopsis); builder->get_widget("btnAbout", btnAbout); builder->get_widget("aboutWindows", aboutWindows); @@ -186,9 +185,8 @@ void MainWindow::event(){ iconOther->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Other)); iconDevelopment->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_Development)); iconSystem->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_System)); - btnSynopsis->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::synopsis_show)); - btnAbout->signal_clicked().connect([&](){aboutWindows->show();}); - btnSettings->signal_clicked().connect([&](){popInfo->show();}); + btnSynopsis->signal_activate().connect(sigc::mem_fun(*this, &MainWindow::synopsis_show)); + btnAbout->signal_activate().connect([&](){aboutWindows->show();}); } void MainWindow::synopsis_show(){ diff --git a/source/ublexec.h b/source/ublexec.h index cda2475..a6b3f50 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -169,9 +169,8 @@ public: Gtk::IconView *iconDevelopment; Gtk::IconView *iconSystem; Gtk::IconView *iconEntry; - Gtk::Popover *popInfo; - Gtk::ModelButton *btnAbout; - Gtk::ModelButton *btnSynopsis; + Gtk::MenuItem *btnAbout; + Gtk::MenuItem *btnSynopsis; Gtk::AboutDialog *aboutWindows; Gtk::MenuButton *btnSettings; Gtk::ButtonBox *btnBoxAboutDialog; diff --git a/style.css b/style.css index 41a96a0..1e38d36 100644 --- a/style.css +++ b/style.css @@ -4,4 +4,72 @@ .textHead{ text-shadow: 1px 1px #ffffff; } +.menuitemtop *{ + margin:2px 2px 0 2px; + padding: 5px 10px 3px 5px; +} +.menuitemmiddle *{ + margin:0 2px 0 2px; + padding: 3px 10px 3px 5px; +} +.menuitembottom *{ + margin:0 2px 2px 2px; + padding: 3px 10px 5px 5px; +} +.menuitemtop:hover { + background:@theme_bg_color; +} +.menuitemmiddle:hover { + background:@theme_bg_color; +} +.menuitembottom:hover { + background:@theme_bg_color; +} +.menuitemtop:hover* { + margin:2px 2px 0 2px; + padding: 5px 10px 3px 5px; + background:@theme_selected_bg_color; + border-radius:2px; + border-color:transparent; +} +.menuitemmiddle:hover* { + margin:0 2px 0 2px; + padding: 3px 10px 3px 5px; + background:@theme_selected_bg_color; + border-radius:2px; + border-color:transparent; +} +.menuitembottom:hover* { + margin:0 2px 2px 2px; + padding: 3px 10px 5px 5px; + background:@theme_selected_bg_color; + border-radius:2px; + border-color:transparent; +} +.menuitembottom{ + margin-top:0px; + border-color:alpha(@theme_text_color, 0.4); + border-style:solid; + border-radius:0 0 5px 5px; + border-left-width:1px; + border-bottom-width:1px; + border-right-width:1px; +} +.menuitemmiddle{ + margin-top:0px; + margin-bottom:0px; + border-color:alpha(@theme_text_color, 0.4); + border-style:solid; + border-left-width:1px; + border-right-width:1px; +} +.menuitemtop{ + margin-bottom:0px; + border-color:alpha(@theme_text_color, 0.4); + border-style:solid; + border-radius:5px 5px 0 0; + border-left-width:1px; + border-top-width:1px; + border-right-width:1px; +} \ No newline at end of file diff --git a/ublexec.glade b/ublexec.glade index 3eff964..d4a0946 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -944,115 +944,33 @@ - + + True False - Внимание! - dialog - - + False + False + 4 + dropdown-menu + + + True False - vertical - 2 - - - False - True - end - - - - - - ОК - True - True - True - - - True - True - 1 - - - - - False - False - 0 - - - - - True - False - 10 - 10 - 15 - Select an executable file or program - - - True - True - 2 - - + Synopsis + True + - - - False - + True False - 0 - none - - - True - False - 5 - 5 - 5 - 5 - - - True - False - vertical - - - True - True - True - Synopsis - - - False - True - 2 - - - - - True - True - True - About the program - - - False - True - 3 - - - - - - - - - + About the program + True + @@ -1826,6 +1744,9 @@ specified priority True False Ublexec + + + @@ -1847,10 +1768,14 @@ specified priority False True True + menu1 none - popInfo - + + True + False + open-menu-symbolic + @@ -1865,15 +1790,58 @@ specified priority 1 - - - True + + + + + False + Внимание! + dialog + + + False + vertical + 2 + + False + True + end + + + ОК + True + True + True + + + True + True + 1 + + + False + False + 0 + + + + + True + False + 10 + 10 + 15 + Select an executable file or program + + + True + True 2 From ca9bee553cd25f23367bd57ec7ae89736be3fba7 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Thu, 2 Mar 2023 18:00:40 +0600 Subject: [PATCH 21/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=B1=D0=B0=D0=B3=20=D1=81=20=D0=BA=D0=BE?= =?UTF-8?q?=D0=BC=D0=B0=D0=BD=D0=B4=D0=BE=D0=B9=20nice?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 23 +++++++++++++++++++++++ source/ublexec.h | 1 + 2 files changed, 24 insertions(+) diff --git a/source/ublexec.cc b/source/ublexec.cc index 6a254ee..1348cc5 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -187,8 +187,31 @@ void MainWindow::event(){ iconSystem->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_System)); btnSynopsis->signal_activate().connect(sigc::mem_fun(*this, &MainWindow::synopsis_show)); btnAbout->signal_activate().connect([&](){aboutWindows->show();}); + rbSudo->signal_toggled().connect([&](){ + spinPriority->set_range(-20,19); + spinPriority->set_increments(1.0,-1.0); + scalePriority->set_range(-20,19); + scalePriority->set_value(0); + lblTimeEpriorityLow->set_text("19 (Низкий)"); + lblTime4EpriorityHigh->set_text("-20 (Высокий)"); + }); + rbSu->signal_toggled().connect(sigc::mem_fun(*this,&MainWindow::nice_hight)); + rbPkexec->signal_toggled().connect(sigc::mem_fun(*this,&MainWindow::nice_hight)); } +void MainWindow::nice_hight(){ + Glib::ustring entry_user = cmbUser->get_active_text(); + if (geteuid() != 0){ + spinPriority->set_range(0,19); + spinPriority->set_increments(1.0,-1.0); + scalePriority->set_range(0,19); + scalePriority->set_value(0); + lblTimeEpriorityLow->set_text("19 (Низкий)"); + lblTime4EpriorityHigh->set_text("0 (Высокий)"); + } +} + + void MainWindow::synopsis_show(){ system("xdg-open https://wiki.ublinux.ru/ru/home &"); } diff --git a/source/ublexec.h b/source/ublexec.h index a6b3f50..5c00d9d 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -54,6 +54,7 @@ public: void open_list_app(); void start_cmd(); void changed_user(); + void nice_hight(); void execute_terminal(){} void execute_another_User(){} void activ_or_block_other_user(); From bb2cc550bee2f687ef8b699b01be1227531a7008 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Fri, 3 Mar 2023 12:26:00 +0600 Subject: [PATCH 22/31] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=BE=20=D0=B4=D0=B8=D0=BD=D0=B0=D0=BC=D0=B8=D1=87?= =?UTF-8?q?=D0=B5=D1=81=D0=BA=D0=BE=D0=B5=20=D0=BE=D0=B1=D0=BD=D0=BE=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD?= =?UTF-8?q?=D0=B4=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 132 ++++++++++++++++++++++++++++++++-------------- source/ublexec.h | 13 ++++- style.css | 5 -- ublexec.glade | 42 +++++++++++---- 4 files changed, 134 insertions(+), 58 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 1348cc5..e768d0f 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -162,9 +162,8 @@ void MainWindow::localization(){ void MainWindow::event(){ btnFilemaneg->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::open_filemaneg)); btnListApp->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::open_list_app)); - btnStart->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::start_cmd)); - cmbUser->signal_changed().connect(sigc::mem_fun(*this, &MainWindow::changed_user)); - //chbTerminal->signal_toggled().connect(sigc::mem_fun(*this, &MainWindow::execute_terminal)); + btnStart->signal_clicked().connect(sigc::mem_fun(*this, &MainWindow::entry_app)); + chbTerminal->signal_toggled().connect(sigc::mem_fun(*this, &MainWindow::denamic_cmd)); chbAnotherUser->signal_toggled().connect(sigc::mem_fun(*this, &MainWindow::activ_or_block_other_user)); spinPriority->signal_value_changed().connect(sigc::mem_fun(*this, &MainWindow::change_scale_priority)); scalePriority->signal_value_changed().connect(sigc::mem_fun(*this, &MainWindow::change_spin_priority)); @@ -197,9 +196,32 @@ void MainWindow::event(){ }); rbSu->signal_toggled().connect(sigc::mem_fun(*this,&MainWindow::nice_hight)); rbPkexec->signal_toggled().connect(sigc::mem_fun(*this,&MainWindow::nice_hight)); + cmbUser->signal_changed().connect(sigc::mem_fun(*this, &MainWindow::denamic_cmd)); + rbSudo->signal_toggled().connect(sigc::mem_fun(*this, &MainWindow::denamic_cmd)); + txtCmd->signal_focus_out_event().connect(sigc::mem_fun(*this, &MainWindow::focus_out_txt_cmd)); + txtCmd->signal_focus_in_event().connect(sigc::mem_fun(*this, &MainWindow::focus_in_txt_cmd)); +} + +bool MainWindow::focus_in_txt_cmd(GdkEventFocus* event){ + if (user_cmd.length() != 0){ + //txtCmd->set_text(user_cmd); + } + else if (name_app.length() != 0){ + //txtCmd->set_text(name_app); + } + else if (path_file.length() != 0){ + //txtCmd->set_text(path_file); + } + else{ + user_cmd = txtCmd->get_text(); + //txtCmd->set_text(user_cmd); + } + cmd_old = txtCmd->get_text(); + return true; } void MainWindow::nice_hight(){ + Glib::ustring entry_user = cmbUser->get_active_text(); if (geteuid() != 0){ spinPriority->set_range(0,19); @@ -208,7 +230,8 @@ void MainWindow::nice_hight(){ scalePriority->set_value(0); lblTimeEpriorityLow->set_text("19 (Низкий)"); lblTime4EpriorityHigh->set_text("0 (Высокий)"); - } + } + this->denamic_cmd(); } @@ -275,6 +298,9 @@ void MainWindow::tempate_icon_select(Gtk::IconView *icon, Glib::RefPtrset_text(app_name_exec); name_app = txtCmd->get_text(); int len_name_app = name_app.length(); @@ -351,6 +377,7 @@ void MainWindow::activ_or_block_execute_epriority(){ lblInfoNooPriority->set_sensitive(flag); lblTimeEpriorityLow->set_sensitive(flag); lblTime4EpriorityHigh->set_sensitive(flag); + this->denamic_cmd(); } void MainWindow::open_filemaneg(){ @@ -362,6 +389,8 @@ void MainWindow::close_filemaneg(){ } void MainWindow::get_path_filemaneg(){ + name_app = ""; + user_cmd = ""; path_file = wndChooseFileWallpaper->get_filename(); if (path_file.length() == 0){} else{ @@ -437,14 +466,10 @@ void MainWindow::open_list_app(){ } -void MainWindow::start_cmd(){ +string MainWindow::start_cmd(string user_cmd=""){ string str_cmd_terminal=""; string str_variants_root = ""; string str_nice_cmd = ""; - string user_cmd = ""; - if (name_app.length()==0 && path_file.length()==0){ - user_cmd = txtCmd->get_text(); - } if (chbAnotherUser->get_active()){ if (geteuid()!=0){ //chbTerminal->set_active(true); @@ -489,10 +514,10 @@ void MainWindow::start_cmd(){ } if (user_cmd.length()==0 && name_app.length()==0 && path_file.length()==0){ messageError->show(); - return; + return ""; } - if (chbTerminal->get_active()){ + if (chbTerminal->get_active() == true){ str_cmd_terminal = "xterm -e "; } else{ @@ -505,41 +530,65 @@ void MainWindow::start_cmd(){ else if (name_app!=""){ cmd = "nohup " + str_nice_cmd + str_cmd_terminal + str_variants_root + name_app; } - else{ - bool flag_xdg = false; - if (user_cmd.find("xdg-open")!=string::npos){ - flag_xdg=true; - } - string str_del = " "; - this->str_remove(user_cmd, str_del); - str_del = "\""; - this->str_remove(user_cmd, str_del); - vector vec_user_cmd = this->split(user_cmd, ' '); - size_t vec_len = vec_user_cmd.size(); - user_cmd = vec_user_cmd[vec_len-1]; - if (flag_xdg==false){ - cmd = "nohup " + str_nice_cmd + str_cmd_terminal + str_variants_root + user_cmd; - if (cmd.find("-e su ") != string::npos){ - cmd += "\""; - } - } - else{ - cmd = "nohup " + str_nice_cmd + str_cmd_terminal + str_variants_root + " xdg-open " + user_cmd ; - } + else if (user_cmd.length()>0){ + cmd = "nohup " + str_nice_cmd + str_cmd_terminal + str_variants_root + " " + user_cmd; + } + if (cmd.find("-e su ")!=string::npos){ + cmd+=" \""; } - - txtCmd->set_text(cmd); cmd += " > /dev/null 2>&1"; - std::thread t(&me_thread, cmd); - t.detach(); - path_file_name = ""; + + return cmd; +} + +void MainWindow::call_app(string &cmd){ path_file = ""; name_app = ""; - + if (cmd.length() != 0){ + std::thread t([&](string cmd){system(cmd.c_str());}, cmd); + t.detach(); + } + +} +void MainWindow::denamic_cmd(){ + if (chbTerminal->get_active()==true || chbAnotherUser->get_active()==true || cbxExecuteEpriority->get_active()==true){ + if (txtCmd->get_text().length()==0){ + chbTerminal->set_active(false); + chbAnotherUser->set_active(false); + cbxExecuteEpriority->set_active(false); + path_file = ""; + name_app = ""; + user_cmd = ""; + txtCmd->set_text(user_cmd); + messageError->show(); + } + else{ + txtCmd->set_text(this->start_cmd(user_cmd)); + } + } + else{ + if (user_cmd.length() != 0){ + txtCmd->set_text(this->start_cmd(user_cmd)); + } + } + } -void me_thread(string cmd){ - system(cmd.c_str()); +bool MainWindow::focus_out_txt_cmd(GdkEventFocus* event){ + //this->focus_in_txt_cmd(event); + if (cmd_old!=txtCmd->get_text()){ + user_cmd = txtCmd->get_text(); + } + this->denamic_cmd(); + return true; +} + +void MainWindow::entry_app(){ + if (name_app.length()==0 && path_file.length()==0){ + + } + string cmd = txtCmd->get_text(); + this->call_app(cmd); } void MainWindow::changed_user(){ @@ -576,14 +625,17 @@ void MainWindow::activ_or_block_other_user(){ if (flag_sudo == true){ rbSudo->set_sensitive(flag); } + this->denamic_cmd(); } void MainWindow::change_scale_priority(){ scalePriority->set_value(spinPriority->get_value_as_int()); + this->denamic_cmd(); } void MainWindow::change_spin_priority(){ spinPriority->set_value(scalePriority->get_value()); + this->denamic_cmd(); } void MainWindow::pars_dir_bin(){ diff --git a/source/ublexec.h b/source/ublexec.h index 5c00d9d..e52cd06 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -52,10 +52,11 @@ public: void close_filemaneg(); void get_path_filemaneg(); void open_list_app(); - void start_cmd(); + string start_cmd(string user_cmd); + void call_app(string &cmd); void changed_user(); + void entry_app(); void nice_hight(); - void execute_terminal(){} void execute_another_User(){} void activ_or_block_other_user(); void change_scale_priority(); @@ -81,6 +82,9 @@ public: void icon_clear(); void set_icon_array(); void synopsis_show(); + void denamic_cmd(); + bool focus_out_txt_cmd(GdkEventFocus* event); + bool focus_in_txt_cmd(GdkEventFocus* event); //static void me_thread(string cmd); void unselect_icon(Gtk::IconView *icon_entry); void str_remove(std::string& source, std::string & to_remove); @@ -187,6 +191,11 @@ public: Glib::RefPtr list_Development; Glib::RefPtr list_System; public: + string cmd_old = ""; + string user_cmd=""; + string user_cmd_old=""; + string name_app_old=""; + string path_file_old=""; string execute_cmd = ""; string path_file = ""; string name_app = ""; diff --git a/style.css b/style.css index 1e38d36..5b6b638 100644 --- a/style.css +++ b/style.css @@ -29,28 +29,24 @@ margin:2px 2px 0 2px; padding: 5px 10px 3px 5px; background:@theme_selected_bg_color; - border-radius:2px; border-color:transparent; } .menuitemmiddle:hover* { margin:0 2px 0 2px; padding: 3px 10px 3px 5px; background:@theme_selected_bg_color; - border-radius:2px; border-color:transparent; } .menuitembottom:hover* { margin:0 2px 2px 2px; padding: 3px 10px 5px 5px; background:@theme_selected_bg_color; - border-radius:2px; border-color:transparent; } .menuitembottom{ margin-top:0px; border-color:alpha(@theme_text_color, 0.4); border-style:solid; - border-radius:0 0 5px 5px; border-left-width:1px; border-bottom-width:1px; border-right-width:1px; @@ -68,7 +64,6 @@ margin-bottom:0px; border-color:alpha(@theme_text_color, 0.4); border-style:solid; - border-radius:5px 5px 0 0; border-left-width:1px; border-top-width:1px; border-right-width:1px; diff --git a/ublexec.glade b/ublexec.glade index d4a0946..ca9d7b6 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -133,7 +133,9 @@ 1 horizontal 1 - 120 + 350 + 1 + 1 1 @@ -204,7 +206,9 @@ queue horizontal 1 - 120 + 350 + 1 + 1 1 @@ -279,7 +283,9 @@ queue horizontal 1 - 120 + 350 + 1 + 1 1 @@ -353,7 +359,9 @@ queue horizontal 1 - 120 + 350 + 1 + 1 1 @@ -427,7 +435,9 @@ queue horizontal 1 - 120 + 350 + 1 + 1 1 @@ -497,11 +507,13 @@ True True - 6 + 1 queue horizontal 1 - 120 + 350 + 1 + 1 1 @@ -575,7 +587,9 @@ queue horizontal 1 - 120 + 350 + 1 + 1 1 @@ -649,7 +663,9 @@ queue horizontal 1 - 120 + 350 + 1 + 1 1 @@ -723,7 +739,9 @@ queue horizontal 1 - 120 + 350 + 1 + 1 1 @@ -797,7 +815,9 @@ queue horizontal 1 - 120 + 350 + 1 + 1 1 From bd4deb1b736040efb5aecfa77857be80d12c6a35 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Fri, 3 Mar 2023 15:26:32 +0600 Subject: [PATCH 23/31] =?UTF-8?q?=D0=95=D1=81=D0=BB=D0=B8=20=D0=BF=D0=BE?= =?UTF-8?q?=D0=BB=D1=8C=D0=B7=D0=BE=D0=B2=D0=B0=D1=82=D0=B5=D0=BB=D1=8C=20?= =?UTF-8?q?=D1=81=D1=82=D1=91=D1=80=20=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4?= =?UTF-8?q?=D1=83,=20=D0=B3=D0=B0=D0=BB=D0=BA=D0=B8=20=D0=B4=D0=BE=D0=BB?= =?UTF-8?q?=D0=B6=D0=BD=D1=8B=20=D0=BE=D1=82=D0=BA=D0=BB=D1=8E=D1=87=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/CMakeLists.txt | 4 ++- source/ubl-util-standard.c | 69 ++++++++++++++++++++++++++++++++++++++ source/ubl-util-standard.h | 20 +++++++++++ source/ublexec.cc | 56 ++++++++++++++++++++----------- source/ublexec.h | 3 ++ 5 files changed, 132 insertions(+), 20 deletions(-) create mode 100644 source/ubl-util-standard.c create mode 100644 source/ubl-util-standard.h diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 96395cd..8883823 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -17,7 +17,9 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) set(SOURCE_FILES main.cc ublexec.cc - ublexec.h) + ublexec.h + ubl-util-standard.h + ubl-util-standard.c) set(LIBRARIES ${GTK_LIBRARIES} diff --git a/source/ubl-util-standard.c b/source/ubl-util-standard.c new file mode 100644 index 0000000..8cff122 --- /dev/null +++ b/source/ubl-util-standard.c @@ -0,0 +1,69 @@ +#include "ubl-util-standard.h" +#ifndef __cplusplus +#ifndef UBL_GET_STANDARD_UI +#define UBL_GET_STANDARD_UI + + +inline returnstruct *ubl_make_plugs(GtkWidget *LeftWidget, GtkWidget *RightWidget, int left_plug_id, int right_plug_id){ + returnstruct *ret=(returnstruct*)malloc(sizeof(returnstruct*)); + if (left_plug_id>0&&LeftWidget){ + GtkWidget *plug=gtk_plug_new(left_plug_id); + GtkWidget *toplug=LeftWidget; + if (gtk_widget_get_parent(GTK_WIDGET(toplug))){ + g_object_ref(G_OBJECT(toplug)); + GtkWidget *parent=gtk_widget_get_parent(toplug); + gtk_container_remove(GTK_CONTAINER(parent),toplug); + gtk_container_add(GTK_CONTAINER(plug),GTK_WIDGET(toplug)); + } else + gtk_container_add(GTK_CONTAINER(plug),GTK_WIDGET(toplug)); + gtk_widget_show(GTK_WIDGET(plug)); + ret->plugLeft=plug; + } + if (right_plug_id>0&&RightWidget){ + GtkWidget *plug=gtk_plug_new(right_plug_id); + GtkWidget *toplug=RightWidget; + if (gtk_widget_get_parent(GTK_WIDGET(toplug))){ + g_object_ref(G_OBJECT(toplug)); + GtkWidget *parent=gtk_widget_get_parent(toplug); + gtk_container_remove(GTK_CONTAINER(parent),toplug); + gtk_container_add(GTK_CONTAINER(plug),GTK_WIDGET(toplug)); + } else + gtk_container_add(GTK_CONTAINER(plug),GTK_WIDGET(toplug)); + gtk_widget_show(GTK_WIDGET(plug)); + ret->plugRight=plug; + } + return ret; +} + +#endif + +#else + + +inline void ubl_make_plugs(Gtk::Widget *LeftWidget, Gtk::Widget *RightWidget, int left_plug_id, int right_plug_id){ + if (left_plug_id>0&&LeftWidget){ + GtkWidget *plug=gtk_plug_new(left_plug_id); + GtkWidget *toplug=GTK_WIDGET(LeftWidget->gobj()); + if (gtk_widget_get_parent(GTK_WIDGET(toplug))){ + g_object_ref(G_OBJECT(toplug)); + GtkWidget *parent=gtk_widget_get_parent(toplug); + gtk_container_remove(GTK_CONTAINER(parent),toplug); + gtk_container_add(GTK_CONTAINER(plug),GTK_WIDGET(toplug)); + } else + gtk_container_add(GTK_CONTAINER(plug),GTK_WIDGET(toplug)); + gtk_widget_show(GTK_WIDGET(plug)); + } + if (right_plug_id>0&&RightWidget){ + GtkWidget *plug=gtk_plug_new(right_plug_id); + GtkWidget *toplug=GTK_WIDGET(RightWidget->gobj()); + if (gtk_widget_get_parent(GTK_WIDGET(toplug))){ + g_object_ref(G_OBJECT(toplug)); + GtkWidget *parent=gtk_widget_get_parent(toplug); + gtk_container_remove(GTK_CONTAINER(parent),toplug); + gtk_container_add(GTK_CONTAINER(plug),GTK_WIDGET(toplug)); + } else + gtk_container_add(GTK_CONTAINER(plug),GTK_WIDGET(toplug)); + gtk_widget_show(GTK_WIDGET(plug)); + } +} +#endif \ No newline at end of file diff --git a/source/ubl-util-standard.h b/source/ubl-util-standard.h new file mode 100644 index 0000000..3209625 --- /dev/null +++ b/source/ubl-util-standard.h @@ -0,0 +1,20 @@ +#ifndef __cplusplus +#include +#include + +typedef struct { + GtkWidget *plugLeft; + GtkWidget *plugRight; + + +} returnstruct; +static returnstruct *ubl_make_plugs(GtkWidget *LeftWidget, GtkWidget *RightWidget, int left_plug_id, int right_plug_id); +#else +#include +#include +#include +#include + + +static void ubl_make_plugs(Gtk::Widget *LeftWidget, Gtk::Widget *RightWidget, int left_plug_id, int right_plug_id); +#endif \ No newline at end of file diff --git a/source/ublexec.cc b/source/ublexec.cc index e768d0f..d8dcfcf 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -4,14 +4,28 @@ string path_app= "/usr/bin/"; string path_glade= "/usr/share/ublexec/ui/ublexec.glade"; string path_css = "/usr/share/ublexec/css/style.css"; string app_name = "ublexec"; +int socket_ext_id_I=0; +int socket_trd_id_I=0; CmdArgParser::CmdArgParser(const std::string& p_name, const std::string& p_description, const std::string& p_help) : Glib::OptionGroup{p_name, p_description, p_help} { Glib::OptionEntry socketIDArg; socketIDArg.set_long_name("socket-id"); - socketIDArg.set_short_name('s'); socketIDArg.set_flags(Glib::OptionEntry::FLAG_IN_MAIN); socketIDArg.set_description("Settings manager socket"); + + Glib::OptionEntry socketExtId; + socketExtId.set_long_name("socket-ext-id"); + socketExtId.set_flags(Glib::OptionEntry::FLAG_IN_MAIN); + socketExtId.set_description("Settings manager secondary socket"); + + Glib::OptionEntry socketTrdId; + socketTrdId.set_long_name("socket-trd-id"); + socketTrdId.set_flags(Glib::OptionEntry::FLAG_IN_MAIN); + socketTrdId.set_description("Settings manager secondary socket"); + add_entry(socketIDArg, m_socketID); + add_entry(socketExtId, socket_ext_id_I); + add_entry(socketTrdId, socket_trd_id_I); } ::Window CmdArgParser::GetSocketID() const{ return m_socketID; @@ -204,18 +218,20 @@ void MainWindow::event(){ bool MainWindow::focus_in_txt_cmd(GdkEventFocus* event){ if (user_cmd.length() != 0){ - //txtCmd->set_text(user_cmd); + //user_cmd_old = user_cmd; } else if (name_app.length() != 0){ - //txtCmd->set_text(name_app); + //name_app_old = name_app; } else if (path_file.length() != 0){ - //txtCmd->set_text(path_file); + //path_file_old = path_file; } else{ user_cmd = txtCmd->get_text(); - //txtCmd->set_text(user_cmd); } + chbTerminal->set_active(false); + chbAnotherUser->set_active(false); + cbxExecuteEpriority->set_active(false); cmd_old = txtCmd->get_text(); return true; } @@ -349,15 +365,11 @@ void MainWindow::settings(){ rbSu->set_sensitive(false); rbSudo->set_sensitive(false); btnBoxAboutDialog->set_visible(false); - /* - Gtk::Widget *boxButton; Gtk::Widget *boxAbout; - builder->get_widget("plugBox",plugBox); - builder->get_widget("window",window); - builder->get_widget("boxButton",boxButton); builder->get_widget("boxAbout",boxAbout); - ubl_make_plugs(boxAbout,boxButton, socket_ext_id_I, socket_trd_id_I); - */ + + ubl_make_plugs(boxAbout,boxAbout, 0, socket_trd_id_I); + } void MainWindow::close_entry_app(){ this->icon_clear(); @@ -396,7 +408,9 @@ void MainWindow::get_path_filemaneg(){ else{ txtCmd->set_text(path_file); this->close_filemaneg(); + } + this->denamic_cmd(); } void MainWindow::tempalte_row(string Name, string Exec, string path , Glib::RefPtr &dtk_list){ @@ -466,7 +480,7 @@ void MainWindow::open_list_app(){ } -string MainWindow::start_cmd(string user_cmd=""){ +string MainWindow::start_cmd(string user_cmd){ string str_cmd_terminal=""; string str_variants_root = ""; string str_nice_cmd = ""; @@ -523,11 +537,12 @@ string MainWindow::start_cmd(string user_cmd=""){ else{ str_cmd_terminal = ""; } + string cmd = ""; - if (path_file != ""){ + if (path_file.length()>0){ cmd = "nohup " + str_nice_cmd + str_cmd_terminal + str_variants_root + " xdg-open '" + path_file + "' "; } - else if (name_app!=""){ + else if (name_app.length()>0){ cmd = "nohup " + str_nice_cmd + str_cmd_terminal + str_variants_root + name_app; } else if (user_cmd.length()>0){ @@ -542,13 +557,10 @@ string MainWindow::start_cmd(string user_cmd=""){ } void MainWindow::call_app(string &cmd){ - path_file = ""; - name_app = ""; if (cmd.length() != 0){ std::thread t([&](string cmd){system(cmd.c_str());}, cmd); t.detach(); } - } void MainWindow::denamic_cmd(){ if (chbTerminal->get_active()==true || chbAnotherUser->get_active()==true || cbxExecuteEpriority->get_active()==true){ @@ -570,8 +582,13 @@ void MainWindow::denamic_cmd(){ if (user_cmd.length() != 0){ txtCmd->set_text(this->start_cmd(user_cmd)); } + else if (path_file.length() != 0){ + txtCmd->set_text(this->start_cmd(user_cmd)); + } + else if (name_app.length() != 0){ + txtCmd->set_text(this->start_cmd(user_cmd)); + } } - } bool MainWindow::focus_out_txt_cmd(GdkEventFocus* event){ @@ -584,6 +601,7 @@ bool MainWindow::focus_out_txt_cmd(GdkEventFocus* event){ } void MainWindow::entry_app(){ + this->denamic_cmd(); if (name_app.length()==0 && path_file.length()==0){ } diff --git a/source/ublexec.h b/source/ublexec.h index e52cd06..829e7c7 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -15,6 +15,7 @@ #include #include #include +#include "ubl-util-standard.c" using namespace std; @@ -22,6 +23,8 @@ extern string path_app; extern string app_name; extern string path_glade; extern string path_css; +extern int socket_ext_id_I; +extern int socket_trd_id_I; void me_thread(string cmd); class CmdArgParser : public Glib::OptionGroup { From 9c9ce0daf5dcc3468b1e38e056a878ccbad477c5 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Fri, 3 Mar 2023 16:40:28 +0600 Subject: [PATCH 24/31] =?UTF-8?q?=D0=95=D1=81=D0=BB=D0=B8=20=D0=BF=D0=BE?= =?UTF-8?q?=D0=BB=D1=8C=D0=B7=D0=BE=D0=B2=D0=B0=D1=82=D0=B5=D0=BB=D1=8C=20?= =?UTF-8?q?=D1=81=D1=82=D1=91=D1=80=20=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4?= =?UTF-8?q?=D1=83,=20=D0=B3=D0=B0=D0=BB=D0=BA=D0=B8=20=D0=BE=D1=82=D0=BA?= =?UTF-8?q?=D0=BB=D1=8E=D1=87=D0=B5=D0=BD=D1=8B.=20=D0=98=D1=81=D0=BF?= =?UTF-8?q?=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=BE.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 14 +++++++++----- source/ublexec.h | 1 + 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index d8dcfcf..4c70ac2 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -214,6 +214,15 @@ void MainWindow::event(){ rbSudo->signal_toggled().connect(sigc::mem_fun(*this, &MainWindow::denamic_cmd)); txtCmd->signal_focus_out_event().connect(sigc::mem_fun(*this, &MainWindow::focus_out_txt_cmd)); txtCmd->signal_focus_in_event().connect(sigc::mem_fun(*this, &MainWindow::focus_in_txt_cmd)); + txtCmd->signal_delete_text().connect(sigc::mem_fun(*this, &MainWindow::delete_cmd)); +} +void MainWindow::delete_cmd(const int &x,const int &y){ + if (y>1){ + chbTerminal->set_active(false); + chbAnotherUser->set_active(false); + cbxExecuteEpriority->set_active(false); + txtCmd->set_text(""); + } } bool MainWindow::focus_in_txt_cmd(GdkEventFocus* event){ @@ -229,9 +238,6 @@ bool MainWindow::focus_in_txt_cmd(GdkEventFocus* event){ else{ user_cmd = txtCmd->get_text(); } - chbTerminal->set_active(false); - chbAnotherUser->set_active(false); - cbxExecuteEpriority->set_active(false); cmd_old = txtCmd->get_text(); return true; } @@ -592,11 +598,9 @@ void MainWindow::denamic_cmd(){ } bool MainWindow::focus_out_txt_cmd(GdkEventFocus* event){ - //this->focus_in_txt_cmd(event); if (cmd_old!=txtCmd->get_text()){ user_cmd = txtCmd->get_text(); } - this->denamic_cmd(); return true; } diff --git a/source/ublexec.h b/source/ublexec.h index 829e7c7..75eef48 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -84,6 +84,7 @@ public: void select_System(); void icon_clear(); void set_icon_array(); + void delete_cmd(const int &x,const int &y); void synopsis_show(); void denamic_cmd(); bool focus_out_txt_cmd(GdkEventFocus* event); From c89ca4e01c0784f2fd2352a9f80b0e6b791fb7a2 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Fri, 3 Mar 2023 17:41:31 +0600 Subject: [PATCH 25/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=B1=D0=B0=D0=B3=20=D1=81=20nice?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 26 +------------------------- source/ublexec.h | 1 - 2 files changed, 1 insertion(+), 26 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 4c70ac2..76ab60a 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -200,17 +200,7 @@ void MainWindow::event(){ iconSystem->signal_selection_changed().connect(sigc::mem_fun(*this,&MainWindow::select_System)); btnSynopsis->signal_activate().connect(sigc::mem_fun(*this, &MainWindow::synopsis_show)); btnAbout->signal_activate().connect([&](){aboutWindows->show();}); - rbSudo->signal_toggled().connect([&](){ - spinPriority->set_range(-20,19); - spinPriority->set_increments(1.0,-1.0); - scalePriority->set_range(-20,19); - scalePriority->set_value(0); - lblTimeEpriorityLow->set_text("19 (Низкий)"); - lblTime4EpriorityHigh->set_text("-20 (Высокий)"); - }); - rbSu->signal_toggled().connect(sigc::mem_fun(*this,&MainWindow::nice_hight)); - rbPkexec->signal_toggled().connect(sigc::mem_fun(*this,&MainWindow::nice_hight)); - cmbUser->signal_changed().connect(sigc::mem_fun(*this, &MainWindow::denamic_cmd)); + cmbUser->signal_changed().connect([&](){denamic_cmd();changed_user();}); rbSudo->signal_toggled().connect(sigc::mem_fun(*this, &MainWindow::denamic_cmd)); txtCmd->signal_focus_out_event().connect(sigc::mem_fun(*this, &MainWindow::focus_out_txt_cmd)); txtCmd->signal_focus_in_event().connect(sigc::mem_fun(*this, &MainWindow::focus_in_txt_cmd)); @@ -242,20 +232,6 @@ bool MainWindow::focus_in_txt_cmd(GdkEventFocus* event){ return true; } -void MainWindow::nice_hight(){ - - Glib::ustring entry_user = cmbUser->get_active_text(); - if (geteuid() != 0){ - spinPriority->set_range(0,19); - spinPriority->set_increments(1.0,-1.0); - scalePriority->set_range(0,19); - scalePriority->set_value(0); - lblTimeEpriorityLow->set_text("19 (Низкий)"); - lblTime4EpriorityHigh->set_text("0 (Высокий)"); - } - this->denamic_cmd(); -} - void MainWindow::synopsis_show(){ system("xdg-open https://wiki.ublinux.ru/ru/home &"); diff --git a/source/ublexec.h b/source/ublexec.h index 75eef48..f15e8f3 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -59,7 +59,6 @@ public: void call_app(string &cmd); void changed_user(); void entry_app(); - void nice_hight(); void execute_another_User(){} void activ_or_block_other_user(); void change_scale_priority(); From 6ee00e79141d48edf306514822f480b6e8012321 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Tue, 7 Mar 2023 11:39:44 +0600 Subject: [PATCH 26/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=B0=20=D0=BB=D0=BE=D0=BA=D0=B0=D0=BB=D0=B8?= =?UTF-8?q?=D0=B7=D0=B0=D1=86=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 2 +- ublexec.glade | 2 -- ublexec_ru.po | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index 76ab60a..380aec3 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -141,7 +141,7 @@ void MainWindow::add_CSS(){ } void MainWindow::localization(){ - btnSynopsis->set_label(_("Synopsis")); + btnSynopsis->set_label(_("Help")); btnAbout->set_label(_("About the program")); aboutWindows->set_comments(_("ublexec")); aboutWindows->set_website_label(_("Project Home Page")); diff --git a/ublexec.glade b/ublexec.glade index ca9d7b6..d50abd3 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -1124,8 +1124,6 @@ specified priority 5 5 5 - 6 - 6 True diff --git a/ublexec_ru.po b/ublexec_ru.po index 7eb916b..6b36fe4 100644 --- a/ublexec_ru.po +++ b/ublexec_ru.po @@ -9,7 +9,7 @@ msgstr "" msgid "About the program" msgstr "О программе" -msgid "Synopsis" +msgid "Help" msgstr "Справка" msgid "Project Home Page" From 4675320092c99eaffb327351c8cf99eb67f6b71f Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Tue, 7 Mar 2023 11:56:15 +0600 Subject: [PATCH 27/31] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B0=20=D0=BB=D0=BE=D0=BA=D0=B0=D0=BB=D0=B8=D0=B7?= =?UTF-8?q?=D0=B0=D1=86=D0=B8=D1=8F=20url?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 1 + ublexec_ru.po | 3 +++ 2 files changed, 4 insertions(+) diff --git a/source/ublexec.cc b/source/ublexec.cc index 380aec3..fb7837c 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -141,6 +141,7 @@ void MainWindow::add_CSS(){ } void MainWindow::localization(){ + aboutWindows->set_website(_("https://wiki.ublinux.com")); btnSynopsis->set_label(_("Help")); btnAbout->set_label(_("About the program")); aboutWindows->set_comments(_("ublexec")); diff --git a/ublexec_ru.po b/ublexec_ru.po index 6b36fe4..5f16e42 100644 --- a/ublexec_ru.po +++ b/ublexec_ru.po @@ -6,6 +6,9 @@ msgid "" msgstr "" +msgid "https://wiki.ublinux.com" +msgstr "https://wiki.ublinux.ru" + msgid "About the program" msgstr "О программе" From e936a3b2219685c7343ed753fa875358d3ef8a37 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Tue, 7 Mar 2023 12:08:21 +0600 Subject: [PATCH 28/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=B0=20=D0=B4=D1=8B=D1=80=D0=B0=20=D0=B2=20?= =?UTF-8?q?=D0=B1=D0=B5=D0=B7=D0=BE=D0=BF=D0=B0=D1=81=D0=BD=D0=BE=D1=81?= =?UTF-8?q?=D1=82=D0=B8=20=E2=84=968?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index fb7837c..fcdd503 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -324,7 +324,6 @@ void MainWindow::unselect_icon(Gtk::IconView *icon_entry){ } void MainWindow::settings(){ - system("nohup xhost + local: > /dev/null 2>&1 &"); this->pars_apps(); this->get_builder(); this->event(); @@ -506,6 +505,11 @@ string MainWindow::start_cmd(string user_cmd){ } } } + if (cmbUser->get_active_text().length()!=0){ + string user_cmd_X = "xhost +SI:localuser:"; + user_cmd_X += cmbUser->get_active_text(); + system(user_cmd_X.c_str()); + } if ((cbxExecuteEpriority->get_active()) && (chbAnotherUser->get_active()==false)){ str_nice_cmd = " nice -n " + to_string(spinPriority->get_value_as_int()) + " "; } From 6e47023aac4c2d8dace38efa91912840694c2709 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Tue, 7 Mar 2023 12:14:10 +0600 Subject: [PATCH 29/31] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=BF=D0=B0=D1=80=D1=81=D0=B8=D0=BD=D0=B3=20?= =?UTF-8?q?=D0=B2=D0=B5=D1=80=D1=81=D0=B8=D0=B9=20=D0=BF=D1=80=D0=BE=D0=B3?= =?UTF-8?q?=D1=80=D0=B0=D0=BC=D0=BC=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 5 +++++ VERSION.md | 1 + source/ublexec.cc | 1 + source/ublexec.h | 1 + 4 files changed, 8 insertions(+) create mode 100644 VERSION.md diff --git a/Makefile b/Makefile index 69aebbf..178739f 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,11 @@ all: init build init: @echo "Initialize ..."; \ + version="$$(cat VERSION.md)"; \ + version=$${version:8}; \ + search="s/string version_application.*$&"; \ + replace="string version_application = \"$${version}\";"; \ + sed -i -e "$$search/$$replace/gi" source/ublexec.h; \ echo "-- Build path: ${CMAKE_BUILD_DIR}" depend: diff --git a/VERSION.md b/VERSION.md new file mode 100644 index 0000000..12ebd01 --- /dev/null +++ b/VERSION.md @@ -0,0 +1 @@ +VERSION 1.0 diff --git a/source/ublexec.cc b/source/ublexec.cc index fcdd503..6f320eb 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -146,6 +146,7 @@ void MainWindow::localization(){ btnAbout->set_label(_("About the program")); aboutWindows->set_comments(_("ublexec")); aboutWindows->set_website_label(_("Project Home Page")); + aboutWindows->set_version(_(version_application.c_str())); lblHeaderName->set_text(_("ublexec")); this->set_title(_("ublexec")); btnStart->set_label(_("Run")); diff --git a/source/ublexec.h b/source/ublexec.h index f15e8f3..fd32684 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -194,6 +194,7 @@ public: Glib::RefPtr list_Development; Glib::RefPtr list_System; public: + string version_application = "1.0"; string cmd_old = ""; string user_cmd=""; string user_cmd_old=""; From 61316147210feca8e539232f76be5edfabf6a986 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Tue, 7 Mar 2023 17:06:37 +0600 Subject: [PATCH 30/31] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=BC=D0=B5=D1=82=D0=BE=D0=B4=20=D0=B7=D0=B0=D0=B3?= =?UTF-8?q?=D1=80=D1=83=D0=B7=D0=BA=D0=B8=20=D0=B8=D0=BA=D0=BE=D0=BD=D0=BE?= =?UTF-8?q?=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/CMakeLists.txt | 2 +- source/ublexec.cc | 11 +++-------- source/ublexec.h | 2 ++ style.css | 2 +- ublexec.glade | 10 ++++++++++ 5 files changed, 17 insertions(+), 10 deletions(-) diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 8883823..543d234 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -10,7 +10,7 @@ add_definitions(${GTK_CFLAGS_OTHER}) find_package(Threads REQUIRED) #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wall -Wextra -Werror -Wmissing-declarations -fdiagnostics-color=always -std=c++2a -g") -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wmissing-declarations -fdiagnostics-color=always -g") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wmissing-declarations -fdiagnostics-color=always") set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/source/ublexec.cc b/source/ublexec.cc index 6f320eb..eb988b1 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -400,13 +400,7 @@ void MainWindow::tempalte_row(string Name, string Exec, string path , Glib::Ref Gtk::TreeModel::Row row = *(dtk_list->append()); row[m_Columns.m_col_filename] = path; row[m_Columns.m_col_description] = Name; - if (std::ifstream(path)){ - row[m_Columns.m_col_pixbuf] = Gdk::Pixbuf::create_from_file(path); - } - else{ - path = "/usr/share/icons/Faenza/emblems/16/emblem-danger.png"; - row[m_Columns.m_col_pixbuf] = Gdk::Pixbuf::create_from_file(path); - } + row[m_Columns.icon_name] = path; row[m_Columns.app_name_exec] = Exec; row[m_Columns.float_h_align] = 0.5; row[m_Columns.float_w_align] = 0.5; @@ -426,7 +420,8 @@ void MainWindow::open_list_app(){ string path = ""; for ( const auto &st_app : list_app){ for ( const auto &str_categor : st_app.Categories){ - path = "/usr/share/icons/hicolor/16x16/apps/" + st_app.Icon + ".png"; + path = st_app.Icon; + //path = "/usr/share/icons/hicolor/16x16/apps/" + st_app.Icon + ".png"; if (str_categor=="Graphics"){ this->tempalte_row(st_app.Name,st_app.Exec, path, list_Graphics); } diff --git a/source/ublexec.h b/source/ublexec.h index fd32684..d5c27ff 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -104,9 +104,11 @@ public: add(app_name_exec); add(float_h_align); add(float_w_align); + add(icon_name); } Gtk::TreeModelColumn m_col_filename; + Gtk::TreeModelColumn icon_name; Gtk::TreeModelColumn m_col_description; Gtk::TreeModelColumn app_name_exec; Gtk::TreeModelColumn > m_col_pixbuf; diff --git a/style.css b/style.css index 5b6b638..751f019 100644 --- a/style.css +++ b/style.css @@ -67,4 +67,4 @@ border-left-width:1px; border-top-width:1px; border-right-width:1px; -} \ No newline at end of file +} diff --git a/ublexec.glade b/ublexec.glade index d50abd3..aced788 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -142,6 +142,7 @@ 5 5 + 6 2 @@ -215,6 +216,7 @@ 5 5 + 6 2 @@ -292,6 +294,7 @@ 5 5 + 6 2 @@ -368,6 +371,7 @@ 5 5 + 6 2 @@ -444,6 +448,7 @@ 5 5 + 6 2 @@ -520,6 +525,7 @@ 5 5 + 6 2 @@ -596,6 +602,7 @@ 5 5 + 6 2 @@ -672,6 +679,7 @@ 5 5 + 6 2 @@ -748,6 +756,7 @@ 5 5 + 6 2 @@ -824,6 +833,7 @@ 5 5 + 6 2 From 42e104243c2afa3b5cc3fcc0c5a72d419630a908 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Tue, 7 Mar 2023 17:30:07 +0600 Subject: [PATCH 31/31] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20css?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 3 +-- source/ublexec.h | 1 - style.css | 44 +++++++++++++++++++++++--------------------- ublexec.glade | 8 ++++---- 4 files changed, 28 insertions(+), 28 deletions(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index eb988b1..11fa404 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -219,7 +219,7 @@ void MainWindow::delete_cmd(const int &x,const int &y){ bool MainWindow::focus_in_txt_cmd(GdkEventFocus* event){ if (user_cmd.length() != 0){ - //user_cmd_old = user_cmd; + //user_cmd_old = user_cmd;gi } else if (name_app.length() != 0){ //name_app_old = name_app; @@ -421,7 +421,6 @@ void MainWindow::open_list_app(){ for ( const auto &st_app : list_app){ for ( const auto &str_categor : st_app.Categories){ path = st_app.Icon; - //path = "/usr/share/icons/hicolor/16x16/apps/" + st_app.Icon + ".png"; if (str_categor=="Graphics"){ this->tempalte_row(st_app.Name,st_app.Exec, path, list_Graphics); } diff --git a/source/ublexec.h b/source/ublexec.h index d5c27ff..5f34098 100644 --- a/source/ublexec.h +++ b/source/ublexec.h @@ -88,7 +88,6 @@ public: void denamic_cmd(); bool focus_out_txt_cmd(GdkEventFocus* event); bool focus_in_txt_cmd(GdkEventFocus* event); - //static void me_thread(string cmd); void unselect_icon(Gtk::IconView *icon_entry); void str_remove(std::string& source, std::string & to_remove); vector split(const std::string &s, char delim); diff --git a/style.css b/style.css index 751f019..0ea8eb1 100644 --- a/style.css +++ b/style.css @@ -5,39 +5,46 @@ text-shadow: 1px 1px #ffffff; } .menuitemtop *{ - margin:2px 2px 0 2px; - padding: 5px 10px 3px 5px; + margin:2px 2px 0 2px; + padding: 5px 10px 3px 5px; } .menuitemmiddle *{ - margin:0 2px 0 2px; - padding: 3px 10px 3px 5px; + margin:0 2px 0 2px; + padding: 3px 10px 3px 5px; } .menuitembottom *{ - margin:0 2px 2px 2px; - padding: 3px 10px 5px 5px; + margin:0 2px 2px 2px; + padding: 3px 10px 5px 5px; } .menuitemtop:hover { - background:@theme_bg_color; + border-radius:3px; + background:@theme_bg_color; } .menuitemmiddle:hover { + border-radius:3px; background:@theme_bg_color; } .menuitembottom:hover { + border-radius:3px; background:@theme_bg_color; + } .menuitemtop:hover* { + border-radius:3px; margin:2px 2px 0 2px; padding: 5px 10px 3px 5px; background:@theme_selected_bg_color; border-color:transparent; } .menuitemmiddle:hover* { + border-radius:3px; margin:0 2px 0 2px; padding: 3px 10px 3px 5px; background:@theme_selected_bg_color; border-color:transparent; } .menuitembottom:hover* { + border-radius:3px; margin:0 2px 2px 2px; padding: 3px 10px 5px 5px; background:@theme_selected_bg_color; @@ -45,26 +52,21 @@ } .menuitembottom{ margin-top:0px; - border-color:alpha(@theme_text_color, 0.4); - border-style:solid; - border-left-width:1px; - border-bottom-width:1px; - border-right-width:1px; } .menuitemmiddle{ margin-top:0px; margin-bottom:0px; - border-color:alpha(@theme_text_color, 0.4); - border-style:solid; - border-left-width:1px; - border-right-width:1px; } .menuitemtop{ margin-bottom:0px; - border-color:alpha(@theme_text_color, 0.4); - border-style:solid; - border-left-width:1px; - border-top-width:1px; - border-right-width:1px; } + +.bkim{ + background-image: -gtk-gradient(linear, + left top, left bottom, + from(@entry_background_a), + color-stop(0.20, @entry_background_b), + color-stop(0.85, @entry_background_c), + to(@entry_background_d)); +} \ No newline at end of file diff --git a/ublexec.glade b/ublexec.glade index aced788..c432490 100644 --- a/ublexec.glade +++ b/ublexec.glade @@ -1134,6 +1134,8 @@ specified priority 5 5 5 + 6 + 6 True @@ -1163,8 +1165,8 @@ specified priority 5 5 5 - 6 - 6 + 3 + 3 gtk-directory @@ -1197,8 +1199,6 @@ specified priority 5 5 5 - 6 - 6 edit-select-all