From 46ea5d18b3a0cbb3f3a5ed1d1f16b612365be672 Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Wed, 1 Feb 2023 12:22:35 +0600 Subject: [PATCH 01/12] =?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/12] =?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 zcmeHOU2Ggz6~4Q+8wcXpDRJU9rI`kV9D>I`b&VV3bp5mTY~?=^N2EkyI=efzN9-T7 z<6uXkSTZfLqEv1lpn_Hcp+5A9A0f&E0#`;w<%Q;8YMVnmBvh`gM0?>Xby z(YpLeJXCX6Gv}V~obUdexwCtB=H4$S$4BF_nBY_=P6^bs7KJ3paPE_o0g({>q6yCT zh$G?-(Ca0p>pq5QW7s%00&rJp48P(@y&uKXKMRm)eYK9(F$ zj0qn76wk0ssA2@mFmI7~VL3uPmRJX-GjDj=|E9ia;;m`27!j6yy;*X7p9UUXT1EU9 zXTHp*slMH=LnFnXC52aX=A3k2Z)Yysk#h%(kG3LiatV)lQ4lXjG??E^)?8txqlJWG)iCSiW|Aao+4=fXX zFd>EqC$#aw*uNu3!Rc5HN37+}8aTE?tAS(PweU~uf(z4}%NGk~*|S{FG=-U(nJ}}q zYtK1l&vs`fhI7S&J!7SFwzAc>n3+Y(oOKFT&bb7RCS0uym6^Akf&jhjWiuyE;1%mb zHSg!hRq)R{$9b^9{mCAa2&1?Tuu03ih=$lNFHB5eClg3EbGKG zge~0d>_yIZ&>0fn_k6##98frX&C101Iu)oTs&Uq@J*05F2UJUxem#KGP?m-_132B< z65kBq!Ev+|z~%R(Dn2?#5r`rXMIeem6oDuLQ3Rq0yw4)=*XDcwZmisFG%h#1-YJCf z__`ObylSlcym3SJ6z$z_rB<(g&RG4OvGV)P>6v8rdiN{Fm4RP_L#6ebz|3&gPHu-Y$rtyq%rS-;s zA)0?w-_rck^;q&Yp$DFL}0Ebm2AM`SH}u%y`mFPL8AoC&5G7t+aC< z)*&DvcBJl8`0f{5wRWpg=?A&GS*c8e#DwomF~u&O7O};a*pYpE8rR^37~;sA2F}OO zVPubdqlQ>79NkdH7ZD%a-||F!xap3#3rqx}6h$D4Koo%}0#O8_2t*NxA`nF&ia->B z_jd$%9U`wgXeE3 z|EQ?;04QCzN$(;)yg`=j?}E1j9vAz>G_9MZV#LP@Uk>2| zg!6c3|1*$@iNm5jp%A`aro>?-G>u1P72*lVV7+|*F#fdkKj5$TW&Hb)snxGnr2l@Q zY08tw<8KL15Pq*R3k+mT>=%y`PC^`m1|z;q0IVpGX}7p_N`DB>edHJrwc0rV{;;UQ zU#HLR)3TfoiSYP&MB>n!1bZr31iVEY^5e|b8-Qzow}t#K0)7Dc1xA^8t@7i5A5&1( z`CEYB3D@N=`o59Rdcfm(EGK?Q@Hl4D570l}B>4M@@gK`_Slf|rQTZB;EBTBG%&*CE z;M*lM-hKl(*309HOZo%g7>96w-^V9z<8 zm$L&d{n7)11C1L!JvbqsU*hHkc-DE=Od13lBd3Kq^2p@iL~2-=W8+gpgX8AZ=;)c` zj5#wn1dlz1X=g3Zf}IUhuv;PP6wHOPorQ9O+ZhtU4G3~K14OZ0H0P~C7I#Hp^neoD z^5C;z2ZM|nxWH}-e9|ggiuI};63~bO)|oDs8F;Tv7&Z25)ZCLH^zu^Pv(g|vSIK$K zIR)6;Q4+cwXmf=Hz2p{4w(Bhgp!9+RyKS5-L2z9=a472NK5v!hg`Qn1Kov@QuCiRT z-Lg|GR4FFdTsvnWLFhPwgznjkaF(Id-J-k*x;;-rZ9WSO))YgHImO^S6ldj~4AfPG zvf!kba*$DlK{SO9Lq88Ay4HR6A7VH^f?Hoc2S;if{a&)<`4QSMp>HsK1QeXpz-=#6 zKk->62xr0b9oG9G6XY)vpXEo{ktBaVGn@+X`S+fs#*QSz{LcXXH<%-F`+45SlKao| zzHs|3;NzT+`8+RVxkmM3A2D{!=lPuj7!I(0i=d~=?$&u?1_y6l)$8y>3|Gv@h9M9jW z7+DwRQ9cJpkk7xHEK8w)g?>Ke{;43Jf2UdU{|l}&JbqrF`nmr?BTth2zlBiW%sS57 zuzu#RY0AQq$Dcw~tT~VJXK)1h-_sBkg5``-{WHg(0h}M=T#jx#e_qM^7{mUovwRJ> z%>lkYkJSN$#C}TK(HVao40!FiexB#?zEs|S%Kw{~$JgjV%|yAuAH z`7CdNCCC>Ea_v%*?^8nk{xE+F3_(86x7vu$?F{o---Zm9#qH<$S3B{!9`?t&f~gJw z#K_$@F+aS=lKDZ&W6vi;CP4+RQ^W9o^I${iigWMU 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 zcmeHOU2I%O6`oxujRQ&TxV3SULT&>>E+QK{P12>s={oj0*T{BE;;2O-TwQyw?G^iD zcJEep5D*bsYK2IFNWcR{k$?w~kSIbCPvDR!5DBCdsVKmUizo_JXv1HXK$PX2ne(mJ z({;GHO1wVXPG9*$esW#I0 z{c4N4i}W=bGvz5GsMMsZ@s+Y!@FtSX>*P!WdB1_F4wKMAmdsl%&2ob%K`QA7^VV{K z=(hZYQ~-(cT73?aDLMMPCO;@V$a)?(r7L0VyY^aA;?gY=JXV>P6kbwzkY}YnNW_z4 z!k?tX)0QbJ>;@hPKRC!GyhF}W5WBnqunT5V!RR zhgJNzT4W6Tn2N2?`d&g1;U+O5-E_xndz0_a}1f zZaQBqh&#`iHZ)XU^qw{{je(=RF)AWneozEm(&$y0SHyONJ zu2u`PFt@9OSqX|8P%SZ+1_v z{q+u|+@}`9c=d{V;$rg!-6$^a`P0zC^B;2;e&?R}{f)8lbkAbXW%pF?Z^)q9euh|o zn@Y57{hYQZ{1*E;we~M8K5#Q^C)ZDk>-E*8maWIx@PbIPzpU+d|AfVZcie>=?)g_9 zbI;#wa$}d==kJ8~l7qB3Xs#|zwQL<&=5zaw_dZ3%s`Aib_eAeD&bkXPg&WOMq!2^#> z7W1>&Tu?efZy}Gav|dr}JsFhB*<#^Hw@y7h36tsGiA?uVr5Uq1Kb$I-@<)dG?W%x& zX>#U>)@a^rCOdujIlbJr7GsFc$^|uBBWnJ20wS72DGEXeTv~do=!PwYrPs z$c<`sm?Xbz8!2U+;XT+YtZPMKh=(g;4 z+$j2@?2EilbnKhlB07FbZ5AE-C$aw*<$u3ZEwag?Y(B)E!dcmL$om*MElK&?jH;dy z`F4@~`;b$+5w-7il1qwX)SHx!(q>Sd!2f5}w1+@#dPnqT;nN#r-Co3reuirOrnL7K z?8Wa}C9to2wfdcuDRCSlu@4pdPO;Av`%3rs_dnuv(Q|?a9s2oCzxxes)o+f^8ujO@ zZNT#>MkQa9@pQzXgJdK7cdmkW5gu0?)R@dmaiiWR_;CyG6&&*%_J=4FQ}0k?DT82K zJ&m_1%v)2c)YFvVdU4$V|B|-fq;MSoe~vQ$Nxv>?KdmbH06Z+qMt**&?e9_cc>h+@ zT59|7;pG)=Pgh9_h>>fk<83P;tvx`v(*PgVc!%mttt{*%yj6A7;)&7$!rS5-7493r zKP2|HpU1U-SS`yb!Z*b`6y`5V%8V=8dEppDE=ToQjd!T-l)-WR^E0AN)J}UJ^>c)` z(tLPA>f&EawZ2K3* zf6DUD55pYd*=aN3+iZ~Z-GsNr>27IV7mpIoaZ5Rdv{SgQ#yeCpWdQU``4idgg<=>a zCTUYXDPHJLt85_~5-?c`%VC9f-b||Hef(aS_a=EKf0+oGqBor@PWU-56BbKl&#%lW zehQfj!XQI8m4+64svzt6rIJ7I1%-P!ik1AJH-%W{LojrKipMP%#j9CR-SM0GUcK-Lyt=N?8DFjvdUx&UZosl zDArR&56@YRmh%hK6@NPLUjGbLQN)CUr@d6!M7b;#>!TT-M~5vW9NK-&q5Zh_4NhLH zJOEM)2_N#%qhgvWPm+zo4~CUWl;`uIKS44q899Sowm=6#W>rE@xamSAFF^BT(PIq3t{+6Kp=?muFNWGhd)8j0{Vr1ntmfqIgtR3UWRZRDx%cN`w?r zmEZ|TWko%FiC{*i+)RcT&O5JtXV-bHaywPd%CP zxK9HfviMjhKsqoKY4aZ^{54vGq5W7_LZbgzSK96OiO*|F@UiZMJT3KdA34t8WBr&V zjJpgz*0GS!P+5IqANA=Ir0^OOe5@-Wu^vbJVF&qX;`5pnI@Ya_-BOv|ezf5fWjLnb zW8GYn(qPnY_x~%zWfPRw{@=*|9sE8Z6P@hwdzR38KK|cAe%%U~_3uo5!{TGT0g2x) zruNs*zi$g4{a21yio7f;guqZ0ulKl#;IDQL5(K;dKeqVS9AgPN4x&iJA27F%RzZ3W zGKTdi&Pm$#&>>$SPD>ph>)&qLtI7#>MqAc_zeoi<_HxU0lq^S#?XGO z=f;F@+e>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_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 zcmeHOZ)_Y#6`woDjZ^HL6YA7W3fUHf+!kMKH+9{D({t=|*24ct91$??c73-#uX=yX z-CkuEQH(-TEGtz3sf|<+ANT?v5JEr&U%$>G6hBqBJ~i6a6vqgf#dDpN6l zc5y)51o{q%sq%ypP^!}9Xtiu0ybdJtS}{{Y-mYM%LnUq@O5|;q&SQfhu@uw~AL(WRlt(V{rU_fLo(#im!Bja%ODS%veB;WH+rk(DT>P@B$_X#i6V_-F^5_Hr<|e^X2*W`JV3f?!)m?A>Jix#&&hUKb}*^ zMo)_9qF6zU`4JJR(xaqYE| z=o4))A%_2)u#Ep1doOYjjP9&qh_&pkfnz(28aUQn3;*~wxUj5Du8_A%o?Y}TOISk_ zBUaieIvKa*ImL;Q{%j%dOxV*|N0rqsu~PH4HRI;(tot|^S}#Iy+ZDeLI~;{Eg3*LOOcBtZ0?FssPrm*P zoR)RsJYnVi?k?nf7mXqDb}ptm5b)-UpK7E%CNli&qGU>9yXVL zZ=U|c`uIe$bEWfwd9L?&U{Gm!4p{$~iN_9pRoVl74gH*}{~L-2HoO*a{RFw*RauK2 zTtvfFl3;&9+TZsp6nAZ!OY7zfe|gA!VWZBByl7t9^lkwMBjli=vNjVtIIzXX_AU0F zfnrg<_oR8cH;P$v=?$;RT<$#rN~L8To~5s(DwWEM^`8eIGPSzZ-qo3{eC%LCpuaaW zV0#jLEPd&!xl~?zDR~2%Y%aIF4W5>hSIzTg_TDx~klI%qf=KLVmJCrq0f|%5-#brejJ- z#$49+W(vjJ3+CD1OWW+y2R-v{$)yO@S=gEMwH>rHmvPbJR0=j5@Ll3zA9Dq9sf zQ1^*eXdd=x;;l;MFvyYhN@W-%erv@PdHlGD%r{34H12G88b0YEj^CPF!Tw`tFtAg8 zi9-ze*8o3CIVp!BM?R)j6fKHFalu&!U%*B2qO?iAdJBOM+A5s zBCk7Cs~d&LQ1e-TOw$)N{VCELN%F$TCepu0>m6?+o!3JiAe|qj_A{T>Me_PzF8}9d zrGO?Yw5X8R3eM4DLR_DSX^qNnR;u_R$q$gk=R-^_O8Cc}lzW66bG@!28%TG0*ge2PHHw`e>KGS~;Qmi>pe!P@|jibgTc z3wFuR-Gnb{crW36U68pr0hx%nRg5PT!sBX5e6Qg3ysA`)vyj1h`8s3#8`6G{zb=^Z zA3>&8zh0L1yG6oKmR(AS?fQ$0G9qvh_S`{+0a45U60ZOiS848o-$<$aj3T=p%A{#9wod-!^`MD+9ddX#eTksI4c2pp8V+RrhiU&o92I0 z`f2p{)yQ{E;O`~Gqi}c9&cj#H5AiP z1cY?K%47@EcGgOJg<{FF%ku)?LS`M$NyAO0rUh;Ya4ox7v==NV?-dusOwrCcR=S+a zEdV8;S=f>))BX|rQK$dZseXFbIh2m4=H`U;x#7+(H$PM0cbnj6@Oa-y(n^jF;Qj>* z?sZnuB+wi+^oCJoGwmlm*H;loCg|wTu z$|WZaeu6t162UzPazg`jxKyxa;iV{SjF9c&SEx$Ecc(%I09>5TDCJMmd9MiZ~2V4o>mF1^Pa-I1htchkR#_E?VjLmL<=_unZI0 z2Gd7C!MPLM24w0XKFb8*EciamdN*W({CVQD{3sieNK)s22Jp9G zF2?QW`6Wy4KhH1q_S?Y6xh3;?{>k!bsu%l+v12~ZBVE9-%gpEbEK8ohf{9Fe{J#Jw z&NZ3O^GlXIFX#5N9m^+xk8@YndH(84RjnMOVEYLc_&ba-Wj@cJS@Qgu>(~4LEO5~; zm;1ki^n1w931A|VK7QW@G{`rI$MUQeFzshn?$ZkL`S+hCKgUq@vag&+`F;3DKKEZ3 zpkOlOQCv{MKN9TgIPVMcUm*jQeEu;(@Bc3~{uSc0oM0kJjz7cLKA45ca}Y6pKI8q8 zx;^VGe+!&gfbY+PVJ#~rwo}@c&iLz4fMZXWy+7aN{ja>wm7mX;$K&`X;9~rk&->Lb z9|90kn-cz!`7Gapk|19s$h1RAzD^1C`@{SVCbfEL5$na^RaQ_ z>-JbzFx3Ho7@7M;%-83x%nwTc-1XT)%#y=(YS?}#!*8YB9*)Z{z_{%Jx;TX&Pa#ce 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 zcmeHw4SZb1b??=et=L8q5P}F0R-k}LKn7_)L3=vn-wOxwodL)D;5ZYGYB&%(3y$}z^f?fptJ3E|?17_3TN93eP91_#!0y^4Dv?uCOwaJCGSJ;7PD&I)GU z4rZ1H%c{WP!P%Wt$BrEfX4bR?rw?r$3|1zd#MA!4%8@53PhC@WNN~)4qD?VVzVC*^ zSW`TC%u+O3nP0N;pwbx3lqfBkmmMV?t~Kd+rodl9qZ&?pF>W44mqmc$!T?3eS)$+j`d504@uvKVCFxdVWfvMZ#;%gf0LvTW;rLt zzkwVg*vPzvwdW_>a!vbWpQCozQA_>+MWO=*XOl;HCz^h}96FBE(4^Vx){~$C-;gS1 zKatnWvS9it5ckGosQ(68@5=MGVWpY=L;3ohh9UiRZu-}}#SF-67n1>lqJM7?{qH}> z-6g}>{ui*Q1HR$(ihyee3{VGLkn6G9R)1tX9u1GDQ}M*m%9Y`(!_i~{aud3~dWZCB>$;PhLSTh_w4Xrig|p$*oKo~mG`qrCllrKMJI24oBbKP)9q zTo;^vs``eT+HY*XX)hZ;x6P-2aHJNTr^Zv}HTy@w%*#qiNmu46u&EY=R&{6oy*u+i zf|;MoGC;d$E;zDN=4NrCv_u*c)|&L@l`B_G#772Vsg)~-V(IXf_y9(bk59%1>MmaC z8Q7YLjDpvqk@55uAN34I;v=zvdQW@86Pt>Ur@@n+jt_s>69-2|64BTtp5&k>;u(k! z4#rZkMB0Tv2;<<`NKpEd3Si;w4kSxAa)3`p6%O ze&4mPv{u-Y+vw+^T4kzz%$~pDv2vgioj}Z1O54*%pxZqC80zn)v5&0|m8lBOR0T^` z9YVj%SfG%`=CNZ%@4pCiexvA=`--h6i^{%HY<;m9CZ8YUi2}?AxGY15R#VE1=qOOT zo0M6?4yXUMU)O#uwiz_or(Zt+D`n=^+AD&ych^2EgrsX}LSjQ@d+mN8wC97f+iTk( z70mS3)`@oPto4W*PJ@u5$~#}iLLk}+@je(F5LxYyqer@D@2lM=SUYR0yJedm{*q96 zN9`OI%ml$jchv5d>GI&rt+gHmb_uSk@3mC{&4ZG5UmMDV{N18hI(g<%S=jn=`qbde zb}4CgtjH-9`Y*q=wpx~>kwGe-Mr*sK_myMwwszKDQF-TS!jjHf?^QFU{>sOyGcROb zoIkwu%@?=-b7k1gWdf`dQcX)5VZFYkqpZ zBsi0za6c-{VnJxnFGQ2{CT$>`B?CY zLm%8cKXCEhqJN(4C~B{KsC3Dy9i<<_#0MbWgS)RC#lbzWb-{3DuyuRw4zRs)`=5iD zM<7Lm2n>+Un7vndCj>sfSNXp@*!o=MZ6m)ucIZ5>%_`s$G0^1D+K0O{|JI#(Q<1CQ38O=F@z#CE>!oT81&J!BuLhx~OZ&Iij$u8B zN@S==^9oz`3gEKecY@k*& z7`D*lFG+^X%K`gUnUuRG&>hTd7fwa^261T{aYNN0sCirzyj;=zrKC!nDS0`b)W6<%6a8C zumCtCe#a^?@;`9+G=PJdy<$>_B}K)Q*W-68C;E4yljZ0RCnQrt^+V~+qoeh)smSQq zNUVNrWMW9$r$xrbVu=CEV_h~ep1N#&IFgE8Hj<1+Mq-y)6a6ExsaVw7(7XClztxkB zZjPlrU7gmtq-QubGUka)!hR(JM6d-(rczt2E%C%aa*HycBRM)6Nep;K;)$3ik{X&A z#U0CFG6lp+k|zo@6Nz{sMuEcdW3!yrgXV3Ty9@ zvflvZlCobcxBl0XvZt0?Z!A6g{uS0ki!ftB}w)g5tJaHZGdPdrlS>QQI z!h%Xp-AR&n0B0}=WFO^ERQ$=dkL)13PL`c`ZwUk5?>ZUbS?NZ{kCZ=A*}v=d^{I-r zooEF$zIn}ml-I}>ob6MTZ42heB_#b6=ayO);T}~$d7W;d`94M1worxw-S3qL^!ebZ z8ZRa%==1QQcc3RZ)Q>49oMOT~3ZOidFE;K|3~h^LEYKG`Z~`7EjH459T7jkD0nG!2 zailqG zlfS98+1qS4`={kGrdZ}2zz zoBYlG7Qf%$+6pGNg8Ehv-3n~20Oj?KH60x*J#}l=ZMfKD+x5PBucUydN8sP1mWBVP zfPU7G=dZU?J++E=nw`4`ZpPhsx#< zgAl`0yRaclWsf2Tp$|`tuNJZg5QDH4Pr!G3ad$=abji93Pw_Ps)m;@;?G@!nM~=BA zpDsjnXk(pn;J8CqJc@RpA39apKVsRcimKV-RTb5Dlmsd~x0kk8)J>OlR}833UtaFa1-La5l98j!|JF#Mgt4QY_8N?{ws^0r{WQ81Iwkqf1&KX2;~XiT#r=|&pY3Z7=$a}DHzgs7uM&_l2sL++0s=Nb$67t zS9ot<(q7@8Ub?1YXKBfsrOPV(ofTfFE6@O~tYJH-6ZRhx5-n?j>HtjBOK)FtN7-!Y zoh5gP2l^CAUWBHWTL1G{UI73l)@g1q;HMk#GYmLB&7L1h#FOoAIE{?lvJwlQc+U?d zazx}6lvwBIVK^>}87|rguyf%kV)a!`DELdPIuYxq66-@cWZ|>-#f%=?1Oq-(4_!~3 z`RQ_z`2dGRx=oxf%)zYya687!%hK+5tLK(PmnvG z^-nRk0`@u_HDUxx@;-Rh4g+@l8u3Pg$U5^7K23=8upTZj;8z&%9>C8RZ*@pXG@r)- zud(p03mI^p!*HuX&gTts?iYA=eAP%X@cgN}{ofb#XDKSRUO?`kz)zQRJ>>fo#cvco zukvD@fb{#JNzl(;D96wz&d|>VewH<+@?w2}^m>IKRk&hBD}~ zZuT@9@J$B%vw+vIryFS8++(2sO9TEL1OB)HUj`c=H~Xs$_)&vD&oj`s81SnNcnoo9 zdp)EK^ysJ4pe4PE0oP#+p91=?h_{er{uvor4;$qC#(;N#JU9QWHQ@aQ{96WmuK|C- zfcuuZ+tY5qn+^EK4S3vuj~nnE2K?Iwychmh^uod*0HLQZydKSk+z#6W*Q(Bm6{GLYUQ z2Ku)RxPO_uA0`d>w*apxmb)X=98~&$VxWHmaF3$lQ88?W-TYr`z`G3i%?A8#z-x;A zj>1Ho$9&uW;ndsnn3bKbnWn8svOc(6{B$KW(5t zAm~>)^t)B+*9Q6((81jNf3X2yYrrQA_!j}MDeiRac}vatj~eKIY`}kRz?W3G+wU>p zA2HxJ8t}Ue_~QorH3MD+6NsCi8w~h}0iQMCj~eh-40s6`<7Urg2E50B-(kS_8Sq~l z@WxZ!?HMrO_ZsjY8t_uMBnH)a;YtI3ivj;@1OD#@{G8L>^>!KXDFgnH0so}|Z+@@4 z-bn-gfB}EQfZK4(z|EgY1O9ab{;C15d!M`fO$L0Q0Y4QkvE1yu)_{M>fWKAlE+uQTAc8}LUBcqLrQy6No)yr!6TJ>VDRpHCa;cMAHeq!Z!1QPDqO zpnuAM|EmFC4mZNw>^$FquK~QKxZAOZ?yC$L=&ezBJ)=GvwZdzbpC2!&4KU8t~MDr)E6)@zjbZTT%;hThKRx z@O8N_m2@@*CK2sPw}ivdsVV%Y1%GY5E83H`?I^qi6;7uj@$`6CG|&@)Q=p@%tEV9x z2!z%~*RO??l+9mI>9mFH-fOk@R>If!_U1wB8sP2lMtrZO(k7aKdg51E-rmCcWWAgU?htobWZ8%Uq;78eRBQnL(p0J(0HeX>AW*H5iFu z-#r0gt@vStR4kH?1=f#_TBEVi=-5^Z#zYz#I2;|`9LA3TfNbcAt>JKbIF;NI9!UXeC&lS>JtUFKmQX2UHsjus{(<*m^g(z_3SV7J1w#Jt8aZklu0|{iglumZ>UW*^=t4gf_U2Sa0K%wdNfLlo;NN2a zg2Wct>De1*9d;n(vr%yS*w~1Ab5Xv0M%8Fu9~%s%Q(ZYV2IpBr*pOCuLjvEE46l!k z!z+I17h0IspZ5I9vDxChv9w8 z5fBM;TO!=|Fr4 zWJ%!adh_^!%8Y&?c7D=XEAODFUgz~q~|P6<^) zb|@NC4RS5$NG4Dyl%bhnq7^R4T}Bkiq8H6TPfHm79CPek&2}SLEVcpRAzYUN>%k10 zuTd0>p_p(yF_=W#db`x@s{0!Bu&GW`irTiYfs(Bw+K^|K7!zV^ z!`#3X*}h~VJeG=uRU2ZX=XQ+1`W{$LsC(!12)hB9ljG?V;`Rfx@U-k|?pk|0a%lswZ!d|;A-uHX(2Tj0lQdN(NN7r$lTD5GjJDv zX8>RHPo@;RE1pm7v!SZtNHiK7ACLFLQxGw<<5e8f~O#nlLMJjLWjgnL7+Ooa4xouJvBQa)5?7PgQJcYVv zq27Yr*%8SlPR)TWFnn^SK~^vvA5cA+NoWR+QP_)#t1gD)K%7XpmDpY=g8lJG{FZ!i zV(P#_VJJp*h>jNnR$du*uBz~=2Te152uolDdSSpf=4sSgkr7~bEbohy}0nj>-=PV&?AfAFc zz$Kg`Ow60Tu!46|QJ%4lKt7a;^sC7sfV<$F+B6Ay@QE^_2-&c=g)cBfMtjEK%OAPq z!jREKY%~daM^nj>5f_#oQJ`zX zb#D}AX^7Nhop0yWqFmz?$_Btd=%vKsbE?*!fa}McX2m`_kcw=5gb|YSocS!a|UM%cY#E z`H&S_YBIKHR#7|nCgEUw2p4B^BwRkKZUugkWtvVK{V6&u?4TUJMu%@T_Hv!a>Ez+$ zM0%l2qK8Dr9P+Fa^BdX5!7b*{1(ExZd@PlOOJ=wt*ZN=9?IA^>RY!1-Ll0C_5VSzb zQJeK(4^imsVwR;s=qoo*z^-L60>p501Zd_jzyRzvQ2VL)DBh4@&6wqds>@>Cc)4FC zUf!GwV8)tH#>JKfHEWh<=d^1b8eKh_jyDY8J`mg_%1!~Wzo(unx8!2c(zxaF;y4a2 zq}A5fX{ydhIuh8lN#hgaEZg9)_Qdd;mGV;2ZqT?jX0b_!31}$X9~+9prIEV&c4i@5 zlWn^bD9m#aR$It`&r_Y41a!TS0Ly9w?;R~njJOKbYpDCjZp{%cC+CI9H#$p9YYUT+ zXAX{TQCGRZEKEu~o+k(Uy7U=L1Scv*be^o|dFK(^_T%=0cwF3$$m?Tyri$Gt+~tX7 zw?wWTtr=EhAj)6v8d?Y9<8WIiIt+U%+yklUF&-PIO_sU{*%UhNz6fq)z|8^Nbh3*U zzR&V`q4zl#H#yff>(=sZqYvq5dK`uOJX~N7WfM}uZU?R*Q?UX3v@G03ke5vByK zRxYSPIOrn-1A!3iE!EYDv(3pe;^i zg6K@|Ah!W+#F>WMDB6pOZI<0q+`GwM4Qmy)ec;t>*NcZ%Pv+eD4owEs|EqF+=kvnH z_ux)S999(g2r>1v9A28LvNrj|J-eLY0{8dDm3j{6rqEj0R9qVwnTX{N9j%_eM(mmk zk!ciZ=spdrVD-s%94BkIZs&KlX!tt!^VBfKeBNa=Cl=SJPG@lK2GHgxrV0MV2sbhD z+E`rHI~VJ+I8TeAlG%H0Xrjp3xOm1!`(pzG;(Aj2uU7rrSUg$p0R;XXECM{9CIUWQ zRRae+1}wryRE+ua;egLtia`IlCi-*K^Uqf^`U@C+RN+YPfrIpJW;oaTRfX$%zp2ra z-Uk>x*ZX~qp6c~uhI=4Q_AFKP(DmYb0T}f9p2_IB-UdeR0X~v{Im2rJCwo#%&iR0o zpFgS5Q++?f=(*nOfENSGt%ZZ+Jc=L$9j{?>IQ<<4yhMr-ez*|Q@K~S-)PGR^MR1T_ z6FoduCW1~6j}JKbhalx9#{)R|lk`%%pgasGtKVKL#pU@et#H)qfrISX25AhsJ>QYA zki*;eDTNa~weK^Gp11Fh7+wo$^3N}r91o<)9!s?&$tVA;WbMoC325|W&sB_`+k@}9 zU_iOto?A3Ir1v(4dw_@R6kpm^a=1Nv8GQ}Xt2}-&7z4`X_B_XMZqIVq&+sc4zJ}pAc1Zq>3P-*8)G^^vhF{6>VTGeTZ4Br0b34O%eOED@=3&$ek7PP} zJOBJ#e?cg^Bk7rQ*DI9SfqAOiu5c|WOC zIQswNaFCoc8Gb#(FJkx&48M%w+@Bo^N4@Y!sUttc=z0GfV)XDRs6(GN&~Ib(@TjIk zzr#TPHHPC{MD=}!;k=)}VZhHohe6QCg@@rcK{?5AMwv)212=pzbav?O2c1Qc(sNvQS+%s!#}9-It@Qx$?fu1AihPUkuHbwJp*fXtkVZ{5@c82>^8tu7_;ZqFfa=3rEKe>On zKj)a7+nM}b4F4>{s~LVJ!xw9R8ZPx)7RY_!m?fqx}s3BEz3$_@6TT0K@NP_(6vM8N&}T{7Vc!%J45U{4IvhF!}}QiO@bT@e>R$#|=0H#Ge!?d7^L0AikI3)r|fr zhWi=L=lNj+zK!90Uo_8fF6RKl`8suw;e4Gs#Bjb&9c8#_o%$ZDmsh3H4+~jm+ZcUe zos#{kuue%o6xJ!}hr&7~{ZLq^q#x$hoGBtUKmWg2r#wvlKBl*h;k2j4V*39M&i~Ia zdcNL$pW$sx&fhUS$nd{sc!=RYVE9Ic{{zGO82&?s^L3W?-dMbY(erg}j{$#{;e1`L zDv`?24_rpavQ@<>++AJ3F2H>m!&gyD4$@v6s{lTd{Vf6lzu2& zKT1Cot{6pUxwe-V58HxWB6|S%4JY2ZGmVPK)UrRp}uCJvZei!b0FLoW@ z#@6K*)m(?s9K-qg$gjsaeu&ZY^_^djb9%mx^Yxvt<9vPR>o{NE>HEj}`c73r+@lV} z%JBpN@fYCmz=5GkMgspwNPASC?-QP5IF+NErx{)cX$*+t8tQ=q1K(GC2J#*RA@KVH z+aT|O14ElQOF7#hJ*M(OhNGNqDj#C_e}S||c- zaJPo z@Lfuda2S-K-;n-*!pjkWfRP6dl2fJOB&S-#Nsfo%H-nsNI51F*#UlcdCyz=aex6EW zRHxF2e^{k4@~SlAh5Ko;y$b*5l71-c!=)c+uEU|yh64oxMuq1jr5_#?9+9Ux=AXj- zH0hst<{wL~59p>R7+%isCmCMF@WTBx=}+1Npqs{+e-?5-Z5yLE?Zf$cO6xPW*Cni7 zb~8DbF`V`hNYCZadX9KKqd&;x&{~YehZt_!=X3eAzd-qyGWq=ep3U%g^SU6w^mRF=jR1#kxWfdW2-ANSfaJ*{-p!OLqL+c4KnM=V z`@w)5e*W2i*_ZOT7eJExYXGit^j|1)CDOjnX7~dCLReitYrjxNmrvI(gw^%)^b2Lg zZpuGczYxB>uhlP*33WN2re6#XeI9-hJlRhO2Hd-+*5>L<^zxH^i_oLKt+yy8>I-`L zTEx$(;MmcB!7HB>i1c6n$_}s-`vo3Ni8SVTKeAL0Uv$LZUa;!nGsCg^HS0E93X@ZG zv&s)8ChFBEPH}R=l`u98zg7bue}tI_e}RQo)c;f*fX&6JE)v=lwnD|%LyY%@Xpcp) ziN9O%y_fNyy9oY1#mDvI{U_2(u}MGe^Em$p7QsKI^jE1E>)*Nve%epcUJUtTi{Rf0 zv=})5Ampju6r1XQkKoRJzXJ6SErS0(#n1I`S_J?7il6)cql@6*vw$|5m#2pA8t2@@pB$S{oHVrg_le8Yo1J zUsECdLisNOTCAgqU)QJS@!ArxCF(i?k|Oje!kroejYp!p1QOU6+BE(>eUgH3Y`@dt zp!T5q;OhZ%(|=UStCV7#v#$SYC~?#OR=;HNDo)gY1{}KnalqX4lS6A1KSjF!1QfXG zuZv2KpkhS*XTqWDzZ)<&{d8a86)a>y*MAq3x#=HM`sb7%QU6(R==yg9hAMn;@KCKT z+CRiWNE1JqwG0xN*85LL@#Ft=c+l;~@AJ9YUxkw`gqvW zA9ai3r-=BG2g7$2zi$6-HK4C2LP_rYA5>+nhoIce{yAm8U-6^;xPFs+{^UQ3@jjs&f1R3m z8l)M{ne-DsepeCGnwzZ~6#oPfDhXQFde~6^I#qw(f9gO6>8JYtozf3cPIy)|^mGm? zZROCv5Wgm1quP|JYB(&UpMbXv{KE_6$Nw9nPf9fXQ;MJJN&0mCrvty+`0E>!96`m1 z{Ri)_5d#6AAdWQetu64MG-%yF$b{1g#C<^PXC|5!>=@cN@KiJ$bhK;yZM zpQB1Y*-!e2pYlH7cWZz8XdCfk{a3o^PZ{*zgPT1FbK;ym>H0?v`gh^R3<9q|{;z@f zss4Xu(C=3lzH=yq1>z^@FAVzq>cWHT$LlBJC;hJ&^dDHD{+A5;_q*tCbJ36cG`IGj z!p$y(-7<2{WIq9?13#FMw}0O_At~k+A-4Z2IEbI>-)+!e_ddyp>jMwOPuLoR{_06d zu}dwisJ{~q;wSyv4EjB|*@ZyQ%gJ1ppYoqD=%2q;QryG#KdS-K^*?OTKa87I2=Ao- z0fYXH+a*8O9|TC(f5@PJw|aN7$zw!$t zf8RUkKNI-f`rn>ElKcmme!PCy^{+GNAHGoX*P(GN5I;d(2L1P_kCRO)`?3G6gM;{~ z{#yLM!ukT;zVKM$~3Y6%<6ALdH?0;50Y)17Z z7Crxh!T#M}mmK6Lw7&-q;wO9=v@bT1SCTvD14_SIMjV`)lj74AzeAuBM-;z~6CdFh z06+X$+B9VyRs6bLWIyp=uJr5t9=tIE0k3a((D|EzU-W-Y1nK=>m%x5yF#2yJ9K=ul z!(vT^VBA$NB5Q|Qhi-tZ+w~{@Pg)zIg3;R{`KR%wF$=o?aGU4Gzf(PA)s4<&LFfO! 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/12] =?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 zcmeHOU2Ggz6~4Q+8wcXpDRJU9rI`kV9D>I`b&VV3bp5mTY~?=^N2EkyI=efzN9-T7 z<6uXkSTZfLqEv1lpn_Hcp+5A9A0f&E0#`;w<%Q;8YMVnmBvh`gM0?>Xby z(YpLeJXCX6Gv}V~obUdexwCtB=H4$S$4BF_nBY_=P6^bs7KJ3paPE_o0g({>q6yCT zh$G?-(Ca0p>pq5QW7s%00&rJp48P(@y&uKXKMRm)eYK9(F$ zj0qn76wk0ssA2@mFmI7~VL3uPmRJX-GjDj=|E9ia;;m`27!j6yy;*X7p9UUXT1EU9 zXTHp*slMH=LnFnXC52aX=A3k2Z)Yysk#h%(kG3LiatV)lQ4lXjG??E^)?8txqlJWG)iCSiW|Aao+4=fXX zFd>EqC$#aw*uNu3!Rc5HN37+}8aTE?tAS(PweU~uf(z4}%NGk~*|S{FG=-U(nJ}}q zYtK1l&vs`fhI7S&J!7SFwzAc>n3+Y(oOKFT&bb7RCS0uym6^Akf&jhjWiuyE;1%mb zHSg!hRq)R{$9b^9{mCAa2&1?Tuu03ih=$lNFHB5eClg3EbGKG zge~0d>_yIZ&>0fn_k6##98frX&C101Iu)oTs&Uq@J*05F2UJUxem#KGP?m-_132B< z65kBq!Ev+|z~%R(Dn2?#5r`rXMIeem6oDuLQ3Rq0yw4)=*XDcwZmisFG%h#1-YJCf z__`ObylSlcym3SJ6z$z_rB<(g&RG4OvGV)P>6v8rdiN{Fm4RP_L#6ebz|3&gPHu-Y$rtyq%rS-;s zA)0?w-_rck^;q&Yp$DFL}0Ebm2AM`SH}u%y`mFPL8AoC&5G7t+aC< z)*&DvcBJl8`0f{5wRWpg=?A&GS*c8e#DwomF~u&O7O};a*pYpE8rR^37~;sA2F}OO zVPubdqlQ>79NkdH7ZD%a-||F!xap3#3rqx}6h$D4Koo%}0#O8_2t*NxA`nF&ia->B z_jd$%9U`wgXeE3 z|EQ?;04QCzN$(;)yg`=j?}E1j9vAz>G_9MZV#LP@Uk>2| zg!6c3|1*$@iNm5jp%A`aro>?-G>u1P72*lVV7+|*F#fdkKj5$TW&Hb)snxGnr2l@Q zY08tw<8KL15Pq*R3k+mT>=%y`PC^`m1|z;q0IVpGX}7p_N`DB>edHJrwc0rV{;;UQ zU#HLR)3TfoiSYP&MB>n!1bZr31iVEY^5e|b8-Qzow}t#K0)7Dc1xA^8t@7i5A5&1( z`CEYB3D@N=`o59Rdcfm(EGK?Q@Hl4D570l}B>4M@@gK`_Slf|rQTZB;EBTBG%&*CE z;M*lM-hKl(*309HOZo%g7>96w-^V9z<8 zm$L&d{n7)11C1L!JvbqsU*hHkc-DE=Od13lBd3Kq^2p@iL~2-=W8+gpgX8AZ=;)c` zj5#wn1dlz1X=g3Zf}IUhuv;PP6wHOPorQ9O+ZhtU4G3~K14OZ0H0P~C7I#Hp^neoD z^5C;z2ZM|nxWH}-e9|ggiuI};63~bO)|oDs8F;Tv7&Z25)ZCLH^zu^Pv(g|vSIK$K zIR)6;Q4+cwXmf=Hz2p{4w(Bhgp!9+RyKS5-L2z9=a472NK5v!hg`Qn1Kov@QuCiRT z-Lg|GR4FFdTsvnWLFhPwgznjkaF(Id-J-k*x;;-rZ9WSO))YgHImO^S6ldj~4AfPG zvf!kba*$DlK{SO9Lq88Ay4HR6A7VH^f?Hoc2S;if{a&)<`4QSMp>HsK1QeXpz-=#6 zKk->62xr0b9oG9G6XY)vpXEo{ktBaVGn@+X`S+fs#*QSz{LcXXH<%-F`+45SlKao| zzHs|3;NzT+`8+RVxkmM3A2D{!=lPuj7!I(0i=d~=?$&u?1_y6l)$8y>3|Gv@h9M9jW z7+DwRQ9cJpkk7xHEK8w)g?>Ke{;43Jf2UdU{|l}&JbqrF`nmr?BTth2zlBiW%sS57 zuzu#RY0AQq$Dcw~tT~VJXK)1h-_sBkg5``-{WHg(0h}M=T#jx#e_qM^7{mUovwRJ> z%>lkYkJSN$#C}TK(HVao40!FiexB#?zEs|S%Kw{~$JgjV%|yAuAH z`7CdNCCC>Ea_v%*?^8nk{xE+F3_(86x7vu$?F{o---Zm9#qH<$S3B{!9`?t&f~gJw z#K_$@F+aS=lKDZ&W6vi;CP4+RQ^W9o^I${iigWMU 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 zcmeHOU2I%O6`oxujRQ&TxV3SULT&>>E+QK{P12>s={oj0*T{BE;;2O-TwQyw?G^iD zcJEep5D*bsYK2IFNWcR{k$?w~kSIbCPvDR!5DBCdsVKmUizo_JXv1HXK$PX2ne(mJ z({;GHO1wVXPG9*$esW#I0 z{c4N4i}W=bGvz5GsMMsZ@s+Y!@FtSX>*P!WdB1_F4wKMAmdsl%&2ob%K`QA7^VV{K z=(hZYQ~-(cT73?aDLMMPCO;@V$a)?(r7L0VyY^aA;?gY=JXV>P6kbwzkY}YnNW_z4 z!k?tX)0QbJ>;@hPKRC!GyhF}W5WBnqunT5V!RR zhgJNzT4W6Tn2N2?`d&g1;U+O5-E_xndz0_a}1f zZaQBqh&#`iHZ)XU^qw{{je(=RF)AWneozEm(&$y0SHyONJ zu2u`PFt@9OSqX|8P%SZ+1_v z{q+u|+@}`9c=d{V;$rg!-6$^a`P0zC^B;2;e&?R}{f)8lbkAbXW%pF?Z^)q9euh|o zn@Y57{hYQZ{1*E;we~M8K5#Q^C)ZDk>-E*8maWIx@PbIPzpU+d|AfVZcie>=?)g_9 zbI;#wa$}d==kJ8~l7qB3Xs#|zwQL<&=5zaw_dZ3%s`Aib_eAeD&bkXPg&WOMq!2^#> z7W1>&Tu?efZy}Gav|dr}JsFhB*<#^Hw@y7h36tsGiA?uVr5Uq1Kb$I-@<)dG?W%x& zX>#U>)@a^rCOdujIlbJr7GsFc$^|uBBWnJ20wS72DGEXeTv~do=!PwYrPs z$c<`sm?Xbz8!2U+;XT+YtZPMKh=(g;4 z+$j2@?2EilbnKhlB07FbZ5AE-C$aw*<$u3ZEwag?Y(B)E!dcmL$om*MElK&?jH;dy z`F4@~`;b$+5w-7il1qwX)SHx!(q>Sd!2f5}w1+@#dPnqT;nN#r-Co3reuirOrnL7K z?8Wa}C9to2wfdcuDRCSlu@4pdPO;Av`%3rs_dnuv(Q|?a9s2oCzxxes)o+f^8ujO@ zZNT#>MkQa9@pQzXgJdK7cdmkW5gu0?)R@dmaiiWR_;CyG6&&*%_J=4FQ}0k?DT82K zJ&m_1%v)2c)YFvVdU4$V|B|-fq;MSoe~vQ$Nxv>?KdmbH06Z+qMt**&?e9_cc>h+@ zT59|7;pG)=Pgh9_h>>fk<83P;tvx`v(*PgVc!%mttt{*%yj6A7;)&7$!rS5-7493r zKP2|HpU1U-SS`yb!Z*b`6y`5V%8V=8dEppDE=ToQjd!T-l)-WR^E0AN)J}UJ^>c)` z(tLPA>f&EawZ2K3* zf6DUD55pYd*=aN3+iZ~Z-GsNr>27IV7mpIoaZ5Rdv{SgQ#yeCpWdQU``4idgg<=>a zCTUYXDPHJLt85_~5-?c`%VC9f-b||Hef(aS_a=EKf0+oGqBor@PWU-56BbKl&#%lW zehQfj!XQI8m4+64svzt6rIJ7I1%-P!ik1AJH-%W{LojrKipMP%#j9CR-SM0GUcK-Lyt=N?8DFjvdUx&UZosl zDArR&56@YRmh%hK6@NPLUjGbLQN)CUr@d6!M7b;#>!TT-M~5vW9NK-&q5Zh_4NhLH zJOEM)2_N#%qhgvWPm+zo4~CUWl;`uIKS44q899Sowm=6#W>rE@xamSAFF^BT(PIq3t{+6Kp=?muFNWGhd)8j0{Vr1ntmfqIgtR3UWRZRDx%cN`w?r zmEZ|TWko%FiC{*i+)RcT&O5JtXV-bHaywPd%CP zxK9HfviMjhKsqoKY4aZ^{54vGq5W7_LZbgzSK96OiO*|F@UiZMJT3KdA34t8WBr&V zjJpgz*0GS!P+5IqANA=Ir0^OOe5@-Wu^vbJVF&qX;`5pnI@Ya_-BOv|ezf5fWjLnb zW8GYn(qPnY_x~%zWfPRw{@=*|9sE8Z6P@hwdzR38KK|cAe%%U~_3uo5!{TGT0g2x) zruNs*zi$g4{a21yio7f;guqZ0ulKl#;IDQL5(K;dKeqVS9AgPN4x&iJA27F%RzZ3W zGKTdi&Pm$#&>>$SPD>ph>)&qLtI7#>MqAc_zeoi<_HxU0lq^S#?XGO z=f;F@+e>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_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 zcmeHOZ)_Y#6`woDjZ^HL6YA7W3fUHf+!kMKH+9{D({t=|*24ct91$??c73-#uX=yX z-CkuEQH(-TEGtz3sf|<+ANT?v5JEr&U%$>G6hBqBJ~i6a6vqgf#dDpN6l zc5y)51o{q%sq%ypP^!}9Xtiu0ybdJtS}{{Y-mYM%LnUq@O5|;q&SQfhu@uw~AL(WRlt(V{rU_fLo(#im!Bja%ODS%veB;WH+rk(DT>P@B$_X#i6V_-F^5_Hr<|e^X2*W`JV3f?!)m?A>Jix#&&hUKb}*^ zMo)_9qF6zU`4JJR(xaqYE| z=o4))A%_2)u#Ep1doOYjjP9&qh_&pkfnz(28aUQn3;*~wxUj5Du8_A%o?Y}TOISk_ zBUaieIvKa*ImL;Q{%j%dOxV*|N0rqsu~PH4HRI;(tot|^S}#Iy+ZDeLI~;{Eg3*LOOcBtZ0?FssPrm*P zoR)RsJYnVi?k?nf7mXqDb}ptm5b)-UpK7E%CNli&qGU>9yXVL zZ=U|c`uIe$bEWfwd9L?&U{Gm!4p{$~iN_9pRoVl74gH*}{~L-2HoO*a{RFw*RauK2 zTtvfFl3;&9+TZsp6nAZ!OY7zfe|gA!VWZBByl7t9^lkwMBjli=vNjVtIIzXX_AU0F zfnrg<_oR8cH;P$v=?$;RT<$#rN~L8To~5s(DwWEM^`8eIGPSzZ-qo3{eC%LCpuaaW zV0#jLEPd&!xl~?zDR~2%Y%aIF4W5>hSIzTg_TDx~klI%qf=KLVmJCrq0f|%5-#brejJ- z#$49+W(vjJ3+CD1OWW+y2R-v{$)yO@S=gEMwH>rHmvPbJR0=j5@Ll3zA9Dq9sf zQ1^*eXdd=x;;l;MFvyYhN@W-%erv@PdHlGD%r{34H12G88b0YEj^CPF!Tw`tFtAg8 zi9-ze*8o3CIVp!BM?R)j6fKHFalu&!U%*B2qO?iAdJBOM+A5s zBCk7Cs~d&LQ1e-TOw$)N{VCELN%F$TCepu0>m6?+o!3JiAe|qj_A{T>Me_PzF8}9d zrGO?Yw5X8R3eM4DLR_DSX^qNnR;u_R$q$gk=R-^_O8Cc}lzW66bG@!28%TG0*ge2PHHw`e>KGS~;Qmi>pe!P@|jibgTc z3wFuR-Gnb{crW36U68pr0hx%nRg5PT!sBX5e6Qg3ysA`)vyj1h`8s3#8`6G{zb=^Z zA3>&8zh0L1yG6oKmR(AS?fQ$0G9qvh_S`{+0a45U60ZOiS848o-$<$aj3T=p%A{#9wod-!^`MD+9ddX#eTksI4c2pp8V+RrhiU&o92I0 z`f2p{)yQ{E;O`~Gqi}c9&cj#H5AiP z1cY?K%47@EcGgOJg<{FF%ku)?LS`M$NyAO0rUh;Ya4ox7v==NV?-dusOwrCcR=S+a zEdV8;S=f>))BX|rQK$dZseXFbIh2m4=H`U;x#7+(H$PM0cbnj6@Oa-y(n^jF;Qj>* z?sZnuB+wi+^oCJoGwmlm*H;loCg|wTu z$|WZaeu6t162UzPazg`jxKyxa;iV{SjF9c&SEx$Ecc(%I09>5TDCJMmd9MiZ~2V4o>mF1^Pa-I1htchkR#_E?VjLmL<=_unZI0 z2Gd7C!MPLM24w0XKFb8*EciamdN*W({CVQD{3sieNK)s22Jp9G zF2?QW`6Wy4KhH1q_S?Y6xh3;?{>k!bsu%l+v12~ZBVE9-%gpEbEK8ohf{9Fe{J#Jw z&NZ3O^GlXIFX#5N9m^+xk8@YndH(84RjnMOVEYLc_&ba-Wj@cJS@Qgu>(~4LEO5~; zm;1ki^n1w931A|VK7QW@G{`rI$MUQeFzshn?$ZkL`S+hCKgUq@vag&+`F;3DKKEZ3 zpkOlOQCv{MKN9TgIPVMcUm*jQeEu;(@Bc3~{uSc0oM0kJjz7cLKA45ca}Y6pKI8q8 zx;^VGe+!&gfbY+PVJ#~rwo}@c&iLz4fMZXWy+7aN{ja>wm7mX;$K&`X;9~rk&->Lb z9|90kn-cz!`7Gapk|19s$h1RAzD^1C`@{SVCbfEL5$na^RaQ_ z>-JbzFx3Ho7@7M;%-83x%nwTc-1XT)%#y=(YS?}#!*8YB9*)Z{z_{%Jx;TX&Pa#ce 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 zcmeHw4SZb1b??=et=L8q5P}F0R-k}LKn7_)L3=vn-wOxwodL)D;5ZYGYB&%(3y$}z^f?fptJ3E|?17_3TN93eP91_#!0y^4Dv?uCOwaJCGSJ;7PD&I)GU z4rZ1H%c{WP!P%Wt$BrEfX4bR?rw?r$3|1zd#MA!4%8@53PhC@WNN~)4qD?VVzVC*^ zSW`TC%u+O3nP0N;pwbx3lqfBkmmMV?t~Kd+rodl9qZ&?pF>W44mqmc$!T?3eS)$+j`d504@uvKVCFxdVWfvMZ#;%gf0LvTW;rLt zzkwVg*vPzvwdW_>a!vbWpQCozQA_>+MWO=*XOl;HCz^h}96FBE(4^Vx){~$C-;gS1 zKatnWvS9it5ckGosQ(68@5=MGVWpY=L;3ohh9UiRZu-}}#SF-67n1>lqJM7?{qH}> z-6g}>{ui*Q1HR$(ihyee3{VGLkn6G9R)1tX9u1GDQ}M*m%9Y`(!_i~{aud3~dWZCB>$;PhLSTh_w4Xrig|p$*oKo~mG`qrCllrKMJI24oBbKP)9q zTo;^vs``eT+HY*XX)hZ;x6P-2aHJNTr^Zv}HTy@w%*#qiNmu46u&EY=R&{6oy*u+i zf|;MoGC;d$E;zDN=4NrCv_u*c)|&L@l`B_G#772Vsg)~-V(IXf_y9(bk59%1>MmaC z8Q7YLjDpvqk@55uAN34I;v=zvdQW@86Pt>Ur@@n+jt_s>69-2|64BTtp5&k>;u(k! z4#rZkMB0Tv2;<<`NKpEd3Si;w4kSxAa)3`p6%O ze&4mPv{u-Y+vw+^T4kzz%$~pDv2vgioj}Z1O54*%pxZqC80zn)v5&0|m8lBOR0T^` z9YVj%SfG%`=CNZ%@4pCiexvA=`--h6i^{%HY<;m9CZ8YUi2}?AxGY15R#VE1=qOOT zo0M6?4yXUMU)O#uwiz_or(Zt+D`n=^+AD&ych^2EgrsX}LSjQ@d+mN8wC97f+iTk( z70mS3)`@oPto4W*PJ@u5$~#}iLLk}+@je(F5LxYyqer@D@2lM=SUYR0yJedm{*q96 zN9`OI%ml$jchv5d>GI&rt+gHmb_uSk@3mC{&4ZG5UmMDV{N18hI(g<%S=jn=`qbde zb}4CgtjH-9`Y*q=wpx~>kwGe-Mr*sK_myMwwszKDQF-TS!jjHf?^QFU{>sOyGcROb zoIkwu%@?=-b7k1gWdf`dQcX)5VZFYkqpZ zBsi0za6c-{VnJxnFGQ2{CT$>`B?CY zLm%8cKXCEhqJN(4C~B{KsC3Dy9i<<_#0MbWgS)RC#lbzWb-{3DuyuRw4zRs)`=5iD zM<7Lm2n>+Un7vndCj>sfSNXp@*!o=MZ6m)ucIZ5>%_`s$G0^1D+K0O{|JI#(Q<1CQ38O=F@z#CE>!oT81&J!BuLhx~OZ&Iij$u8B zN@S==^9oz`3gEKecY@k*& z7`D*lFG+^X%K`gUnUuRG&>hTd7fwa^261T{aYNN0sCirzyj;=zrKC!nDS0`b)W6<%6a8C zumCtCe#a^?@;`9+G=PJdy<$>_B}K)Q*W-68C;E4yljZ0RCnQrt^+V~+qoeh)smSQq zNUVNrWMW9$r$xrbVu=CEV_h~ep1N#&IFgE8Hj<1+Mq-y)6a6ExsaVw7(7XClztxkB zZjPlrU7gmtq-QubGUka)!hR(JM6d-(rczt2E%C%aa*HycBRM)6Nep;K;)$3ik{X&A z#U0CFG6lp+k|zo@6Nz{sMuEcdW3!yrgXV3Ty9@ zvflvZlCobcxBl0XvZt0?Z!A6g{uS0ki!ftB}w)g5tJaHZGdPdrlS>QQI z!h%Xp-AR&n0B0}=WFO^ERQ$=dkL)13PL`c`ZwUk5?>ZUbS?NZ{kCZ=A*}v=d^{I-r zooEF$zIn}ml-I}>ob6MTZ42heB_#b6=ayO);T}~$d7W;d`94M1worxw-S3qL^!ebZ z8ZRa%==1QQcc3RZ)Q>49oMOT~3ZOidFE;K|3~h^LEYKG`Z~`7EjH459T7jkD0nG!2 zailqG zlfS98+1qS4`={kGrdZ}2zz zoBYlG7Qf%$+6pGNg8Ehv-3n~20Oj?KH60x*J#}l=ZMfKD+x5PBucUydN8sP1mWBVP zfPU7G=dZU?J++E=nw`4`ZpPhsx#< zgAl`0yRaclWsf2Tp$|`tuNJZg5QDH4Pr!G3ad$=abji93Pw_Ps)m;@;?G@!nM~=BA zpDsjnXk(pn;J8CqJc@RpA39apKVsRcimKV-RTb5Dlmsd~x0kk8)J>OlR}833UtaFa1-La5l98j!|JF#Mgt4QY_8N?{ws^0r{WQ81Iwkqf1&KX2;~XiT#r=|&pY3Z7=$a}DHzgs7uM&_l2sL++0s=Nb$67t zS9ot<(q7@8Ub?1YXKBfsrOPV(ofTfFE6@O~tYJH-6ZRhx5-n?j>HtjBOK)FtN7-!Y zoh5gP2l^CAUWBHWTL1G{UI73l)@g1q;HMk#GYmLB&7L1h#FOoAIE{?lvJwlQc+U?d zazx}6lvwBIVK^>}87|rguyf%kV)a!`DELdPIuYxq66-@cWZ|>-#f%=?1Oq-(4_!~3 z`RQ_z`2dGRx=oxf%)zYya687!%hK+5tLK(PmnvG z^-nRk0`@u_HDUxx@;-Rh4g+@l8u3Pg$U5^7K23=8upTZj;8z&%9>C8RZ*@pXG@r)- zud(p03mI^p!*HuX&gTts?iYA=eAP%X@cgN}{ofb#XDKSRUO?`kz)zQRJ>>fo#cvco zukvD@fb{#JNzl(;D96wz&d|>VewH<+@?w2}^m>IKRk&hBD}~ zZuT@9@J$B%vw+vIryFS8++(2sO9TEL1OB)HUj`c=H~Xs$_)&vD&oj`s81SnNcnoo9 zdp)EK^ysJ4pe4PE0oP#+p91=?h_{er{uvor4;$qC#(;N#JU9QWHQ@aQ{96WmuK|C- zfcuuZ+tY5qn+^EK4S3vuj~nnE2K?Iwychmh^uod*0HLQZydKSk+z#6W*Q(Bm6{GLYUQ z2Ku)RxPO_uA0`d>w*apxmb)X=98~&$VxWHmaF3$lQ88?W-TYr`z`G3i%?A8#z-x;A zj>1Ho$9&uW;ndsnn3bKbnWn8svOc(6{B$KW(5t zAm~>)^t)B+*9Q6((81jNf3X2yYrrQA_!j}MDeiRac}vatj~eKIY`}kRz?W3G+wU>p zA2HxJ8t}Ue_~QorH3MD+6NsCi8w~h}0iQMCj~eh-40s6`<7Urg2E50B-(kS_8Sq~l z@WxZ!?HMrO_ZsjY8t_uMBnH)a;YtI3ivj;@1OD#@{G8L>^>!KXDFgnH0so}|Z+@@4 z-bn-gfB}EQfZK4(z|EgY1O9ab{;C15d!M`fO$L0Q0Y4QkvE1yu)_{M>fWKAlE+uQTAc8}LUBcqLrQy6No)yr!6TJ>VDRpHCa;cMAHeq!Z!1QPDqO zpnuAM|EmFC4mZNw>^$FquK~QKxZAOZ?yC$L=&ezBJ)=GvwZdzbpC2!&4KU8t~MDr)E6)@zjbZTT%;hThKRx z@O8N_m2@@*CK2sPw}ivdsVV%Y1%GY5E83H`?I^qi6;7uj@$`6CG|&@)Q=p@%tEV9x z2!z%~*RO??l+9mI>9mFH-fOk@R>If!_U1wB8sP2lMtrZO(k7aKdg51E-rmCcWWAgU?htobWZ8%Uq;78eRBQnL(p0J(0HeX>AW*H5iFu z-#r0gt@vStR4kH?1=f#_TBEVi=-5^Z#zYz#I2;|`9LA3TfNbcAt>JKbIF;NI9!UXeC&lS>JtUFKmQX2UHsjus{(<*m^g(z_3SV7J1w#Jt8aZklu0|{iglumZ>UW*^=t4gf_U2Sa0K%wdNfLlo;NN2a zg2Wct>De1*9d;n(vr%yS*w~1Ab5Xv0M%8Fu9~%s%Q(ZYV2IpBr*pOCuLjvEE46l!k z!z+I17h0IspZ5I9vDxChv9w8 z5fBM;TO!=|Fr4 zWJ%!adh_^!%8Y&?c7D=XEAODFUgz~q~|P6<^) zb|@NC4RS5$NG4Dyl%bhnq7^R4T}Bkiq8H6TPfHm79CPek&2}SLEVcpRAzYUN>%k10 zuTd0>p_p(yF_=W#db`x@s{0!Bu&GW`irTiYfs(Bw+K^|K7!zV^ z!`#3X*}h~VJeG=uRU2ZX=XQ+1`W{$LsC(!12)hB9ljG?V;`Rfx@U-k|?pk|0a%lswZ!d|;A-uHX(2Tj0lQdN(NN7r$lTD5GjJDv zX8>RHPo@;RE1pm7v!SZtNHiK7ACLFLQxGw<<5e8f~O#nlLMJjLWjgnL7+Ooa4xouJvBQa)5?7PgQJcYVv zq27Yr*%8SlPR)TWFnn^SK~^vvA5cA+NoWR+QP_)#t1gD)K%7XpmDpY=g8lJG{FZ!i zV(P#_VJJp*h>jNnR$du*uBz~=2Te152uolDdSSpf=4sSgkr7~bEbohy}0nj>-=PV&?AfAFc zz$Kg`Ow60Tu!46|QJ%4lKt7a;^sC7sfV<$F+B6Ay@QE^_2-&c=g)cBfMtjEK%OAPq z!jREKY%~daM^nj>5f_#oQJ`zX zb#D}AX^7Nhop0yWqFmz?$_Btd=%vKsbE?*!fa}McX2m`_kcw=5gb|YSocS!a|UM%cY#E z`H&S_YBIKHR#7|nCgEUw2p4B^BwRkKZUugkWtvVK{V6&u?4TUJMu%@T_Hv!a>Ez+$ zM0%l2qK8Dr9P+Fa^BdX5!7b*{1(ExZd@PlOOJ=wt*ZN=9?IA^>RY!1-Ll0C_5VSzb zQJeK(4^imsVwR;s=qoo*z^-L60>p501Zd_jzyRzvQ2VL)DBh4@&6wqds>@>Cc)4FC zUf!GwV8)tH#>JKfHEWh<=d^1b8eKh_jyDY8J`mg_%1!~Wzo(unx8!2c(zxaF;y4a2 zq}A5fX{ydhIuh8lN#hgaEZg9)_Qdd;mGV;2ZqT?jX0b_!31}$X9~+9prIEV&c4i@5 zlWn^bD9m#aR$It`&r_Y41a!TS0Ly9w?;R~njJOKbYpDCjZp{%cC+CI9H#$p9YYUT+ zXAX{TQCGRZEKEu~o+k(Uy7U=L1Scv*be^o|dFK(^_T%=0cwF3$$m?Tyri$Gt+~tX7 zw?wWTtr=EhAj)6v8d?Y9<8WIiIt+U%+yklUF&-PIO_sU{*%UhNz6fq)z|8^Nbh3*U zzR&V`q4zl#H#yff>(=sZqYvq5dK`uOJX~N7WfM}uZU?R*Q?UX3v@G03ke5vByK zRxYSPIOrn-1A!3iE!EYDv(3pe;^i zg6K@|Ah!W+#F>WMDB6pOZI<0q+`GwM4Qmy)ec;t>*NcZ%Pv+eD4owEs|EqF+=kvnH z_ux)S999(g2r>1v9A28LvNrj|J-eLY0{8dDm3j{6rqEj0R9qVwnTX{N9j%_eM(mmk zk!ciZ=spdrVD-s%94BkIZs&KlX!tt!^VBfKeBNa=Cl=SJPG@lK2GHgxrV0MV2sbhD z+E`rHI~VJ+I8TeAlG%H0Xrjp3xOm1!`(pzG;(Aj2uU7rrSUg$p0R;XXECM{9CIUWQ zRRae+1}wryRE+ua;egLtia`IlCi-*K^Uqf^`U@C+RN+YPfrIpJW;oaTRfX$%zp2ra z-Uk>x*ZX~qp6c~uhI=4Q_AFKP(DmYb0T}f9p2_IB-UdeR0X~v{Im2rJCwo#%&iR0o zpFgS5Q++?f=(*nOfENSGt%ZZ+Jc=L$9j{?>IQ<<4yhMr-ez*|Q@K~S-)PGR^MR1T_ z6FoduCW1~6j}JKbhalx9#{)R|lk`%%pgasGtKVKL#pU@et#H)qfrISX25AhsJ>QYA zki*;eDTNa~weK^Gp11Fh7+wo$^3N}r91o<)9!s?&$tVA;WbMoC325|W&sB_`+k@}9 zU_iOto?A3Ir1v(4dw_@R6kpm^a=1Nv8GQ}Xt2}-&7z4`X_B_XMZqIVq&+sc4zJ}pAc1Zq>3P-*8)G^^vhF{6>VTGeTZ4Br0b34O%eOED@=3&$ek7PP} zJOBJ#e?cg^Bk7rQ*DI9SfqAOiu5c|WOC zIQswNaFCoc8Gb#(FJkx&48M%w+@Bo^N4@Y!sUttc=z0GfV)XDRs6(GN&~Ib(@TjIk zzr#TPHHPC{MD=}!;k=)}VZhHohe6QCg@@rcK{?5AMwv)212=pzbav?O2c1Qc(sNvQS+%s!#}9-It@Qx$?fu1AihPUkuHbwJp*fXtkVZ{5@c82>^8tu7_;ZqFfa=3rEKe>On zKj)a7+nM}b4F4>{s~LVJ!xw9R8ZPx)7RY_!m?fqx}s3BEz3$_@6TT0K@NP_(6vM8N&}T{7Vc!%J45U{4IvhF!}}QiO@bT@e>R$#|=0H#Ge!?d7^L0AikI3)r|fr zhWi=L=lNj+zK!90Uo_8fF6RKl`8suw;e4Gs#Bjb&9c8#_o%$ZDmsh3H4+~jm+ZcUe zos#{kuue%o6xJ!}hr&7~{ZLq^q#x$hoGBtUKmWg2r#wvlKBl*h;k2j4V*39M&i~Ia zdcNL$pW$sx&fhUS$nd{sc!=RYVE9Ic{{zGO82&?s^L3W?-dMbY(erg}j{$#{;e1`L zDv`?24_rpavQ@<>++AJ3F2H>m!&gyD4$@v6s{lTd{Vf6lzu2& zKT1Cot{6pUxwe-V58HxWB6|S%4JY2ZGmVPK)UrRp}uCJvZei!b0FLoW@ z#@6K*)m(?s9K-qg$gjsaeu&ZY^_^djb9%mx^Yxvt<9vPR>o{NE>HEj}`c73r+@lV} z%JBpN@fYCmz=5GkMgspwNPASC?-QP5IF+NErx{)cX$*+t8tQ=q1K(GC2J#*RA@KVH z+aT|O14ElQOF7#hJ*M(OhNGNqDj#C_e}S||c- zaJPo z@Lfuda2S-K-;n-*!pjkWfRP6dl2fJOB&S-#Nsfo%H-nsNI51F*#UlcdCyz=aex6EW zRHxF2e^{k4@~SlAh5Ko;y$b*5l71-c!=)c+uEU|yh64oxMuq1jr5_#?9+9Ux=AXj- zH0hst<{wL~59p>R7+%isCmCMF@WTBx=}+1Npqs{+e-?5-Z5yLE?Zf$cO6xPW*Cni7 zb~8DbF`V`hNYCZadX9KKqd&;x&{~YehZt_!=X3eAzd-qyGWq=ep3U%g^SU6w^mRF=jR1#kxWfdW2-ANSfaJ*{-p!OLqL+c4KnM=V z`@w)5e*W2i*_ZOT7eJExYXGit^j|1)CDOjnX7~dCLReitYrjxNmrvI(gw^%)^b2Lg zZpuGczYxB>uhlP*33WN2re6#XeI9-hJlRhO2Hd-+*5>L<^zxH^i_oLKt+yy8>I-`L zTEx$(;MmcB!7HB>i1c6n$_}s-`vo3Ni8SVTKeAL0Uv$LZUa;!nGsCg^HS0E93X@ZG zv&s)8ChFBEPH}R=l`u98zg7bue}tI_e}RQo)c;f*fX&6JE)v=lwnD|%LyY%@Xpcp) ziN9O%y_fNyy9oY1#mDvI{U_2(u}MGe^Em$p7QsKI^jE1E>)*Nve%epcUJUtTi{Rf0 zv=})5Ampju6r1XQkKoRJzXJ6SErS0(#n1I`S_J?7il6)cql@6*vw$|5m#2pA8t2@@pB$S{oHVrg_le8Yo1J zUsECdLisNOTCAgqU)QJS@!ArxCF(i?k|Oje!kroejYp!p1QOU6+BE(>eUgH3Y`@dt zp!T5q;OhZ%(|=UStCV7#v#$SYC~?#OR=;HNDo)gY1{}KnalqX4lS6A1KSjF!1QfXG zuZv2KpkhS*XTqWDzZ)<&{d8a86)a>y*MAq3x#=HM`sb7%QU6(R==yg9hAMn;@KCKT z+CRiWNE1JqwG0xN*85LL@#Ft=c+l;~@AJ9YUxkw`gqvW zA9ai3r-=BG2g7$2zi$6-HK4C2LP_rYA5>+nhoIce{yAm8U-6^;xPFs+{^UQ3@jjs&f1R3m z8l)M{ne-DsepeCGnwzZ~6#oPfDhXQFde~6^I#qw(f9gO6>8JYtozf3cPIy)|^mGm? zZROCv5Wgm1quP|JYB(&UpMbXv{KE_6$Nw9nPf9fXQ;MJJN&0mCrvty+`0E>!96`m1 z{Ri)_5d#6AAdWQetu64MG-%yF$b{1g#C<^PXC|5!>=@cN@KiJ$bhK;yZM zpQB1Y*-!e2pYlH7cWZz8XdCfk{a3o^PZ{*zgPT1FbK;ym>H0?v`gh^R3<9q|{;z@f zss4Xu(C=3lzH=yq1>z^@FAVzq>cWHT$LlBJC;hJ&^dDHD{+A5;_q*tCbJ36cG`IGj z!p$y(-7<2{WIq9?13#FMw}0O_At~k+A-4Z2IEbI>-)+!e_ddyp>jMwOPuLoR{_06d zu}dwisJ{~q;wSyv4EjB|*@ZyQ%gJ1ppYoqD=%2q;QryG#KdS-K^*?OTKa87I2=Ao- z0fYXH+a*8O9|TC(f5@PJw|aN7$zw!$t zf8RUkKNI-f`rn>ElKcmme!PCy^{+GNAHGoX*P(GN5I;d(2L1P_kCRO)`?3G6gM;{~ z{#yLM!ukT;zVKM$~3Y6%<6ALdH?0;50Y)17Z z7Crxh!T#M}mmK6Lw7&-q;wO9=v@bT1SCTvD14_SIMjV`)lj74AzeAuBM-;z~6CdFh z06+X$+B9VyRs6bLWIyp=uJr5t9=tIE0k3a((D|EzU-W-Y1nK=>m%x5yF#2yJ9K=ul z!(vT^VBA$NB5Q|Qhi-tZ+w~{@Pg)zIg3;R{`KR%wF$=o?aGU4Gzf(PA)s4<&LFfO! 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/12] =?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/12] =?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/12] =?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/12] =?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/12] =?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/12] =?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/12] =?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/12] =?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/12] =?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