D: [iurt_root_command] chroot
warning: Found bdb_ro Packages database while attempting sqlite backend: using bdb_ro backend.
warning: line 85: It's not recommended to have unversioned Obsoletes: Obsoletes:	lib64GConf2_4-devel
Installing /home/iurt/rpmbuild/SRPMS/GConf2-3.2.6-19.mga9.src.rpm
Building target platforms: aarch64
Building for target aarch64
Executing(%prep): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.FkpU8Q
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ '[' 1 -eq 1 ']'
+ '[' 1 -eq 1 ']'
+ '[' 1 -eq 1 ']'
+ cd /home/iurt/rpmbuild/BUILD
+ rm -rf GConf-3.2.6
+ /usr/bin/xz -dc /home/iurt/rpmbuild/SOURCES/GConf-3.2.6.tar.xz
+ /usr/bin/tar -xof -
+ STATUS=0
+ '[' 0 -ne 0 ']'
+ cd GConf-3.2.6
+ /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w .
+ /usr/bin/cat /home/iurt/rpmbuild/SOURCES/GConf-2.12.1-reload.patch
+ /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f
+ 2to3 --write --nobackup gsettings/gsettings-schema-convert
RefactoringTool: Skipping optional fixer: buffer
RefactoringTool: Skipping optional fixer: idioms
RefactoringTool: Skipping optional fixer: set_literal
RefactoringTool: Skipping optional fixer: ws_comma
RefactoringTool: Refactored gsettings/gsettings-schema-convert
RefactoringTool: Files that were modified:
RefactoringTool: gsettings/gsettings-schema-convert
--- gsettings/gsettings-schema-convert	(original)
+++ gsettings/gsettings-schema-convert	(refactored)
@@ -398,7 +398,7 @@
 
     def _word_to_token(self, word):
         lower = word.lower()
-        if lower and lower in self.allowed_tokens.keys():
+        if lower and lower in list(self.allowed_tokens.keys()):
             return lower
         raise GSettingsSchemaConvertException('\'%s\' is not a valid token.' % lower)
 
@@ -603,7 +603,7 @@
             for line in lines:
                 current_line_nb += 1
                 self.parse_line(line)
-        except GSettingsSchemaConvertException, e:
+        except GSettingsSchemaConvertException as e:
             raise GSettingsSchemaConvertException('%s:%s: %s' % (os.path.basename(self.file), current_line_nb, e))
 
         return self.root
@@ -711,7 +711,7 @@
             schema = self._parse_schema(schema_node)
 
             for (child_schema, child_name) in schema._children:
-                if parent.has_key(child_schema):
+                if child_schema in parent:
                     raise GSettingsSchemaConvertException('Child \'%s\' is declared by two different schemas: \'%s\' and \'%s\'.' % (child_schema, parent[child_schema], schema.id))
                 parent[child_schema] = schema
 
@@ -719,7 +719,7 @@
 
         # now let's move all schemas where they should leave
         for schema in schemas:
-            if parent.has_key(schema.id):
+            if schema.id in parent:
                 parent_schema = parent[schema.id]
 
                 # check that the paths of parent and child are supported by
@@ -1054,31 +1054,31 @@
     (options, args) = parser.parse_args()
 
     if len(args) < 1:
-        print >> sys.stderr, 'Need a filename to work on.'
+        print('Need a filename to work on.', file=sys.stderr)
         return 1
     elif len(args) > 1:
-        print >> sys.stderr, 'Too many arguments.'
+        print('Too many arguments.', file=sys.stderr)
         return 1
 
     if options.simple and options.xml:
-        print >> sys.stderr, 'Too many output formats requested.'
+        print('Too many output formats requested.', file=sys.stderr)
         return 1
 
     if not options.gconf and options.gettext_domain:
-        print >> sys.stderr, 'Default gettext domain can only be specified when converting a gconf schema.'
+        print('Default gettext domain can only be specified when converting a gconf schema.', file=sys.stderr)
         return 1
 
     if not options.gconf and options.schema_id:
-        print >> sys.stderr, 'Default schema ID can only be specified when converting a gconf schema.'
+        print('Default schema ID can only be specified when converting a gconf schema.', file=sys.stderr)
         return 1
 
     if not options.gconf and options.keep_underscores:
-        print >> sys.stderr, 'The --keep-underscores option can only be specified when converting a gconf schema.'
+        print('The --keep-underscores option can only be specified when converting a gconf schema.', file=sys.stderr)
         return 1
 
     argfile = os.path.expanduser(args[0])
     if not os.path.exists(argfile):
-        print >> sys.stderr, '\'%s\' does not exist.' % argfile
+        print('\'%s\' does not exist.' % argfile, file=sys.stderr)
         return 1
 
     if options.output:
@@ -1095,7 +1095,7 @@
             try:
                 parser = GConfSchemaParser(argfile, options.gettext_domain, options.schema_id, options.keep_underscores)
                 schema_root = parser.parse()
-            except SyntaxError, e:
+            except SyntaxError as e:
                 raise GSettingsSchemaConvertException('\'%s\' does not look like a valid gconf schema file: %s' % (argfile, e))
         else:
             # autodetect if file is XML or not
@@ -1104,7 +1104,7 @@
                 schema_root = parser.parse()
                 if not options.simple and not options.xml:
                     options.simple = True
-            except SyntaxError, e:
+            except SyntaxError as e:
                 parser = SimpleSchemaParser(argfile)
                 schema_root = parser.parse()
                 if not options.simple and not options.xml:
@@ -1127,14 +1127,14 @@
                 fout = open(options.output, 'w')
                 fout.write(output)
                 fout.close()
-            except GSettingsSchemaConvertException, e:
+            except GSettingsSchemaConvertException as e:
                 fout.close()
                 if os.path.exists(options.output):
                     os.unlink(options.output)
                 raise e
 
-    except GSettingsSchemaConvertException, e:
-        print >> sys.stderr, '%s' % e
+    except GSettingsSchemaConvertException as e:
+        print('%s' % e, file=sys.stderr)
         return 1
 
     return 0
+ pathfix.py -pni '/usr/bin/python3 -s' . gsettings/gsettings-schema-convert
recursedown('.')
recursedown('./backends')
recursedown('./defaults')
recursedown('./doc')
recursedown('./doc/gconf')
recursedown('./doc/gconf/html')
recursedown('./doc/gconf/tmpl')
recursedown('./examples')
recursedown('./gconf')
recursedown('./gsettings')
recursedown('./po')
recursedown('./tests')
gsettings/gsettings-schema-convert: updating
+ RPM_EC=0
++ jobs -p
+ exit 0
Executing(%build): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.yFCalt
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ cd GConf-3.2.6
+ '[' 1 -eq 1 ']'
+ '[' 1 -eq 1 ']'
+ CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables'
+ export CFLAGS
+ CXXFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables'
+ export CXXFLAGS
+ FFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables '
+ export FFLAGS
+ FCFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables '
+ export FCFLAGS
+ LDFLAGS=' -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags'
+ export LDFLAGS
+ CONFIGURE_TOP=.
+ '[' 1 = 1 ']'
++ find . -name config.guess -o -name config.sub
+ for i in $(find ${CONFIGURE_TOP} -name config.guess -o -name config.sub)
++ basename ./config.sub
+ '[' -f /usr/lib/rpm/mageia/config.sub ']'
++ basename ./config.sub
+ cp -af /usr/lib/rpm/mageia/config.sub ./config.sub
+ for i in $(find ${CONFIGURE_TOP} -name config.guess -o -name config.sub)
++ basename ./config.guess
+ '[' -f /usr/lib/rpm/mageia/config.guess ']'
++ basename ./config.guess
+ cp -af /usr/lib/rpm/mageia/config.guess ./config.guess
+ /usr/lib/rpm/mageia/force-as-needed-for-shared-lib-in-libtool
Forcing -Wl,--as-needed in configure/libtool to workaround libtool bug (cf http://lists.gnu.org/archive/html/libtool-patches/2004-06/msg00002.html)
+ /usr/lib/rpm/mageia/drop-ld-no-undefined-for-shared-lib-modules-in-libtool
Modifying ltmain.sh underlinking for plugins (cf http://wiki.mandriva.com/en/Underlinking)
+ /usr/lib/rpm/mageia/fix-libtool-ltmain-from-overlinking
Fixing libtool's ltmain.sh to prevent overlinking (cf http://wiki.mandriva.com/en/Overlinking)
+ /usr/lib/rpm/mageia/fix-libtool-from-moving-options-after-libs .
Fixing libtool inside configure to pass -Wl,xxx options before libraries
+ /usr/lib/rpm/mageia/fix-dlsearch-path-in-libtool-for-multilib . lib64
+ ./configure --host=aarch64-mageia-linux-gnu --build=aarch64-mageia-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-gtk=3.0 --disable-static --disable-orbit
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking build system type... aarch64-mageia-linux-gnu
checking host system type... aarch64-mageia-linux-gnu
checking for aarch64-mageia-linux-gnu-gcc... no
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... none
checking for aarch64-mageia-linux-gnu-g++... no
checking for aarch64-mageia-linux-gnu-c++... no
checking for aarch64-mageia-linux-gnu-gpp... no
checking for aarch64-mageia-linux-gnu-aCC... no
checking for aarch64-mageia-linux-gnu-CC... no
checking for aarch64-mageia-linux-gnu-cxx... no
checking for aarch64-mageia-linux-gnu-cc++... no
checking for aarch64-mageia-linux-gnu-cl.exe... no
checking for aarch64-mageia-linux-gnu-FCC... no
checking for aarch64-mageia-linux-gnu-KCC... no
checking for aarch64-mageia-linux-gnu-RCC... no
checking for aarch64-mageia-linux-gnu-xlC_r... no
checking for aarch64-mageia-linux-gnu-xlC... no
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... none
checking for library containing strerror... none required
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert aarch64-mageia-linux-gnu file names to aarch64-mageia-linux-gnu format... func_convert_file_noop
checking how to convert aarch64-mageia-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for aarch64-mageia-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for aarch64-mageia-linux-gnu-dlltool... dlltool
checking how to associate runtime and link libraries... printf %s\n
checking for aarch64-mageia-linux-gnu-ar... no
checking for ar... ar
checking for archiver @FILE support... @
checking for aarch64-mageia-linux-gnu-strip... no
checking for strip... strip
checking for aarch64-mageia-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for aarch64-mageia-linux-gnu-mt... no
checking for mt... no
checking if : is a manifest tool... no
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... no
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for glib-genmarshal... /usr/bin/glib-genmarshal
configure: Will build with debug checks but no debug spew
checking for aarch64-mageia-linux-gnu-pkg-config... /usr/bin/aarch64-mageia-linux-gnu-pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for gtkdoc-check... /usr/bin/gtkdoc-check
checking for gtkdoc-rebase... /usr/bin/gtkdoc-rebase
checking for gtkdoc-mkpdf... no
checking whether to build gtk-doc documentation... no
checking which gtk+ version to compile against... 3.0
checking for DEPENDENT... yes
checking for DEPENDENT_WITH_XML... yes
checking for DEPENDENT_WITH_GTK... yes
checking for DEPENDENT_WITH_XML_AND_GTK... yes
checking for DEPENDENT_DBUS... yes
checking whether to use ORBit... no
checking for DEFAULTS... yes
checking for GSETTINGS... yes
checking for gio-querymodules... no
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking for getuid... yes
checking for sigaction... yes
checking for fsync... yes
checking for fchmod... yes
checking for fdwalk... no
checking ldap.h usability... yes
checking ldap.h presence... yes
checking for ldap.h... yes
checking for ldap_init in -lldap... yes
checking for ber_free in -llber... yes
checking for ldap_ntlm_bind... yes
checking whether NLS is requested... yes
checking for intltool >= 0.35.0... 0.51.0 found
checking for intltool-update... /usr/bin/intltool-update
checking for intltool-merge... /usr/bin/intltool-merge
checking for intltool-extract... /usr/bin/intltool-extract
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for perl... /usr/bin/perl
checking for perl >= 5.8.1... 5.34.0
checking for XML::Parser... ok
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... (cached) /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... (cached) /usr/bin/msgfmt
checking for xgettext... (cached) /usr/bin/xgettext
checking for bind_textdomain_codeset... (cached) yes
checking for gobject-introspection... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating gconf-2.m4
config.status: creating gconf-zip
config.status: creating gconf/Makefile
config.status: creating backends/Makefile
config.status: creating po/Makefile.in
config.status: creating doc/Makefile
config.status: creating doc/gconf/Makefile
config.status: creating examples/Makefile
config.status: creating tests/Makefile
config.status: creating defaults/Makefile
config.status: creating gsettings/Makefile
config.status: creating gconf-2.0.pc
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: executing po/stamp-it commands

	sysconfsubdir:	gconf

        IPC:            DBus
	gtk+:		yes
	ldap:		yes
	policykit:	yes
	gsettings:	yes
	introspection:  yes


+ /usr/bin/make -O -j8 V=1 VERBOSE=1
/usr/bin/make  all-recursive
Making all in gconf
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/usr/bin/glib-genmarshal gconfmarshal.list --header --prefix=gconf_marshal > gconfmarshal.h
INFO: Reading gconfmarshal.list...
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
echo "#include \"gconfmarshal.h\"" > gconfmarshal.c && \
/usr/bin/glib-genmarshal gconfmarshal.list --body --prefix=gconf_marshal >> gconfmarshal.c
INFO: Reading gconfmarshal.list...
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/usr/bin/make  all-am
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-error.lo gconf-error.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-error.c  -fPIC -DPIC -o .libs/gconf-error.o
In file included from gconf-internals.h:36,
                 from gconf-error.c:22:
gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-backend.lo gconf-backend.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-backend.c  -fPIC -DPIC -o .libs/gconf-backend.o
In file included from ../gconf/gconf-internals.h:36,
                 from gconf-backend.h:24,
                 from gconf-backend.c:22:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-locale.lo gconf-locale.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-locale.c  -fPIC -DPIC -o .libs/gconf-locale.o
In file included from gconf-internals.h:36,
                 from gconf-locale.c:22:
gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
gconf-locale.c:46:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   46 |   GTime mod_time;
      |   ^~~~~
gconf-locale.c:95:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   95 |   GTime now;
      |   ^~~~~
gconf-locale.c: In function 'expire_foreach':
gconf-locale.c:103:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  103 |   GTime last_access = e->mod_time;
      |   ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-schema.lo gconf-schema.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-schema.c  -fPIC -DPIC -o .libs/gconf-schema.o
In file included from gconf-schema.h:26,
                 from gconf-schema.c:21:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-listeners.lo gconf-listeners.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-listeners.c  -fPIC -DPIC -o .libs/gconf-listeners.o
In file included from ../gconf/gconf-schema.h:26,
                 from gconf.h:27,
                 from gconf-listeners.c:22:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-changeset.lo gconf-changeset.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-changeset.c  -fPIC -DPIC -o .libs/gconf-changeset.o
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from gconf-changeset.h:23,
                 from gconf-changeset.c:21:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-enum-types.lo gconf-enum-types.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-enum-types.c  -fPIC -DPIC -o .libs/gconf-enum-types.o
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from gconf-client.h:25,
                 from gconf-enum-types.c:4:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-internals.lo gconf-internals.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-internals.c  -fPIC -DPIC -o .libs/gconf-internals.o
In file included from gconf-internals.h:36,
                 from gconf-internals.c:22:
gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-sources.lo gconf-sources.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-sources.c  -fPIC -DPIC -o .libs/gconf-sources.o
In file included from ../gconf/gconf-internals.h:36,
                 from gconf-backend.h:24,
                 from gconf-sources.c:22:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-dbus-utils.lo gconf-dbus-utils.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-dbus-utils.c  -fPIC -DPIC -o .libs/gconf-dbus-utils.o
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from gconf-dbus-utils.c:7:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf.lo gconf.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf.c  -fPIC -DPIC -o .libs/gconf.o
In file included from ../gconf/gconf-schema.h:26,
                 from gconf.h:27,
                 from gconf.c:24:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
gconf.c: In function 'gconf_unique_key':
gconf.c:2931:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
 2931 |   GTimeVal tv;
      |   ^~~~~~~~
In file included from /usr/include/glib-2.0/glib/galloca.h:32,
                 from /usr/include/glib-2.0/glib.h:30,
                 from gconf.h:23,
                 from gconf.c:24:
/usr/include/glib-2.0/glib/gtypes.h:547:8: note: declared here
  547 | struct _GTimeVal
      |        ^~~~~~~~~
gconf.c:2933:3: warning: 'g_get_current_time' is deprecated: Use 'g_get_real_time' instead [-Wdeprecated-declarations]
 2933 |   g_get_current_time(&tv);
      |   ^~~~~~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/glib/giochannel.h:33,
                 from /usr/include/glib-2.0/glib.h:54,
                 from gconf.h:23,
                 from gconf.c:24:
/usr/include/glib-2.0/glib/gmain.h:681:8: note: declared here
  681 | void   g_get_current_time                 (GTimeVal       *result);
      |        ^~~~~~~~~~~~~~~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"    -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconfd_2-gconfd-dbus.o `test -f 'gconfd-dbus.c' || echo './'`gconfd-dbus.c
In file included from gconf-sources.h:26,
                 from gconf-database.h:32,
                 from gconf-database-dbus.h:24,
                 from gconfd-dbus.c:25:
gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
In file included from gconf-database-dbus.h:24,
                 from gconfd-dbus.c:25:
gconf-database.h:64:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   64 |   GTime last_access;
      |   ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
sed -e 's,[@]libexecdir[@],/usr/libexec,g' \
	<./org.gnome.GConf.service.in >org.gnome.GConf.service
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-value.lo gconf-value.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-value.c  -fPIC -DPIC -o .libs/gconf-value.o
In file included from gconf-value.c:21:
gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
gconf-value.c:1424:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
 1424 | {
      | ^
gconf-value.c:1446:31: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
 1446 |                               GTime mod_time)
      |                               ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"    -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconfd_2-gconfd.o `test -f 'gconfd.c' || echo './'`gconfd.c
In file included from gconf-internals.h:36,
                 from gconfd.c:30:
gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
In file included from gconfd.h:33,
                 from gconfd.c:36:
gconf-database.h:64:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   64 |   GTime last_access;
      |   ^~~~~
gconfd.c: In function 'system_bus_message_handler':
gconfd.c:685:16: warning: variable 'reply' set but not used [-Wunused-but-set-variable]
  685 |   DBusMessage *reply;
      |                ^~~~~
gconfd.c: In function 'main':
gconfd.c:803:7: warning: variable 'write_byte_fd' set but not used [-Wunused-but-set-variable]
  803 |   int write_byte_fd;
      |       ^~~~~~~~~~~~~
gconfd.c: In function 'drop_old_databases':
gconfd.c:1279:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
 1279 |   GTime now;
      |   ^~~~~
gconfd.c: At top level:
gconfd.c:68:13: warning: 'logfile_remove' declared 'static' but never defined [-Wunused-function]
   68 | static void logfile_remove (void);
      |             ^~~~~~~~~~~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"    -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconfd_2-gconf-database.o `test -f 'gconf-database.c' || echo './'`gconf-database.c
In file included from gconf-sources.h:26,
                 from gconf-database.h:32,
                 from gconf-database.c:21:
gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
In file included from gconf-database.c:21:
gconf-database.h:64:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   64 |   GTime last_access;
      |   ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"    -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconfd_2-gconf-database-dbus.o `test -f 'gconf-database-dbus.c' || echo './'`gconf-database-dbus.c
In file included from gconf-sources.h:26,
                 from gconf-database.h:32,
                 from gconfd.h:33,
                 from gconf-database-dbus.c:23:
gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
In file included from gconfd.h:33,
                 from gconf-database-dbus.c:23:
gconf-database.h:64:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   64 |   GTime last_access;
      |   ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-dbus.lo gconf-dbus.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-dbus.c  -fPIC -DPIC -o .libs/gconf-dbus.o
In file included from ../gconf/gconf-schema.h:26,
                 from gconf.h:27,
                 from gconf-dbus.c:25:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
gconf-dbus.c: In function 'gconf_engine_notify_add':
gconf-dbus.c:1049:13: warning: Deprecated pre-processor symbol, replace with 
 1049 |   CHECK_OWNER_USE (conf);
      |             ^~~~~~~~~~~~~                                   
gconf-dbus.c: In function 'gconf_engine_notify_remove':
gconf-dbus.c:1082:13: warning: Deprecated pre-processor symbol, replace with 
 1082 |   CHECK_OWNER_USE (conf);
      |             ^~~~~~~~~~~~~                                   
gconf-dbus.c: In function 'gconf_engine_get_fuller':
gconf-dbus.c:1149:13: warning: Deprecated pre-processor symbol, replace with 
 1149 |   CHECK_OWNER_USE (conf);
      |             ^~~~~~~~~~~~~                                   
gconf-dbus.c: In function 'gconf_engine_get_entry':
gconf-dbus.c:1293:13: warning: Deprecated pre-processor symbol, replace with 
 1293 |   CHECK_OWNER_USE (conf);
      |             ^~~~~~~~~~~~~                                   
gconf-dbus.c: In function 'gconf_engine_get_default_from_schema':
gconf-dbus.c:1355:13: warning: Deprecated pre-processor symbol, replace with 
 1355 |   CHECK_OWNER_USE (conf);
      |             ^~~~~~~~~~~~~                                   
gconf-dbus.c: In function 'gconf_engine_set':
gconf-dbus.c:1452:13: warning: Deprecated pre-processor symbol, replace with 
 1452 |   CHECK_OWNER_USE (conf);
      |             ^~~~~~~~~~~~~                                   
gconf-dbus.c: In function 'gconf_engine_unset':
gconf-dbus.c:1529:13: warning: Deprecated pre-processor symbol, replace with 
 1529 |   CHECK_OWNER_USE (conf);
      |             ^~~~~~~~~~~~~                                   
gconf-dbus.c: In function 'gconf_engine_recursive_unset':
gconf-dbus.c:1619:13: warning: Deprecated pre-processor symbol, replace with 
 1619 |   CHECK_OWNER_USE (conf);
      |             ^~~~~~~~~~~~~                                   
gconf-dbus.c: In function 'gconf_engine_all_entries':
gconf-dbus.c:1795:13: warning: Deprecated pre-processor symbol, replace with 
 1795 |   CHECK_OWNER_USE (conf);
      |             ^~~~~~~~~~~~~                                   
gconf-dbus.c: In function 'gconf_engine_all_dirs':
gconf-dbus.c:1907:13: warning: Deprecated pre-processor symbol, replace with 
 1907 |   CHECK_OWNER_USE (conf);
      |             ^~~~~~~~~~~~~                                   
gconf-dbus.c: In function 'gconf_engine_suggest_sync':
gconf-dbus.c:2003:13: warning: Deprecated pre-processor symbol, replace with 
 2003 |   CHECK_OWNER_USE (conf);
      |             ^~~~~~~~~~~~~                                   
gconf-dbus.c: In function 'gconf_engine_dir_exists':
gconf-dbus.c:2124:13: warning: Deprecated pre-processor symbol, replace with 
 2124 |   CHECK_OWNER_USE (conf);
      |             ^~~~~~~~~~~~~                                   
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o gconf-client.lo gconf-client.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-client.c  -fPIC -DPIC -o .libs/gconf-client.o
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from gconf-client.h:25,
                 from gconf-client.c:25:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -version-info 5:5:1 -no-undefined -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o libgconf-2.la -rpath /usr/lib64 gconf-internals.lo gconf-backend.lo gconf-changeset.lo gconf-error.lo gconf-listeners.lo gconf-locale.lo gconf-schema.lo gconf-sources.lo gconf-value.lo gconf.lo gconf-client.lo gconf-enum-types.lo   gconf-dbus.lo gconf-dbus-utils.lo  -lgio-2.0 -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgobject-2.0 -lglib-2.0  -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0   
libtool: link: gcc -shared -Wl,--as-needed  -fPIC -DPIC  .libs/gconf-internals.o .libs/gconf-backend.o .libs/gconf-changeset.o .libs/gconf-error.o .libs/gconf-listeners.o .libs/gconf-locale.o .libs/gconf-schema.o .libs/gconf-sources.o .libs/gconf-value.o .libs/gconf.o .libs/gconf-client.o .libs/gconf-enum-types.o .libs/gconf-dbus.o .libs/gconf-dbus-utils.o   -O2 -Wl,--as-needed -Wl,--no-undefined -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -Wl,--export-dynamic -pthread   -pthread  -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -Wl,-soname -Wl,libgconf-2.so.4 -o .libs/libgconf-2.so.4.1.5
libtool: link: (cd ".libs" && rm -f "libgconf-2.so.4" && ln -s "libgconf-2.so.4.1.5" "libgconf-2.so.4")
libtool: link: (cd ".libs" && rm -f "libgconf-2.so" && ln -s "libgconf-2.so.4.1.5" "libgconf-2.so")
libtool: link: ( cd ".libs" && rm -f "libgconf-2.la" && ln -s "../libgconf-2.la" "libgconf-2.la" )
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=link gcc -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall  -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o gconfd-2 gconfd_2-gconf-database.o gconfd_2-gconfd.o gconfd_2-gconfd-dbus.o gconfd_2-gconf-database-dbus.o libgconf-2.la   -lgio-2.0 -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgobject-2.0 -lglib-2.0  -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0   
libtool: link: gcc -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\"/usr\" -DGCONF_LOCALE_DIR=\"/usr/share/locale\" -DGCONF_SRCDIR=\"/home/iurt/rpmbuild/BUILD/GConf-3.2.6\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -DGCONF_ETCDIR=\"/etc/gconf\" -DGCONF_BINDIR=\"/usr/bin\" -DGCONF_SERVERDIR=\"/usr/libexec\" -DGCONF_BUILDDIR=\"..\" -DGCONF_BACKEND_DIR=\"/usr/lib64/GConf/2\" -DVERSION=\"3.2.6\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\"gconfd-2\" -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -Wl,--as-needed -Wl,--no-undefined -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o .libs/gconfd-2 gconfd_2-gconf-database.o gconfd_2-gconfd.o gconfd_2-gconfd-dbus.o gconfd_2-gconf-database-dbus.o -Wl,--export-dynamic -pthread  ./.libs/libgconf-2.so -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -pthread
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconftool.c
In file included from ../gconf/gconf-schema.h:26,
                 from gconf.h:27,
                 from gconftool.c:21:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
gconftool.c: In function 'main':
gconftool.c:581:3: warning: 'g_thread_init' is deprecated [-Wdeprecated-declarations]
  581 |   g_thread_init (NULL);
      |   ^~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/glib.h:112,
                 from gconf.h:23,
                 from gconftool.c:21:
/usr/include/glib-2.0/glib/deprecated/gthread.h:261:10: note: declared here
  261 | void     g_thread_init                   (gpointer vtable);
      |          ^~~~~~~~~~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall  -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o gconftool-2 gconftool.o libgconf-2.la   -lgio-2.0 -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgobject-2.0 -lglib-2.0 -lxml2  
libtool: link: gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -Wl,--as-needed -Wl,--no-undefined -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o .libs/gconftool-2 gconftool.o -Wl,--export-dynamic -pthread  ./.libs/libgconf-2.so -ldbus-glib-1 -ldbus-1 -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 -pthread
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
CPPFLAGS="" CFLAGS="-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall" LDFLAGS="-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags" CC="gcc" PKG_CONFIG="/usr/bin/aarch64-mageia-linux-gnu-pkg-config" GI_HOST_OS="" DLLTOOL="dlltool"  /usr/bin/g-ir-scanner  --warn-all --add-include-path=. --namespace=GConf --nsversion=2.0 --libtool="/bin/sh ../libtool"  --include=GObject-2.0 --pkg-export=gconf-2.0   --library=libgconf-2.la --identifier-prefix=GConf --symbol-prefix=gconf --c-include "gconf/gconf.h" --cflags-begin -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include   -DG_LOG_DOMAIN=\"GConf\" -DPREFIX=\""/usr"\" -DGCONF_LOCALE_DIR=\""/usr/share/locale"\" -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_CONFDIR=\""/etc/gconf/2"\" -DGCONF_ETCDIR=\""/etc/gconf"\" -DGCONF_BINDIR=\""/usr/bin"\" -DGCONF_SERVERDIR=\""/usr/libexec"\" -DGCONF_BUILDDIR=\"".."\" -DGCONF_BACKEND_DIR=\""/usr/lib64/GConf/2"\" -DVERSION=\""3.2.6"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""gconfd-2"\"  --cflags-end  gconf.h gconf-changeset.h gconf-listeners.h gconf-schema.h gconf-value.h gconf-error.h gconf-engine.h gconf-client.h gconf-enum-types.h gconf-internals.c gconf-backend.c gconf-changeset.c gconf-error.c gconf-listeners.c gconf-locale.c gconf-schema.c gconf-sources.c gconf-value.c gconf.c gconf-client.c gconf-enum-types.c gconf-dbus.c gconf-dbus-utils.c libgconf-2.la Makefile --output GConf-2.0.gir
gconf.c:833: Error: GConf: encountered multiple return value parameters or tags for "gconf_engine_notify_add".
gconf.c:3343: Error: GConf: encountered multiple return value parameters or tags for "gconf_engine_get_schema".
gconf-dbus.c:1590: Warning: GConf: multiple comment blocks documenting 'gconf_engine_recursive_unset:' identifier (already seen at gconf.c:1457).
gconf-dbus.c:2385: Warning: GConf: multiple comment blocks documenting 'gconf_debug_shutdown:' identifier (already seen at gconf.c:2407).
g-ir-scanner: link: /bin/sh ../libtool --mode=link --tag=CC gcc -o /home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf/tmp-introspectnvs3wiid/GConf-2.0 -export-dynamic -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall /home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf/tmp-introspectnvs3wiid/GConf-2.0.o -L. libgconf-2.la -lgio-2.0 -lgobject-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lglib-2.0 -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags
libtool: link: gcc -o /home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf/tmp-introspectnvs3wiid/.libs/GConf-2.0 -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall /home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf/tmp-introspectnvs3wiid/GConf-2.0.o -Wl,--export-dynamic -pthread -Wl,--as-needed -Wl,--no-undefined -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -Wl,--export-dynamic  -L. ./.libs/libgconf-2.so -lgthread-2.0 -ldbus-glib-1 -ldbus-1 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -pthread
gconf-dbus.c:2387: Warning: GConf: gconf_debug_shutdown: unknown parameter 'void' in documentation comment
gconf-value.h:107: Warning: GConf: gconf_value_set_list_nocopy: argument list: Missing (element-type) annotation
gconf-value.h:109: Warning: GConf: gconf_value_set_list: argument list: Missing (element-type) annotation
gconf-changeset.h:119: Warning: GConf: gconf_change_set_set_list: argument list: Missing (element-type) annotation
gconf-client.h:334: Warning: GConf: gconf_client_set_list: argument list: Missing (element-type) annotation
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/usr/bin/g-ir-compiler --includedir=. --includedir=. GConf-2.0.gir -o GConf-2.0.typelib
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
Making all in backends
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2   -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\"    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o xml-cache.lo xml-cache.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2 -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c xml-cache.c  -fPIC -DPIC -o .libs/xml-cache.o
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from xml-cache.h:23,
                 from xml-cache.c:21:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
In file included from xml-cache.h:25,
                 from xml-cache.c:21:
xml-dir.h:73:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   73 | GTime          dir_get_last_access (Dir          *d);
      | ^~~~~
In file included from xml-cache.c:21:
xml-cache.h:36:28: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   36 |                            GTime         older_than);
      |                            ^~~~~
xml-cache.c:296:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  296 |   GTime now;
      |   ^~~~~
xml-cache.c:298:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  298 |   GTime length;
      |   ^~~~~
xml-cache.c: In function 'cache_clean_foreach':
xml-cache.c:305:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  305 |   GTime last_access;
      |   ^~~~~
xml-cache.c: At top level:
xml-cache.c:329:19: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  329 |                   GTime         older_than)
      |                   ^~~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2   -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\"    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o markup-backend.lo markup-backend.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2 -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c markup-backend.c  -fPIC -DPIC -o .libs/markup-backend.o
In file included from ../gconf/gconf-internals.h:36,
                 from ../gconf/gconf-backend.h:24,
                 from markup-backend.c:21:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
In file included from markup-backend.c:36:
markup-tree.h:81:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   81 | GTime       markup_entry_get_mod_time    (MarkupEntry       *entry);
      | ^~~~~
markup-backend.c: In function 'query_metainfo':
markup-backend.c:527:7: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  527 |       GTime mtime;
      |       ^~~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2   -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\"    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o xml-backend.lo xml-backend.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2 -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c xml-backend.c  -fPIC -DPIC -o .libs/xml-backend.o
In file included from ../gconf/gconf-internals.h:36,
                 from ../gconf/gconf-backend.h:24,
                 from xml-backend.c:22:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
In file included from xml-cache.h:25,
                 from xml-backend.c:26:
xml-dir.h:73:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   73 | GTime          dir_get_last_access (Dir          *d);
      | ^~~~~
In file included from xml-backend.c:26:
xml-cache.h:36:28: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   36 |                            GTime         older_than);
      |                            ^~~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2   -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\"    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o evoldap-backend.lo evoldap-backend.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2 -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c evoldap-backend.c  -fPIC -DPIC -o .libs/evoldap-backend.o
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from evoldap-backend.c:36:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2   -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\"    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c xml-test.c
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from xml-entry.h:23,
                 from xml-test.c:21:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
In file included from xml-test.c:21:
xml-entry.h:50:39: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   50 |                                       GTime         mod_time);
      |                                       ^~~~~
In file included from xml-test.c:22:
xml-dir.h:73:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   73 | GTime          dir_get_last_access (Dir          *d);
      | ^~~~~
In file included from xml-test.c:23:
xml-cache.h:36:28: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   36 |                            GTime         older_than);
      |                            ^~~~~
xml-test.c: In function 'main':
xml-test.c:36:23: warning: variable 'vtable' set but not used [-Wunused-but-set-variable]
   36 |   GConfBackendVTable *vtable;
      |                       ^~~~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -avoid-version -module -no-undefined -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o libgconfbackend-evoldap.la -rpath /usr/lib64/GConf/2 evoldap-backend.lo -lgio-2.0 -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgobject-2.0 -lglib-2.0 -lxml2  ../gconf/libgconf-2.la  -lldap -llber 
libtool: link: gcc -shared -Wl,--as-needed  -fPIC -DPIC  .libs/evoldap-backend.o    -O2 -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -Wl,--export-dynamic -pthread   -pthread  -Wl,-rpath -Wl,/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf/.libs -lxml2 ../gconf/.libs/libgconf-2.so -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -lldap -llber -Wl,-soname -Wl,libgconfbackend-evoldap.so -o .libs/libgconfbackend-evoldap.so
libtool: link: ( cd ".libs" && rm -f "libgconfbackend-evoldap.la" && ln -s "../libgconfbackend-evoldap.la" "libgconfbackend-evoldap.la" )
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2   -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\"    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o xml-dir.lo xml-dir.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2 -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c xml-dir.c  -fPIC -DPIC -o .libs/xml-dir.o
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from xml-dir.h:23,
                 from xml-dir.c:21:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
In file included from xml-dir.c:21:
xml-dir.h:73:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   73 | GTime          dir_get_last_access (Dir          *d);
      | ^~~~~
In file included from xml-dir.c:22:
xml-entry.h:50:39: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   50 |                                       GTime         mod_time);
      |                                       ^~~~~
xml-dir.c:72:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   72 |   GTime last_access; /* so we know when to un-cache */
      |   ^~~~~
xml-dir.c:617:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  617 | {
      | ^
xml-dir.c: In function 'dir_load_doc':
xml-dir.c:1059:57: warning: pointer targets in passing argument 3 of 'xmlNewDocNode' differ in signedness [-Wpointer-sign]
 1059 |       d->doc->xmlRootNode = xmlNewDocNode(d->doc, NULL, "gconf", NULL);
      |                                                         ^~~~~~~
      |                                                         |
      |                                                         char *
In file included from xml-dir.h:24,
                 from xml-dir.c:21:
/usr/include/libxml2/libxml/tree.h:829:57: note: expected 'const xmlChar *' {aka 'const unsigned char *'} but argument is of type 'char *'
  829 |                                          const xmlChar *name,
      |                                          ~~~~~~~~~~~~~~~^~~~
xml-dir.c: In function 'dir_fill_cache_from_doc':
xml-dir.c:1156:19: warning: pointer targets in passing argument 1 of 'strcmp' differ in signedness [-Wpointer-sign]
 1156 |           (strcmp((xmlChar *)node->name, "entry") == 0))
      |                   ^~~~~~~~~~~~~~~~~~~~~
      |                   |
      |                   xmlChar * {aka unsigned char *}
In file included from /usr/include/glib-2.0/glib/gslice.h:26,
                 from /usr/include/glib-2.0/glib.h:79,
                 from ../gconf/gconf.h:23,
                 from xml-dir.h:23,
                 from xml-dir.c:21:
/usr/include/string.h:140:32: note: expected 'const char *' but argument is of type 'xmlChar *' {aka 'unsigned char *'}
  140 | extern int strcmp (const char *__s1, const char *__s2)
      |                    ~~~~~~~~~~~~^~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2   -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\"    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o xml-entry.lo xml-entry.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2 -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c xml-entry.c  -fPIC -DPIC -o .libs/xml-entry.o
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from xml-entry.h:23,
                 from xml-entry.c:21:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
In file included from xml-entry.c:21:
xml-entry.h:50:39: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   50 |                                       GTime         mod_time);
      |                                       ^~~~~
xml-entry.c:45:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   45 |   GTime mod_time;
      |   ^~~~~
xml-entry.c:270:23: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  270 |                       GTime         mod_time)
      |                       ^~~~~
xml-entry.c: In function 'node_set_schema_value':
xml-entry.c:501:18: warning: variable 'ld_node' set but not used [-Wunused-but-set-variable]
  501 |       xmlNodePtr ld_node;
      |                  ^~~~~~~
xml-entry.c: In function 'node_set_value':
xml-entry.c:539:20: warning: variable 'child' set but not used [-Wunused-but-set-variable]
  539 |         xmlNodePtr child;
      |                    ^~~~~
xml-entry.c: In function 'my_xmlGetProp':
xml-entry.c:1291:12: warning: pointer targets in returning 'xmlChar *' {aka 'unsigned char *'} from a function with return type 'char *' differ in signedness [-Wpointer-sign]
 1291 |     return prop;
      |            ^~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -avoid-version -module -no-undefined -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o libgconfbackend-oldxml.la -rpath /usr/lib64/GConf/2 xml-cache.lo xml-dir.lo xml-entry.lo xml-backend.lo -lgio-2.0 -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgobject-2.0 -lglib-2.0 -lxml2  ../gconf/libgconf-2.la  
libtool: link: gcc -shared -Wl,--as-needed  -fPIC -DPIC  .libs/xml-cache.o .libs/xml-dir.o .libs/xml-entry.o .libs/xml-backend.o    -O2 -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -Wl,--export-dynamic -pthread   -pthread  -Wl,-rpath -Wl,/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf/.libs -lxml2 ../gconf/.libs/libgconf-2.so -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -Wl,-soname -Wl,libgconfbackend-oldxml.so -o .libs/libgconfbackend-oldxml.so
libtool: link: ( cd ".libs" && rm -f "libgconfbackend-oldxml.la" && ln -s "../libgconfbackend-oldxml.la" "libgconfbackend-oldxml.la" )
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall  -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o xml-test xml-test.o -lgio-2.0 -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgobject-2.0 -lglib-2.0 -lxml2  ../gconf/libgconf-2.la libgconfbackend-oldxml.la 

*** Warning: Linking the executable xml-test against the loadable module
*** libgconfbackend-oldxml.so is not portable!
libtool: link: gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -Wl,--as-needed -Wl,--no-undefined -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o .libs/xml-test xml-test.o -Wl,--export-dynamic -pthread  ../gconf/.libs/libgconf-2.so ./.libs/libgconfbackend-oldxml.so -lxml2 /home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf/.libs/libgconf-2.so -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -pthread -Wl,-rpath -Wl,/usr/lib64/GConf/2
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2   -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\"    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-merge-tree.c
In file included from ../gconf/gconf-internals.h:36,
                 from markup-tree.c:23,
                 from gconf-merge-tree.c:26:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
In file included from markup-tree.c:25,
                 from gconf-merge-tree.c:26:
markup-tree.h:81:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   81 | GTime       markup_entry_get_mod_time    (MarkupEntry       *entry);
      | ^~~~~
In file included from gconf-merge-tree.c:26:
markup-tree.c:91:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   91 |   GTime       mod_time;
      |   ^~~~~
markup-tree.c:1878:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
 1878 | {
      | ^
markup-tree.c:1898:28: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
 1898 |                            GTime        mtime)
      |                            ^~~~~
markup-tree.c: In function 'parse_entry_element':
markup-tree.c:2785:11: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
 2785 |           GTime vmtime;
      |           ^~~~~
markup-tree.c: In function 'parse_li_element':
markup-tree.c:3119:14: warning: variable 'current_state' set but not used [-Wunused-but-set-variable]
 3119 |   ParseState current_state;
      |              ^~~~~~~~~~~~~
In file included from gconf-merge-tree.c:26:
markup-tree.c: In function 'save_tree_with_locale':
markup-tree.c:4524:11: warning: ignoring return value of 'chown' declared with attribute 'warn_unused_result' [-Wunused-result]
 4524 |           chown (new_filename, -1, st.st_gid);
      |           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
markup-tree.c:4525:11: warning: ignoring return value of 'chown' declared with attribute 'warn_unused_result' [-Wunused-result]
 4525 |           chown (new_filename, st.st_uid, -1);
      |           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2   -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\"    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o markup-tree.lo markup-tree.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../gconf -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -pthread -I/usr/include/libxml2 -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\" -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c markup-tree.c  -fPIC -DPIC -o .libs/markup-tree.o
In file included from ../gconf/gconf-internals.h:36,
                 from markup-tree.c:23:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
In file included from markup-tree.c:25:
markup-tree.h:81:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   81 | GTime       markup_entry_get_mod_time    (MarkupEntry       *entry);
      | ^~~~~
markup-tree.c:91:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   91 |   GTime       mod_time;
      |   ^~~~~
markup-tree.c:1878:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
 1878 | {
      | ^
markup-tree.c:1898:28: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
 1898 |                            GTime        mtime)
      |                            ^~~~~
markup-tree.c: In function 'parse_entry_element':
markup-tree.c:2785:11: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
 2785 |           GTime vmtime;
      |           ^~~~~
markup-tree.c: In function 'parse_li_element':
markup-tree.c:3119:14: warning: variable 'current_state' set but not used [-Wunused-but-set-variable]
 3119 |   ParseState current_state;
      |              ^~~~~~~~~~~~~
markup-tree.c: In function 'save_tree_with_locale':
markup-tree.c:4524:11: warning: ignoring return value of 'chown' declared with attribute 'warn_unused_result' [-Wunused-result]
 4524 |           chown (new_filename, -1, st.st_gid);
      |           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
markup-tree.c:4525:11: warning: ignoring return value of 'chown' declared with attribute 'warn_unused_result' [-Wunused-result]
 4525 |           chown (new_filename, st.st_uid, -1);
      |           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -avoid-version -module -no-undefined -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o libgconfbackend-xml.la -rpath /usr/lib64/GConf/2 markup-backend.lo markup-tree.lo -lgio-2.0 -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgobject-2.0 -lglib-2.0  ../gconf/libgconf-2.la  
libtool: link: gcc -shared -Wl,--as-needed  -fPIC -DPIC  .libs/markup-backend.o .libs/markup-tree.o    -O2 -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -Wl,--export-dynamic -pthread   -pthread  -Wl,-rpath -Wl,/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf/.libs ../gconf/.libs/libgconf-2.so -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -Wl,-soname -Wl,libgconfbackend-xml.so -o .libs/libgconfbackend-xml.so
libtool: link: ( cd ".libs" && rm -f "libgconfbackend-xml.la" && ln -s "../libgconfbackend-xml.la" "libgconfbackend-xml.la" )
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall  -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o gconf-merge-tree gconf-merge-tree.o -lgio-2.0 -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgobject-2.0 -lglib-2.0  ../gconf/libgconf-2.la 
libtool: link: gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -Wl,--as-needed -Wl,--no-undefined -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o .libs/gconf-merge-tree gconf-merge-tree.o -Wl,--export-dynamic -pthread  ../gconf/.libs/libgconf-2.so -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -pthread
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
Making all in po
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo am | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file am.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo az | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file az.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ast | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ast.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ar | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ar.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo bg | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file bg.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo be | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file be.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo bn | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file bn.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo as | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file as.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo bn_IN | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file bn_IN.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo bs | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file bs.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ca | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ca.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ca@valencia | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ca@valencia.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo cy | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file cy.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo cs | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file cs.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo da | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file da.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo de | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file de.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo eo | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file eo.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo el | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file el.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo dz | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file dz.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo en_GB | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file en_GB.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo et | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file et.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo en_CA | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file en_CA.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo en@shaw | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file en@shaw.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo es | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file es.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ga | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ga.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo eu | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file eu.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo fi | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file fi.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo fa | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file fa.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo fr | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file fr.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo gl | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file gl.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo he | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file he.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo gu | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file gu.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo is | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file is.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo hr | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file hr.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo hi | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file hi.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo id | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file id.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo hu | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file hu.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo hy | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file hy.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo it | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file it.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ja | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ja.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ku | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ku.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ko | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ko.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ka | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ka.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo lt | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file lt.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo kn | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file kn.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo lv | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file lv.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo km | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file km.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo mai | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file mai.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo mg | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file mg.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo mk | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file mk.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo mn | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file mn.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo mr | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file mr.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ml | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ml.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ms | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ms.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo nb | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file nb.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ne | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ne.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo oc | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file oc.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo nl | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file nl.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo nn | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file nn.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo pl | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file pl.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo pa | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file pa.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo or | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file or.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo pt | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file pt.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo pt_BR | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file pt_BR.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ro | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ro.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo rw | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file rw.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ru | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ru.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo si | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file si.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo sk | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file sk.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo sl | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file sl.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo sq | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file sq.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo sr | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file sr.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo sr@latin | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file sr@latin.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo sv | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file sv.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ta | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ta.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo te | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file te.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo tr | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file tr.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo th | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file th.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo ug | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file ug.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo uk | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file uk.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo vi | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file vi.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo xh | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file xh.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo yi | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file yi.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo zh_HK | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file zh_HK.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo zh_CN | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file zh_CN.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
file=`echo zh_TW | sed 's,.*/,,'`.gmo \
  && rm -f $file && /usr/bin/msgfmt -o $file zh_TW.po
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
Making all in doc
Making all in gconf
make[3]: Nothing to be done for 'all'.
make[3]: Nothing to be done for 'all-am'.
Making all in examples
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_SYSCONFDIR=\""/etc/gconf"\"    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c simple-view.c
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from ../gconf/gconf-client.h:25,
                 from simple-view.c:23:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_SYSCONFDIR=\""/etc/gconf"\"    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c simple-controller.c
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from ../gconf/gconf-client.h:25,
                 from simple-controller.c:24:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -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/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread  -DGCONF_SRCDIR=\""/home/iurt/rpmbuild/BUILD/GConf-3.2.6"\" -DGCONF_SYSCONFDIR=\""/etc/gconf"\"    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c basic-gconf-app.c
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from ../gconf/gconf-client.h:25,
                 from basic-gconf-app.c:83:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
basic-gconf-app.c: In function 'create_main_window':
basic-gconf-app.c:292:3: warning: 'gtk_vbox_new' is deprecated: Use 'gtk_box_new' instead [-Wdeprecated-declarations]
  292 |   vbox = gtk_vbox_new (FALSE, 5);
      |   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:286,
                 from basic-gconf-app.c:84:
/usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h:61:13: note: declared here
   61 | GtkWidget * gtk_vbox_new      (gboolean homogeneous,
      |             ^~~~~~~~~~~~
basic-gconf-app.c: In function 'create_config_entry':
basic-gconf-app.c:378:3: warning: 'gtk_hbox_new' is deprecated: Use 'gtk_box_new' instead [-Wdeprecated-declarations]
  378 |   hbox = gtk_hbox_new (FALSE, 5);
      |   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:262,
                 from basic-gconf-app.c:84:
/usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h:63:13: note: declared here
   63 | GtkWidget * gtk_hbox_new      (gboolean homogeneous,
      |             ^~~~~~~~~~~~
basic-gconf-app.c: In function 'create_prefs_dialog':
basic-gconf-app.c:440:41: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
  440 |                                         GTK_STOCK_CLOSE,
      |                                         ^~~~~~~~~~~~~~~
basic-gconf-app.c:454:3: warning: 'gtk_vbox_new' is deprecated: Use 'gtk_box_new' instead [-Wdeprecated-declarations]
  454 |   vbox = gtk_vbox_new (FALSE, 5);
      |   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:286,
                 from basic-gconf-app.c:84:
/usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h:61:13: note: declared here
   61 | GtkWidget * gtk_vbox_new      (gboolean homogeneous,
      |             ^~~~~~~~~~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
                 from /usr/include/glib-2.0/gobject/gbinding.h:29,
                 from /usr/include/glib-2.0/glib-object.h:22,
                 from ../gconf/gconf-client.h:24,
                 from basic-gconf-app.c:83:
basic-gconf-app.c:458:60: warning: passing argument 1 of 'gtk_dialog_get_content_area' from incompatible pointer type [-Wincompatible-pointer-types]
  458 |   gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area(dialog)),
      |                                                            ^~~~~~
      |                                                            |
      |                                                            GtkWidget * {aka struct _GtkWidget *}
/usr/include/glib-2.0/gobject/gtype.h:2300:57: note: in definition of macro '_G_TYPE_CIC'
 2300 |     ((ct*) g_type_check_instance_cast ((GTypeInstance*) ip, gt))
      |                                                         ^~
/usr/include/gtk-3.0/gtk/gtkbox.h:40:34: note: in expansion of macro 'G_TYPE_CHECK_INSTANCE_CAST'
   40 | #define GTK_BOX(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_BOX, GtkBox))
      |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
basic-gconf-app.c:458:23: note: in expansion of macro 'GTK_BOX'
  458 |   gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area(dialog)),
      |                       ^~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtkaboutdialog.h:30,
                 from /usr/include/gtk-3.0/gtk/gtk.h:31,
                 from basic-gconf-app.c:84:
/usr/include/gtk-3.0/gtk/gtkdialog.h:205:53: note: expected 'GtkDialog *' {aka 'struct _GtkDialog *'} but argument is of type 'GtkWidget *' {aka 'struct _GtkWidget *'}
  205 | GtkWidget * gtk_dialog_get_content_area (GtkDialog *dialog);
      |                                          ~~~~~~~~~~~^~~~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall  -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o simple-view simple-view.o   -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0  ../gconf/libgconf-2.la  
libtool: link: gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -Wl,--as-needed -Wl,--no-undefined -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o .libs/simple-view simple-view.o -Wl,--export-dynamic -pthread  -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 ../gconf/.libs/libgconf-2.so -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -pthread
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall  -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o simple-controller simple-controller.o   -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0  ../gconf/libgconf-2.la  
libtool: link: gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -Wl,--as-needed -Wl,--no-undefined -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o .libs/simple-controller simple-controller.o -Wl,--export-dynamic -pthread  -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 ../gconf/.libs/libgconf-2.so -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -pthread
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall  -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o basic-gconf-app basic-gconf-app.o   -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0  ../gconf/libgconf-2.la  
libtool: link: gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -Wl,--as-needed -Wl,--no-undefined -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o .libs/basic-gconf-app basic-gconf-app.o -Wl,--export-dynamic -pthread  -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 ../gconf/.libs/libgconf-2.so -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -pthread
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall  -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o complex-gconf-app basic-gconf-app.o   -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0  ../gconf/libgconf-2.la  
libtool: link: gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -Wl,--as-needed -Wl,--no-undefined -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o .libs/complex-gconf-app basic-gconf-app.o -Wl,--export-dynamic -pthread  -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 ../gconf/.libs/libgconf-2.so -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -pthread
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
Making all in defaults
/usr/bin/make  all-am
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
sed -e "s|\@LIBEXECDIR\@|/usr/libexec|" org.gnome.GConf.Defaults.service.in > org.gnome.GConf.Defaults.service
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -DSYSGCONFDIR=\"/etc/gconf\" -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/polkit-1 -pthread -I/usr/include/libmount -I/usr/include/blkid     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-defaults-main.c
gconf-defaults-main.c: In function 'get_system_bus':
gconf-defaults-main.c:110:26: warning: variable 'connection' set but not used [-Wunused-but-set-variable]
  110 |         DBusConnection  *connection;
      |                          ^~~~~~~~~~
gconf-defaults-main.c: In function 'main':
gconf-defaults-main.c:161:13: warning: Deprecated pre-processor symbol
  161 |         if (! g_thread_supported ()) {
      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~       
gconf-defaults-main.c:162:17: warning: 'g_thread_init' is deprecated [-Wdeprecated-declarations]
  162 |                 g_thread_init (NULL);
      |                 ^~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/glib.h:112,
                 from gconf-defaults-main.c:33:
/usr/include/glib-2.0/glib/deprecated/gthread.h:261:10: note: declared here
  261 | void     g_thread_init                   (gpointer vtable);
      |          ^~~~~~~~~~~~~
gconf-defaults-main.c:165:9: warning: 'g_type_init' is deprecated [-Wdeprecated-declarations]
  165 |         g_type_init ();
      |         ^~~~~~~~~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
                 from /usr/include/glib-2.0/gobject/gbinding.h:29,
                 from /usr/include/glib-2.0/glib-object.h:22,
                 from gconf-defaults-main.c:34:
/usr/include/glib-2.0/gobject/gtype.h:691:23: note: declared here
  691 | void                  g_type_init                    (void);
      |                       ^~~~~~~~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -DSYSGCONFDIR=\"/etc/gconf\" -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/polkit-1 -pthread -I/usr/include/libmount -I/usr/include/blkid     -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconf-defaults.c
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from ../gconf/gconf-client.h:25,
                 from gconf-defaults.c:43:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
gconf-defaults.c: In function 'gconf_defaults_constructor':
gconf-defaults.c:159:29: warning: variable 'klass' set but not used [-Wunused-but-set-variable]
  159 |         GConfDefaultsClass *klass;
      |                             ^~~~~
gconf-defaults.c: In function 'gconf_defaults_class_init':
gconf-defaults.c:194:9: warning: 'g_type_class_add_private' is deprecated [-Wdeprecated-declarations]
  194 |         g_type_class_add_private (klass, sizeof (GConfDefaultsPrivate));
      |         ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
                 from /usr/include/glib-2.0/gobject/gbinding.h:29,
                 from /usr/include/glib-2.0/glib-object.h:22,
                 from gconf-defaults.c:35:
/usr/include/glib-2.0/gobject/gtype.h:1307:10: note: declared here
 1307 | void     g_type_class_add_private       (gpointer                    g_class,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~
gconf-defaults.c: In function 'gconf_defaults_init':
gconf-defaults.c:205:13: warning: Deprecated pre-processor symbol, replace with 
  205 |         mechanism->priv = GCONF_DEFAULTS_GET_PRIVATE (mechanism);
      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gconf-defaults.c: In function 'register_mechanism':
gconf-defaults.c:231:9: warning: 'polkit_authority_get' is deprecated: Use polkit_authority_get_sync instead [-Wdeprecated-declarations]
  231 |         mechanism->priv->auth = polkit_authority_get ();
      |         ^~~~~~~~~
In file included from /usr/include/polkit-1/polkit/polkit.h:43,
                 from gconf-defaults.c:40:
/usr/include/polkit-1/polkit/polkitauthority.h:50:18: note: declared here
   50 | PolkitAuthority *polkit_authority_get (void) G_GNUC_DEPRECATED_FOR (polkit_authority_get_sync);
      |                  ^~~~~~~~~~~~~~~~~~~~
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall  -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o gconf-defaults-mechanism gconf-defaults.o gconf-defaults-main.o ../gconf/libgconf-2.la -lgthread-2.0 -pthread -lglib-2.0 -ldbus-glib-1 -ldbus-1 -lpolkit-gobject-1 -lgio-2.0 -lgobject-2.0 -lglib-2.0  
libtool: link: gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -Wl,--as-needed -Wl,--no-undefined -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o .libs/gconf-defaults-mechanism gconf-defaults.o gconf-defaults-main.o -pthread  ../gconf/.libs/libgconf-2.so -lgmodule-2.0 -lgthread-2.0 -ldbus-glib-1 -ldbus-1 -lpolkit-gobject-1 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -pthread
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
LC_ALL=C /usr/bin/intltool-merge  -x -u -c ../po/.intltool-merge-cache ../po org.gnome.gconf.defaults.policy.in org.gnome.gconf.defaults.policy
Generating and caching the translation database
Merging translations into org.gnome.gconf.defaults.policy.
CREATED org.gnome.gconf.defaults.policy
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
Making all in gsettings
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
LC_ALL=C /usr/bin/intltool-merge  -d -u -c ../po/.intltool-merge-cache ../po gsettings-data-convert.desktop.in gsettings-data-convert.desktop
Found cached translation database
Merging translations into gsettings-data-convert.desktop.
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..  -I.. -I.. -DDATADIR=\"/usr/share\" -DGCONF_CONFDIR=\""/etc/gconf/2"\"  -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -pthread -I/usr/include/libmount -I/usr/include/blkid   -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -pthread -I/usr/include/libmount -I/usr/include/blkid  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o libgsettingsgconfbackend_la-gconfsettingsbackend-module.lo `test -f 'gconfsettingsbackend-module.c' || echo './'`gconfsettingsbackend-module.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -DDATADIR=\"/usr/share\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -pthread -I/usr/include/libmount -I/usr/include/blkid -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconfsettingsbackend-module.c  -fPIC -DPIC -o .libs/libgsettingsgconfbackend_la-gconfsettingsbackend-module.o
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
gcc -DHAVE_CONFIG_H -I. -I..  -I.. -I.. -DDATADIR=\"/usr/share\" -DGCONF_CONFDIR=\""/etc/gconf/2"\"  -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -pthread -I/usr/include/libmount -I/usr/include/blkid    -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gsettings-data-convert.c
In file included from ../gconf/gconf-internals.h:36,
                 from gsettings-data-convert.c:31:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
gsettings-data-convert.c: In function 'handle_file':
gsettings-data-convert.c:254:19: warning: 'g_settings_get_range' is deprecated: Use 'g_settings_schema_key_get_range' instead [-Wdeprecated-declarations]
  254 |                   range = g_settings_get_range (settings, keys[j]);
      |                   ^~~~~
In file included from /usr/include/glib-2.0/gio/gio.h:132,
                 from gsettings-data-convert.c:29:
/usr/include/glib-2.0/gio/gsettings.h:98:25: note: declared here
   98 | GVariant *              g_settings_get_range                            (GSettings          *settings,
      |                         ^~~~~~~~~~~~~~~~~~~~
gsettings-data-convert.c: In function 'main':
gsettings-data-convert.c:620:3: warning: 'g_type_init' is deprecated [-Wdeprecated-declarations]
  620 |   g_type_init();
      |   ^~~~~~~~~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
                 from /usr/include/glib-2.0/gobject/gbinding.h:29,
                 from /usr/include/glib-2.0/glib-object.h:22,
                 from /usr/include/glib-2.0/gio/gioenums.h:28,
                 from /usr/include/glib-2.0/gio/giotypes.h:28,
                 from /usr/include/glib-2.0/gio/gio.h:26,
                 from gsettings-data-convert.c:29:
/usr/include/glib-2.0/gobject/gtype.h:691:23: note: declared here
  691 | void                  g_type_init                    (void);
      |                       ^~~~~~~~~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall  -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o gsettings-data-convert gsettings-data-convert.o ../gconf/libgconf-2.la -lgio-2.0 -lgobject-2.0 -lglib-2.0   
libtool: link: gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -Wl,--as-needed -Wl,--no-undefined -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o .libs/gsettings-data-convert gsettings-data-convert.o  ../gconf/.libs/libgconf-2.so -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -pthread
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..  -I.. -I.. -DDATADIR=\"/usr/share\" -DGCONF_CONFDIR=\""/etc/gconf/2"\"  -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -pthread -I/usr/include/libmount -I/usr/include/blkid   -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -pthread -I/usr/include/libmount -I/usr/include/blkid  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c -o libgsettingsgconfbackend_la-gconfsettingsbackend.lo `test -f 'gconfsettingsbackend.c' || echo './'`gconfsettingsbackend.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -DDATADIR=\"/usr/share\" -DGCONF_CONFDIR=\"/etc/gconf/2\" -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -pthread -I/usr/include/libmount -I/usr/include/blkid -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -c gconfsettingsbackend.c  -fPIC -DPIC -o .libs/libgsettingsgconfbackend_la-gconfsettingsbackend.o
In file included from ../gconf/gconf-schema.h:26,
                 from ../gconf/gconf.h:27,
                 from ../gconf/gconf-client.h:25,
                 from gconfsettingsbackend.c:28:
../gconf/gconf-value.h:139:3: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  139 |   GTime  mod_time; /* time of the modification */
      |   ^~~~~
../gconf/gconf-value.h:144:1: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  144 | GTime       gconf_meta_info_mod_time     (GConfMetaInfo *gcmi);
      | ^~~~~
../gconf/gconf-value.h:153:46: warning: 'GTime' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  153 |                                              GTime          mod_time);
      |                                              ^~~~~
gconfsettingsbackend.c: In function 'gconf_settings_backend_init':
gconfsettingsbackend.c:889:13: warning: Deprecated pre-processor symbol, replace with 
  889 |                                              GConfSettingsBackendPrivate);
      |             ^                                ~~~~~~~~~~~~~~~
gconfsettingsbackend.c: In function 'gconf_settings_backend_class_init':
gconfsettingsbackend.c:917:3: warning: 'g_type_class_add_private' is deprecated [-Wdeprecated-declarations]
  917 |   g_type_class_add_private (class, sizeof (GConfSettingsBackendPrivate));
      |   ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
                 from /usr/include/glib-2.0/gobject/gbinding.h:29,
                 from /usr/include/glib-2.0/glib-object.h:22,
                 from /usr/include/glib-2.0/gio/gioenums.h:28,
                 from /usr/include/glib-2.0/gio/giotypes.h:28,
                 from /usr/include/glib-2.0/gio/gio.h:26,
                 from gconfsettingsbackend.c:27:
/usr/include/glib-2.0/gobject/gtype.h:1307:10: note: declared here
 1307 | void     g_type_class_add_private       (gpointer                    g_class,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
/bin/sh ../libtool  --tag=CC   --mode=link gcc -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -pthread -I/usr/include/libmount -I/usr/include/blkid  -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -export_dynamic -avoid-version -module -no-undefined -export-symbols-regex '^g_io_module_(load|unload|query)'  -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o libgsettingsgconfbackend.la -rpath /usr/lib64/gio/modules libgsettingsgconfbackend_la-gconfsettingsbackend-module.lo libgsettingsgconfbackend_la-gconfsettingsbackend.lo ../gconf/libgconf-2.la -lgio-2.0 -lgobject-2.0 -lglib-2.0   
libtool: link: /usr/bin/nm -B  .libs/libgsettingsgconfbackend_la-gconfsettingsbackend-module.o .libs/libgsettingsgconfbackend_la-gconfsettingsbackend.o   | sed -n -e 's/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 's/.* //' | sort | uniq > .libs/libgsettingsgconfbackend.exp
libtool: link: /usr/bin/grep -E -e "^g_io_module_(load|unload|query)" ".libs/libgsettingsgconfbackend.exp" > ".libs/libgsettingsgconfbackend.expT"
libtool: link: mv -f ".libs/libgsettingsgconfbackend.expT" ".libs/libgsettingsgconfbackend.exp"
libtool: link: echo "{ global:" > .libs/libgsettingsgconfbackend.ver
libtool: link:  cat .libs/libgsettingsgconfbackend.exp | sed -e "s/\(.*\)/\1;/" >> .libs/libgsettingsgconfbackend.ver
libtool: link:  echo "local: *; };" >> .libs/libgsettingsgconfbackend.ver
libtool: link:  gcc -shared -Wl,--as-needed  -fPIC -DPIC  .libs/libgsettingsgconfbackend_la-gconfsettingsbackend-module.o .libs/libgsettingsgconfbackend_la-gconfsettingsbackend.o    -pthread -O2 -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags   -pthread  -Wl,-rpath -Wl,/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf/.libs ../gconf/.libs/libgconf-2.so -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -Wl,-soname -Wl,libgsettingsgconfbackend.so -Wl,-version-script -Wl,.libs/libgsettingsgconfbackend.ver -o .libs/libgsettingsgconfbackend.so
libtool: link: ( cd ".libs" && rm -f "libgsettingsgconfbackend.la" && ln -s "../libgsettingsgconfbackend.la" "libgsettingsgconfbackend.la" )
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
make[2]: Nothing to be done for 'all-am'.
+ RPM_EC=0
++ jobs -p
+ exit 0
Executing(%install): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.unVYCn
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ '[' 1 -eq 1 ']'
+ '[' /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64 '!=' / ']'
+ rm -rf /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64
++ dirname /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64
+ mkdir -p /home/iurt/rpmbuild/BUILDROOT
+ mkdir /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64
+ cd GConf-3.2.6
+ '[' 1 -eq 1 ']'
+ /usr/bin/make install DESTDIR=/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64 'INSTALL=/usr/bin/install -p'
Making install in gconf
make[1]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
/usr/bin/make  install-am
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64'
 /bin/sh ../libtool   --mode=install /usr/bin/install -p   libgconf-2.la '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64'
libtool: install: /usr/bin/install -p .libs/libgconf-2.so.4.1.5 /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/libgconf-2.so.4.1.5
libtool: install: (cd /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64 && { ln -s -f libgconf-2.so.4.1.5 libgconf-2.so.4 || { rm -f libgconf-2.so.4 && ln -s libgconf-2.so.4.1.5 libgconf-2.so.4; }; })
libtool: install: (cd /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64 && { ln -s -f libgconf-2.so.4.1.5 libgconf-2.so || { rm -f libgconf-2.so && ln -s libgconf-2.so.4.1.5 libgconf-2.so; }; })
libtool: install: /usr/bin/install -p .libs/libgconf-2.lai /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/libgconf-2.la
libtool: install: warning: remember to run `libtool --finish /usr/lib64'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin'
  /bin/sh ../libtool   --mode=install /usr/bin/install -p gconftool-2 '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin'
libtool: install: warning: `libgconf-2.la' has not been installed in `/usr/lib64'
libtool: install: /usr/bin/install -p .libs/gconftool-2 /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin/gconftool-2
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/libexec'
  /bin/sh ../libtool   --mode=install /usr/bin/install -p gconfd-2 '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/libexec'
libtool: install: warning: `libgconf-2.la' has not been installed in `/usr/lib64'
libtool: install: /usr/bin/install -p .libs/gconfd-2 /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/libexec/gconfd-2
sed -e 's,[@]sysgconfdir[@],/etc/gconf,g' \
	<./default.path.in >default.path
/bin/sh /home/iurt/rpmbuild/BUILD/GConf-3.2.6/install-sh -d /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/2
if test -f /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/2/path; then				\
	echo "Existing path configuration file not changed";				\
else 											\
	/usr/bin/install -p -m 644 default.path /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/2/path;	\
fi
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/include/gconf/2/gconf'
 /usr/bin/install -p -m 644 gconf.h gconf-changeset.h gconf-listeners.h gconf-schema.h gconf-value.h gconf-error.h gconf-engine.h gconf-client.h gconf-enum-types.h '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/include/gconf/2/gconf'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/gir-1.0/'
 /usr/bin/install -p -m 644 GConf-2.0.gir '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/gir-1.0/'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/dbus-1/services'
 /usr/bin/install -p -m 644 org.gnome.GConf.service '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/dbus-1/services'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/girepository-1.0/'
 /usr/bin/install -p -m 644 GConf-2.0.typelib '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/girepository-1.0/'
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
make[1]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gconf'
Making install in backends
make[1]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin'
  /bin/sh ../libtool   --mode=install /usr/bin/install -p gconf-merge-tree '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin'
libtool: install: warning: `../gconf/libgconf-2.la' has not been installed in `/usr/lib64'
libtool: install: /usr/bin/install -p .libs/gconf-merge-tree /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin/gconf-merge-tree
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/GConf/2'
 /bin/sh ../libtool   --mode=install /usr/bin/install -p   libgconfbackend-xml.la libgconfbackend-oldxml.la libgconfbackend-evoldap.la '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/GConf/2'
libtool: install: warning: relinking `libgconfbackend-xml.la'
libtool: install: (cd /home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends; /bin/sh /home/iurt/rpmbuild/BUILD/GConf-3.2.6/libtool  --tag CC --mode=relink gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -avoid-version -module -no-undefined -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o libgconfbackend-xml.la -rpath /usr/lib64/GConf/2 markup-backend.lo markup-tree.lo -lgio-2.0 -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgobject-2.0 -lglib-2.0 ../gconf/libgconf-2.la -inst-prefix-dir /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64)
libtool: relink: gcc -shared -Wl,--as-needed  -fPIC -DPIC  .libs/markup-backend.o .libs/markup-tree.o    -O2 -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -Wl,--export-dynamic -pthread   -pthread  -L/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64 -L/usr/lib64 -lgconf-2 -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -Wl,-soname -Wl,libgconfbackend-xml.so -o .libs/libgconfbackend-xml.so
libtool: install: /usr/bin/install -p .libs/libgconfbackend-xml.soT /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/GConf/2/libgconfbackend-xml.so
libtool: install: /usr/bin/install -p .libs/libgconfbackend-xml.lai /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/GConf/2/libgconfbackend-xml.la
libtool: install: warning: relinking `libgconfbackend-oldxml.la'
libtool: install: (cd /home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends; /bin/sh /home/iurt/rpmbuild/BUILD/GConf-3.2.6/libtool  --tag CC --mode=relink gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -avoid-version -module -no-undefined -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o libgconfbackend-oldxml.la -rpath /usr/lib64/GConf/2 xml-cache.lo xml-dir.lo xml-entry.lo xml-backend.lo -lgio-2.0 -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 ../gconf/libgconf-2.la -inst-prefix-dir /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64)
libtool: relink: gcc -shared -Wl,--as-needed  -fPIC -DPIC  .libs/xml-cache.o .libs/xml-dir.o .libs/xml-entry.o .libs/xml-backend.o    -O2 -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -Wl,--export-dynamic -pthread   -pthread  -lxml2 -L/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64 -L/usr/lib64 -lgconf-2 -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -Wl,-soname -Wl,libgconfbackend-oldxml.so -o .libs/libgconfbackend-oldxml.so
libtool: install: /usr/bin/install -p .libs/libgconfbackend-oldxml.soT /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/GConf/2/libgconfbackend-oldxml.so
libtool: install: /usr/bin/install -p .libs/libgconfbackend-oldxml.lai /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/GConf/2/libgconfbackend-oldxml.la
libtool: install: warning: relinking `libgconfbackend-evoldap.la'
libtool: install: (cd /home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends; /bin/sh /home/iurt/rpmbuild/BUILD/GConf-3.2.6/libtool  --tag CC --mode=relink gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -avoid-version -module -no-undefined -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o libgconfbackend-evoldap.la -rpath /usr/lib64/GConf/2 evoldap-backend.lo -lgio-2.0 -lgthread-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 ../gconf/libgconf-2.la -lldap -llber -inst-prefix-dir /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64)
libtool: relink: gcc -shared -Wl,--as-needed  -fPIC -DPIC  .libs/evoldap-backend.o    -O2 -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -Wl,--export-dynamic -pthread   -pthread  -lxml2 -L/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64 -L/usr/lib64 -lgconf-2 -lgio-2.0 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0 -lldap -llber -Wl,-soname -Wl,libgconfbackend-evoldap.so -o .libs/libgconfbackend-evoldap.so
libtool: install: /usr/bin/install -p .libs/libgconfbackend-evoldap.soT /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/GConf/2/libgconfbackend-evoldap.so
libtool: install: /usr/bin/install -p .libs/libgconfbackend-evoldap.lai /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/GConf/2/libgconfbackend-evoldap.la
libtool: install: warning: remember to run `libtool --finish /usr/lib64/GConf/2'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/2'
 /usr/bin/install -p -m 644 evoldap.conf '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/2'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/GConf/schema'
 /usr/bin/install -p -m 644 evoldap.schema '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/GConf/schema'
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
make[1]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/backends'
Making install in po
make[1]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
linguas="am ar as ast az be bg bn bn_IN bs ca ca@valencia cs cy da de dz el en_CA en_GB en@shaw eo es et eu fa fi fr ga gl gu he hi hr hu hy id is it ja ka km kn ko ku lt lv mai mg mk ml mn mr ms nb ne nl nn oc or pa pl pt pt_BR ro ru rw si sk sl sq sr sr@latin sv ta te th tr ug uk vi xh yi zh_CN zh_HK zh_TW "; \
for lang in $linguas; do \
  dir=/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/$lang/LC_MESSAGES; \
  /bin/sh /home/iurt/rpmbuild/BUILD/GConf-3.2.6/install-sh -d $dir; \
  if test -r $lang.gmo; then \
    /usr/bin/install -p -m 644 $lang.gmo $dir/GConf2.mo; \
    echo "installing $lang.gmo as $dir/GConf2.mo"; \
  else \
    /usr/bin/install -p -m 644 ./$lang.gmo $dir/GConf2.mo; \
    echo "installing ./$lang.gmo as" \
	 "$dir/GConf2.mo"; \
  fi; \
  if test -r $lang.gmo.m; then \
    /usr/bin/install -p -m 644 $lang.gmo.m $dir/GConf2.mo.m; \
    echo "installing $lang.gmo.m as $dir/GConf2.mo.m"; \
  else \
    if test -r ./$lang.gmo.m ; then \
      /usr/bin/install -p -m 644 ./$lang.gmo.m \
	$dir/GConf2.mo.m; \
      echo "installing ./$lang.gmo.m as" \
	   "$dir/GConf2.mo.m"; \
    else \
      true; \
    fi; \
  fi; \
done
installing am.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/am/LC_MESSAGES/GConf2.mo
installing ar.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ar/LC_MESSAGES/GConf2.mo
installing as.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/as/LC_MESSAGES/GConf2.mo
installing ast.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ast/LC_MESSAGES/GConf2.mo
installing az.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/az/LC_MESSAGES/GConf2.mo
installing be.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/be/LC_MESSAGES/GConf2.mo
installing bg.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/bg/LC_MESSAGES/GConf2.mo
installing bn.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/bn/LC_MESSAGES/GConf2.mo
installing bn_IN.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/bn_IN/LC_MESSAGES/GConf2.mo
installing bs.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/bs/LC_MESSAGES/GConf2.mo
installing ca.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ca/LC_MESSAGES/GConf2.mo
installing ca@valencia.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ca@valencia/LC_MESSAGES/GConf2.mo
installing cs.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/cs/LC_MESSAGES/GConf2.mo
installing cy.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/cy/LC_MESSAGES/GConf2.mo
installing da.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/da/LC_MESSAGES/GConf2.mo
installing de.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/de/LC_MESSAGES/GConf2.mo
installing dz.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/dz/LC_MESSAGES/GConf2.mo
installing el.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/el/LC_MESSAGES/GConf2.mo
installing en_CA.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/en_CA/LC_MESSAGES/GConf2.mo
installing en_GB.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/en_GB/LC_MESSAGES/GConf2.mo
installing en@shaw.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/en@shaw/LC_MESSAGES/GConf2.mo
installing eo.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/eo/LC_MESSAGES/GConf2.mo
installing es.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/es/LC_MESSAGES/GConf2.mo
installing et.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/et/LC_MESSAGES/GConf2.mo
installing eu.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/eu/LC_MESSAGES/GConf2.mo
installing fa.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/fa/LC_MESSAGES/GConf2.mo
installing fi.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/fi/LC_MESSAGES/GConf2.mo
installing fr.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/fr/LC_MESSAGES/GConf2.mo
installing ga.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ga/LC_MESSAGES/GConf2.mo
installing gl.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/gl/LC_MESSAGES/GConf2.mo
installing gu.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/gu/LC_MESSAGES/GConf2.mo
installing he.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/he/LC_MESSAGES/GConf2.mo
installing hi.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/hi/LC_MESSAGES/GConf2.mo
installing hr.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/hr/LC_MESSAGES/GConf2.mo
installing hu.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/hu/LC_MESSAGES/GConf2.mo
installing hy.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/hy/LC_MESSAGES/GConf2.mo
installing id.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/id/LC_MESSAGES/GConf2.mo
installing is.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/is/LC_MESSAGES/GConf2.mo
installing it.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/it/LC_MESSAGES/GConf2.mo
installing ja.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ja/LC_MESSAGES/GConf2.mo
installing ka.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ka/LC_MESSAGES/GConf2.mo
installing km.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/km/LC_MESSAGES/GConf2.mo
installing kn.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/kn/LC_MESSAGES/GConf2.mo
installing ko.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ko/LC_MESSAGES/GConf2.mo
installing ku.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ku/LC_MESSAGES/GConf2.mo
installing lt.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/lt/LC_MESSAGES/GConf2.mo
installing lv.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/lv/LC_MESSAGES/GConf2.mo
installing mai.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/mai/LC_MESSAGES/GConf2.mo
installing mg.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/mg/LC_MESSAGES/GConf2.mo
installing mk.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/mk/LC_MESSAGES/GConf2.mo
installing ml.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ml/LC_MESSAGES/GConf2.mo
installing mn.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/mn/LC_MESSAGES/GConf2.mo
installing mr.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/mr/LC_MESSAGES/GConf2.mo
installing ms.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ms/LC_MESSAGES/GConf2.mo
installing nb.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/nb/LC_MESSAGES/GConf2.mo
installing ne.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ne/LC_MESSAGES/GConf2.mo
installing nl.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/nl/LC_MESSAGES/GConf2.mo
installing nn.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/nn/LC_MESSAGES/GConf2.mo
installing oc.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/oc/LC_MESSAGES/GConf2.mo
installing or.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/or/LC_MESSAGES/GConf2.mo
installing pa.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/pa/LC_MESSAGES/GConf2.mo
installing pl.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/pl/LC_MESSAGES/GConf2.mo
installing pt.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/pt/LC_MESSAGES/GConf2.mo
installing pt_BR.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/pt_BR/LC_MESSAGES/GConf2.mo
installing ro.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ro/LC_MESSAGES/GConf2.mo
installing ru.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ru/LC_MESSAGES/GConf2.mo
installing rw.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/rw/LC_MESSAGES/GConf2.mo
installing si.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/si/LC_MESSAGES/GConf2.mo
installing sk.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/sk/LC_MESSAGES/GConf2.mo
installing sl.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/sl/LC_MESSAGES/GConf2.mo
installing sq.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/sq/LC_MESSAGES/GConf2.mo
installing sr.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/sr/LC_MESSAGES/GConf2.mo
installing sr@latin.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/sr@latin/LC_MESSAGES/GConf2.mo
installing sv.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/sv/LC_MESSAGES/GConf2.mo
installing ta.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ta/LC_MESSAGES/GConf2.mo
installing te.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/te/LC_MESSAGES/GConf2.mo
installing th.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/th/LC_MESSAGES/GConf2.mo
installing tr.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/tr/LC_MESSAGES/GConf2.mo
installing ug.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/ug/LC_MESSAGES/GConf2.mo
installing uk.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/uk/LC_MESSAGES/GConf2.mo
installing vi.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/vi/LC_MESSAGES/GConf2.mo
installing xh.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/xh/LC_MESSAGES/GConf2.mo
installing yi.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/yi/LC_MESSAGES/GConf2.mo
installing zh_CN.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/zh_CN/LC_MESSAGES/GConf2.mo
installing zh_HK.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/zh_HK/LC_MESSAGES/GConf2.mo
installing zh_TW.gmo as /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/locale/zh_TW/LC_MESSAGES/GConf2.mo
make[1]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/po'
Making install in doc
make[1]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/doc'
Making install in gconf
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/doc/gconf'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/doc/gconf'
make[3]: Nothing to be done for 'install-exec-am'.
 /usr/bin/install -p -m 644 ./html/ch01.html
 /usr/bin/install -p -m 644 ./html/gconf-gconf-backend.html
 /usr/bin/install -p -m 644 ./html/gconf-gconf-changeset.html
 /usr/bin/install -p -m 644 ./html/gconf-gconf-client.html
 /usr/bin/install -p -m 644 ./html/gconf-gconf-engine.html
 /usr/bin/install -p -m 644 ./html/gconf-gconf-error.html
 /usr/bin/install -p -m 644 ./html/gconf-gconf-internals.html
 /usr/bin/install -p -m 644 ./html/gconf-gconf-listeners.html
 /usr/bin/install -p -m 644 ./html/gconf-gconf-locale.html
 /usr/bin/install -p -m 644 ./html/gconf-gconf-schema.html
 /usr/bin/install -p -m 644 ./html/gconf-gconf-sources.html
 /usr/bin/install -p -m 644 ./html/gconf-gconf-value.html
 /usr/bin/install -p -m 644 ./html/gconf-gconf.html
 /usr/bin/install -p -m 644 ./html/gconf.devhelp2
 /usr/bin/install -p -m 644 ./html/home.png
 /usr/bin/install -p -m 644 ./html/index.html
 /usr/bin/install -p -m 644 ./html/index.sgml
 /usr/bin/install -p -m 644 ./html/left.png
 /usr/bin/install -p -m 644 ./html/right.png
 /usr/bin/install -p -m 644 ./html/style.css
 /usr/bin/install -p -m 644 ./html/up.png
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/doc/gconf'
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/doc/gconf'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/doc'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/doc'
make[3]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/sgml/gconf'
 /usr/bin/install -p -m 644 gconf-1.0.dtd '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/sgml/gconf'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/man/man1'
 /usr/bin/install -p -m 644 gconftool-2.1 '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/man/man1'
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/doc'
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/doc'
make[1]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/doc'
Making install in examples
make[1]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
make[2]: Nothing to be done for 'install-exec-am'.
make[2]: Nothing to be done for 'install-data-am'.
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
make[1]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/examples'
Making install in defaults
make[1]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
/usr/bin/make  install-am
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/libexec'
  /bin/sh ../libtool   --mode=install /usr/bin/install -p gconf-defaults-mechanism '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/libexec'
libtool: install: warning: `../gconf/libgconf-2.la' has not been installed in `/usr/lib64'
libtool: install: /usr/bin/install -p .libs/gconf-defaults-mechanism /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/libexec/gconf-defaults-mechanism
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/dbus-1/system.d'
 /usr/bin/install -p -m 644 org.gnome.GConf.Defaults.conf '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/dbus-1/system.d'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/dbus-1/system-services'
 /usr/bin/install -p -m 644 org.gnome.GConf.Defaults.service '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/dbus-1/system-services'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/polkit-1/actions'
 /usr/bin/install -p -m 644 org.gnome.gconf.defaults.policy '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/polkit-1/actions'
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
make[1]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/defaults'
Making install in gsettings
make[1]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin'
  /bin/sh ../libtool   --mode=install /usr/bin/install -p gsettings-data-convert '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin'
libtool: install: warning: `../gconf/libgconf-2.la' has not been installed in `/usr/lib64'
libtool: install: /usr/bin/install -p .libs/gsettings-data-convert /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin/gsettings-data-convert
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin'
 /usr/bin/install -p gsettings-schema-convert '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/xdg/autostart'
 /usr/bin/install -p -m 644 gsettings-data-convert.desktop '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/xdg/autostart'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/gio/modules'
 /bin/sh ../libtool   --mode=install /usr/bin/install -p   libgsettingsgconfbackend.la '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/gio/modules'
libtool: install: warning: relinking `libgsettingsgconfbackend.la'
libtool: install: (cd /home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings; /bin/sh /home/iurt/rpmbuild/BUILD/GConf-3.2.6/libtool  --tag CC --mode=relink gcc -I.. -I.. -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -pthread -I/usr/include/libmount -I/usr/include/blkid -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -Wall -export_dynamic -avoid-version -module -no-undefined -export-symbols-regex "^g_io_module_(load|unload|query)" -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -o libgsettingsgconfbackend.la -rpath /usr/lib64/gio/modules libgsettingsgconfbackend_la-gconfsettingsbackend-module.lo libgsettingsgconfbackend_la-gconfsettingsbackend.lo ../gconf/libgconf-2.la -lgio-2.0 -lgobject-2.0 -lglib-2.0 -inst-prefix-dir /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64)
libtool: relink: /usr/bin/nm -B  .libs/libgsettingsgconfbackend_la-gconfsettingsbackend-module.o .libs/libgsettingsgconfbackend_la-gconfsettingsbackend.o   | sed -n -e 's/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 's/.* //' | sort | uniq > .libs/libgsettingsgconfbackend.exp
libtool: relink: /usr/bin/grep -E -e "^g_io_module_(load|unload|query)" ".libs/libgsettingsgconfbackend.exp" > ".libs/libgsettingsgconfbackend.expT"
libtool: relink: mv -f ".libs/libgsettingsgconfbackend.expT" ".libs/libgsettingsgconfbackend.exp"
libtool: relink: echo "{ global:" > .libs/libgsettingsgconfbackend.ver
libtool: relink:  cat .libs/libgsettingsgconfbackend.exp | sed -e "s/\(.*\)/\1;/" >> .libs/libgsettingsgconfbackend.ver
libtool: relink:  echo "local: *; };" >> .libs/libgsettingsgconfbackend.ver
libtool: relink:  gcc -shared -Wl,--as-needed  -fPIC -DPIC  .libs/libgsettingsgconfbackend_la-gconfsettingsbackend-module.o .libs/libgsettingsgconfbackend_la-gconfsettingsbackend.o    -pthread -O2 -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags   -pthread  -L/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64 -L/usr/lib64 -lgconf-2 -lgthread-2.0 -lgmodule-2.0 -ldbus-glib-1 -ldbus-1 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -Wl,-soname -Wl,libgsettingsgconfbackend.so -Wl,-version-script -Wl,.libs/libgsettingsgconfbackend.ver -o .libs/libgsettingsgconfbackend.so
libtool: install: /usr/bin/install -p .libs/libgsettingsgconfbackend.soT /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/gio/modules/libgsettingsgconfbackend.so
libtool: install: /usr/bin/install -p .libs/libgsettingsgconfbackend.lai /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/gio/modules/libgsettingsgconfbackend.la
libtool: install: warning: remember to run `libtool --finish /usr/lib64/gio/modules'
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/man/man1'
 /usr/bin/install -p -m 644 gsettings-schema-convert.1 gsettings-data-convert.1 '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/man/man1'
/usr/bin/make  install-data-hook
make[3]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
if test -z "/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64" -a "no" != "no" ; then                         \
	no /usr/lib64/gio/modules ;                                         \
fi
make[3]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
make[1]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6/gsettings'
make[1]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6'
make[2]: Entering directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6'
make[2]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/aclocal'
 /usr/bin/install -p -m 644 gconf-2.m4 '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/aclocal'
mkdir -p /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/gconf.xml.defaults
chmod 755 /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/gconf.xml.defaults
mkdir -p /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/gconf.xml.mandatory
chmod 755 /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/gconf.xml.mandatory
 /usr/bin/mkdir -p '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/pkgconfig'
 /usr/bin/install -p -m 644 gconf-2.0.pc '/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/pkgconfig'
make[2]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6'
make[1]: Leaving directory '/home/iurt/rpmbuild/BUILD/GConf-3.2.6'
+ mkdir -p /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/profile.d
+ install -m 755 /home/iurt/rpmbuild/SOURCES/gconf.sh /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/profile.d/gconf.sh
+ install -m 755 /home/iurt/rpmbuild/SOURCES/gconf.csh /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/profile.d/gconf.csh
+ mkdir /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/schemas
+ mkdir -p /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/gconf.xml.local-defaults /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/gconf.xml.local-mandatory /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/etc/gconf/gconf.xml.system
+ cat
+ cat
+ /usr/lib/rpm/find-lang.sh /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64 GConf2
+ ln -s /usr/bin/gconftool-2 /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin/gconftool
+ find /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64 -name '*.la' -delete
+ /usr/bin/find-debuginfo -j8 --strict-build-id -m -i --build-id-seed 3.2.6-19.mga9 --unique-debug-suffix -3.2.6-19.mga9.aarch64 --unique-debug-src-base GConf2-3.2.6-19.mga9.aarch64 --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 50000000 -S debugsourcefiles.list /home/iurt/rpmbuild/BUILD/GConf-3.2.6

extracting debug info from /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin/gconf-merge-tree
extracting debug info from /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin/gsettings-data-convert
extracting debug info from /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/bin/gconftool-2
extracting debug info from /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/GConf/2/libgconfbackend-evoldap.so
extracting debug info from /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/GConf/2/libgconfbackend-oldxml.so
extracting debug info from /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/GConf/2/libgconfbackend-xml.so
extracting debug info from /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/gio/modules/libgsettingsgconfbackend.so
extracting debug info from /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/lib64/libgconf-2.so.4.1.5
extracting debug info from /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/libexec/gconf-defaults-mechanism
extracting debug info from /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/libexec/gconfd-2
dwz: ./usr/bin/gconf-merge-tree-3.2.6-19.mga9.aarch64.debug: Unknown debugging section .debug_line_str
dwz: ./usr/bin/gconftool-2-3.2.6-19.mga9.aarch64.debug: Unknown debugging section .debug_line_str
dwz: ./usr/bin/gsettings-data-convert-3.2.6-19.mga9.aarch64.debug: Unknown debugging section .debug_line_str
dwz: ./usr/lib64/GConf/2/libgconfbackend-evoldap.so-3.2.6-19.mga9.aarch64.debug: Unknown debugging section .debug_line_str
dwz: ./usr/lib64/GConf/2/libgconfbackend-oldxml.so-3.2.6-19.mga9.aarch64.debug: Unknown debugging section .debug_line_str
dwz: ./usr/lib64/GConf/2/libgconfbackend-xml.so-3.2.6-19.mga9.aarch64.debug: Unknown debugging section .debug_line_str
dwz: ./usr/lib64/gio/modules/libgsettingsgconfbackend.so-3.2.6-19.mga9.aarch64.debug: Unknown debugging section .debug_line_str
dwz: ./usr/lib64/libgconf-2.so.4.1.5-3.2.6-19.mga9.aarch64.debug: Unknown debugging section .debug_line_str
dwz: ./usr/libexec/gconf-defaults-mechanism-3.2.6-19.mga9.aarch64.debug: Unknown debugging section .debug_line_str
dwz: ./usr/libexec/gconfd-2-3.2.6-19.mga9.aarch64.debug: Unknown debugging section .debug_line_str
dwz: Too few files for multifile optimization
original debug info size: 1588kB, size after compression: 1588kB
/usr/bin/sepdebugcrcfix: Updated 0 CRC32s, 10 CRC32s did match.
2445 blocks
+ /usr/lib/rpm/check-buildroot
+ '[' -n '' ']'
+ /usr/share/spec-helper/clean_files
+ '[' -n '' ']'
+ /usr/share/spec-helper/compress_files .xz
+ '[' -n '' ']'
+ /usr/share/spec-helper/relink_symlinks
+ '[' -n '' ']'
+ /usr/share/spec-helper/clean_perl
+ '[' -n '' ']'
+ /usr/share/spec-helper/lib_symlinks
+ '[' -n '' ']'
+ /usr/share/spec-helper/gprintify
+ '[' -n '' ']'
+ /usr/share/spec-helper/fix_mo
+ '[' -n '' ']'
+ /usr/share/spec-helper/fix_pamd
+ '[' -n '' ']'
+ /usr/share/spec-helper/remove_info_dir
+ '[' -n '' ']'
+ /usr/share/spec-helper/fix_eol
+ '[' -n '' ']'
+ /usr/share/spec-helper/check_desktop_files
+ '[' -n '' ']'
+ /usr/share/spec-helper/check_elf_files
+ /usr/lib/rpm/brp-python-bytecompile /usr/bin/python3 1 0
+ /usr/lib/rpm/check-rpaths
+ /usr/lib/rpm/brp-remove-la-files
+ /usr/lib/rpm/redhat/brp-mangle-shebangs
*** WARNING: ./etc/profile.d/gconf.csh is executable but has no shebang, removing executable bit
*** WARNING: ./etc/profile.d/gconf.sh is executable but has no shebang, removing executable bit
Processing files: GConf2-3.2.6-19.mga9.aarch64
Executing(%doc): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.3TDA2u
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ cd GConf-3.2.6
+ DOCDIR=/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/doc/GConf2
+ export LC_ALL=C
+ LC_ALL=C
+ export DOCDIR
+ /usr/bin/mkdir -p /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/doc/GConf2
+ cp -pr README /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/doc/GConf2
+ RPM_EC=0
++ jobs -p
+ exit 0
Provides: GConf2 = 3.2.6-19.mga9 GConf2(aarch-64) = 3.2.6-19.mga9 config(GConf2) = 3.2.6-19.mga9 libgconfbackend-evoldap.so()(64bit) libgconfbackend-oldxml.so()(64bit) libgconfbackend-xml.so()(64bit)
Requires(interp): /bin/sh
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Requires(post): update-alternatives
Requires: ld-linux-aarch64.so.1()(64bit) ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.33)(64bit) libdbus-1.so.3()(64bit) libdbus-1.so.3(LIBDBUS_1_3)(64bit) libdbus-glib-1.so.2()(64bit) libgconf-2.so.4()(64bit) libgio-2.0.so.0()(64bit) libglib-2.0.so.0()(64bit) libgobject-2.0.so.0()(64bit) libgthread-2.0.so.0()(64bit) liblber-2.4.so.2()(64bit) libldap-2.4.so.2()(64bit) libpolkit-gobject-1.so.0()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) libxml2.so.2()(64bit) libxml2.so.2(LIBXML2_2.4.30)(64bit)
Recommends: dconf
Processing files: lib64GConf2_4-3.2.6-19.mga9.aarch64
Executing(%doc): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.4Kq1ff
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ cd GConf-3.2.6
+ DOCDIR=/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/doc/lib64GConf2_4
+ export LC_ALL=C
+ LC_ALL=C
+ export DOCDIR
+ /usr/bin/mkdir -p /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/doc/lib64GConf2_4
+ cp -pr README /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/doc/lib64GConf2_4
+ RPM_EC=0
++ jobs -p
+ exit 0
Provides: lib64GConf2_4 = 3.2.6-19.mga9 lib64GConf2_4(aarch-64) = 3.2.6-19.mga9 libgconf-2.so.4()(64bit) libgsettingsgconfbackend.so()(64bit)
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Requires: ld-linux-aarch64.so.1()(64bit) ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libdbus-1.so.3()(64bit) libdbus-1.so.3(LIBDBUS_1_3)(64bit) libdbus-glib-1.so.2()(64bit) libgconf-2.so.4()(64bit) libgio-2.0.so.0()(64bit) libglib-2.0.so.0()(64bit) libgmodule-2.0.so.0()(64bit) libgobject-2.0.so.0()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit)
Conflicts: gir-repository < 0.6.5-12
Processing files: lib64gconf-gir2.0-3.2.6-19.mga9.aarch64
Provides: lib64gconf-gir2.0 = 3.2.6-19.mga9 lib64gconf-gir2.0(aarch-64) = 3.2.6-19.mga9 typelib(GConf) = 2.0
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Requires: libgconf-2.so.4()(64bit) typelib(GLib) = 2.0 typelib(GObject) = 2.0
Processing files: lib64GConf2-devel-3.2.6-19.mga9.aarch64
Executing(%doc): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.QWI9lN
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ cd GConf-3.2.6
+ DOCDIR=/home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/doc/lib64GConf2-devel
+ export LC_ALL=C
+ LC_ALL=C
+ export DOCDIR
+ /usr/bin/mkdir -p /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/doc/lib64GConf2-devel
+ cp -pr ChangeLog /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/doc/lib64GConf2-devel
+ cp -pr TODO /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/doc/lib64GConf2-devel
+ cp -pr NEWS /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/doc/lib64GConf2-devel
+ cp -pr AUTHORS /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64/usr/share/doc/lib64GConf2-devel
+ RPM_EC=0
++ jobs -p
+ exit 0
Provides: devel(libgconf-2(64bit)) lib64GConf2-devel = 3.2.6-19.mga9 lib64GConf2-devel(aarch-64) = 3.2.6-19.mga9 libGConf2-devel = 3.2.6-19.mga9 pkgconfig(gconf-2.0) = 3.2.6
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Requires: devel(libdbus-1(64bit)) devel(libdbus-glib-1(64bit)) devel(libglib-2.0(64bit)) devel(libgmodule-2.0(64bit)) devel(libgobject-2.0(64bit)) pkgconfig pkgconfig(dbus-1) pkgconfig(gio-2.0) pkgconfig(glib-2.0)
Conflicts: GConf-sanity-check gir-repository < 0.6.5-12
Obsoletes: lib64GConf2_4-devel
Processing files: GConf2-debugsource-3.2.6-19.mga9.aarch64
Provides: GConf2-debugsource = 3.2.6-19.mga9 GConf2-debugsource(aarch-64) = 3.2.6-19.mga9
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Processing files: GConf2-debuginfo-3.2.6-19.mga9.aarch64
Provides: GConf2-debuginfo = 3.2.6-19.mga9 GConf2-debuginfo(aarch-64) = 3.2.6-19.mga9 debuginfo(build-id) = 11c9c1961560687df52a2896ab714d43b0b776b9 debuginfo(build-id) = 1cedc8e393b68e0137786657393cdada91f9644f debuginfo(build-id) = 2abdd6f249639c2697a6dedbaabe4f3fddf12d3e debuginfo(build-id) = 3ba20df5b4ca21817a649936d8c1db835aa69a12 debuginfo(build-id) = 617ae510e56c42063f2ccad38034937fea105d33 debuginfo(build-id) = 68a4e7c80681a61f58b14f193b1a90981588aa30 debuginfo(build-id) = 9398f364da4ce29c81025a1830f1032b4728b736 debuginfo(build-id) = 9d29ef259c705cc546c672f57c1b27b1a1fe86cd
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Recommends: GConf2-debugsource(aarch-64) = 3.2.6-19.mga9
Processing files: lib64GConf2_4-debuginfo-3.2.6-19.mga9.aarch64
Provides: debuginfo(build-id) = 55dfee38b341058a983857ecd697185ef6c3aec6 debuginfo(build-id) = e8fcc3eaffdf70f922a46b3726052c7f5e77713a lib64GConf2_4-debuginfo = 3.2.6-19.mga9 lib64GConf2_4-debuginfo(aarch-64) = 3.2.6-19.mga9
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Recommends: GConf2-debugsource(aarch-64) = 3.2.6-19.mga9
Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64
Wrote: /home/iurt/rpmbuild/RPMS/aarch64/lib64gconf-gir2.0-3.2.6-19.mga9.aarch64.rpm
Wrote: /home/iurt/rpmbuild/RPMS/aarch64/lib64GConf2_4-3.2.6-19.mga9.aarch64.rpm
Wrote: /home/iurt/rpmbuild/RPMS/aarch64/lib64GConf2_4-debuginfo-3.2.6-19.mga9.aarch64.rpm
Wrote: /home/iurt/rpmbuild/RPMS/aarch64/GConf2-debuginfo-3.2.6-19.mga9.aarch64.rpm
Wrote: /home/iurt/rpmbuild/RPMS/aarch64/GConf2-debugsource-3.2.6-19.mga9.aarch64.rpm
Wrote: /home/iurt/rpmbuild/RPMS/aarch64/lib64GConf2-devel-3.2.6-19.mga9.aarch64.rpm
Wrote: /home/iurt/rpmbuild/RPMS/aarch64/GConf2-3.2.6-19.mga9.aarch64.rpm
Executing(%clean): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.DhLDKF
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ cd GConf-3.2.6
+ /usr/bin/rm -rf /home/iurt/rpmbuild/BUILDROOT/GConf2-3.2.6-19.mga9.aarch64
+ RPM_EC=0
++ jobs -p
+ exit 0
Executing(--clean): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.3H35aA
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ rm -rf GConf-3.2.6
+ RPM_EC=0
++ jobs -p
+ exit 0
D: [iurt_root_command] Success!