· 7 years ago · Oct 01, 2018, 04:18 PM
1 /tmp î‚° trizen -S seafile-client
2Cloning into 'seafile-client'...
3remote: Enumerating objects: 271, done.
4remote: Counting objects: 100% (271/271), done.
5remote: Compressing objects: 100% (198/198), done.
6remote: Total 271 (delta 71), reused 270 (delta 71)
7Receiving objects: 100% (271/271), 52.89 KiB | 1.43 MiB/s, done.
8Resolving deltas: 100% (71/71), done.
9
10:: Package: seafile-client
11:: AUR URL: https://aur.archlinux.org/packages.php?ID=544962
12
13--------------------------------------------------------------------------------
14:: Content of /tmp/trizen-trizen/seafile-client/PKGBUILD
15--------------------------------------------------------------------------------
16
17# Maintainer: eolianoe <eolianoe [at] gmail [DoT] com>
18# Contributor: localizator <localizator@ukr.net>
19# Contributor: Edvinas Valatka <edacval@gmail.com>
20
21pkgname=seafile-client
22pkgver=6.2.5
23pkgrel=1
24pkgdesc="GUI client for synchronizing your local files with seafile server"
25arch=('i686' 'x86_64' 'armv7h' 'armv6h' 'aarch64')
26url="https://github.com/haiwen/${pkgname}"
27license=('Apache')
28depends=("seafile" "qt5-tools" "qt5-webkit" "qt5-base"
29 "gtk-update-icon-cache" "qt5-webengine")
30makedepends=("cmake")
31conflicts=('seafile-client-qt5')
32provides=('seafile-client-qt5')
33source=("${pkgname}-v${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
34sha256sums=('a6bfa3b413a3d953d3c6694326875ae959e90fbe0bd8d0ea0ca442280b7abf11')
35
36prepare() {
37 cd "${srcdir}"
38
39 rm -rf build
40 mkdir -p build
41}
42
43build () {
44 cd "$srcdir/build"
45
46 cmake \
47 -DBUILD_SHIBBOLETH_SUPPORT=ON \
48 -DCMAKE_BUILD_TYPE=Release \
49 -DCMAKE_INSTALL_PREFIX=/usr \
50 "${srcdir}/${pkgname}-${pkgver}"
51
52 make
53}
54
55package () {
56 cd "${srcdir}/build"
57
58 make DESTDIR="${pkgdir}" install
59}
60
61=>> Edit PKGBUILD? [y/N]:
62
63Repository : AUR
64Name : seafile-client
65Version : 6.2.5-1
66Maintainer : eolianoe
67URL : https://github.com/haiwen/seafile-client
68AUR URL : https://aur.archlinux.org/packages.php?ID=544962
69License : Apache
70Votes : 145
71Popularity : 3.1%
72Installed : No
73Out Of Date : No
74Depends On : qt5-base
75 gtk-update-icon-cache
76 qt5-tools
77 qt5-webkit
78 qt5-webengine
79 seafile
80Make Deps : cmake
81Check Deps : None
82Optional Deps : None
83Provides : seafile-client-qt5
84Conflicts With : seafile-client-qt5
85Replaces : None
86Package Base : seafile-client
87Last Update : Tue Sep 18 20:40:29 2018
88Description : GUI client for synchronizing your local files with seafile server
89
90Cloning into 'seafile'...
91remote: Enumerating objects: 360, done.
92remote: Counting objects: 100% (360/360), done.
93remote: Compressing objects: 100% (209/209), done.
94remote: Total 360 (delta 151), reused 356 (delta 149)
95Receiving objects: 100% (360/360), 84.97 KiB | 2.43 MiB/s, done.
96Resolving deltas: 100% (151/151), done.
97
98:: Package: seafile
99:: AUR URL: https://aur.archlinux.org/packages.php?ID=544961
100
101--------------------------------------------------------------------------------
102:: Content of /tmp/trizen-trizen/seafile/PKGBUILD
103--------------------------------------------------------------------------------
104
105# Maintainer: eolianoe <eolianoe [at] gmail [DoT] com>
106# Contributor: Edvinas Valatka <edacval@gmail.com>
107# Contributor: Aaron Lindsay <aaron@aclindsay.com>
108
109pkgname=seafile
110pkgver=6.2.5
111pkgrel=1
112pkgdesc="Seafile is an online file storage and collaboration tool"
113arch=('i686' 'x86_64' 'armv7h' 'armv6h' 'aarch64')
114url="https://github.com/haiwen/${pkgname}"
115license=('GPL2')
116depends=("ccnet-server" "libsearpc" "libevent"
117 "fuse" "python2" "sqlite")
118makedepends=("vala" "intltool")
119conflicts=("seafile-server")
120source=("seafile-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz"
121 "libseafile.in.patch"
122 "seaf-cli@.service")
123sha256sums=('0899981d43db96b465b3b945c160b62fc658556f90c8d426f6b8a4ea9edb2da8'
124 'a2d7f7cf0c59aba97650af62b3cefd0ceb71a1007c34d9369a88e5769c7f6076'
125 'c37510109c1de64c774896df39aece240c056b54414d2119fca01860211156ba')
126provides=('seafile-client-cli')
127
128prepare () {
129 cd "${srcdir}/seafile-${pkgver}"
130
131 patch -p1 -i "${srcdir}/libseafile.in.patch"
132
133 # Fix all script's python 2 requirement
134 grep -s -l -r '#!/usr/bin/env python' "${srcdir}/seafile-${pkgver}" \
135 | xargs sed -i -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|g'
136}
137
138build() {
139 cd "$srcdir/seafile-${pkgver}"
140
141 ./autogen.sh
142
143 ./configure \
144 --enable-console \
145 --prefix=/usr \
146 PYTHON=/usr/bin/python2
147
148 make
149}
150
151package() {
152 cd "${srcdir}/seafile-${pkgver}"
153
154 make DESTDIR="${pkgdir}" install
155 install -Dm644 "${srcdir}"/seaf-cli@.service "${pkgdir}"/usr/lib/systemd/system/seaf-cli@.service
156}
157
158=>> Edit PKGBUILD? [y/N]:
159
160--------------------------------------------------------------------------------
161:: Content of /tmp/trizen-trizen/seafile/libseafile.in.patch
162--------------------------------------------------------------------------------
163
164--- seafile-4.3.1/lib/libseafile.pc.in 2015-08-11 05:40:35.000000000 +0300
165+++ seafile-4.3.1/lib/libseafile.pc.in.good 2015-08-18 09:45:24.761932845 +0300
166@@ -1,4 +1,4 @@
167-prefix=(DESTDIR)@prefix@
168+prefix=@prefix@
169 exec_prefix=@exec_prefix@
170 libdir=@libdir@
171 includedir=@includedir@
172
173=>> Edit libseafile.in.patch? [y/N]:
174
175--------------------------------------------------------------------------------
176:: Content of /tmp/trizen-trizen/seafile/seaf-cli@.service
177--------------------------------------------------------------------------------
178
179[Unit]
180Description=Seafile command line client
181Requires=network-online.target
182After=network-online.target
183
184[Service]
185User=%I
186Type=oneshot
187ExecStart=/usr/bin/seaf-cli start
188ExecStop=/usr/bin/seaf-cli stop
189RemainAfterExit=yes
190
191[Install]
192WantedBy=multi-user.target
193
194=>> Edit seaf-cli@.service? [y/N]:
195
196Repository : AUR
197Name : seafile
198Version : 6.2.5-1
199Maintainer : eolianoe
200URL : https://github.com/haiwen/seafile
201AUR URL : https://aur.archlinux.org/packages.php?ID=544961
202License : GPL2
203Votes : 98
204Popularity : 1.8%
205Installed : No
206Out Of Date : No
207Depends On : libevent
208 fuse
209 python2
210 sqlite
211 ccnet-server
212 libsearpc
213Make Deps : vala
214 intltool
215Check Deps : None
216Optional Deps : None
217Provides : seafile-client-cli
218Conflicts With : seafile-server
219Replaces : None
220Package Base : seafile
221Last Update : Tue Sep 18 20:40:11 2018
222Description : Seafile is an online file storage and collaboration tool
223
224Cloning into 'ccnet-server'...
225remote: Enumerating objects: 106, done.
226remote: Counting objects: 100% (106/106), done.
227remote: Compressing objects: 100% (80/80), done.
228remote: Total 106 (delta 24), reused 106 (delta 24)
229Receiving objects: 100% (106/106), 28.14 KiB | 5.63 MiB/s, done.
230Resolving deltas: 100% (24/24), done.
231
232:: Package: ccnet-server
233:: AUR URL: https://aur.archlinux.org/packages.php?ID=544208
234
235--------------------------------------------------------------------------------
236:: Content of /tmp/trizen-trizen/ccnet-server/PKGBUILD
237--------------------------------------------------------------------------------
238
239# Maintainer: eolianoe <eolianoe [at] gmail [DoT] com>
240# Contributor: Aaron Lindsay <aaron@aclindsay.com>
241# Contributor: Edvinas Valatka <edacval@gmail.com>
242# Contributor: Adrian Hühn <adrian.huehn@web.de>
243
244pkgname='ccnet-server'
245pkgver='6.3.4'
246pkgrel=1
247pkgdesc="Internal communication framework and user/group management for seafile server"
248arch=('i686' 'x86_64' 'armv7h' 'armv6h' 'aarch64')
249url="https://github.com/haiwen/$pkgname"
250license=('GPL2')
251depends=('libevent' 'libsearpc' 'libldap' 'libmariadbclient' 'postgresql-libs')
252makedepends=('vala')
253conflicts=('ccnet')
254source=("$pkgname-v$pkgver-server.tar.gz::$url/archive/v$pkgver-server.tar.gz")
255sha256sums=('ab3d5bda728f87c71929a6247c9f74c5209b9b8e44bafa77db91e8de590ec6ef')
256
257prepare () {
258 cd "$srcdir/$pkgname-$pkgver-server"
259 sed -i "s|(DESTDIR)@prefix@|@prefix@|" "./libccnet.pc.in"
260}
261
262build () {
263 cd "$srcdir/$pkgname-$pkgver-server"
264 ./autogen.sh
265 ./configure \
266 --enable-ldap \
267 --enable-python \
268 --enable-console \
269 --prefix=/usr \
270 PYTHON='/usr/bin/python2'
271 make
272}
273
274package () {
275 cd "$srcdir/$pkgname-$pkgver-server"
276 make DESTDIR="$pkgdir" install
277}
278
279=>> Edit PKGBUILD? [y/N]:
280
281Repository : AUR
282Name : ccnet-server
283Version : 6.3.4-1
284Maintainer : eolianoe
285URL : https://github.com/haiwen/ccnet-server
286AUR URL : https://aur.archlinux.org/packages.php?ID=544208
287License : GPL2
288Votes : 17
289Popularity : 0.015%
290Installed : No
291Out Of Date : No
292Depends On : libevent
293 libldap
294 libmariadbclient
295 postgresql-libs
296 libsearpc
297Make Deps : vala
298Check Deps : None
299Optional Deps : None
300Provides : None
301Conflicts With : ccnet
302Replaces : None
303Package Base : ccnet-server
304Last Update : Sat Sep 15 18:32:57 2018
305Description : Internal communication framework and user/group management for seafile server
306
307Cloning into 'libsearpc'...
308remote: Enumerating objects: 91, done.
309remote: Counting objects: 100% (91/91), done.
310remote: Compressing objects: 100% (80/80), done.
311remote: Total 91 (delta 10), reused 90 (delta 10)
312Unpacking objects: 100% (91/91), done.
313
314:: Package: libsearpc
315:: AUR URL: https://aur.archlinux.org/packages.php?ID=540492
316
317--------------------------------------------------------------------------------
318:: Content of /tmp/trizen-trizen/libsearpc/PKGBUILD
319--------------------------------------------------------------------------------
320
321# Maintainer: eolianoe <eolianoe [at] gmail [DoT] com>
322# Contributor: Aaron Lindsay <aaron@aclindsay.com>
323# Contributor: Edvinas Valatka <edacval@gmail.com>
324# Contributor: Adrian Hühn <adrian.huehn@web.de>
325
326pkgname=libsearpc
327epoch=1
328pkgver=3.1.0
329pkgrel=2
330pkgdesc="A simple C language RPC framework (including both server side & client side)"
331arch=('i686' 'x86_64' 'armv7h' 'armv6h' 'aarch64')
332url="https://github.com/haiwen/libsearpc"
333license=('Apache')
334depends=("glib2>=2.26.0" "jansson>=2.2.1" "python2-gobject2>=2.26.0" 'python2-simplejson')
335source=("libsearpc-${pkgver}.tar.gz::${url}/archive/v${pkgver}.zip"
336 "libsearpc.pc.patch")
337sha256sums=('894917227243a6961bebac908c82898ed35dd3b5bf85acaa6f9c8e2d0b063326'
338 'aec39a303aaebc0777a22d8c53367f52f619654d63f62b362d75c1c599e632f4')
339
340prepare () {
341 cd "${srcdir}/${pkgname}-${pkgver}"
342 patch -p1 -i "${srcdir}"/libsearpc.pc.patch
343}
344
345build () {
346 cd "${srcdir}/${pkgname}-${pkgver}"
347 ./autogen.sh
348 ./configure --prefix=/usr PYTHON=/usr/bin/python2
349 make
350}
351
352check () {
353 cd "${srcdir}/${pkgname}-${pkgver}"
354 make check
355}
356
357package () {
358 cd "${srcdir}/${pkgname}-${pkgver}"
359 make DESTDIR="${pkgdir}" install
360}
361
362=>> Edit PKGBUILD? [y/N]:
363
364--------------------------------------------------------------------------------
365:: Content of /tmp/trizen-trizen/libsearpc/libsearpc.pc.patch
366--------------------------------------------------------------------------------
367
368--- a/libsearpc.pc.in 2013-01-10 01:35:24.000000000 -0500
369+++ b/libsearpc.pc.in 2013-01-19 11:31:50.479301798 -0500
370@@ -1,4 +1,4 @@
371-prefix=(DESTDIR)@prefix@
372+prefix=@prefix@
373 exec_prefix=@exec_prefix@
374 libdir=@libdir@
375 includedir=@includedir@
376
377=>> Edit libsearpc.pc.patch? [y/N]:
378
379Repository : AUR
380Name : libsearpc
381Version : 1:3.1.0-2
382Maintainer : eolianoe
383URL : https://github.com/haiwen/libsearpc
384AUR URL : https://aur.archlinux.org/packages.php?ID=540492
385License : Apache
386Votes : 79
387Popularity : 1%
388Installed : No
389Out Of Date : No
390Depends On : glib2>=2.26.0
391 jansson>=2.2.1
392 python2-gobject2>=2.26.0
393 python2-simplejson
394Make Deps : None
395Check Deps : None
396Optional Deps : None
397Provides : None
398Conflicts With : None
399Replaces : None
400Package Base : libsearpc
401Last Update : Sun Sep 2 21:17:36 2018
402Description : A simple C language RPC framework (including both server side & client side)
403
404==> Making package: libsearpc 1:3.1.0-2 (Mon 01 Oct 2018 06:58:46 PM EEST)
405==> Checking runtime dependencies...
406==> Installing missing dependencies...
407[sudo] password for swampyx:
408Sorry, try again.
409[sudo] password for swampyx:
410resolving dependencies...
411looking for conflicting packages...
412
413Packages (1) python2-simplejson-3.16.0-2
414
415Total Download Size: 0.09 MiB
416Total Installed Size: 0.39 MiB
417
418:: Proceed with installation? [Y/n]
419:: Retrieving packages...
420 python2-simplejson-3.16.0-2-x86_64 89.9 KiB 2.66M/s 00:00 [########################################################################################] 100%
421(1/1) checking keys in keyring [########################################################################################] 100%
422(1/1) checking package integrity [########################################################################################] 100%
423(1/1) loading package files [########################################################################################] 100%
424(1/1) checking for file conflicts [########################################################################################] 100%
425(1/1) checking available disk space [########################################################################################] 100%
426:: Processing package changes...
427(1/1) installing python2-simplejson [########################################################################################] 100%
428:: Running post-transaction hooks...
429(1/1) Arming ConditionNeedsUpdate...
430==> Checking buildtime dependencies...
431==> Retrieving sources...
432 -> Downloading libsearpc-3.1.0.tar.gz...
433 % Total % Received % Xferd Average Speed Time Time Time Current
434 Dload Upload Total Spent Left Speed
435100 121 0 121 0 0 158 0 --:--:-- --:--:-- --:--:-- 157
436100 71013 0 71013 0 0 40120 0 --:--:-- 0:00:01 --:--:-- 170k
437 -> Found libsearpc.pc.patch
438==> Validating source files with sha256sums...
439 libsearpc-3.1.0.tar.gz ... Passed
440 libsearpc.pc.patch ... Passed
441==> Extracting sources...
442 -> Extracting libsearpc-3.1.0.tar.gz with bsdtar
443==> Starting prepare()...
444patching file libsearpc.pc.in
445==> Starting build()...
446processing .
447Creating ./aclocal.m4 ...
448Running glib-gettextize... Ignore non-fatal messages.
449Creating po/ subdirectory
450Copying file po/Makefile.in.in
451
452Please add the files
453 codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
454 progtest.m4
455from the /usr/share/aclocal directory to your autoconf macro directory
456or directly to your aclocal.m4 file.
457You will also need config.guess and config.sub, which you can get from
458ftp://ftp.gnu.org/pub/gnu/config/.
459
460Making ./aclocal.m4 writable ...
461Running libtoolize...
462libtoolize: putting auxiliary files in '.'.
463libtoolize: copying file './ltmain.sh'
464libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
465libtoolize: copying file 'm4/libtool.m4'
466libtoolize: copying file 'm4/ltoptions.m4'
467libtoolize: copying file 'm4/ltsugar.m4'
468libtoolize: copying file 'm4/ltversion.m4'
469libtoolize: copying file 'm4/lt~obsolete.m4'
470Running aclocal -I m4 ...
471Running autoheader...
472Running automake --gnu ...
473configure.ac:15: installing './compile'
474configure.ac:13: installing './config.guess'
475configure.ac:13: installing './config.sub'
476configure.ac:11: installing './install-sh'
477configure.ac:11: installing './missing'
478demo/Makefile.am: installing './depcomp'
479pysearpc/Makefile.am:4: installing './py-compile'
480parallel-tests: installing './test-driver'
481Running autoconf ...
482checking for a BSD-compatible install... /usr/bin/install -c
483checking whether build environment is sane... yes
484checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
485checking for gawk... gawk
486checking whether make sets $(MAKE)... yes
487checking whether make supports nested variables... yes
488checking build system type... x86_64-pc-linux-gnu
489checking for gcc... gcc
490checking whether the C compiler works... yes
491checking for C compiler default output file name... a.out
492checking for suffix of executables...
493checking whether we are cross compiling... no
494checking for suffix of object files... o
495checking whether we are using the GNU C compiler... yes
496checking whether gcc accepts -g... yes
497checking for gcc option to accept ISO C89... none needed
498checking whether gcc understands -c and -o together... yes
499checking whether make supports the include directive... yes (GNU style)
500checking dependency style of gcc... gcc3
501checking host system type... x86_64-pc-linux-gnu
502checking how to print strings... printf
503checking for a sed that does not truncate output... /usr/bin/sed
504checking for grep that handles long lines and -e... /usr/bin/grep
505checking for egrep... /usr/bin/grep -E
506checking for fgrep... /usr/bin/grep -F
507checking for ld used by gcc... /usr/bin/ld
508checking if the linker (/usr/bin/ld) is GNU ld... yes
509checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
510checking the name lister (/usr/bin/nm -B) interface... BSD nm
511checking whether ln -s works... yes
512checking the maximum length of command line arguments... 1572864
513checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
514checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
515checking for /usr/bin/ld option to reload object files... -r
516checking for objdump... objdump
517checking how to recognize dependent libraries... pass_all
518checking for dlltool... no
519checking how to associate runtime and link libraries... printf %s\n
520checking for ar... ar
521checking for archiver @FILE support... @
522checking for strip... strip
523checking for ranlib... ranlib
524checking command to parse /usr/bin/nm -B output from gcc object... ok
525checking for sysroot... no
526checking for a working dd... /usr/bin/dd
527checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
528checking for mt... no
529checking if : is a manifest tool... no
530checking how to run the C preprocessor... gcc -E
531checking for ANSI C header files... yes
532checking for sys/types.h... yes
533checking for sys/stat.h... yes
534checking for stdlib.h... yes
535checking for string.h... yes
536checking for memory.h... yes
537checking for strings.h... yes
538checking for inttypes.h... yes
539checking for stdint.h... yes
540checking for unistd.h... yes
541checking for dlfcn.h... yes
542checking for objdir... .libs
543checking if gcc supports -fno-rtti -fno-exceptions... no
544checking for gcc option to produce PIC... -fPIC -DPIC
545checking if gcc PIC flag -fPIC -DPIC works... yes
546checking if gcc static flag -static works... yes
547checking if gcc supports -c -o file.o... yes
548checking if gcc supports -c -o file.o... (cached) yes
549checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
550checking whether -lc should be explicitly linked in... no
551checking dynamic linker characteristics... GNU/Linux ld.so
552checking how to hardcode library paths into programs... immediate
553checking whether stripping libraries is possible... yes
554checking if libtool supports shared libraries... yes
555checking whether to build shared libraries... yes
556checking whether to build static libraries... yes
557checking for WIN32... checking for Mac... checking for pkg-config... /usr/bin/pkg-config
558checking pkg-config is at least version 0.9.0... yes
559checking for GLIB... yes
560checking for JANSSON... yes
561checking whether /usr/bin/python2 version is >= 2.4... yes
562checking for /usr/bin/python2 version... 2.7
563checking for /usr/bin/python2 platform... linux2
564checking for /usr/bin/python2 script directory... ${prefix}/lib/python2.7/site-packages
565checking for /usr/bin/python2 extension module directory... ${exec_prefix}/lib/python2.7/site-packages
566checking that generated files are newer than configure... done
567configure: creating ./config.status
568config.status: creating Makefile
569config.status: creating lib/Makefile
570config.status: creating demo/Makefile
571config.status: creating pysearpc/Makefile
572config.status: creating libsearpc.pc
573config.status: creating tests/Makefile
574config.status: creating config.h
575config.status: executing depfiles commands
576config.status: executing libtool commands
577make all-recursive
578make[1]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0'
579Making all in lib
580make[2]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/lib'
581/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-client.lo -MD -MP -MF .deps/searpc-client.Tpo -c -o searpc-client.lo searpc-client.c
582/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-server.lo -MD -MP -MF .deps/searpc-server.Tpo -c -o searpc-server.lo searpc-server.c
583libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-client.lo -MD -MP -MF .deps/searpc-client.Tpo -c searpc-client.c -fPIC -DPIC -o .libs/searpc-client.o
584libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-server.lo -MD -MP -MF .deps/searpc-server.Tpo -c searpc-server.c -fPIC -DPIC -o .libs/searpc-server.o
585libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-server.lo -MD -MP -MF .deps/searpc-server.Tpo -c searpc-server.c -o searpc-server.o >/dev/null 2>&1
586libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-client.lo -MD -MP -MF .deps/searpc-client.Tpo -c searpc-client.c -o searpc-client.o >/dev/null 2>&1
587mv -f .deps/searpc-server.Tpo .deps/searpc-server.Plo
588/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-utils.lo -MD -MP -MF .deps/searpc-utils.Tpo -c -o searpc-utils.lo searpc-utils.c
589libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-utils.lo -MD -MP -MF .deps/searpc-utils.Tpo -c searpc-utils.c -fPIC -DPIC -o .libs/searpc-utils.o
590searpc-utils.c: In function ‘json_gobject_deserialize’:
591searpc-utils.c:231:5: warning: ‘g_object_newv’ is deprecated: Use 'g_object_new_with_properties' instead [-Wdeprecated-declarations]
592 ret = g_object_newv (gtype, construct_params->len, (GParameter *) construct_params->data);
593 ^~~
594In file included from /usr/include/glib-2.0/gobject/gbinding.h:29,
595 from /usr/include/glib-2.0/glib-object.h:23,
596 from searpc-utils.c:4:
597/usr/include/glib-2.0/gobject/gobject.h:428:13: note: declared here
598 gpointer g_object_newv (GType object_type,
599 ^~~~~~~~~~~~~
600libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-utils.lo -MD -MP -MF .deps/searpc-utils.Tpo -c searpc-utils.c -o searpc-utils.o >/dev/null 2>&1
601mv -f .deps/searpc-client.Tpo .deps/searpc-client.Plo
602/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-named-pipe-transport.lo -MD -MP -MF .deps/searpc-named-pipe-transport.Tpo -c -o searpc-named-pipe-transport.lo searpc-named-pipe-transport.c
603libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-named-pipe-transport.lo -MD -MP -MF .deps/searpc-named-pipe-transport.Tpo -c searpc-named-pipe-transport.c -fPIC -DPIC -o .libs/searpc-named-pipe-transport.o
604mv -f .deps/searpc-utils.Tpo .deps/searpc-utils.Plo
605libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-named-pipe-transport.lo -MD -MP -MF .deps/searpc-named-pipe-transport.Tpo -c searpc-named-pipe-transport.c -o searpc-named-pipe-transport.o >/dev/null 2>&1
606mv -f .deps/searpc-named-pipe-transport.Tpo .deps/searpc-named-pipe-transport.Plo
607/bin/sh ../libtool --tag=CC --mode=link gcc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -I../lib -DG_LOG_DOMAIN=\"Searpc\" -march=native -O3 -pipe -fstack-protector-strong -fno-plt -version-info 1:2:0 -no-undefined -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o libsearpc.la -rpath /usr/lib searpc-client.lo searpc-server.lo searpc-utils.lo searpc-named-pipe-transport.lo -lgobject-2.0 -lglib-2.0 -ljansson -lpthread
608libtool: link: gcc -shared -fPIC -DPIC .libs/searpc-client.o .libs/searpc-server.o .libs/searpc-utils.o .libs/searpc-named-pipe-transport.o -lgobject-2.0 -lglib-2.0 -ljansson -lpthread -march=native -O3 -fstack-protector-strong -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z -Wl,now -Wl,-soname -Wl,libsearpc.so.1 -o .libs/libsearpc.so.1.0.2
609libtool: link: (cd ".libs" && rm -f "libsearpc.so.1" && ln -s "libsearpc.so.1.0.2" "libsearpc.so.1")
610libtool: link: (cd ".libs" && rm -f "libsearpc.so" && ln -s "libsearpc.so.1.0.2" "libsearpc.so")
611libtool: link: ar cr .libs/libsearpc.a searpc-client.o searpc-server.o searpc-utils.o searpc-named-pipe-transport.o
612libtool: link: ranlib .libs/libsearpc.a
613libtool: link: ( cd ".libs" && rm -f "libsearpc.la" && ln -s "../libsearpc.la" "libsearpc.la" )
614make[2]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/lib'
615Making all in pysearpc
616make[2]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/pysearpc'
617make[2]: Nothing to be done for 'all'.
618make[2]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/pysearpc'
619Making all in demo
620make[2]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
621[libsearpc]: generating rpc header files
622/usr/bin/python2 ../lib/searpc-codegen.py ../demo/rpc_table.py
623loaded func_table from /tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo/rpc_table.py
624[libsearpc]: done
625make all-am
626make[3]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
627gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT test-object.o -MD -MP -MF .deps/test-object.Tpo -c -o test-object.o test-object.c
628gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-demo-server.o -MD -MP -MF .deps/searpc-demo-server.Tpo -c -o searpc-demo-server.o searpc-demo-server.c
629mv -f .deps/test-object.Tpo .deps/test-object.Po
630gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc-demo-client.o -MD -MP -MF .deps/searpc-demo-client.Tpo -c -o searpc-demo-client.o searpc-demo-client.c
631In file included from searpc-demo-server.c:12:
632searpc-demo-server.c: In function ‘searpc_objlisttest’:
633test-object.h:7:38: warning: implicit declaration of function ‘test_object_get_type’; did you mean ‘g_object_get_type’? [-Wimplicit-function-declaration]
634 #define TEST_OBJECT_TYPE (test_object_get_type())
635 ^~~~~~~~~~~~~~~~~~~~
636searpc-demo-server.c:43:39: note: in expansion of macro ‘TEST_OBJECT_TYPE’
637 TestObject *obj=g_object_new (TEST_OBJECT_TYPE, NULL);
638 ^~~~~~~~~~~~~~~~
639mv -f .deps/searpc-demo-server.Tpo .deps/searpc-demo-server.Po
640gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT demo-async-client.o -MD -MP -MF .deps/demo-async-client.Tpo -c -o demo-async-client.o demo-async-client.c
641In file included from searpc-demo-client.c:13:
642searpc-demo-packet.h: In function ‘writen’:
643searpc-demo-packet.h:40:20: warning: implicit declaration of function ‘write’; did you mean ‘writen’? [-Wimplicit-function-declaration]
644 if ( (nwritten = write(fd, ptr, nleft)) <= 0) {
645 ^~~~~
646 writen
647searpc-demo-packet.h: In function ‘readn’:
648searpc-demo-packet.h:65:17: warning: implicit declaration of function ‘read’; did you mean ‘readn’? [-Wimplicit-function-declaration]
649 if ( (nread = read(fd, buf, nleft)) < 0) {
650 ^~~~
651 readn
652searpc-demo-client.c: In function ‘rpc_string_test’:
653searpc-demo-client.c:124:5: warning: implicit declaration of function ‘close’; did you mean ‘pclose’? [-Wimplicit-function-declaration]
654 close(sockfd);
655 ^~~~~
656 pclose
657In file included from searpc-demo-client.c:14:
658searpc-demo-client.c: In function ‘rpc_glist_test’:
659test-object.h:7:38: warning: implicit declaration of function ‘test_object_get_type’; did you mean ‘g_object_get_type’? [-Wimplicit-function-declaration]
660 #define TEST_OBJECT_TYPE (test_object_get_type())
661 ^~~~~~~~~~~~~~~~~~~~
662searpc-demo-client.c:133:44: note: in expansion of macro ‘TEST_OBJECT_TYPE’
663 TEST_OBJECT_TYPE, &error, 3,
664 ^~~~~~~~~~~~~~~~
665mv -f .deps/searpc-demo-client.Tpo .deps/searpc-demo-client.Po
666/bin/sh ../libtool --tag=CC --mode=link gcc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o searpc-demo-server test-object.o searpc-demo-server.o ../lib/libsearpc.la -lgobject-2.0 -lglib-2.0 -ljansson
667In file included from demo-async-client.c:10:
668searpc-demo-packet.h: In function ‘writen’:
669searpc-demo-packet.h:40:20: warning: implicit declaration of function ‘write’; did you mean ‘writen’? [-Wimplicit-function-declaration]
670 if ( (nwritten = write(fd, ptr, nleft)) <= 0) {
671 ^~~~~
672 writen
673searpc-demo-packet.h: In function ‘readn’:
674searpc-demo-packet.h:65:17: warning: implicit declaration of function ‘read’; did you mean ‘readn’? [-Wimplicit-function-declaration]
675 if ( (nread = read(fd, buf, nleft)) < 0) {
676 ^~~~
677 readn
678demo-async-client.c: In function ‘main’:
679demo-async-client.c:149:5: warning: implicit declaration of function ‘close’; did you mean ‘pclose’? [-Wimplicit-function-declaration]
680 close(sockfd);
681 ^~~~~
682 pclose
683mv -f .deps/demo-async-client.Tpo .deps/demo-async-client.Po
684/bin/sh ../libtool --tag=CC --mode=link gcc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o searpc-demo-client test-object.o searpc-demo-client.o ../lib/libsearpc.la -lgobject-2.0 -lglib-2.0 -ljansson
685libtool: link: gcc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z -Wl,now -o .libs/searpc-demo-server test-object.o searpc-demo-server.o ../lib/.libs/libsearpc.so -lpthread -lgobject-2.0 -lglib-2.0 -ljansson
686libtool: link: gcc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z -Wl,now -o .libs/searpc-demo-client test-object.o searpc-demo-client.o ../lib/.libs/libsearpc.so -lpthread -lgobject-2.0 -lglib-2.0 -ljansson
687/bin/sh ../libtool --tag=CC --mode=link gcc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o searpc-async-client demo-async-client.o ../lib/libsearpc.la -lgobject-2.0 -lglib-2.0 -ljansson
688libtool: link: gcc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z -Wl,now -o .libs/searpc-async-client demo-async-client.o ../lib/.libs/libsearpc.so -lpthread -lgobject-2.0 -lglib-2.0 -ljansson
689make[3]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
690make[2]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
691Making all in tests
692make[2]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
693/usr/bin/python2 ../tests/generate.py
694[libsearpc]: generating rpc header files
695/usr/bin/python2 ../lib/searpc-codegen.py ../tests/rpc_table.py
696loaded func_table from /tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests/rpc_table.py
697[libsearpc]: done
698Written `clar.suite` (11 tests in 1 suites)
699make all-am
700make[3]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
701make[3]: Nothing to be done for 'all-am'.
702make[3]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
703make[2]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
704make[2]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0'
705make[2]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0'
706make[1]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0'
707==> Starting check()...
708Making check in lib
709make[1]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/lib'
710make[1]: Nothing to be done for 'check'.
711make[1]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/lib'
712Making check in pysearpc
713make[1]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/pysearpc'
714make[1]: Nothing to be done for 'check'.
715make[1]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/pysearpc'
716Making check in demo
717make[1]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
718make check-am
719make[2]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
720make[2]: Nothing to be done for 'check-am'.
721make[2]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
722make[1]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
723Making check in tests
724make[1]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
725make check-am
726make[2]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
727make test-searpc
728make[3]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
729gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT searpc.o -MD -MP -MF .deps/searpc.Tpo -c -o searpc.o searpc.c
730gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT clar.o -MD -MP -MF .deps/clar.Tpo -c -o clar.o clar.c
731In file included from clar.c:565:
732clar/sandbox.h: In function ‘clar_unsandbox’:
733clar/sandbox.h:68:2: warning: ignoring return value of ‘chdir’, declared with attribute warn_unused_result [-Wunused-result]
734 chdir("..");
735 ^~~~~~~~~~~
736mv -f .deps/clar.Tpo .deps/clar.Po
737gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
738mv -f .deps/searpc.Tpo .deps/searpc.Po
739mv -f .deps/main.Tpo .deps/main.Po
740/bin/sh ../libtool --tag=CC --mode=link gcc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -static -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o test-searpc searpc.o clar.o main.o -lgobject-2.0 -lglib-2.0 -ljansson ../lib/libsearpc.la
741libtool: link: gcc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -I../lib -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z -Wl,now -o test-searpc searpc.o clar.o main.o ../lib/.libs/libsearpc.a -lgobject-2.0 -lglib-2.0 -ljansson -lpthread
742make[3]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
743make check-TESTS
744make[3]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
745make[4]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
746PASS: test-searpc
747============================================================================
748Testsuite summary for libsearpc 3.1.0
749============================================================================
750# TOTAL: 1
751# PASS: 1
752# SKIP: 0
753# XFAIL: 0
754# FAIL: 0
755# XPASS: 0
756# ERROR: 0
757============================================================================
758make[4]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
759make[3]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
760make[2]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
761make[1]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
762make[1]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0'
763make[1]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0'
764==> Entering fakeroot environment...
765==> Starting package()...
766Making install in lib
767make[1]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/lib'
768make[2]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/lib'
769 /usr/bin/mkdir -p '/tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/bin'
770 /usr/bin/install -c searpc-codegen.py '/tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/bin'
771 /usr/bin/mkdir -p '/tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib'
772 /usr/bin/mkdir -p '/tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/include'
773 /bin/sh ../libtool --mode=install /usr/bin/install -c libsearpc.la '/tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib'
774 /usr/bin/install -c -m 644 searpc-client.h searpc-server.h searpc-utils.h searpc.h searpc-named-pipe-transport.h '/tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/include'
775libtool: install: /usr/bin/install -c .libs/libsearpc.so.1.0.2 /tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib/libsearpc.so.1.0.2
776libtool: install: (cd /tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib && { ln -s -f libsearpc.so.1.0.2 libsearpc.so.1 || { rm -f libsearpc.so.1 && ln -s libsearpc.so.1.0.2 libsearpc.so.1; }; })
777libtool: install: (cd /tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib && { ln -s -f libsearpc.so.1.0.2 libsearpc.so || { rm -f libsearpc.so && ln -s libsearpc.so.1.0.2 libsearpc.so; }; })
778libtool: install: /usr/bin/install -c .libs/libsearpc.lai /tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib/libsearpc.la
779libtool: install: /usr/bin/install -c .libs/libsearpc.a /tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib/libsearpc.a
780libtool: install: chmod 644 /tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib/libsearpc.a
781libtool: install: ranlib /tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib/libsearpc.a
782libtool: warning: remember to run 'libtool --finish /usr/lib'
783make[2]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/lib'
784make[1]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/lib'
785Making install in pysearpc
786make[1]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/pysearpc'
787make[2]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/pysearpc'
788make[2]: Nothing to be done for 'install-exec-am'.
789 /usr/bin/mkdir -p '/tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib/python2.7/site-packages/pysearpc'
790 /usr/bin/install -c -m 644 __init__.py client.py common.py errors.py named_pipe.py server.py transport.py utils.py '/tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib/python2.7/site-packages/pysearpc'
791Byte-compiling python modules...
792__init__.pyclient.pycommon.pyerrors.pynamed_pipe.pyserver.pytransport.pyutils.py
793Byte-compiling python modules (optimized versions) ...
794__init__.pyclient.pycommon.pyerrors.pynamed_pipe.pyserver.pytransport.pyutils.py
795make[2]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/pysearpc'
796make[1]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/pysearpc'
797Making install in demo
798make[1]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
799make install-am
800make[2]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
801make[3]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
802make[3]: Nothing to be done for 'install-exec-am'.
803make[3]: Nothing to be done for 'install-data-am'.
804make[3]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
805make[2]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
806make[1]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/demo'
807Making install in tests
808make[1]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
809make install-am
810make[2]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
811make[3]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
812make[3]: Nothing to be done for 'install-exec-am'.
813make[3]: Nothing to be done for 'install-data-am'.
814make[3]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
815make[2]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
816make[1]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0/tests'
817make[1]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0'
818make[2]: Entering directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0'
819make[2]: Nothing to be done for 'install-exec-am'.
820/usr/bin/sed -i "s|(DESTDIR)|/tmp/trizen-trizen/libsearpc/pkg/libsearpc|g" libsearpc.pc
821 /usr/bin/mkdir -p '/tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib/pkgconfig'
822 /usr/bin/install -c -m 644 libsearpc.pc '/tmp/trizen-trizen/libsearpc/pkg/libsearpc/usr/lib/pkgconfig'
823make[2]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0'
824make[1]: Leaving directory '/tmp/trizen-trizen/libsearpc/src/libsearpc-3.1.0'
825==> Tidying install...
826 -> Removing empty directories...
827 -> Removing libtool files...
828 -> Purging unwanted files...
829 -> Removing static library files...
830 -> Stripping unneeded symbols from binaries and libraries...
831 -> Compressing man and info pages...
832==> Checking for packaging issues...
833==> Creating package "libsearpc"...
834 -> Generating .PKGINFO file...
835 -> Generating .BUILDINFO file...
836 -> Generating .MTREE file...
837 -> Compressing package...
838==> Leaving fakeroot environment.
839==> Finished making: libsearpc 1:3.1.0-2 (Mon 01 Oct 2018 06:59:13 PM EEST)
840==> Cleaning up...
841loading packages...
842resolving dependencies...
843looking for conflicting packages...
844
845Packages (1) libsearpc-1:3.1.0-2
846
847Total Installed Size: 0.10 MiB
848
849:: Proceed with installation? [Y/n]
850(1/1) checking keys in keyring [########################################################################################] 100%
851(1/1) checking package integrity [########################################################################################] 100%
852(1/1) loading package files [########################################################################################] 100%
853(1/1) checking for file conflicts [########################################################################################] 100%
854(1/1) checking available disk space [########################################################################################] 100%
855:: Processing package changes...
856(1/1) installing libsearpc [########################################################################################] 100%
857:: Running post-transaction hooks...
858(1/1) Arming ConditionNeedsUpdate...
859==> Making package: ccnet-server 6.3.4-1 (Mon 01 Oct 2018 06:59:31 PM EEST)
860==> Checking runtime dependencies...
861==> Installing missing dependencies...
862resolving dependencies...
863looking for conflicting packages...
864
865Packages (2) libmariadbclient-10.1.36-1 postgresql-libs-10.5-2
866
867Total Download Size: 5.67 MiB
868Total Installed Size: 27.08 MiB
869
870:: Proceed with installation? [Y/n]
871:: Retrieving packages...
872 postgresql-libs-10.5-2-x86_64 1251.2 KiB 3.78M/s 00:00 [########################################################################################] 21%
873 libmariadbclient-10.1.36-1-x86_64 5.7 MiB 3.53M/s 00:02 [########################################################################################] 100%
874(2/2) checking keys in keyring [########################################################################################] 100%
875(2/2) checking package integrity [########################################################################################] 100%
876(2/2) loading package files [########################################################################################] 100%
877(2/2) checking for file conflicts [########################################################################################] 100%
878(2/2) checking available disk space [########################################################################################] 100%
879:: Processing package changes...
880(1/2) installing libmariadbclient [########################################################################################] 100%
881(2/2) installing postgresql-libs [########################################################################################] 100%
882:: Running post-transaction hooks...
883(1/1) Arming ConditionNeedsUpdate...
884==> Checking buildtime dependencies...
885==> Installing missing dependencies...
886resolving dependencies...
887looking for conflicting packages...
888
889Packages (9) docbook-xml-4.5-8 docbook-xsl-1.79.2-4 glib2-docs-2.58.1-1 gtk-doc-1.29-1 python-anytree-2.4.3-2 python-lxml-4.2.5-1 python-pygments-2.2.0-2 source-highlight-3.1.8-17 vala-0.42.2-1
890
891Total Download Size: 7.24 MiB
892Total Installed Size: 65.29 MiB
893
894:: Proceed with installation? [Y/n]
895:: Retrieving packages...
896 glib2-docs-2.58.1-1-x86_64 1375.2 KiB 2.63M/s 00:01 [########################################################################################] 18%
897 docbook-xml-4.5-8-any 1459.1 KiB 2.31M/s 00:01 [########################################################################################] 19%
898 docbook-xsl-1.79.2-4-any 2.1 MiB 2034K/s 00:01 [########################################################################################] 29%
899 source-highlight-3.1.8-17-x86_64 2.7 MiB 1948K/s 00:01 [########################################################################################] 37%
900 python-lxml-4.2.5-1-x86_64 3.8 MiB 1979K/s 00:02 [########################################################################################] 52%
901 python-anytree-2.4.3-2-any 3.9 MiB 1960K/s 00:02 [########################################################################################] 53%
902 gtk-doc-1.29-1-any 4.1 MiB 1937K/s 00:02 [########################################################################################] 56%
903 vala-0.42.2-1-x86_64 6.1 MiB 1942K/s 00:03 [########################################################################################] 84%
904 python-pygments-2.2.0-2-any 7.2 MiB 1913K/s 00:04 [########################################################################################] 100%
905(9/9) checking keys in keyring [########################################################################################] 100%
906(9/9) checking package integrity [########################################################################################] 100%
907(9/9) loading package files [########################################################################################] 100%
908(9/9) checking for file conflicts [########################################################################################] 100%
909(9/9) checking available disk space [########################################################################################] 100%
910:: Processing package changes...
911(1/9) installing docbook-xml [########################################################################################] 100%
912(2/9) installing docbook-xsl [########################################################################################] 100%
913(3/9) installing source-highlight [########################################################################################] 100%
914(4/9) installing glib2-docs [########################################################################################] 100%
915(5/9) installing python-lxml [########################################################################################] 100%
916Optional dependencies for python-lxml
917 python-beautifulsoup4: support for beautifulsoup parser to parse not well formed HTML
918 python-cssselect: support for cssselect
919 python-html5lib: support for html5lib parser
920 python-lxml-docs: offline docs
921(6/9) installing python-pygments [########################################################################################] 100%
922(7/9) installing python-anytree [########################################################################################] 100%
923(8/9) installing gtk-doc [########################################################################################] 100%
924Optional dependencies for gtk-doc
925 dblatex: PDF support
926(9/9) installing vala [########################################################################################] 100%
927:: Running post-transaction hooks...
928(1/2) Arming ConditionNeedsUpdate...
929(2/2) Updating the info directory file...
930==> Retrieving sources...
931 -> Downloading ccnet-server-v6.3.4-server.tar.gz...
932 % Total % Received % Xferd Average Speed Time Time Time Current
933 Dload Upload Total Spent Left Speed
934100 134 0 134 0 0 173 0 --:--:-- --:--:-- --:--:-- 173
935100 212k 0 212k 0 0 104k 0 --:--:-- 0:00:02 --:--:-- 200k
936==> Validating source files with sha256sums...
937 ccnet-server-v6.3.4-server.tar.gz ... Passed
938==> Extracting sources...
939 -> Extracting ccnet-server-v6.3.4-server.tar.gz with bsdtar
940==> Starting prepare()...
941==> Starting build()...
942processing .
943Creating ./aclocal.m4 ...
944Making ./aclocal.m4 writable ...
945Running libtoolize...
946libtoolize: putting auxiliary files in '.'.
947libtoolize: copying file './ltmain.sh'
948libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
949libtoolize: copying file 'm4/libtool.m4'
950libtoolize: copying file 'm4/ltoptions.m4'
951libtoolize: copying file 'm4/ltsugar.m4'
952libtoolize: copying file 'm4/ltversion.m4'
953libtoolize: copying file 'm4/lt~obsolete.m4'
954Running aclocal -I m4 ...
955Running autoheader...
956Running automake --gnu ...
957configure.ac:22: installing './compile'
958configure.ac:14: installing './config.guess'
959configure.ac:14: installing './config.sub'
960configure.ac:11: installing './install-sh'
961configure.ac:11: installing './missing'
962lib/Makefile.am: installing './depcomp'
963net/server/Makefile.am:17: warning: source file '../common/ccnet-db.c' is in a subdirectory,
964net/server/Makefile.am:17: but option 'subdir-objects' is disabled
965automake: warning: possible forward-incompatibility.
966automake: At least a source file is in a subdirectory, but the 'subdir-objects'
967automake: automake option hasn't been enabled. For now, the corresponding output
968automake: object file(s) will be placed in the top-level directory. However,
969automake: this behaviour will change in future Automake versions: they will
970automake: unconditionally cause object files to be placed in the same subdirectory
971automake: of the corresponding sources.
972automake: You are advised to start using 'subdir-objects' option throughout your
973automake: project, to avoid future incompatibilities.
974net/server/Makefile.am:17: warning: source file '../common/session.c' is in a subdirectory,
975net/server/Makefile.am:17: but option 'subdir-objects' is disabled
976net/server/Makefile.am:17: warning: source file '../common/peer-mgr.c' is in a subdirectory,
977net/server/Makefile.am:17: but option 'subdir-objects' is disabled
978net/server/Makefile.am:17: warning: source file '../common/packet-io.c' is in a subdirectory,
979net/server/Makefile.am:17: but option 'subdir-objects' is disabled
980net/server/Makefile.am:17: warning: source file '../common/message.c' is in a subdirectory,
981net/server/Makefile.am:17: but option 'subdir-objects' is disabled
982net/server/Makefile.am:17: warning: source file '../common/perm-mgr.c' is in a subdirectory,
983net/server/Makefile.am:17: but option 'subdir-objects' is disabled
984net/server/Makefile.am:17: warning: source file '../common/log.c' is in a subdirectory,
985net/server/Makefile.am:17: but option 'subdir-objects' is disabled
986net/server/Makefile.am:17: warning: source file '../common/peer.c' is in a subdirectory,
987net/server/Makefile.am:17: but option 'subdir-objects' is disabled
988net/server/Makefile.am:17: warning: source file '../common/algorithms.c' is in a subdirectory,
989net/server/Makefile.am:17: but option 'subdir-objects' is disabled
990net/server/Makefile.am:17: warning: source file '../common/handshake.c' is in a subdirectory,
991net/server/Makefile.am:17: but option 'subdir-objects' is disabled
992net/server/Makefile.am:17: warning: source file '../common/processor.c' is in a subdirectory,
993net/server/Makefile.am:17: but option 'subdir-objects' is disabled
994net/server/Makefile.am:17: warning: source file '../common/getgateway.c' is in a subdirectory,
995net/server/Makefile.am:17: but option 'subdir-objects' is disabled
996net/server/Makefile.am:17: warning: source file '../common/connect-mgr.c' is in a subdirectory,
997net/server/Makefile.am:17: but option 'subdir-objects' is disabled
998net/server/Makefile.am:17: warning: source file '../common/message-manager.c' is in a subdirectory,
999net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1000net/server/Makefile.am:17: warning: source file '../common/proc-factory.c' is in a subdirectory,
1001net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1002net/server/Makefile.am:17: warning: source file '../common/ccnet-config.c' is in a subdirectory,
1003net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1004net/server/Makefile.am:17: warning: source file '../common/rpc-service.c' is in a subdirectory,
1005net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1006net/server/Makefile.am:17: warning: source file '../common/peermgr-message.c' is in a subdirectory,
1007net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1008net/server/Makefile.am:17: warning: source file '../common/processors/sendmsg-proc.c' is in a subdirectory,
1009net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1010net/server/Makefile.am:17: warning: source file '../common/processors/rcvmsg-proc.c' is in a subdirectory,
1011net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1012net/server/Makefile.am:17: warning: source file '../common/processors/rcvcmd-proc.c' is in a subdirectory,
1013net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1014net/server/Makefile.am:17: warning: source file '../common/processors/putpubinfo-proc.c' is in a subdirectory,
1015net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1016net/server/Makefile.am:17: warning: source file '../common/processors/getpubinfo-proc.c' is in a subdirectory,
1017net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1018net/server/Makefile.am:17: warning: source file '../common/processors/keepalive2-proc.c' is in a subdirectory,
1019net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1020net/server/Makefile.am:17: warning: source file '../common/processors/mqserver-proc.c' is in a subdirectory,
1021net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1022net/server/Makefile.am:17: warning: source file '../common/processors/service-proxy-proc.c' is in a subdirectory,
1023net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1024net/server/Makefile.am:17: warning: source file '../common/processors/service-stub-proc.c' is in a subdirectory,
1025net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1026net/server/Makefile.am:17: warning: source file '../common/processors/rpcserver-proc.c' is in a subdirectory,
1027net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1028net/server/Makefile.am:17: warning: source file '../common/processors/threaded-rpcserver-proc.c' is in a subdirectory,
1029net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1030net/server/Makefile.am:17: warning: source file '../common/processors/echo-proc.c' is in a subdirectory,
1031net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1032net/server/Makefile.am:17: warning: source file '../common/processors/sendsessionkey-proc.c' is in a subdirectory,
1033net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1034net/server/Makefile.am:17: warning: source file '../common/processors/recvsessionkey-proc.c' is in a subdirectory,
1035net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1036net/server/Makefile.am:17: warning: source file '../common/processors/sendsessionkey-v2-proc.c' is in a subdirectory,
1037net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1038net/server/Makefile.am:17: warning: source file '../common/processors/recvsessionkey-v2-proc.c' is in a subdirectory,
1039net/server/Makefile.am:17: but option 'subdir-objects' is disabled
1040python/ccnet/Makefile.am:3: installing './py-compile'
1041Running autoconf ...
1042checking for a BSD-compatible install... /usr/bin/install -c
1043checking whether build environment is sane... yes
1044checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
1045checking for gawk... gawk
1046checking whether make sets $(MAKE)... yes
1047checking whether make supports nested variables... yes
1048checking build system type... x86_64-pc-linux-gnu
1049checking for gcc... gcc
1050checking whether the C compiler works... yes
1051checking for C compiler default output file name... a.out
1052checking for suffix of executables...
1053checking whether we are cross compiling... no
1054checking for suffix of object files... o
1055checking whether we are using the GNU C compiler... yes
1056checking whether gcc accepts -g... yes
1057checking for gcc option to accept ISO C89... none needed
1058checking whether gcc understands -c and -o together... yes
1059checking whether make supports the include directive... yes (GNU style)
1060checking dependency style of gcc... gcc3
1061checking for an ANSI C-conforming const... yes
1062checking whether make sets $(MAKE)... (cached) yes
1063checking host system type... x86_64-pc-linux-gnu
1064checking how to print strings... printf
1065checking for a sed that does not truncate output... /usr/bin/sed
1066checking for grep that handles long lines and -e... /usr/bin/grep
1067checking for egrep... /usr/bin/grep -E
1068checking for fgrep... /usr/bin/grep -F
1069checking for ld used by gcc... /usr/bin/ld
1070checking if the linker (/usr/bin/ld) is GNU ld... yes
1071checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
1072checking the name lister (/usr/bin/nm -B) interface... BSD nm
1073checking whether ln -s works... yes
1074checking the maximum length of command line arguments... 1572864
1075checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
1076checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
1077checking for /usr/bin/ld option to reload object files... -r
1078checking for objdump... objdump
1079checking how to recognize dependent libraries... pass_all
1080checking for dlltool... no
1081checking how to associate runtime and link libraries... printf %s\n
1082checking for ar... ar
1083checking for archiver @FILE support... @
1084checking for strip... strip
1085checking for ranlib... ranlib
1086checking command to parse /usr/bin/nm -B output from gcc object... ok
1087checking for sysroot... no
1088checking for a working dd... /usr/bin/dd
1089checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
1090checking for mt... no
1091checking if : is a manifest tool... no
1092checking how to run the C preprocessor... gcc -E
1093checking for ANSI C header files... yes
1094checking for sys/types.h... yes
1095checking for sys/stat.h... yes
1096checking for stdlib.h... yes
1097checking for string.h... yes
1098checking for memory.h... yes
1099checking for strings.h... yes
1100checking for inttypes.h... yes
1101checking for stdint.h... yes
1102checking for unistd.h... yes
1103checking for dlfcn.h... yes
1104checking for objdir... .libs
1105checking if gcc supports -fno-rtti -fno-exceptions... no
1106checking for gcc option to produce PIC... -fPIC -DPIC
1107checking if gcc PIC flag -fPIC -DPIC works... yes
1108checking if gcc static flag -static works... yes
1109checking if gcc supports -c -o file.o... yes
1110checking if gcc supports -c -o file.o... (cached) yes
1111checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
1112checking whether -lc should be explicitly linked in... no
1113checking dynamic linker characteristics... GNU/Linux ld.so
1114checking how to hardcode library paths into programs... immediate
1115checking whether stripping libraries is possible... yes
1116checking if libtool supports shared libraries... yes
1117checking whether to build shared libraries... yes
1118checking whether to build static libraries... yes
1119checking sys/ioctl.h usability... yes
1120checking sys/ioctl.h presence... yes
1121checking for sys/ioctl.h... yes
1122checking sys/time.h usability... yes
1123checking sys/time.h presence... yes
1124checking for sys/time.h... yes
1125checking stdarg.h usability... yes
1126checking stdarg.h presence... yes
1127checking for stdarg.h... yes
1128checking for special C compiler options needed for large files... no
1129checking for _FILE_OFFSET_BITS value needed for large files... no
1130checking for WIN32... no
1131checking for Mac... no
1132checking for Linux... compile in linux
1133checking for uuid_generate in -luuid... yes
1134found library uuid
1135checking for pthread_create in -lpthread... yes
1136found library pthread
1137checking for sqlite3_open in -lsqlite3... yes
1138found library sqlite3
1139checking for SHA1_Init in -lcrypto... yes
1140found library crypto
1141checking for pkg-config... /usr/bin/pkg-config
1142checking pkg-config is at least version 0.9.0... yes
1143checking for SSL... yes
1144checking for GLIB2... yes
1145checking for GOBJECT... yes
1146checking for SEARPC... yes
1147checking for LIBEVENT... yes
1148checking whether /usr/bin/python2 version is >= 2.6... yes
1149checking for /usr/bin/python2 version... 2.7
1150checking for /usr/bin/python2 platform... linux2
1151checking for /usr/bin/python2 script directory... ${prefix}/lib/python2.7/site-packages
1152checking for /usr/bin/python2 extension module directory... ${exec_prefix}/lib/python2.7/site-packages
1153checking for mysql in unix... yes
1154checking for mysql_config... /usr/bin/mysql_config
1155checking mysql.h usability... yes
1156checking mysql.h presence... yes
1157checking for mysql.h... yes
1158found mysql client library
1159checking for postgresql... yes
1160checking for pg_config... /usr/bin/pg_config
1161checking libpq-fe.h usability... yes
1162checking libpq-fe.h presence... yes
1163checking for libpq-fe.h... yes
1164found postgresql client library
1165checking for ldap_init in -lldap... yes
1166found ldap client library
1167checking that generated files are newer than configure... done
1168configure: creating ./config.status
1169config.status: creating Makefile
1170config.status: creating libccnet.pc
1171config.status: creating net/Makefile
1172config.status: creating net/server/Makefile
1173config.status: creating net/common/Makefile
1174config.status: creating net/common/db-wrapper/Makefile
1175config.status: creating lib/Makefile
1176config.status: creating tools/Makefile
1177config.status: creating include/Makefile
1178config.status: creating include/ccnet/Makefile
1179config.status: creating python/Makefile
1180config.status: creating python/ccnet/Makefile
1181config.status: creating config.h
1182config.status: executing depfiles commands
1183config.status: executing libtool commands
1184make all-recursive
1185make[1]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server'
1186Making all in include
1187make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include'
1188Making all in ccnet
1189make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include/ccnet'
1190make[3]: Nothing to be done for 'all'.
1191make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include/ccnet'
1192make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include'
1193make[3]: Nothing to be done for 'all-am'.
1194make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include'
1195make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include'
1196Making all in lib
1197make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/lib'
1198rm -f ccnetobj.c
1199valac -C --pkg posix ccnetobj.vala
1200[libsearpc]: generating rpc header files
1201/usr/bin/python2 `which searpc-codegen.py` ../lib/rpc_table.py
1202loaded func_table from /tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/lib/rpc_table.py
1203[libsearpc]: done
1204rm -f ccnet-object.h
1205valac --pkg posix ccnetobj.vala -C -H ccnet-object.h
1206make all-am
1207make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/lib'
1208/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnet-client.lo -MD -MP -MF .deps/libccnet_la-ccnet-client.Tpo -c -o libccnet_la-ccnet-client.lo `test -f 'ccnet-client.c' || echo './'`ccnet-client.c
1209/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-packet-io.lo -MD -MP -MF .deps/libccnet_la-packet-io.Tpo -c -o libccnet_la-packet-io.lo `test -f 'packet-io.c' || echo './'`packet-io.c
1210libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-packet-io.lo -MD -MP -MF .deps/libccnet_la-packet-io.Tpo -c packet-io.c -fPIC -DPIC -o .libs/libccnet_la-packet-io.o
1211libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnet-client.lo -MD -MP -MF .deps/libccnet_la-ccnet-client.Tpo -c ccnet-client.c -fPIC -DPIC -o .libs/libccnet_la-ccnet-client.o
1212libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-packet-io.lo -MD -MP -MF .deps/libccnet_la-packet-io.Tpo -c packet-io.c -o libccnet_la-packet-io.o >/dev/null 2>&1
1213libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnet-client.lo -MD -MP -MF .deps/libccnet_la-ccnet-client.Tpo -c ccnet-client.c -o libccnet_la-ccnet-client.o >/dev/null 2>&1
1214mv -f .deps/libccnet_la-packet-io.Tpo .deps/libccnet_la-packet-io.Plo
1215/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-libccnet_utils.lo -MD -MP -MF .deps/libccnet_la-libccnet_utils.Tpo -c -o libccnet_la-libccnet_utils.lo `test -f 'libccnet_utils.c' || echo './'`libccnet_utils.c
1216libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-libccnet_utils.lo -MD -MP -MF .deps/libccnet_la-libccnet_utils.Tpo -c libccnet_utils.c -fPIC -DPIC -o .libs/libccnet_la-libccnet_utils.o
1217mv -f .deps/libccnet_la-ccnet-client.Tpo .deps/libccnet_la-ccnet-client.Plo
1218/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-message.lo -MD -MP -MF .deps/libccnet_la-message.Tpo -c -o libccnet_la-message.lo `test -f 'message.c' || echo './'`message.c
1219libccnet_utils.c: In function ‘ccnet_util_expand_path’:
1220libccnet_utils.c:282:9: warning: ignoring return value of ‘getcwd’, declared with attribute warn_unused_result [-Wunused-result]
1221 getcwd (new_path, PATH_MAX);
1222 ^~~~~~~~~~~~~~~~~~~~~~~~~~~
1223libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-libccnet_utils.lo -MD -MP -MF .deps/libccnet_la-libccnet_utils.Tpo -c libccnet_utils.c -o libccnet_la-libccnet_utils.o >/dev/null 2>&1
1224libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-message.lo -MD -MP -MF .deps/libccnet_la-message.Tpo -c message.c -fPIC -DPIC -o .libs/libccnet_la-message.o
1225libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-message.lo -MD -MP -MF .deps/libccnet_la-message.Tpo -c message.c -o libccnet_la-message.o >/dev/null 2>&1
1226mv -f .deps/libccnet_la-libccnet_utils.Tpo .deps/libccnet_la-libccnet_utils.Plo
1227/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-proc-factory.lo -MD -MP -MF .deps/libccnet_la-proc-factory.Tpo -c -o libccnet_la-proc-factory.lo `test -f 'proc-factory.c' || echo './'`proc-factory.c
1228libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-proc-factory.lo -MD -MP -MF .deps/libccnet_la-proc-factory.Tpo -c proc-factory.c -fPIC -DPIC -o .libs/libccnet_la-proc-factory.o
1229mv -f .deps/libccnet_la-message.Tpo .deps/libccnet_la-message.Plo
1230/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-processor.lo -MD -MP -MF .deps/libccnet_la-processor.Tpo -c -o libccnet_la-processor.lo `test -f 'processor.c' || echo './'`processor.c
1231libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-processor.lo -MD -MP -MF .deps/libccnet_la-processor.Tpo -c processor.c -fPIC -DPIC -o .libs/libccnet_la-processor.o
1232proc-factory.c: In function ‘ccnet_proc_factory_class_init’:
1233proc-factory.c:29:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1234 g_type_class_add_private (klass, sizeof (CcnetProcFactoryPriv));
1235 ^~~~~~~~~~~~~~~~~~~~~~~~
1236In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1237 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1238 from /usr/include/glib-2.0/glib-object.h:23,
1239 from libccnet_utils.h:15,
1240 from include.h:11,
1241 from proc-factory.c:3:
1242/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1243 void g_type_class_add_private (gpointer g_class,
1244 ^~~~~~~~~~~~~~~~~~~~~~~~
1245libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-proc-factory.lo -MD -MP -MF .deps/libccnet_la-proc-factory.Tpo -c proc-factory.c -o libccnet_la-proc-factory.o >/dev/null 2>&1
1246mv -f .deps/libccnet_la-proc-factory.Tpo .deps/libccnet_la-proc-factory.Plo
1247/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-buffer.lo -MD -MP -MF .deps/libccnet_la-buffer.Tpo -c -o libccnet_la-buffer.lo `test -f 'buffer.c' || echo './'`buffer.c
1248libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-processor.lo -MD -MP -MF .deps/libccnet_la-processor.Tpo -c processor.c -o libccnet_la-processor.o >/dev/null 2>&1
1249libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-buffer.lo -MD -MP -MF .deps/libccnet_la-buffer.Tpo -c buffer.c -fPIC -DPIC -o .libs/libccnet_la-buffer.o
1250libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-buffer.lo -MD -MP -MF .deps/libccnet_la-buffer.Tpo -c buffer.c -o libccnet_la-buffer.o >/dev/null 2>&1
1251mv -f .deps/libccnet_la-processor.Tpo .deps/libccnet_la-processor.Plo
1252/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-peer.lo -MD -MP -MF .deps/libccnet_la-peer.Tpo -c -o libccnet_la-peer.lo `test -f 'peer.c' || echo './'`peer.c
1253libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-peer.lo -MD -MP -MF .deps/libccnet_la-peer.Tpo -c peer.c -fPIC -DPIC -o .libs/libccnet_la-peer.o
1254mv -f .deps/libccnet_la-buffer.Tpo .deps/libccnet_la-buffer.Plo
1255/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-sendcmd-proc.lo -MD -MP -MF .deps/libccnet_la-sendcmd-proc.Tpo -c -o libccnet_la-sendcmd-proc.lo `test -f 'sendcmd-proc.c' || echo './'`sendcmd-proc.c
1256libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-sendcmd-proc.lo -MD -MP -MF .deps/libccnet_la-sendcmd-proc.Tpo -c sendcmd-proc.c -fPIC -DPIC -o .libs/libccnet_la-sendcmd-proc.o
1257libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-peer.lo -MD -MP -MF .deps/libccnet_la-peer.Tpo -c peer.c -o libccnet_la-peer.o >/dev/null 2>&1
1258sendcmd-proc.c: In function ‘ccnet_sendcmd_proc_class_init’:
1259sendcmd-proc.c:42:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1260 g_type_class_add_private (klass, sizeof (CcnetSendcmdProcPriv));
1261 ^~~~~~~~~~~~~~~~~~~~~~~~
1262In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1263 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1264 from /usr/include/glib-2.0/glib-object.h:23,
1265 from ../include/ccnet/ccnet-client.h:11,
1266 from sendcmd-proc.c:8:
1267/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1268 void g_type_class_add_private (gpointer g_class,
1269 ^~~~~~~~~~~~~~~~~~~~~~~~
1270libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-sendcmd-proc.lo -MD -MP -MF .deps/libccnet_la-sendcmd-proc.Tpo -c sendcmd-proc.c -o libccnet_la-sendcmd-proc.o >/dev/null 2>&1
1271mv -f .deps/libccnet_la-peer.Tpo .deps/libccnet_la-peer.Plo
1272/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-mqclient-proc.lo -MD -MP -MF .deps/libccnet_la-mqclient-proc.Tpo -c -o libccnet_la-mqclient-proc.lo `test -f 'mqclient-proc.c' || echo './'`mqclient-proc.c
1273mv -f .deps/libccnet_la-sendcmd-proc.Tpo .deps/libccnet_la-sendcmd-proc.Plo
1274/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-invoke-service-proc.lo -MD -MP -MF .deps/libccnet_la-invoke-service-proc.Tpo -c -o libccnet_la-invoke-service-proc.lo `test -f 'invoke-service-proc.c' || echo './'`invoke-service-proc.c
1275libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-mqclient-proc.lo -MD -MP -MF .deps/libccnet_la-mqclient-proc.Tpo -c mqclient-proc.c -fPIC -DPIC -o .libs/libccnet_la-mqclient-proc.o
1276libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-invoke-service-proc.lo -MD -MP -MF .deps/libccnet_la-invoke-service-proc.Tpo -c invoke-service-proc.c -fPIC -DPIC -o .libs/libccnet_la-invoke-service-proc.o
1277libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-mqclient-proc.lo -MD -MP -MF .deps/libccnet_la-mqclient-proc.Tpo -c mqclient-proc.c -o libccnet_la-mqclient-proc.o >/dev/null 2>&1
1278libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-invoke-service-proc.lo -MD -MP -MF .deps/libccnet_la-invoke-service-proc.Tpo -c invoke-service-proc.c -o libccnet_la-invoke-service-proc.o >/dev/null 2>&1
1279mv -f .deps/libccnet_la-mqclient-proc.Tpo .deps/libccnet_la-mqclient-proc.Plo
1280/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-marshal.lo -MD -MP -MF .deps/libccnet_la-marshal.Tpo -c -o libccnet_la-marshal.lo `test -f 'marshal.c' || echo './'`marshal.c
1281mv -f .deps/libccnet_la-invoke-service-proc.Tpo .deps/libccnet_la-invoke-service-proc.Plo
1282/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-mainloop.lo -MD -MP -MF .deps/libccnet_la-mainloop.Tpo -c -o libccnet_la-mainloop.lo `test -f 'mainloop.c' || echo './'`mainloop.c
1283libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-marshal.lo -MD -MP -MF .deps/libccnet_la-marshal.Tpo -c marshal.c -fPIC -DPIC -o .libs/libccnet_la-marshal.o
1284libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-mainloop.lo -MD -MP -MF .deps/libccnet_la-mainloop.Tpo -c mainloop.c -fPIC -DPIC -o .libs/libccnet_la-mainloop.o
1285libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-marshal.lo -MD -MP -MF .deps/libccnet_la-marshal.Tpo -c marshal.c -o libccnet_la-marshal.o >/dev/null 2>&1
1286libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-mainloop.lo -MD -MP -MF .deps/libccnet_la-mainloop.Tpo -c mainloop.c -o libccnet_la-mainloop.o >/dev/null 2>&1
1287mv -f .deps/libccnet_la-marshal.Tpo .deps/libccnet_la-marshal.Plo
1288/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-cevent.lo -MD -MP -MF .deps/libccnet_la-cevent.Tpo -c -o libccnet_la-cevent.lo `test -f 'cevent.c' || echo './'`cevent.c
1289libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-cevent.lo -MD -MP -MF .deps/libccnet_la-cevent.Tpo -c cevent.c -fPIC -DPIC -o .libs/libccnet_la-cevent.o
1290mv -f .deps/libccnet_la-mainloop.Tpo .deps/libccnet_la-mainloop.Plo
1291/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-timer.lo -MD -MP -MF .deps/libccnet_la-timer.Tpo -c -o libccnet_la-timer.lo `test -f 'timer.c' || echo './'`timer.c
1292libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-timer.lo -MD -MP -MF .deps/libccnet_la-timer.Tpo -c timer.c -fPIC -DPIC -o .libs/libccnet_la-timer.o
1293libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-cevent.lo -MD -MP -MF .deps/libccnet_la-cevent.Tpo -c cevent.c -o libccnet_la-cevent.o >/dev/null 2>&1
1294libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-timer.lo -MD -MP -MF .deps/libccnet_la-timer.Tpo -c timer.c -o libccnet_la-timer.o >/dev/null 2>&1
1295mv -f .deps/libccnet_la-cevent.Tpo .deps/libccnet_la-cevent.Plo
1296/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnet-session-base.lo -MD -MP -MF .deps/libccnet_la-ccnet-session-base.Tpo -c -o libccnet_la-ccnet-session-base.lo `test -f 'ccnet-session-base.c' || echo './'`ccnet-session-base.c
1297libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnet-session-base.lo -MD -MP -MF .deps/libccnet_la-ccnet-session-base.Tpo -c ccnet-session-base.c -fPIC -DPIC -o .libs/libccnet_la-ccnet-session-base.o
1298mv -f .deps/libccnet_la-timer.Tpo .deps/libccnet_la-timer.Plo
1299/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-job-mgr.lo -MD -MP -MF .deps/libccnet_la-job-mgr.Tpo -c -o libccnet_la-job-mgr.lo `test -f 'job-mgr.c' || echo './'`job-mgr.c
1300libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-job-mgr.lo -MD -MP -MF .deps/libccnet_la-job-mgr.Tpo -c job-mgr.c -fPIC -DPIC -o .libs/libccnet_la-job-mgr.o
1301libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnet-session-base.lo -MD -MP -MF .deps/libccnet_la-ccnet-session-base.Tpo -c ccnet-session-base.c -o libccnet_la-ccnet-session-base.o >/dev/null 2>&1
1302libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-job-mgr.lo -MD -MP -MF .deps/libccnet_la-job-mgr.Tpo -c job-mgr.c -o libccnet_la-job-mgr.o >/dev/null 2>&1
1303mv -f .deps/libccnet_la-ccnet-session-base.Tpo .deps/libccnet_la-ccnet-session-base.Plo
1304/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-rpcserver-proc.lo -MD -MP -MF .deps/libccnet_la-rpcserver-proc.Tpo -c -o libccnet_la-rpcserver-proc.lo `test -f 'rpcserver-proc.c' || echo './'`rpcserver-proc.c
1305libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-rpcserver-proc.lo -MD -MP -MF .deps/libccnet_la-rpcserver-proc.Tpo -c rpcserver-proc.c -fPIC -DPIC -o .libs/libccnet_la-rpcserver-proc.o
1306mv -f .deps/libccnet_la-job-mgr.Tpo .deps/libccnet_la-job-mgr.Plo
1307/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnetrpc-transport.lo -MD -MP -MF .deps/libccnet_la-ccnetrpc-transport.Tpo -c -o libccnet_la-ccnetrpc-transport.lo `test -f 'ccnetrpc-transport.c' || echo './'`ccnetrpc-transport.c
1308libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnetrpc-transport.lo -MD -MP -MF .deps/libccnet_la-ccnetrpc-transport.Tpo -c ccnetrpc-transport.c -fPIC -DPIC -o .libs/libccnet_la-ccnetrpc-transport.o
1309rpcserver-proc.c: In function ‘ccnet_rpcserver_proc_class_init’:
1310rpcserver-proc.c:43:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1311 g_type_class_add_private (klass, sizeof(CcnetRpcserverProcPriv));
1312 ^~~~~~~~~~~~~~~~~~~~~~~~
1313In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1314 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1315 from /usr/include/glib-2.0/glib-object.h:23,
1316 from libccnet_utils.h:15,
1317 from include.h:11,
1318 from rpcserver-proc.c:3:
1319/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1320 void g_type_class_add_private (gpointer g_class,
1321 ^~~~~~~~~~~~~~~~~~~~~~~~
1322libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-rpcserver-proc.lo -MD -MP -MF .deps/libccnet_la-rpcserver-proc.Tpo -c rpcserver-proc.c -o libccnet_la-rpcserver-proc.o >/dev/null 2>&1
1323libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnetrpc-transport.lo -MD -MP -MF .deps/libccnet_la-ccnetrpc-transport.Tpo -c ccnetrpc-transport.c -o libccnet_la-ccnetrpc-transport.o >/dev/null 2>&1
1324mv -f .deps/libccnet_la-rpcserver-proc.Tpo .deps/libccnet_la-rpcserver-proc.Plo
1325/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-threaded-rpcserver-proc.lo -MD -MP -MF .deps/libccnet_la-threaded-rpcserver-proc.Tpo -c -o libccnet_la-threaded-rpcserver-proc.lo `test -f 'threaded-rpcserver-proc.c' || echo './'`threaded-rpcserver-proc.c
1326libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-threaded-rpcserver-proc.lo -MD -MP -MF .deps/libccnet_la-threaded-rpcserver-proc.Tpo -c threaded-rpcserver-proc.c -fPIC -DPIC -o .libs/libccnet_la-threaded-rpcserver-proc.o
1327mv -f .deps/libccnet_la-ccnetrpc-transport.Tpo .deps/libccnet_la-ccnetrpc-transport.Plo
1328/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnetobj.lo -MD -MP -MF .deps/libccnet_la-ccnetobj.Tpo -c -o libccnet_la-ccnetobj.lo `test -f 'ccnetobj.c' || echo './'`ccnetobj.c
1329libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnetobj.lo -MD -MP -MF .deps/libccnet_la-ccnetobj.Tpo -c ccnetobj.c -fPIC -DPIC -o .libs/libccnet_la-ccnetobj.o
1330threaded-rpcserver-proc.c: In function ‘ccnet_threaded_rpcserver_proc_class_init’:
1331threaded-rpcserver-proc.c:52:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1332 g_type_class_add_private (klass, sizeof(CcnetThreadedRpcserverProcPriv));
1333 ^~~~~~~~~~~~~~~~~~~~~~~~
1334In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1335 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1336 from /usr/include/glib-2.0/glib-object.h:23,
1337 from libccnet_utils.h:15,
1338 from include.h:11,
1339 from threaded-rpcserver-proc.c:3:
1340/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1341 void g_type_class_add_private (gpointer g_class,
1342 ^~~~~~~~~~~~~~~~~~~~~~~~
1343libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-threaded-rpcserver-proc.lo -MD -MP -MF .deps/libccnet_la-threaded-rpcserver-proc.Tpo -c threaded-rpcserver-proc.c -o libccnet_la-threaded-rpcserver-proc.o >/dev/null 2>&1
1344mv -f .deps/libccnet_la-threaded-rpcserver-proc.Tpo .deps/libccnet_la-threaded-rpcserver-proc.Plo
1345/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-async-rpc-proc.lo -MD -MP -MF .deps/libccnet_la-async-rpc-proc.Tpo -c -o libccnet_la-async-rpc-proc.lo `test -f 'async-rpc-proc.c' || echo './'`async-rpc-proc.c
1346libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-async-rpc-proc.lo -MD -MP -MF .deps/libccnet_la-async-rpc-proc.Tpo -c async-rpc-proc.c -fPIC -DPIC -o .libs/libccnet_la-async-rpc-proc.o
1347async-rpc-proc.c: In function ‘ccnet_async_rpc_proc_class_init’:
1348async-rpc-proc.c:50:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1349 g_type_class_add_private (klass, sizeof(CcnetAsyncRpcProcPriv));
1350 ^~~~~~~~~~~~~~~~~~~~~~~~
1351In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1352 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1353 from /usr/include/glib-2.0/glib-object.h:23,
1354 from ../include/ccnet/peer.h:7,
1355 from ../include/ccnet.h:11,
1356 from async-rpc-proc.c:5:
1357/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1358 void g_type_class_add_private (gpointer g_class,
1359 ^~~~~~~~~~~~~~~~~~~~~~~~
1360libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-async-rpc-proc.lo -MD -MP -MF .deps/libccnet_la-async-rpc-proc.Tpo -c async-rpc-proc.c -o libccnet_la-async-rpc-proc.o >/dev/null 2>&1
1361libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnetobj.lo -MD -MP -MF .deps/libccnet_la-ccnetobj.Tpo -c ccnetobj.c -o libccnet_la-ccnetobj.o >/dev/null 2>&1
1362mv -f .deps/libccnet_la-async-rpc-proc.Tpo .deps/libccnet_la-async-rpc-proc.Plo
1363/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnet-rpc-wrapper.lo -MD -MP -MF .deps/libccnet_la-ccnet-rpc-wrapper.Tpo -c -o libccnet_la-ccnet-rpc-wrapper.lo `test -f 'ccnet-rpc-wrapper.c' || echo './'`ccnet-rpc-wrapper.c
1364libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnet-rpc-wrapper.lo -MD -MP -MF .deps/libccnet_la-ccnet-rpc-wrapper.Tpo -c ccnet-rpc-wrapper.c -fPIC -DPIC -o .libs/libccnet_la-ccnet-rpc-wrapper.o
1365libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-ccnet-rpc-wrapper.lo -MD -MP -MF .deps/libccnet_la-ccnet-rpc-wrapper.Tpo -c ccnet-rpc-wrapper.c -o libccnet_la-ccnet-rpc-wrapper.o >/dev/null 2>&1
1366mv -f .deps/libccnet_la-ccnet-rpc-wrapper.Tpo .deps/libccnet_la-ccnet-rpc-wrapper.Plo
1367/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-client-pool.lo -MD -MP -MF .deps/libccnet_la-client-pool.Tpo -c -o libccnet_la-client-pool.lo `test -f 'client-pool.c' || echo './'`client-pool.c
1368mv -f .deps/libccnet_la-ccnetobj.Tpo .deps/libccnet_la-ccnetobj.Plo
1369/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT utils.lo -MD -MP -MF .deps/utils.Tpo -c -o utils.lo utils.c
1370libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-client-pool.lo -MD -MP -MF .deps/libccnet_la-client-pool.Tpo -c client-pool.c -fPIC -DPIC -o .libs/libccnet_la-client-pool.o
1371libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT utils.lo -MD -MP -MF .deps/utils.Tpo -c utils.c -fPIC -DPIC -o .libs/utils.o
1372libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -DCCNET_LIB -pthread -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libccnet_la-client-pool.lo -MD -MP -MF .deps/libccnet_la-client-pool.Tpo -c client-pool.c -o libccnet_la-client-pool.o >/dev/null 2>&1
1373mv -f .deps/libccnet_la-client-pool.Tpo .deps/libccnet_la-client-pool.Plo
1374/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT db.lo -MD -MP -MF .deps/db.Tpo -c -o db.lo db.c
1375libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT db.lo -MD -MP -MF .deps/db.Tpo -c db.c -fPIC -DPIC -o .libs/db.o
1376utils.c: In function ‘ccnet_expand_path’:
1377utils.c:407:9: warning: ignoring return value of ‘getcwd’, declared with attribute warn_unused_result [-Wunused-result]
1378 getcwd (new_path, PATH_MAX);
1379 ^~~~~~~~~~~~~~~~~~~~~~~~~~~
1380libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT utils.lo -MD -MP -MF .deps/utils.Tpo -c utils.c -o utils.o >/dev/null 2>&1
1381libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT db.lo -MD -MP -MF .deps/db.Tpo -c db.c -o db.o >/dev/null 2>&1
1382mv -f .deps/db.Tpo .deps/db.Plo
1383/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT job-mgr.lo -MD -MP -MF .deps/job-mgr.Tpo -c -o job-mgr.lo job-mgr.c
1384libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT job-mgr.lo -MD -MP -MF .deps/job-mgr.Tpo -c job-mgr.c -fPIC -DPIC -o .libs/job-mgr.o
1385mv -f .deps/utils.Tpo .deps/utils.Plo
1386/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT rsa.lo -MD -MP -MF .deps/rsa.Tpo -c -o rsa.lo rsa.c
1387libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT job-mgr.lo -MD -MP -MF .deps/job-mgr.Tpo -c job-mgr.c -o job-mgr.o >/dev/null 2>&1
1388libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT rsa.lo -MD -MP -MF .deps/rsa.Tpo -c rsa.c -fPIC -DPIC -o .libs/rsa.o
1389mv -f .deps/job-mgr.Tpo .deps/job-mgr.Plo
1390/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT bloom-filter.lo -MD -MP -MF .deps/bloom-filter.Tpo -c -o bloom-filter.lo bloom-filter.c
1391libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT bloom-filter.lo -MD -MP -MF .deps/bloom-filter.Tpo -c bloom-filter.c -fPIC -DPIC -o .libs/bloom-filter.o
1392rsa.c: In function ‘generate_private_key’:
1393rsa.c:211:2: warning: ‘RSA_generate_key’ is deprecated [-Wdeprecated-declarations]
1394 private = RSA_generate_key(bits, 35, NULL, NULL);
1395 ^~~~~~~
1396In file included from /usr/include/openssl/e_os2.h:13,
1397 from /usr/include/openssl/pem.h:13,
1398 from rsa.c:3:
1399/usr/include/openssl/rsa.h:234:1: note: declared here
1400 DEPRECATEDIN_0_9_8(RSA *RSA_generate_key(int bits, unsigned long e, void
1401 ^~~~~~~~~~~~~~~~~~
1402libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT rsa.lo -MD -MP -MF .deps/rsa.Tpo -c rsa.c -o rsa.o >/dev/null 2>&1
1403libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT bloom-filter.lo -MD -MP -MF .deps/bloom-filter.Tpo -c bloom-filter.c -o bloom-filter.o >/dev/null 2>&1
1404mv -f .deps/bloom-filter.Tpo .deps/bloom-filter.Plo
1405/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT marshal.lo -MD -MP -MF .deps/marshal.Tpo -c -o marshal.lo marshal.c
1406mv -f .deps/rsa.Tpo .deps/rsa.Plo
1407/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT net.lo -MD -MP -MF .deps/net.Tpo -c -o net.lo net.c
1408libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT marshal.lo -MD -MP -MF .deps/marshal.Tpo -c marshal.c -fPIC -DPIC -o .libs/marshal.o
1409libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT net.lo -MD -MP -MF .deps/net.Tpo -c net.c -fPIC -DPIC -o .libs/net.o
1410libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT marshal.lo -MD -MP -MF .deps/marshal.Tpo -c marshal.c -o marshal.o >/dev/null 2>&1
1411libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT net.lo -MD -MP -MF .deps/net.Tpo -c net.c -o net.o >/dev/null 2>&1
1412mv -f .deps/marshal.Tpo .deps/marshal.Plo
1413/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT timer.lo -MD -MP -MF .deps/timer.Tpo -c -o timer.lo timer.c
1414libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT timer.lo -MD -MP -MF .deps/timer.Tpo -c timer.c -fPIC -DPIC -o .libs/timer.o
1415mv -f .deps/net.Tpo .deps/net.Plo
1416/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT ccnet-session-base.lo -MD -MP -MF .deps/ccnet-session-base.Tpo -c -o ccnet-session-base.lo ccnet-session-base.c
1417libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT ccnet-session-base.lo -MD -MP -MF .deps/ccnet-session-base.Tpo -c ccnet-session-base.c -fPIC -DPIC -o .libs/ccnet-session-base.o
1418libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT timer.lo -MD -MP -MF .deps/timer.Tpo -c timer.c -o timer.o >/dev/null 2>&1
1419libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT ccnet-session-base.lo -MD -MP -MF .deps/ccnet-session-base.Tpo -c ccnet-session-base.c -o ccnet-session-base.o >/dev/null 2>&1
1420mv -f .deps/timer.Tpo .deps/timer.Plo
1421/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT ccnetobj.lo -MD -MP -MF .deps/ccnetobj.Tpo -c -o ccnetobj.lo ccnetobj.c
1422libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT ccnetobj.lo -MD -MP -MF .deps/ccnetobj.Tpo -c ccnetobj.c -fPIC -DPIC -o .libs/ccnetobj.o
1423mv -f .deps/ccnet-session-base.Tpo .deps/ccnet-session-base.Plo
1424/bin/sh ../libtool --tag=CC --mode=link gcc -march=native -O3 -pipe -fstack-protector-strong -fno-plt -no-undefined -version-info 0:0:0 -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o libccnet.la -rpath /usr/lib libccnet_la-ccnet-client.lo libccnet_la-packet-io.lo libccnet_la-libccnet_utils.lo libccnet_la-message.lo libccnet_la-proc-factory.lo libccnet_la-processor.lo libccnet_la-buffer.lo libccnet_la-peer.lo libccnet_la-sendcmd-proc.lo libccnet_la-mqclient-proc.lo libccnet_la-invoke-service-proc.lo libccnet_la-marshal.lo libccnet_la-mainloop.lo libccnet_la-cevent.lo libccnet_la-timer.lo libccnet_la-ccnet-session-base.lo libccnet_la-job-mgr.lo libccnet_la-rpcserver-proc.lo libccnet_la-ccnetrpc-transport.lo libccnet_la-threaded-rpcserver-proc.lo libccnet_la-ccnetobj.lo libccnet_la-async-rpc-proc.lo libccnet_la-ccnet-rpc-wrapper.lo libccnet_la-client-pool.lo -lpthread -lglib-2.0 -lgobject-2.0 -lglib-2.0 -luuid -lsqlite3 -levent -lsearpc -lgio-2.0 -lgobject-2.0 -lglib-2.0 -ljansson
1425libtool: link: gcc -shared -fPIC -DPIC .libs/libccnet_la-ccnet-client.o .libs/libccnet_la-packet-io.o .libs/libccnet_la-libccnet_utils.o .libs/libccnet_la-message.o .libs/libccnet_la-proc-factory.o .libs/libccnet_la-processor.o .libs/libccnet_la-buffer.o .libs/libccnet_la-peer.o .libs/libccnet_la-sendcmd-proc.o .libs/libccnet_la-mqclient-proc.o .libs/libccnet_la-invoke-service-proc.o .libs/libccnet_la-marshal.o .libs/libccnet_la-mainloop.o .libs/libccnet_la-cevent.o .libs/libccnet_la-timer.o .libs/libccnet_la-ccnet-session-base.o .libs/libccnet_la-job-mgr.o .libs/libccnet_la-rpcserver-proc.o .libs/libccnet_la-ccnetrpc-transport.o .libs/libccnet_la-threaded-rpcserver-proc.o .libs/libccnet_la-ccnetobj.o .libs/libccnet_la-async-rpc-proc.o .libs/libccnet_la-ccnet-rpc-wrapper.o .libs/libccnet_la-client-pool.o -lpthread -luuid -lsqlite3 -levent -lsearpc -lgio-2.0 -lgobject-2.0 -lglib-2.0 -ljansson -march=native -O3 -fstack-protector-strong -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z -Wl,now -Wl,-soname -Wl,libccnet.so.0 -o .libs/libccnet.so.0.0.0
1426libtool: link: (cd ".libs" && rm -f "libccnet.so.0" && ln -s "libccnet.so.0.0.0" "libccnet.so.0")
1427libtool: link: (cd ".libs" && rm -f "libccnet.so" && ln -s "libccnet.so.0.0.0" "libccnet.so")
1428libtool: link: ar cr .libs/libccnet.a libccnet_la-ccnet-client.o libccnet_la-packet-io.o libccnet_la-libccnet_utils.o libccnet_la-message.o libccnet_la-proc-factory.o libccnet_la-processor.o libccnet_la-buffer.o libccnet_la-peer.o libccnet_la-sendcmd-proc.o libccnet_la-mqclient-proc.o libccnet_la-invoke-service-proc.o libccnet_la-marshal.o libccnet_la-mainloop.o libccnet_la-cevent.o libccnet_la-timer.o libccnet_la-ccnet-session-base.o libccnet_la-job-mgr.o libccnet_la-rpcserver-proc.o libccnet_la-ccnetrpc-transport.o libccnet_la-threaded-rpcserver-proc.o libccnet_la-ccnetobj.o libccnet_la-async-rpc-proc.o libccnet_la-ccnet-rpc-wrapper.o libccnet_la-client-pool.o
1429libtool: link: ranlib .libs/libccnet.a
1430libtool: link: ( cd ".libs" && rm -f "libccnet.la" && ln -s "../libccnet.la" "libccnet.la" )
1431libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../include/ccnet -I../lib -I../include -DG_LOG_DOMAIN=\"Ccnet\" -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT ccnetobj.lo -MD -MP -MF .deps/ccnetobj.Tpo -c ccnetobj.c -o ccnetobj.o >/dev/null 2>&1
1432mv -f .deps/ccnetobj.Tpo .deps/ccnetobj.Plo
1433/bin/sh ../libtool --tag=CC --mode=link gcc -march=native -O3 -pipe -fstack-protector-strong -fno-plt -no-undefined -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o libccnetd.la utils.lo db.lo job-mgr.lo rsa.lo bloom-filter.lo marshal.lo net.lo timer.lo ccnet-session-base.lo ccnetobj.lo -lglib-2.0 -lgobject-2.0 -lglib-2.0 -lssl -lcrypto -lsqlite3 -levent -luuid -lsearpc -lgio-2.0 -lgobject-2.0 -lglib-2.0 -ljansson
1434libtool: link: ar cr .libs/libccnetd.a .libs/utils.o .libs/db.o .libs/job-mgr.o .libs/rsa.o .libs/bloom-filter.o .libs/marshal.o .libs/net.o .libs/timer.o .libs/ccnet-session-base.o .libs/ccnetobj.o
1435libtool: link: ranlib .libs/libccnetd.a
1436libtool: link: ( cd ".libs" && rm -f "libccnetd.la" && ln -s "../libccnetd.la" "libccnetd.la" )
1437make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/lib'
1438make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/lib'
1439Making all in net
1440make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net'
1441Making all in common
1442make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common'
1443Making all in db-wrapper
1444make[4]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common/db-wrapper'
1445/bin/sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../.. -D_FORTIFY_SOURCE=2 -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT db-wrapper.lo -MD -MP -MF .deps/db-wrapper.Tpo -c -o db-wrapper.lo db-wrapper.c
1446/bin/sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../.. -D_FORTIFY_SOURCE=2 -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT sqlite-db-ops.lo -MD -MP -MF .deps/sqlite-db-ops.Tpo -c -o sqlite-db-ops.lo sqlite-db-ops.c
1447libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -D_FORTIFY_SOURCE=2 -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT db-wrapper.lo -MD -MP -MF .deps/db-wrapper.Tpo -c db-wrapper.c -fPIC -DPIC -o .libs/db-wrapper.o
1448libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -D_FORTIFY_SOURCE=2 -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT sqlite-db-ops.lo -MD -MP -MF .deps/sqlite-db-ops.Tpo -c sqlite-db-ops.c -fPIC -DPIC -o .libs/sqlite-db-ops.o
1449libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -D_FORTIFY_SOURCE=2 -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT db-wrapper.lo -MD -MP -MF .deps/db-wrapper.Tpo -c db-wrapper.c -o db-wrapper.o >/dev/null 2>&1
1450libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -D_FORTIFY_SOURCE=2 -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT sqlite-db-ops.lo -MD -MP -MF .deps/sqlite-db-ops.Tpo -c sqlite-db-ops.c -o sqlite-db-ops.o >/dev/null 2>&1
1451mv -f .deps/db-wrapper.Tpo .deps/db-wrapper.Plo
1452/bin/sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../.. -D_FORTIFY_SOURCE=2 -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT mysql-db-ops.lo -MD -MP -MF .deps/mysql-db-ops.Tpo -c -o mysql-db-ops.lo mysql-db-ops.c
1453libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -D_FORTIFY_SOURCE=2 -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT mysql-db-ops.lo -MD -MP -MF .deps/mysql-db-ops.Tpo -c mysql-db-ops.c -fPIC -DPIC -o .libs/mysql-db-ops.o
1454mv -f .deps/sqlite-db-ops.Tpo .deps/sqlite-db-ops.Plo
1455/bin/sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../.. -D_FORTIFY_SOURCE=2 -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT pgsql-db-ops.lo -MD -MP -MF .deps/pgsql-db-ops.Tpo -c -o pgsql-db-ops.lo pgsql-db-ops.c
1456libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -D_FORTIFY_SOURCE=2 -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT pgsql-db-ops.lo -MD -MP -MF .deps/pgsql-db-ops.Tpo -c pgsql-db-ops.c -fPIC -DPIC -o .libs/pgsql-db-ops.o
1457libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -D_FORTIFY_SOURCE=2 -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT mysql-db-ops.lo -MD -MP -MF .deps/mysql-db-ops.Tpo -c mysql-db-ops.c -o mysql-db-ops.o >/dev/null 2>&1
1458libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -D_FORTIFY_SOURCE=2 -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT pgsql-db-ops.lo -MD -MP -MF .deps/pgsql-db-ops.Tpo -c pgsql-db-ops.c -o pgsql-db-ops.o >/dev/null 2>&1
1459mv -f .deps/mysql-db-ops.Tpo .deps/mysql-db-ops.Plo
1460mv -f .deps/pgsql-db-ops.Tpo .deps/pgsql-db-ops.Plo
1461/bin/sh ../../../libtool --tag=CC --mode=link gcc -I../../../net/common -I../../../lib -I../../../include -I../../../include/ccnet -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/mysql -I/usr/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-z -Wl,defs -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o libdbwrapper.la db-wrapper.lo sqlite-db-ops.lo mysql-db-ops.lo pgsql-db-ops.lo -lssl -lcrypto -lglib-2.0 -L/usr/lib -lmysqlclient -lpthread -lz -lm -ldl -lssl -lcrypto -lsqlite3 -L/usr/lib -lpq
1462libtool: link: ar cr .libs/libdbwrapper.a .libs/db-wrapper.o .libs/sqlite-db-ops.o .libs/mysql-db-ops.o .libs/pgsql-db-ops.o
1463libtool: link: ranlib .libs/libdbwrapper.a
1464libtool: link: ( cd ".libs" && rm -f "libdbwrapper.la" && ln -s "../libdbwrapper.la" "libdbwrapper.la" )
1465make[4]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common/db-wrapper'
1466make[4]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common'
1467make[4]: Nothing to be done for 'all-am'.
1468make[4]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common'
1469make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common'
1470Making all in server
1471make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/server'
1472gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT ccnet-server.o -MD -MP -MF .deps/ccnet-server.Tpo -c -o ccnet-server.o ccnet-server.c
1473gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT server-session.o -MD -MP -MF .deps/server-session.Tpo -c -o server-session.o server-session.c
1474ccnet-server.c: In function ‘main’:
1475ccnet-server.c:259:9: warning: ignoring return value of ‘daemon’, declared with attribute warn_unused_result [-Wunused-result]
1476 daemon (1, 0);
1477 ^~~~~~~~~~~~~
1478mv -f .deps/ccnet-server.Tpo .deps/ccnet-server.Po
1479gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT user-mgr.o -MD -MP -MF .deps/user-mgr.Tpo -c -o user-mgr.o user-mgr.c
1480mv -f .deps/server-session.Tpo .deps/server-session.Po
1481gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT group-mgr.o -MD -MP -MF .deps/group-mgr.Tpo -c -o group-mgr.o group-mgr.c
1482group-mgr.c: In function ‘ccnet_group_manager_get_groups_by_user’:
1483group-mgr.c:802:27: warning: zero-length gnu_printf format string [-Wformat-zero-length]
1484 g_string_printf (sql, "");
1485 ^~
1486mv -f .deps/group-mgr.Tpo .deps/group-mgr.Po
1487gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT org-mgr.o -MD -MP -MF .deps/org-mgr.Tpo -c -o org-mgr.o org-mgr.c
1488user-mgr.c: In function ‘ccnet_user_manager_class_init’:
1489user-mgr.c:63:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1490 g_type_class_add_private (klass, sizeof (CcnetUserManagerPriv));
1491 ^~~~~~~~~~~~~~~~~~~~~~~~
1492In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1493 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1494 from /usr/include/glib-2.0/glib-object.h:23,
1495 from ../../lib/utils.h:11,
1496 from ../../net/common/common.h:28,
1497 from user-mgr.c:3:
1498/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1499 void g_type_class_add_private (gpointer g_class,
1500 ^~~~~~~~~~~~~~~~~~~~~~~~
1501user-mgr.c: In function ‘hash_password_pbkdf2_sha256’:
1502user-mgr.c:821:9: warning: ‘RAND_pseudo_bytes’ is deprecated [-Wdeprecated-declarations]
1503 RAND_pseudo_bytes (salt, sizeof(salt));
1504 ^~~~~~~~~~~~~~~~~
1505In file included from /usr/include/openssl/rsa.h:13,
1506 from ../../net/common/peer.h:9,
1507 from user-mgr.c:13:
1508/usr/include/openssl/rand.h:44:1: note: declared here
1509 DEPRECATEDIN_1_1_0(int RAND_pseudo_bytes(unsigned char *buf, int num))
1510 ^~~~~~~~~~~~~~~~~~
1511mv -f .deps/user-mgr.Tpo .deps/user-mgr.Po
1512gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT ccnet-db.o -MD -MP -MF .deps/ccnet-db.Tpo -c -o ccnet-db.o `test -f '../common/ccnet-db.c' || echo './'`../common/ccnet-db.c
1513mv -f .deps/org-mgr.Tpo .deps/org-mgr.Po
1514gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT session.o -MD -MP -MF .deps/session.Tpo -c -o session.o `test -f '../common/session.c' || echo './'`../common/session.c
1515mv -f .deps/ccnet-db.Tpo .deps/ccnet-db.Po
1516gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT peer-mgr.o -MD -MP -MF .deps/peer-mgr.Tpo -c -o peer-mgr.o `test -f '../common/peer-mgr.c' || echo './'`../common/peer-mgr.c
1517../common/session.c:410:13: warning: ‘listen_on_localhost’ defined but not used [-Wunused-function]
1518 static void listen_on_localhost (CcnetSession *session)
1519 ^~~~~~~~~~~~~~~~~~~
1520../common/session.c:374:20: warning: ‘net_status_string’ defined but not used [-Wunused-function]
1521 static const char *net_status_string (int status)
1522 ^~~~~~~~~~~~~~~~~
1523mv -f .deps/session.Tpo .deps/session.Po
1524gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT packet-io.o -MD -MP -MF .deps/packet-io.Tpo -c -o packet-io.o `test -f '../common/packet-io.c' || echo './'`../common/packet-io.c
1525../common/peer-mgr.c: In function ‘ccnet_peer_manager_class_init’:
1526../common/peer-mgr.c:95:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1527 g_type_class_add_private (klass, sizeof (CcnetPeerManagerPriv));
1528 ^~~~~~~~~~~~~~~~~~~~~~~~
1529In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1530 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1531 from /usr/include/glib-2.0/glib-object.h:23,
1532 from ../../lib/utils.h:11,
1533 from ../common/common.h:28,
1534 from ../common/peer-mgr.c:3:
1535/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1536 void g_type_class_add_private (gpointer g_class,
1537 ^~~~~~~~~~~~~~~~~~~~~~~~
1538At top level:
1539../common/peer-mgr.c:817:1: warning: ‘notify_peer_role’ defined but not used [-Wunused-function]
1540 notify_peer_role (CcnetPeerManager *manager, CcnetPeer *peer)
1541 ^~~~~~~~~~~~~~~~
1542mv -f .deps/peer-mgr.Tpo .deps/peer-mgr.Po
1543gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT message.o -MD -MP -MF .deps/message.Tpo -c -o message.o `test -f '../common/message.c' || echo './'`../common/message.c
1544mv -f .deps/packet-io.Tpo .deps/packet-io.Po
1545gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT perm-mgr.o -MD -MP -MF .deps/perm-mgr.Tpo -c -o perm-mgr.o `test -f '../common/perm-mgr.c' || echo './'`../common/perm-mgr.c
1546mv -f .deps/message.Tpo .deps/message.Po
1547gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT log.o -MD -MP -MF .deps/log.Tpo -c -o log.o `test -f '../common/log.c' || echo './'`../common/log.c
1548mv -f .deps/perm-mgr.Tpo .deps/perm-mgr.Po
1549gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT peer.o -MD -MP -MF .deps/peer.Tpo -c -o peer.o `test -f '../common/peer.c' || echo './'`../common/peer.c
1550mv -f .deps/log.Tpo .deps/log.Po
1551gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT algorithms.o -MD -MP -MF .deps/algorithms.Tpo -c -o algorithms.o `test -f '../common/algorithms.c' || echo './'`../common/algorithms.c
1552mv -f .deps/algorithms.Tpo .deps/algorithms.Po
1553gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT handshake.o -MD -MP -MF .deps/handshake.Tpo -c -o handshake.o `test -f '../common/handshake.c' || echo './'`../common/handshake.c
1554mv -f .deps/handshake.Tpo .deps/handshake.Po
1555gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT processor.o -MD -MP -MF .deps/processor.Tpo -c -o processor.o `test -f '../common/processor.c' || echo './'`../common/processor.c
1556mv -f .deps/peer.Tpo .deps/peer.Po
1557gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT getgateway.o -MD -MP -MF .deps/getgateway.Tpo -c -o getgateway.o `test -f '../common/getgateway.c' || echo './'`../common/getgateway.c
1558mv -f .deps/getgateway.Tpo .deps/getgateway.Po
1559gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT connect-mgr.o -MD -MP -MF .deps/connect-mgr.Tpo -c -o connect-mgr.o `test -f '../common/connect-mgr.c' || echo './'`../common/connect-mgr.c
1560mv -f .deps/processor.Tpo .deps/processor.Po
1561gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT message-manager.o -MD -MP -MF .deps/message-manager.Tpo -c -o message-manager.o `test -f '../common/message-manager.c' || echo './'`../common/message-manager.c
1562mv -f .deps/connect-mgr.Tpo .deps/connect-mgr.Po
1563gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT proc-factory.o -MD -MP -MF .deps/proc-factory.Tpo -c -o proc-factory.o `test -f '../common/proc-factory.c' || echo './'`../common/proc-factory.c
1564../common/message-manager.c: In function ‘ccnet_message_manager_class_init’:
1565../common/message-manager.c:39:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1566 g_type_class_add_private (class, sizeof (MessageManagerPriv));
1567 ^~~~~~~~~~~~~~~~~~~~~~~~
1568In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1569 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1570 from /usr/include/glib-2.0/glib-object.h:23,
1571 from ../../lib/utils.h:11,
1572 from ../common/common.h:28,
1573 from ../common/message-manager.c:3:
1574/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1575 void g_type_class_add_private (gpointer g_class,
1576 ^~~~~~~~~~~~~~~~~~~~~~~~
1577mv -f .deps/message-manager.Tpo .deps/message-manager.Po
1578gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT ccnet-config.o -MD -MP -MF .deps/ccnet-config.Tpo -c -o ccnet-config.o `test -f '../common/ccnet-config.c' || echo './'`../common/ccnet-config.c
1579mv -f .deps/ccnet-config.Tpo .deps/ccnet-config.Po
1580gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT rpc-service.o -MD -MP -MF .deps/rpc-service.Tpo -c -o rpc-service.o `test -f '../common/rpc-service.c' || echo './'`../common/rpc-service.c
1581../common/proc-factory.c: In function ‘ccnet_proc_factory_class_init’:
1582../common/proc-factory.c:55:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1583 g_type_class_add_private (klass, sizeof (CcnetProcFactoryPriv));
1584 ^~~~~~~~~~~~~~~~~~~~~~~~
1585In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1586 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1587 from /usr/include/glib-2.0/glib-object.h:23,
1588 from ../../lib/utils.h:11,
1589 from ../common/common.h:28,
1590 from ../common/proc-factory.c:3:
1591/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1592 void g_type_class_add_private (gpointer g_class,
1593 ^~~~~~~~~~~~~~~~~~~~~~~~
1594mv -f .deps/proc-factory.Tpo .deps/proc-factory.Po
1595gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT peermgr-message.o -MD -MP -MF .deps/peermgr-message.Tpo -c -o peermgr-message.o `test -f '../common/peermgr-message.c' || echo './'`../common/peermgr-message.c
1596mv -f .deps/peermgr-message.Tpo .deps/peermgr-message.Po
1597gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT sendmsg-proc.o -MD -MP -MF .deps/sendmsg-proc.Tpo -c -o sendmsg-proc.o `test -f '../common/processors/sendmsg-proc.c' || echo './'`../common/processors/sendmsg-proc.c
1598../common/processors/sendmsg-proc.c: In function ‘ccnet_sendmsg_proc_class_init’:
1599../common/processors/sendmsg-proc.c:57:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1600 g_type_class_add_private (klass, sizeof (CcnetSendmsgProcPriv));
1601 ^~~~~~~~~~~~~~~~~~~~~~~~
1602In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1603 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1604 from /usr/include/glib-2.0/glib-object.h:23,
1605 from ../../lib/utils.h:11,
1606 from ../../net/common/common.h:28,
1607 from ../common/processors/sendmsg-proc.c:3:
1608/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1609 void g_type_class_add_private (gpointer g_class,
1610 ^~~~~~~~~~~~~~~~~~~~~~~~
1611../common/processors/sendmsg-proc.c: In function ‘send_msg_start’:
1612../common/processors/sendmsg-proc.c:69:9: warning: variable ‘len’ set but not used [-Wunused-but-set-variable]
1613 int len;
1614 ^~~
1615mv -f .deps/sendmsg-proc.Tpo .deps/sendmsg-proc.Po
1616gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT rcvmsg-proc.o -MD -MP -MF .deps/rcvmsg-proc.Tpo -c -o rcvmsg-proc.o `test -f '../common/processors/rcvmsg-proc.c' || echo './'`../common/processors/rcvmsg-proc.c
1617mv -f .deps/rcvmsg-proc.Tpo .deps/rcvmsg-proc.Po
1618gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT rcvcmd-proc.o -MD -MP -MF .deps/rcvcmd-proc.Tpo -c -o rcvcmd-proc.o `test -f '../common/processors/rcvcmd-proc.c' || echo './'`../common/processors/rcvcmd-proc.c
1619mv -f .deps/rpc-service.Tpo .deps/rpc-service.Po
1620gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT putpubinfo-proc.o -MD -MP -MF .deps/putpubinfo-proc.Tpo -c -o putpubinfo-proc.o `test -f '../common/processors/putpubinfo-proc.c' || echo './'`../common/processors/putpubinfo-proc.c
1621../common/processors/rcvcmd-proc.c: In function ‘ccnet_rcvcmd_proc_class_init’:
1622../common/processors/rcvcmd-proc.c:88:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1623 g_type_class_add_private (klass, sizeof (CcnetRcvcmdProcPriv));
1624 ^~~~~~~~~~~~~~~~~~~~~~~~
1625In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1626 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1627 from /usr/include/glib-2.0/glib-object.h:23,
1628 from ../../lib/utils.h:11,
1629 from ../../net/common/common.h:28,
1630 from ../common/processors/rcvcmd-proc.c:3:
1631/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1632 void g_type_class_add_private (gpointer g_class,
1633 ^~~~~~~~~~~~~~~~~~~~~~~~
1634../common/processors/rcvcmd-proc.c: In function ‘add_peer’:
1635../common/processors/rcvcmd-proc.c:694:9: warning: ‘port’ may be used uninitialized in this function [-Wmaybe-uninitialized]
1636 ccnet_peer_manager_set_peer_public_addr (mgr, peer, addr, port);
1637 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1638../common/processors/rcvcmd-proc.c:694:9: warning: ‘addr’ may be used uninitialized in this function [-Wmaybe-uninitialized]
1639mv -f .deps/rcvcmd-proc.Tpo .deps/rcvcmd-proc.Po
1640gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT getpubinfo-proc.o -MD -MP -MF .deps/getpubinfo-proc.Tpo -c -o getpubinfo-proc.o `test -f '../common/processors/getpubinfo-proc.c' || echo './'`../common/processors/getpubinfo-proc.c
1641mv -f .deps/putpubinfo-proc.Tpo .deps/putpubinfo-proc.Po
1642gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT keepalive2-proc.o -MD -MP -MF .deps/keepalive2-proc.Tpo -c -o keepalive2-proc.o `test -f '../common/processors/keepalive2-proc.c' || echo './'`../common/processors/keepalive2-proc.c
1643mv -f .deps/getpubinfo-proc.Tpo .deps/getpubinfo-proc.Po
1644gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT mqserver-proc.o -MD -MP -MF .deps/mqserver-proc.Tpo -c -o mqserver-proc.o `test -f '../common/processors/mqserver-proc.c' || echo './'`../common/processors/mqserver-proc.c
1645../common/processors/mqserver-proc.c: In function ‘ccnet_mqserver_proc_class_init’:
1646../common/processors/mqserver-proc.c:89:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1647 g_type_class_add_private (klass, sizeof (MqserverProcPriv));
1648 ^~~~~~~~~~~~~~~~~~~~~~~~
1649In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1650 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1651 from /usr/include/glib-2.0/glib-object.h:23,
1652 from ../../lib/utils.h:11,
1653 from ../../net/common/common.h:28,
1654 from ../common/processors/mqserver-proc.c:3:
1655/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1656 void g_type_class_add_private (gpointer g_class,
1657 ^~~~~~~~~~~~~~~~~~~~~~~~
1658mv -f .deps/mqserver-proc.Tpo .deps/mqserver-proc.Po
1659gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT service-proxy-proc.o -MD -MP -MF .deps/service-proxy-proc.Tpo -c -o service-proxy-proc.o `test -f '../common/processors/service-proxy-proc.c' || echo './'`../common/processors/service-proxy-proc.c
1660../common/processors/keepalive2-proc.c: In function ‘ccnet_keepalive2_proc_class_init’:
1661../common/processors/keepalive2-proc.c:147:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1662 g_type_class_add_private (klass, sizeof(CcnetKeepalive2ProcPriv));
1663 ^~~~~~~~~~~~~~~~~~~~~~~~
1664In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1665 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1666 from /usr/include/glib-2.0/glib-object.h:23,
1667 from ../../lib/utils.h:11,
1668 from ../../net/common/common.h:28,
1669 from ../common/processors/keepalive2-proc.c:3:
1670/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1671 void g_type_class_add_private (gpointer g_class,
1672 ^~~~~~~~~~~~~~~~~~~~~~~~
1673../common/processors/keepalive2-proc.c: In function ‘send_challenge’:
1674../common/processors/keepalive2-proc.c:309:5: warning: ‘RAND_pseudo_bytes’ is deprecated [-Wdeprecated-declarations]
1675 RAND_pseudo_bytes (priv->random_buf, 40);
1676 ^~~~~~~~~~~~~~~~~
1677In file included from /usr/include/openssl/e_os2.h:13,
1678 from /usr/include/openssl/ossl_typ.h:19,
1679 from /usr/include/openssl/rand.h:14,
1680 from ../common/processors/keepalive2-proc.c:7:
1681/usr/include/openssl/rand.h:44:1: note: declared here
1682 DEPRECATEDIN_1_1_0(int RAND_pseudo_bytes(unsigned char *buf, int num))
1683 ^~~~~~~~~~~~~~~~~~
1684mv -f .deps/keepalive2-proc.Tpo .deps/keepalive2-proc.Po
1685gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT service-stub-proc.o -MD -MP -MF .deps/service-stub-proc.Tpo -c -o service-stub-proc.o `test -f '../common/processors/service-stub-proc.c' || echo './'`../common/processors/service-stub-proc.c
1686../common/processors/service-stub-proc.c: In function ‘ccnet_service_stub_proc_class_init’:
1687../common/processors/service-stub-proc.c:43:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1688 g_type_class_add_private (klass, sizeof (ServiceStubPriv));
1689 ^~~~~~~~~~~~~~~~~~~~~~~~
1690In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1691 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1692 from /usr/include/glib-2.0/glib-object.h:23,
1693 from ../../lib/utils.h:11,
1694 from ../../net/common/common.h:28,
1695 from ../common/processors/service-stub-proc.c:3:
1696/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1697 void g_type_class_add_private (gpointer g_class,
1698 ^~~~~~~~~~~~~~~~~~~~~~~~
1699mv -f .deps/service-stub-proc.Tpo .deps/service-stub-proc.Po
1700gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT rpcserver-proc.o -MD -MP -MF .deps/rpcserver-proc.Tpo -c -o rpcserver-proc.o `test -f '../common/processors/rpcserver-proc.c' || echo './'`../common/processors/rpcserver-proc.c
1701../common/processors/service-proxy-proc.c: In function ‘ccnet_service_proxy_proc_class_init’:
1702../common/processors/service-proxy-proc.c:66:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1703 g_type_class_add_private (klass, sizeof (ServiceProxyPriv));
1704 ^~~~~~~~~~~~~~~~~~~~~~~~
1705In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1706 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1707 from /usr/include/glib-2.0/glib-object.h:23,
1708 from ../../lib/utils.h:11,
1709 from ../../net/common/common.h:28,
1710 from ../common/processors/service-proxy-proc.c:3:
1711/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1712 void g_type_class_add_private (gpointer g_class,
1713 ^~~~~~~~~~~~~~~~~~~~~~~~
1714mv -f .deps/service-proxy-proc.Tpo .deps/service-proxy-proc.Po
1715gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT threaded-rpcserver-proc.o -MD -MP -MF .deps/threaded-rpcserver-proc.Tpo -c -o threaded-rpcserver-proc.o `test -f '../common/processors/threaded-rpcserver-proc.c' || echo './'`../common/processors/threaded-rpcserver-proc.c
1716../common/processors/rpcserver-proc.c: In function ‘ccnet_rpcserver_proc_class_init’:
1717../common/processors/rpcserver-proc.c:54:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1718 g_type_class_add_private (klass, sizeof(CcnetRpcserverProcPriv));
1719 ^~~~~~~~~~~~~~~~~~~~~~~~
1720In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1721 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1722 from /usr/include/glib-2.0/glib-object.h:23,
1723 from ../../lib/utils.h:11,
1724 from ../../net/common/common.h:28,
1725 from ../common/processors/rpcserver-proc.c:3:
1726/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1727 void g_type_class_add_private (gpointer g_class,
1728 ^~~~~~~~~~~~~~~~~~~~~~~~
1729mv -f .deps/rpcserver-proc.Tpo .deps/rpcserver-proc.Po
1730gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT echo-proc.o -MD -MP -MF .deps/echo-proc.Tpo -c -o echo-proc.o `test -f '../common/processors/echo-proc.c' || echo './'`../common/processors/echo-proc.c
1731../common/processors/threaded-rpcserver-proc.c: In function ‘ccnet_threaded_rpcserver_proc_class_init’:
1732../common/processors/threaded-rpcserver-proc.c:51:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1733 g_type_class_add_private (klass, sizeof(CcnetThreadedRpcserverProcPriv));
1734 ^~~~~~~~~~~~~~~~~~~~~~~~
1735In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1736 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1737 from /usr/include/glib-2.0/glib-object.h:23,
1738 from ../../lib/libccnet_utils.h:15,
1739 from ../../lib/include.h:11,
1740 from ../common/processors/threaded-rpcserver-proc.c:3:
1741/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1742 void g_type_class_add_private (gpointer g_class,
1743 ^~~~~~~~~~~~~~~~~~~~~~~~
1744mv -f .deps/threaded-rpcserver-proc.Tpo .deps/threaded-rpcserver-proc.Po
1745gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT sendsessionkey-proc.o -MD -MP -MF .deps/sendsessionkey-proc.Tpo -c -o sendsessionkey-proc.o `test -f '../common/processors/sendsessionkey-proc.c' || echo './'`../common/processors/sendsessionkey-proc.c
1746mv -f .deps/echo-proc.Tpo .deps/echo-proc.Po
1747gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT recvsessionkey-proc.o -MD -MP -MF .deps/recvsessionkey-proc.Tpo -c -o recvsessionkey-proc.o `test -f '../common/processors/recvsessionkey-proc.c' || echo './'`../common/processors/recvsessionkey-proc.c
1748../common/processors/sendsessionkey-proc.c: In function ‘ccnet_sendsessionkey_proc_class_init’:
1749../common/processors/sendsessionkey-proc.c:84:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1750 g_type_class_add_private (klass, sizeof (CcnetSendsessionkeyProcPriv));
1751 ^~~~~~~~~~~~~~~~~~~~~~~~
1752In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1753 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1754 from /usr/include/glib-2.0/glib-object.h:23,
1755 from ../../include/ccnet/ccnet-session-base.h:6,
1756 from ../../net/common/session.h:18,
1757 from ../common/processors/sendsessionkey-proc.c:25:
1758/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1759 void g_type_class_add_private (gpointer g_class,
1760 ^~~~~~~~~~~~~~~~~~~~~~~~
1761../common/processors/sendsessionkey-proc.c: In function ‘generate_session_key’:
1762../common/processors/sendsessionkey-proc.c:127:5: warning: ‘RAND_pseudo_bytes’ is deprecated [-Wdeprecated-declarations]
1763 RAND_pseudo_bytes (random_buf, sizeof(random_buf));
1764 ^~~~~~~~~~~~~~~~~
1765In file included from /usr/include/openssl/e_os2.h:13,
1766 from /usr/include/openssl/sha.h:13,
1767 from ../common/processors/sendsessionkey-proc.c:22:
1768/usr/include/openssl/rand.h:44:1: note: declared here
1769 DEPRECATEDIN_1_1_0(int RAND_pseudo_bytes(unsigned char *buf, int num))
1770 ^~~~~~~~~~~~~~~~~~
1771mv -f .deps/sendsessionkey-proc.Tpo .deps/sendsessionkey-proc.Po
1772gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT sendsessionkey-v2-proc.o -MD -MP -MF .deps/sendsessionkey-v2-proc.Tpo -c -o sendsessionkey-v2-proc.o `test -f '../common/processors/sendsessionkey-v2-proc.c' || echo './'`../common/processors/sendsessionkey-v2-proc.c
1773mv -f .deps/recvsessionkey-proc.Tpo .deps/recvsessionkey-proc.Po
1774gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -DCCNET_SERVER -I../../net/common -I../../include -I../../include/ccnet -I../../lib -I../../include -I../../lib -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT recvsessionkey-v2-proc.o -MD -MP -MF .deps/recvsessionkey-v2-proc.Tpo -c -o recvsessionkey-v2-proc.o `test -f '../common/processors/recvsessionkey-v2-proc.c' || echo './'`../common/processors/recvsessionkey-v2-proc.c
1775../common/processors/sendsessionkey-v2-proc.c: In function ‘ccnet_sendskey2_proc_class_init’:
1776../common/processors/sendsessionkey-v2-proc.c:86:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1777 g_type_class_add_private (klass, sizeof (CcnetSendskey2ProcPriv));
1778 ^~~~~~~~~~~~~~~~~~~~~~~~
1779In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1780 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1781 from /usr/include/glib-2.0/glib-object.h:23,
1782 from ../../include/ccnet/ccnet-session-base.h:6,
1783 from ../../net/common/session.h:18,
1784 from ../common/processors/sendsessionkey-v2-proc.c:24:
1785/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1786 void g_type_class_add_private (gpointer g_class,
1787 ^~~~~~~~~~~~~~~~~~~~~~~~
1788../common/processors/sendsessionkey-v2-proc.c: In function ‘generate_session_key’:
1789../common/processors/sendsessionkey-v2-proc.c:128:5: warning: ‘RAND_pseudo_bytes’ is deprecated [-Wdeprecated-declarations]
1790 RAND_pseudo_bytes (random_buf, sizeof(random_buf));
1791 ^~~~~~~~~~~~~~~~~
1792In file included from /usr/include/openssl/e_os2.h:13,
1793 from /usr/include/openssl/sha.h:13,
1794 from ../common/processors/sendsessionkey-v2-proc.c:21:
1795/usr/include/openssl/rand.h:44:1: note: declared here
1796 DEPRECATEDIN_1_1_0(int RAND_pseudo_bytes(unsigned char *buf, int num))
1797 ^~~~~~~~~~~~~~~~~~
1798mv -f .deps/sendsessionkey-v2-proc.Tpo .deps/sendsessionkey-v2-proc.Po
1799../common/processors/recvsessionkey-v2-proc.c: In function ‘ccnet_recvskey2_proc_class_init’:
1800../common/processors/recvsessionkey-v2-proc.c:62:5: warning: ‘g_type_class_add_private’ is deprecated [-Wdeprecated-declarations]
1801 g_type_class_add_private (klass, sizeof (CcnetRecvskey2ProcPriv));
1802 ^~~~~~~~~~~~~~~~~~~~~~~~
1803In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
1804 from /usr/include/glib-2.0/gobject/gbinding.h:29,
1805 from /usr/include/glib-2.0/glib-object.h:23,
1806 from ../../include/ccnet/ccnet-session-base.h:6,
1807 from ../../net/common/session.h:18,
1808 from ../common/processors/recvsessionkey-v2-proc.c:3:
1809/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
1810 void g_type_class_add_private (gpointer g_class,
1811 ^~~~~~~~~~~~~~~~~~~~~~~~
1812mv -f .deps/recvsessionkey-v2-proc.Tpo .deps/recvsessionkey-v2-proc.Po
1813/bin/sh ../../libtool --tag=CC --mode=link gcc -march=native -O3 -pipe -fstack-protector-strong -fno-plt -no-undefined -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o ccnet-server ccnet-server.o server-session.o user-mgr.o group-mgr.o org-mgr.o ccnet-db.o session.o peer-mgr.o packet-io.o message.o perm-mgr.o log.o peer.o algorithms.o handshake.o processor.o getgateway.o connect-mgr.o message-manager.o proc-factory.o ccnet-config.o rpc-service.o peermgr-message.o sendmsg-proc.o rcvmsg-proc.o rcvcmd-proc.o putpubinfo-proc.o getpubinfo-proc.o keepalive2-proc.o mqserver-proc.o service-proxy-proc.o service-stub-proc.o rpcserver-proc.o threaded-rpcserver-proc.o echo-proc.o sendsessionkey-proc.o recvsessionkey-proc.o sendsessionkey-v2-proc.o recvsessionkey-v2-proc.o -levent ../../lib/libccnetd.la ../../net/common/db-wrapper/libdbwrapper.la -lglib-2.0 -lgobject-2.0 -lglib-2.0 -lssl -lcrypto -luuid -lsqlite3 -lpthread -lsearpc -lgio-2.0 -lgobject-2.0 -lglib-2.0 -ljansson -lldap -llber -L/usr/lib -lmysqlclient -lpthread -lz -lm -ldl -lssl -lcrypto -L/usr/lib -lpq
1814libtool: link: gcc -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z -Wl,now -o ccnet-server ccnet-server.o server-session.o user-mgr.o group-mgr.o org-mgr.o ccnet-db.o session.o peer-mgr.o packet-io.o message.o perm-mgr.o log.o peer.o algorithms.o handshake.o processor.o getgateway.o connect-mgr.o message-manager.o proc-factory.o ccnet-config.o rpc-service.o peermgr-message.o sendmsg-proc.o rcvmsg-proc.o rcvcmd-proc.o putpubinfo-proc.o getpubinfo-proc.o keepalive2-proc.o mqserver-proc.o service-proxy-proc.o service-stub-proc.o rpcserver-proc.o threaded-rpcserver-proc.o echo-proc.o sendsessionkey-proc.o recvsessionkey-proc.o sendsessionkey-v2-proc.o recvsessionkey-v2-proc.o ../../lib/.libs/libccnetd.a -levent ../../net/common/db-wrapper/.libs/libdbwrapper.a -L/usr/lib -luuid -lsqlite3 -lsearpc -lgio-2.0 -lgobject-2.0 -lglib-2.0 -ljansson -lldap -llber -lmysqlclient -lpthread -lz -lm -ldl -lssl -lcrypto -lpq
1815make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/server'
1816make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net'
1817make[3]: Nothing to be done for 'all-am'.
1818make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net'
1819make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net'
1820Making all in tools
1821make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/tools'
1822gcc -DHAVE_CONFIG_H -I. -I.. -I../include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../lib -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT ccnet-init.o -MD -MP -MF .deps/ccnet-init.Tpo -c -o ccnet-init.o ccnet-init.c
1823mv -f .deps/ccnet-init.Tpo .deps/ccnet-init.Po
1824/bin/sh ../libtool --tag=CC --mode=link gcc -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o ccnet-init ccnet-init.o -lssl -lcrypto -lresolv -lglib-2.0 ../lib/libccnetd.la
1825libtool: link: gcc -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z -Wl,now -o ccnet-init ccnet-init.o -lresolv ../lib/.libs/libccnetd.a -lssl -lcrypto -lsqlite3 -levent -luuid -lsearpc -lgio-2.0 -lgobject-2.0 -lglib-2.0 -ljansson
1826make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/tools'
1827Making all in python
1828make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python'
1829Making all in ccnet
1830make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python/ccnet'
1831make[3]: Nothing to be done for 'all'.
1832make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python/ccnet'
1833make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python'
1834make[3]: Nothing to be done for 'all-am'.
1835make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python'
1836make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python'
1837make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server'
1838make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server'
1839make[1]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server'
1840==> Entering fakeroot environment...
1841==> Starting package()...
1842Making install in include
1843make[1]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include'
1844Making install in ccnet
1845make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include/ccnet'
1846make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include/ccnet'
1847make[3]: Nothing to be done for 'install-exec-am'.
1848 /usr/bin/mkdir -p '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/include/ccnet'
1849 /usr/bin/install -c -m 644 ccnet-client.h peer.h proc-factory.h message.h option.h processor.h sendcmd-proc.h mqclient-proc.h invoke-service-proc.h status-code.h cevent.h timer.h ccnet-session-base.h valid-check.h job-mgr.h packet.h async-rpc-proc.h ccnetrpc-transport.h rpcserver-proc.h threaded-rpcserver-proc.h '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/include/ccnet'
1850make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include/ccnet'
1851make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include/ccnet'
1852make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include'
1853make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include'
1854make[3]: Nothing to be done for 'install-exec-am'.
1855 /usr/bin/mkdir -p '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/include'
1856 /usr/bin/install -c -m 644 ccnet.h '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/include'
1857make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include'
1858make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include'
1859make[1]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/include'
1860Making install in lib
1861make[1]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/lib'
1862make install-am
1863make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/lib'
1864make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/lib'
1865 /usr/bin/mkdir -p '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/include/ccnet'
1866 /usr/bin/mkdir -p '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib'
1867 /bin/sh ../libtool --mode=install /usr/bin/install -c libccnet.la '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib'
1868 /usr/bin/install -c -m 644 ccnet-object.h '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/include/ccnet'
1869libtool: install: /usr/bin/install -c .libs/libccnet.so.0.0.0 /tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib/libccnet.so.0.0.0
1870libtool: install: (cd /tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib && { ln -s -f libccnet.so.0.0.0 libccnet.so.0 || { rm -f libccnet.so.0 && ln -s libccnet.so.0.0.0 libccnet.so.0; }; })
1871libtool: install: (cd /tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib && { ln -s -f libccnet.so.0.0.0 libccnet.so || { rm -f libccnet.so && ln -s libccnet.so.0.0.0 libccnet.so; }; })
1872libtool: install: /usr/bin/install -c .libs/libccnet.lai /tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib/libccnet.la
1873libtool: install: /usr/bin/install -c .libs/libccnet.a /tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib/libccnet.a
1874libtool: install: chmod 644 /tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib/libccnet.a
1875libtool: install: ranlib /tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib/libccnet.a
1876libtool: warning: remember to run 'libtool --finish /usr/lib'
1877make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/lib'
1878make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/lib'
1879make[1]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/lib'
1880Making install in net
1881make[1]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net'
1882Making install in common
1883make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common'
1884Making install in db-wrapper
1885make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common/db-wrapper'
1886make[4]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common/db-wrapper'
1887make[4]: Nothing to be done for 'install-exec-am'.
1888make[4]: Nothing to be done for 'install-data-am'.
1889make[4]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common/db-wrapper'
1890make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common/db-wrapper'
1891make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common'
1892make[4]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common'
1893make[4]: Nothing to be done for 'install-exec-am'.
1894make[4]: Nothing to be done for 'install-data-am'.
1895make[4]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common'
1896make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common'
1897make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/common'
1898Making install in server
1899make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/server'
1900make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/server'
1901make[3]: Nothing to be done for 'install-data-am'.
1902 /usr/bin/mkdir -p '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/bin'
1903 /bin/sh ../../libtool --mode=install /usr/bin/install -c ccnet-server '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/bin'
1904libtool: install: /usr/bin/install -c ccnet-server /tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/bin/ccnet-server
1905make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/server'
1906make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net/server'
1907make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net'
1908make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net'
1909make[3]: Nothing to be done for 'install-exec-am'.
1910make[3]: Nothing to be done for 'install-data-am'.
1911make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net'
1912make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net'
1913make[1]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/net'
1914Making install in tools
1915make[1]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/tools'
1916make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/tools'
1917make[2]: Nothing to be done for 'install-data-am'.
1918 /usr/bin/mkdir -p '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/bin'
1919 /bin/sh ../libtool --mode=install /usr/bin/install -c ccnet-init '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/bin'
1920libtool: install: /usr/bin/install -c ccnet-init /tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/bin/ccnet-init
1921make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/tools'
1922make[1]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/tools'
1923Making install in python
1924make[1]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python'
1925Making install in ccnet
1926make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python/ccnet'
1927make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python/ccnet'
1928make[3]: Nothing to be done for 'install-exec-am'.
1929 /usr/bin/mkdir -p '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib/python2.7/site-packages/ccnet'
1930 /usr/bin/mkdir -p '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib/python2.7/site-packages/ccnet/async'
1931 /usr/bin/install -c -m 644 async/__init__.py async/async_client.py async/processor.py async/rpcserverproc.py async/sendcmdproc.py async/mqclientproc.py async/timer.py '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib/python2.7/site-packages/ccnet/async'
1932 /usr/bin/install -c -m 644 __init__.py errors.py status_code.py utils.py packet.py message.py client.py sync_client.py pool.py rpc.py '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib/python2.7/site-packages/ccnet'
1933Byte-compiling python modules...
1934__init__.pyasync_client.pyprocessor.pyrpcserverproc.pysendcmdproc.pymqclientproc.pytimer.py
1935Byte-compiling python modules...
1936__init__.pyerrors.pystatus_code.pyutils.pypacket.pymessage.pyclient.pysync_client.pypool.pyrpc.py
1937Byte-compiling python modules (optimized versions) ...
1938__init__.pyasync_client.pyprocessor.pyrpcserverproc.pysendcmdproc.pymqclientproc.pytimer.py
1939Byte-compiling python modules (optimized versions) ...
1940__init__.pyerrors.pystatus_code.pyutils.pypacket.pymessage.pyclient.pysync_client.pypool.pyrpc.py
1941make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python/ccnet'
1942make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python/ccnet'
1943make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python'
1944make[3]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python'
1945make[3]: Nothing to be done for 'install-exec-am'.
1946make[3]: Nothing to be done for 'install-data-am'.
1947make[3]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python'
1948make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python'
1949make[1]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server/python'
1950make[1]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server'
1951make[2]: Entering directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server'
1952make[2]: Nothing to be done for 'install-exec-am'.
1953/usr/bin/sed -i "s|(DESTDIR)|/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server|g" libccnet.pc
1954 /usr/bin/mkdir -p '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib/pkgconfig'
1955 /usr/bin/install -c -m 644 libccnet.pc '/tmp/trizen-trizen/ccnet-server/pkg/ccnet-server/usr/lib/pkgconfig'
1956make[2]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server'
1957make[1]: Leaving directory '/tmp/trizen-trizen/ccnet-server/src/ccnet-server-6.3.4-server'
1958==> Tidying install...
1959 -> Removing empty directories...
1960 -> Removing libtool files...
1961 -> Purging unwanted files...
1962 -> Removing static library files...
1963 -> Stripping unneeded symbols from binaries and libraries...
1964 -> Compressing man and info pages...
1965==> Checking for packaging issues...
1966==> Creating package "ccnet-server"...
1967 -> Generating .PKGINFO file...
1968 -> Generating .BUILDINFO file...
1969 -> Generating .MTREE file...
1970 -> Compressing package...
1971==> Leaving fakeroot environment.
1972==> Finished making: ccnet-server 6.3.4-1 (Mon 01 Oct 2018 07:00:36 PM EEST)
1973==> Cleaning up...
1974loading packages...
1975resolving dependencies...
1976looking for conflicting packages...
1977
1978Packages (1) ccnet-server-6.3.4-1
1979
1980Total Installed Size: 0.69 MiB
1981
1982:: Proceed with installation? [Y/n]
1983(1/1) checking keys in keyring [########################################################################################] 100%
1984(1/1) checking package integrity [########################################################################################] 100%
1985(1/1) loading package files [########################################################################################] 100%
1986(1/1) checking for file conflicts [########################################################################################] 100%
1987(1/1) checking available disk space [########################################################################################] 100%
1988:: Processing package changes...
1989(1/1) installing ccnet-server [########################################################################################] 100%
1990:: Running post-transaction hooks...
1991(1/1) Arming ConditionNeedsUpdate...
1992==> Making package: seafile 6.2.5-1 (Mon 01 Oct 2018 07:00:38 PM EEST)
1993==> Checking runtime dependencies...
1994==> Checking buildtime dependencies...
1995==> Installing missing dependencies...
1996resolving dependencies...
1997looking for conflicting packages...
1998
1999Packages (2) perl-xml-parser-2.44-7 intltool-0.51.0-3
2000
2001Total Download Size: 0.18 MiB
2002Total Installed Size: 0.58 MiB
2003
2004:: Proceed with installation? [Y/n]
2005:: Retrieving packages...
2006 perl-xml-parser-2.44-7-x86_64 145.6 KiB 2.03M/s 00:00 [########################################################################################] 78%
2007 intltool-0.51.0-3-any 186.2 KiB 1740K/s 00:00 [########################################################################################] 100%
2008(2/2) checking keys in keyring [########################################################################################] 100%
2009(2/2) checking package integrity [########################################################################################] 100%
2010(2/2) loading package files [########################################################################################] 100%
2011(2/2) checking for file conflicts [########################################################################################] 100%
2012(2/2) checking available disk space [########################################################################################] 100%
2013:: Processing package changes...
2014(1/2) installing perl-xml-parser [########################################################################################] 100%
2015(2/2) installing intltool [########################################################################################] 100%
2016:: Running post-transaction hooks...
2017(1/2) Warn about old perl modules
2018(2/2) Arming ConditionNeedsUpdate...
2019==> Retrieving sources...
2020 -> Downloading seafile-6.2.5.tar.gz...
2021 % Total % Received % Xferd Average Speed Time Time Time Current
2022 Dload Upload Total Spent Left Speed
2023100 122 0 122 0 0 159 0 --:--:-- --:--:-- --:--:-- 159
2024100 686k 0 686k 0 0 260k 0 --:--:-- 0:00:02 --:--:-- 895k
2025 -> Found libseafile.in.patch
2026 -> Found seaf-cli@.service
2027==> Validating source files with sha256sums...
2028 seafile-6.2.5.tar.gz ... Passed
2029 libseafile.in.patch ... Passed
2030 seaf-cli@.service ... Passed
2031==> Extracting sources...
2032 -> Extracting seafile-6.2.5.tar.gz with bsdtar
2033==> Starting prepare()...
2034patching file lib/libseafile.pc.in
2035==> Starting build()...
2036processing .
2037Creating ./aclocal.m4 ...
2038Running glib-gettextize... Ignore non-fatal messages.
2039Creating po/ subdirectory
2040Copying file po/Makefile.in.in
2041
2042Please add the files
2043 codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
2044 progtest.m4
2045from the /usr/share/aclocal directory to your autoconf macro directory
2046or directly to your aclocal.m4 file.
2047You will also need config.guess and config.sub, which you can get from
2048ftp://ftp.gnu.org/pub/gnu/config/.
2049
2050Making ./aclocal.m4 writable ...
2051Running intltoolize...
2052Running libtoolize...
2053libtoolize: putting auxiliary files in '.'.
2054libtoolize: copying file './ltmain.sh'
2055libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
2056libtoolize: copying file 'm4/libtool.m4'
2057libtoolize: copying file 'm4/ltoptions.m4'
2058libtoolize: copying file 'm4/ltsugar.m4'
2059libtoolize: copying file 'm4/ltversion.m4'
2060libtoolize: copying file 'm4/lt~obsolete.m4'
2061Running aclocal -I m4 ...
2062Running autoheader...
2063Running automake --gnu ...
2064configure.ac:21: installing './compile'
2065configure.ac:13: installing './config.guess'
2066configure.ac:13: installing './config.sub'
2067configure.ac:10: installing './install-sh'
2068configure.ac:10: installing './missing'
2069common/cdc/Makefile.am: installing './depcomp'
2070daemon/Makefile.am:48: warning: source file '../common/seafile-crypt.c' is in a subdirectory,
2071daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2072automake: warning: possible forward-incompatibility.
2073automake: At least a source file is in a subdirectory, but the 'subdir-objects'
2074automake: automake option hasn't been enabled. For now, the corresponding output
2075automake: object file(s) will be placed in the top-level directory. However,
2076automake: this behaviour will change in future Automake versions: they will
2077automake: unconditionally cause object files to be placed in the same subdirectory
2078automake: of the corresponding sources.
2079automake: You are advised to start using 'subdir-objects' option throughout your
2080automake: project, to avoid future incompatibilities.
2081daemon/Makefile.am:48: warning: source file '../common/diff-simple.c' is in a subdirectory,
2082daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2083daemon/Makefile.am:48: warning: source file '../common/branch-mgr.c' is in a subdirectory,
2084daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2085daemon/Makefile.am:48: warning: source file '../common/fs-mgr.c' is in a subdirectory,
2086daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2087daemon/Makefile.am:48: warning: source file '../common/commit-mgr.c' is in a subdirectory,
2088daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2089daemon/Makefile.am:48: warning: source file '../common/log.c' is in a subdirectory,
2090daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2091daemon/Makefile.am:48: warning: source file '../common/rpc-service.c' is in a subdirectory,
2092daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2093daemon/Makefile.am:48: warning: source file '../common/vc-common.c' is in a subdirectory,
2094daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2095daemon/Makefile.am:48: warning: source file '../common/obj-store.c' is in a subdirectory,
2096daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2097daemon/Makefile.am:48: warning: source file '../common/obj-backend-fs.c' is in a subdirectory,
2098daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2099daemon/Makefile.am:48: warning: source file '../common/block-mgr.c' is in a subdirectory,
2100daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2101daemon/Makefile.am:48: warning: source file '../common/block-backend.c' is in a subdirectory,
2102daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2103daemon/Makefile.am:48: warning: source file '../common/block-backend-fs.c' is in a subdirectory,
2104daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2105daemon/Makefile.am:48: warning: source file '../common/mq-mgr.c' is in a subdirectory,
2106daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2107daemon/Makefile.am:48: warning: source file '../common/curl-init.c' is in a subdirectory,
2108daemon/Makefile.am:48: but option 'subdir-objects' is disabled
2109python/seafile/Makefile.am:3: installing './py-compile'
2110Running autoconf ...
2111checking for a BSD-compatible install... /usr/bin/install -c
2112checking whether build environment is sane... yes
2113checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
2114checking for gawk... gawk
2115checking whether make sets $(MAKE)... yes
2116checking whether make supports nested variables... yes
2117checking build system type... x86_64-pc-linux-gnu
2118checking for gcc... gcc
2119checking whether the C compiler works... yes
2120checking for C compiler default output file name... a.out
2121checking for suffix of executables...
2122checking whether we are cross compiling... no
2123checking for suffix of object files... o
2124checking whether we are using the GNU C compiler... yes
2125checking whether gcc accepts -g... yes
2126checking for gcc option to accept ISO C89... none needed
2127checking whether gcc understands -c and -o together... yes
2128checking whether make supports the include directive... yes (GNU style)
2129checking dependency style of gcc... gcc3
2130checking for an ANSI C-conforming const... yes
2131checking whether make sets $(MAKE)... (cached) yes
2132checking host system type... x86_64-pc-linux-gnu
2133checking how to print strings... printf
2134checking for a sed that does not truncate output... /usr/bin/sed
2135checking for grep that handles long lines and -e... /usr/bin/grep
2136checking for egrep... /usr/bin/grep -E
2137checking for fgrep... /usr/bin/grep -F
2138checking for ld used by gcc... /usr/bin/ld
2139checking if the linker (/usr/bin/ld) is GNU ld... yes
2140checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
2141checking the name lister (/usr/bin/nm -B) interface... BSD nm
2142checking whether ln -s works... yes
2143checking the maximum length of command line arguments... 1572864
2144checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
2145checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
2146checking for /usr/bin/ld option to reload object files... -r
2147checking for objdump... objdump
2148checking how to recognize dependent libraries... pass_all
2149checking for dlltool... no
2150checking how to associate runtime and link libraries... printf %s\n
2151checking for ar... ar
2152checking for archiver @FILE support... @
2153checking for strip... strip
2154checking for ranlib... ranlib
2155checking command to parse /usr/bin/nm -B output from gcc object... ok
2156checking for sysroot... no
2157checking for a working dd... /usr/bin/dd
2158checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
2159checking for mt... no
2160checking if : is a manifest tool... no
2161checking how to run the C preprocessor... gcc -E
2162checking for ANSI C header files... yes
2163checking for sys/types.h... yes
2164checking for sys/stat.h... yes
2165checking for stdlib.h... yes
2166checking for string.h... yes
2167checking for memory.h... yes
2168checking for strings.h... yes
2169checking for inttypes.h... yes
2170checking for stdint.h... yes
2171checking for unistd.h... yes
2172checking for dlfcn.h... yes
2173checking for objdir... .libs
2174checking if gcc supports -fno-rtti -fno-exceptions... no
2175checking for gcc option to produce PIC... -fPIC -DPIC
2176checking if gcc PIC flag -fPIC -DPIC works... yes
2177checking if gcc static flag -static works... yes
2178checking if gcc supports -c -o file.o... yes
2179checking if gcc supports -c -o file.o... (cached) yes
2180checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
2181checking whether -lc should be explicitly linked in... no
2182checking dynamic linker characteristics... GNU/Linux ld.so
2183checking how to hardcode library paths into programs... immediate
2184checking whether stripping libraries is possible... yes
2185checking if libtool supports shared libraries... yes
2186checking whether to build shared libraries... yes
2187checking whether to build static libraries... yes
2188checking for special C compiler options needed for large files... no
2189checking for _FILE_OFFSET_BITS value needed for large files... no
2190checking for WIN32... no
2191checking for Mac... no
2192checking for Linux... compile in linux
2193checking for uuid_generate in -luuid... yes
2194found library uuid
2195checking for pthread_create in -lpthread... yes
2196found library pthread
2197checking for sqlite3_open in -lsqlite3... yes
2198found library sqlite3
2199checking for pkg-config... /usr/bin/pkg-config
2200checking pkg-config is at least version 0.9.0... yes
2201checking for GLIB2... yes
2202checking for GOBJECT... yes
2203checking for SEARPC... yes
2204checking for JANSSON... yes
2205checking for LIBEVENT... yes
2206checking for ZLIB... yes
2207checking for CURL... yes
2208checking whether /usr/bin/python2 version is >= 2.6... yes
2209checking for /usr/bin/python2 version... 2.7
2210checking for /usr/bin/python2 platform... linux2
2211checking for /usr/bin/python2 script directory... ${prefix}/lib/python2.7/site-packages
2212checking for /usr/bin/python2 extension module directory... ${exec_prefix}/lib/python2.7/site-packages
2213checking for SHA1_Init in -lcrypto... yes
2214found library crypto
2215checking for SSL... yes
2216checking that generated files are newer than configure... done
2217configure: creating ./config.status
2218config.status: creating Makefile
2219config.status: creating include/Makefile
2220config.status: creating lib/Makefile
2221config.status: creating lib/libseafile.pc
2222config.status: creating common/Makefile
2223config.status: creating common/cdc/Makefile
2224config.status: creating common/index/Makefile
2225config.status: creating daemon/Makefile
2226config.status: creating app/Makefile
2227config.status: creating doc/Makefile
2228config.status: creating python/Makefile
2229config.status: creating python/seafile/Makefile
2230config.status: creating config.h
2231config.status: executing depfiles commands
2232config.status: executing libtool commands
2233make all-recursive
2234make[1]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5'
2235Making all in include
2236make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/include'
2237make[2]: Nothing to be done for 'all'.
2238make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/include'
2239Making all in lib
2240make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/lib'
2241rm -f repo.c task.c
2242valac -C --pkg posix repo.vala task.vala
2243[libsearpc]: generating rpc header files
2244/usr/bin/python2 `which searpc-codegen.py` ../lib/rpc_table.py
2245loaded func_table from /tmp/trizen-trizen/seafile/src/seafile-6.2.5/lib/rpc_table.py
2246[libsearpc]: done
2247rm -f seafile-object.h
2248valac --pkg posix repo.vala task.vala -C -H seafile-object.h
2249make all-am
2250make[3]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/lib'
2251/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT repo.lo -MD -MP -MF .deps/repo.Tpo -c -o repo.lo repo.c
2252/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT task.lo -MD -MP -MF .deps/task.Tpo -c -o task.lo task.c
2253libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT repo.lo -MD -MP -MF .deps/repo.Tpo -c repo.c -fPIC -DPIC -o .libs/repo.o
2254libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT task.lo -MD -MP -MF .deps/task.Tpo -c task.c -fPIC -DPIC -o .libs/task.o
2255task.c: In function ‘seafile_task_set_tx_id’:
2256task.c:257:8: warning: variable ‘_tmp0_’ set but not used [-Wunused-but-set-variable]
2257 gchar _tmp0_;
2258 ^~~~~~
2259libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT task.lo -MD -MP -MF .deps/task.Tpo -c task.c -o task.o >/dev/null 2>&1
2260mv -f .deps/task.Tpo .deps/task.Plo
2261/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT seafile-rpc-wrapper.lo -MD -MP -MF .deps/seafile-rpc-wrapper.Tpo -c -o seafile-rpc-wrapper.lo seafile-rpc-wrapper.c
2262libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT seafile-rpc-wrapper.lo -MD -MP -MF .deps/seafile-rpc-wrapper.Tpo -c seafile-rpc-wrapper.c -fPIC -DPIC -o .libs/seafile-rpc-wrapper.o
2263repo.c: In function ‘seafile_repo_set_id’:
2264repo.c:672:8: warning: variable ‘_tmp0_’ set but not used [-Wunused-but-set-variable]
2265 gchar _tmp0_;
2266 ^~~~~~
2267libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT repo.lo -MD -MP -MF .deps/repo.Tpo -c repo.c -o repo.o >/dev/null 2>&1
2268libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT seafile-rpc-wrapper.lo -MD -MP -MF .deps/seafile-rpc-wrapper.Tpo -c seafile-rpc-wrapper.c -o seafile-rpc-wrapper.o >/dev/null 2>&1
2269mv -f .deps/seafile-rpc-wrapper.Tpo .deps/seafile-rpc-wrapper.Plo
2270/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT net.lo -MD -MP -MF .deps/net.Tpo -c -o net.lo net.c
2271libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT net.lo -MD -MP -MF .deps/net.Tpo -c net.c -fPIC -DPIC -o .libs/net.o
2272libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT net.lo -MD -MP -MF .deps/net.Tpo -c net.c -o net.o >/dev/null 2>&1
2273mv -f .deps/net.Tpo .deps/net.Plo
2274/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT utils.lo -MD -MP -MF .deps/utils.Tpo -c -o utils.lo utils.c
2275libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT utils.lo -MD -MP -MF .deps/utils.Tpo -c utils.c -fPIC -DPIC -o .libs/utils.o
2276mv -f .deps/repo.Tpo .deps/repo.Plo
2277/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT db.lo -MD -MP -MF .deps/db.Tpo -c -o db.lo db.c
2278libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT db.lo -MD -MP -MF .deps/db.Tpo -c db.c -fPIC -DPIC -o .libs/db.o
2279libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT db.lo -MD -MP -MF .deps/db.Tpo -c db.c -o db.o >/dev/null 2>&1
2280mv -f .deps/db.Tpo .deps/db.Plo
2281/bin/sh ../libtool --tag=CC --mode=link gcc -march=native -O3 -pipe -fstack-protector-strong -fno-plt -no-undefined -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o libseafile.la -rpath /usr/lib repo.lo task.lo seafile-rpc-wrapper.lo -lglib-2.0 -lgobject-2.0 -lglib-2.0 -lsearpc -lgio-2.0 -lgobject-2.0 -lglib-2.0 -ljansson
2282utils.c: In function ‘ccnet_expand_path’:
2283utils.c:1152:9: warning: ignoring return value of ‘getcwd’, declared with attribute warn_unused_result [-Wunused-result]
2284 getcwd (new_path, SEAF_PATH_MAX);
2285 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2286libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I../include -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -Wall -D_FORTIFY_SOURCE=2 -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT utils.lo -MD -MP -MF .deps/utils.Tpo -c utils.c -o utils.o >/dev/null 2>&1
2287libtool: link: gcc -shared -fPIC -DPIC .libs/repo.o .libs/task.o .libs/seafile-rpc-wrapper.o -lsearpc -lgio-2.0 -lgobject-2.0 -lglib-2.0 -ljansson -march=native -O3 -fstack-protector-strong -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z -Wl,now -Wl,-soname -Wl,libseafile.so.0 -o .libs/libseafile.so.0.0.0
2288libtool: link: (cd ".libs" && rm -f "libseafile.so.0" && ln -s "libseafile.so.0.0.0" "libseafile.so.0")
2289libtool: link: (cd ".libs" && rm -f "libseafile.so" && ln -s "libseafile.so.0.0.0" "libseafile.so")
2290libtool: link: ar cr .libs/libseafile.a repo.o task.o seafile-rpc-wrapper.o
2291libtool: link: ranlib .libs/libseafile.a
2292libtool: link: ( cd ".libs" && rm -f "libseafile.la" && ln -s "../libseafile.la" "libseafile.la" )
2293mv -f .deps/utils.Tpo .deps/utils.Plo
2294/bin/sh ../libtool --tag=CC --mode=link gcc -march=native -O3 -pipe -fstack-protector-strong -fno-plt -no-undefined -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o libseafile_common.la repo.lo task.lo net.lo utils.lo db.lo -lglib-2.0 -lgobject-2.0 -lglib-2.0 -luuid -lsqlite3 -levent -lsearpc -lgio-2.0 -lgobject-2.0 -lglib-2.0 -ljansson -lz
2295libtool: link: ar cr .libs/libseafile_common.a .libs/repo.o .libs/task.o .libs/net.o .libs/utils.o .libs/db.o
2296libtool: link: ranlib .libs/libseafile_common.a
2297libtool: link: ( cd ".libs" && rm -f "libseafile_common.la" && ln -s "../libseafile_common.la" "libseafile_common.la" )
2298make[3]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/lib'
2299make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/lib'
2300Making all in common
2301make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common'
2302Making all in cdc
2303make[3]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/cdc'
2304/bin/sh ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -D_FORTIFY_SOURCE=2 -I../../common -I../../lib -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT cdc.lo -MD -MP -MF .deps/cdc.Tpo -c -o cdc.lo cdc.c
2305/bin/sh ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -D_FORTIFY_SOURCE=2 -I../../common -I../../lib -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT rabin-checksum.lo -MD -MP -MF .deps/rabin-checksum.Tpo -c -o rabin-checksum.lo rabin-checksum.c
2306libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -D_FORTIFY_SOURCE=2 -I../../common -I../../lib -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT rabin-checksum.lo -MD -MP -MF .deps/rabin-checksum.Tpo -c rabin-checksum.c -fPIC -DPIC -o .libs/rabin-checksum.o
2307libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -D_FORTIFY_SOURCE=2 -I../../common -I../../lib -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT cdc.lo -MD -MP -MF .deps/cdc.Tpo -c cdc.c -fPIC -DPIC -o .libs/cdc.o
2308libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -D_FORTIFY_SOURCE=2 -I../../common -I../../lib -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT rabin-checksum.lo -MD -MP -MF .deps/rabin-checksum.Tpo -c rabin-checksum.c -o rabin-checksum.o >/dev/null 2>&1
2309mv -f .deps/rabin-checksum.Tpo .deps/rabin-checksum.Plo
2310libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -D_FORTIFY_SOURCE=2 -I../../common -I../../lib -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT cdc.lo -MD -MP -MF .deps/cdc.Tpo -c cdc.c -o cdc.o >/dev/null 2>&1
2311mv -f .deps/cdc.Tpo .deps/cdc.Plo
2312/bin/sh ../../libtool --tag=CC --mode=link gcc -I../../common -I../../lib -Wall -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-z -Wl,defs -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o libcdc.la cdc.lo rabin-checksum.lo -lglib-2.0 ../../lib/libseafile_common.la
2313libtool: link: (cd .libs/libcdc.lax/libseafile_common.a && ar x "/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/cdc/../../lib/.libs/libseafile_common.a")
2314libtool: link: ar cr .libs/libcdc.a .libs/cdc.o .libs/rabin-checksum.o .libs/libcdc.lax/libseafile_common.a/db.o .libs/libcdc.lax/libseafile_common.a/net.o .libs/libcdc.lax/libseafile_common.a/repo.o .libs/libcdc.lax/libseafile_common.a/task.o .libs/libcdc.lax/libseafile_common.a/utils.o
2315libtool: link: ranlib .libs/libcdc.a
2316libtool: link: rm -fr .libs/libcdc.lax
2317libtool: link: ( cd ".libs" && rm -f "libcdc.la" && ln -s "../libcdc.la" "libcdc.la" )
2318make[3]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/cdc'
2319Making all in index
2320make[3]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/index'
2321/bin/sh ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -Wall -I../../common -I../../lib -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libindex_la-index.lo -MD -MP -MF .deps/libindex_la-index.Tpo -c -o libindex_la-index.lo `test -f 'index.c' || echo './'`index.c
2322/bin/sh ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -Wall -I../../common -I../../lib -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libindex_la-cache-tree.lo -MD -MP -MF .deps/libindex_la-cache-tree.Tpo -c -o libindex_la-cache-tree.lo `test -f 'cache-tree.c' || echo './'`cache-tree.c
2323libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -Wall -I../../common -I../../lib -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libindex_la-index.lo -MD -MP -MF .deps/libindex_la-index.Tpo -c index.c -fPIC -DPIC -o .libs/libindex_la-index.o
2324libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -Wall -I../../common -I../../lib -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libindex_la-cache-tree.lo -MD -MP -MF .deps/libindex_la-cache-tree.Tpo -c cache-tree.c -fPIC -DPIC -o .libs/libindex_la-cache-tree.o
2325libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -Wall -I../../common -I../../lib -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libindex_la-cache-tree.lo -MD -MP -MF .deps/libindex_la-cache-tree.Tpo -c cache-tree.c -o libindex_la-cache-tree.o >/dev/null 2>&1
2326mv -f .deps/libindex_la-cache-tree.Tpo .deps/libindex_la-cache-tree.Plo
2327libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -Wall -I../../common -I../../lib -D_FORTIFY_SOURCE=2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT libindex_la-index.lo -MD -MP -MF .deps/libindex_la-index.Tpo -c index.c -o libindex_la-index.o >/dev/null 2>&1
2328mv -f .deps/libindex_la-index.Tpo .deps/libindex_la-index.Plo
2329/bin/sh ../../libtool --tag=CC --mode=link gcc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-z -Wl,defs -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o libindex.la libindex_la-index.lo libindex_la-cache-tree.lo -lglib-2.0 ../../lib/libseafile_common.la
2330libtool: link: (cd .libs/libindex.lax/libseafile_common.a && ar x "/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/index/../../lib/.libs/libseafile_common.a")
2331libtool: link: ar cr .libs/libindex.a .libs/libindex_la-index.o .libs/libindex_la-cache-tree.o .libs/libindex.lax/libseafile_common.a/db.o .libs/libindex.lax/libseafile_common.a/net.o .libs/libindex.lax/libseafile_common.a/repo.o .libs/libindex.lax/libseafile_common.a/task.o .libs/libindex.lax/libseafile_common.a/utils.o
2332libtool: link: ranlib .libs/libindex.a
2333libtool: link: rm -fr .libs/libindex.lax
2334libtool: link: ( cd ".libs" && rm -f "libindex.la" && ln -s "../libindex.la" "libindex.la" )
2335make[3]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/index'
2336make[3]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common'
2337make[3]: Nothing to be done for 'all-am'.
2338make[3]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common'
2339make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common'
2340Making all in daemon
2341make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/daemon'
2342gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT seaf-daemon.o -MD -MP -MF .deps/seaf-daemon.Tpo -c -o seaf-daemon.o seaf-daemon.c
2343gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT job-mgr.o -MD -MP -MF .deps/job-mgr.Tpo -c -o job-mgr.o job-mgr.c
2344mv -f .deps/job-mgr.Tpo .deps/job-mgr.Po
2345gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT timer.o -MD -MP -MF .deps/timer.Tpo -c -o timer.o timer.c
2346mv -f .deps/timer.Tpo .deps/timer.Po
2347gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT cevent.o -MD -MP -MF .deps/cevent.Tpo -c -o cevent.o cevent.c
2348mv -f .deps/cevent.Tpo .deps/cevent.Po
2349gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT http-tx-mgr.o -MD -MP -MF .deps/http-tx-mgr.Tpo -c -o http-tx-mgr.o http-tx-mgr.c
2350seaf-daemon.c: In function ‘main’:
2351seaf-daemon.c:435:9: warning: ignoring return value of ‘daemon’, declared with attribute warn_unused_result [-Wunused-result]
2352 daemon (1, 0);
2353 ^~~~~~~~~~~~~
2354mv -f .deps/seaf-daemon.Tpo .deps/seaf-daemon.Po
2355gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT vc-utils.o -MD -MP -MF .deps/vc-utils.Tpo -c -o vc-utils.o vc-utils.c
2356mv -f .deps/vc-utils.Tpo .deps/vc-utils.Po
2357gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT sync-mgr.o -MD -MP -MF .deps/sync-mgr.Tpo -c -o sync-mgr.o sync-mgr.c
2358mv -f .deps/sync-mgr.Tpo .deps/sync-mgr.Po
2359gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT seafile-session.o -MD -MP -MF .deps/seafile-session.Tpo -c -o seafile-session.o seafile-session.c
2360mv -f .deps/seafile-session.Tpo .deps/seafile-session.Po
2361gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT seafile-crypt.o -MD -MP -MF .deps/seafile-crypt.Tpo -c -o seafile-crypt.o `test -f '../common/seafile-crypt.c' || echo './'`../common/seafile-crypt.c
2362mv -f .deps/http-tx-mgr.Tpo .deps/http-tx-mgr.Po
2363gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT diff-simple.o -MD -MP -MF .deps/diff-simple.Tpo -c -o diff-simple.o `test -f '../common/diff-simple.c' || echo './'`../common/diff-simple.c
2364../common/seafile-crypt.c: In function ‘seafile_generate_random_key’:
2365../common/seafile-crypt.c:118:9: warning: ‘RAND_pseudo_bytes’ is deprecated [-Wdeprecated-declarations]
2366 RAND_pseudo_bytes (secret_key, sizeof(secret_key));
2367 ^~~~~~~~~~~~~~~~~
2368In file included from /usr/include/openssl/aes.h:13,
2369 from ../common/seafile-crypt.c:14:
2370/usr/include/openssl/rand.h:44:1: note: declared here
2371 DEPRECATEDIN_1_1_0(int RAND_pseudo_bytes(unsigned char *buf, int num))
2372 ^~~~~~~~~~~~~~~~~~
2373mv -f .deps/seafile-crypt.Tpo .deps/seafile-crypt.Po
2374gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT wt-monitor.o -MD -MP -MF .deps/wt-monitor.Tpo -c -o wt-monitor.o wt-monitor.c
2375mv -f .deps/wt-monitor.Tpo .deps/wt-monitor.Po
2376gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT wt-monitor-linux.o -MD -MP -MF .deps/wt-monitor-linux.Tpo -c -o wt-monitor-linux.o wt-monitor-linux.c
2377mv -f .deps/diff-simple.Tpo .deps/diff-simple.Po
2378gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT wt-monitor-structs.o -MD -MP -MF .deps/wt-monitor-structs.Tpo -c -o wt-monitor-structs.o wt-monitor-structs.c
2379mv -f .deps/wt-monitor-structs.Tpo .deps/wt-monitor-structs.Po
2380gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT clone-mgr.o -MD -MP -MF .deps/clone-mgr.Tpo -c -o clone-mgr.o clone-mgr.c
2381mv -f .deps/wt-monitor-linux.Tpo .deps/wt-monitor-linux.Po
2382gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT seafile-config.o -MD -MP -MF .deps/seafile-config.Tpo -c -o seafile-config.o seafile-config.c
2383mv -f .deps/seafile-config.Tpo .deps/seafile-config.Po
2384gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT branch-mgr.o -MD -MP -MF .deps/branch-mgr.Tpo -c -o branch-mgr.o `test -f '../common/branch-mgr.c' || echo './'`../common/branch-mgr.c
2385mv -f .deps/branch-mgr.Tpo .deps/branch-mgr.Po
2386gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT fs-mgr.o -MD -MP -MF .deps/fs-mgr.Tpo -c -o fs-mgr.o `test -f '../common/fs-mgr.c' || echo './'`../common/fs-mgr.c
2387mv -f .deps/clone-mgr.Tpo .deps/clone-mgr.Po
2388gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT repo-mgr.o -MD -MP -MF .deps/repo-mgr.Tpo -c -o repo-mgr.o repo-mgr.c
2389mv -f .deps/fs-mgr.Tpo .deps/fs-mgr.Po
2390gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT commit-mgr.o -MD -MP -MF .deps/commit-mgr.Tpo -c -o commit-mgr.o `test -f '../common/commit-mgr.c' || echo './'`../common/commit-mgr.c
2391mv -f .deps/commit-mgr.Tpo .deps/commit-mgr.Po
2392gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT log.o -MD -MP -MF .deps/log.Tpo -c -o log.o `test -f '../common/log.c' || echo './'`../common/log.c
2393repo-mgr.c: In function ‘delete_worktree_dir_recursive’:
2394repo-mgr.c:5077:14: warning: variable ‘builtin_ignored’ set but not used [-Wunused-but-set-variable]
2395 gboolean builtin_ignored = FALSE;
2396 ^~~~~~~~~~~~~~~
2397mv -f .deps/repo-mgr.Tpo .deps/repo-mgr.Po
2398gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT rpc-service.o -MD -MP -MF .deps/rpc-service.Tpo -c -o rpc-service.o `test -f '../common/rpc-service.c' || echo './'`../common/rpc-service.c
2399mv -f .deps/log.Tpo .deps/log.Po
2400gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT vc-common.o -MD -MP -MF .deps/vc-common.Tpo -c -o vc-common.o `test -f '../common/vc-common.c' || echo './'`../common/vc-common.c
2401mv -f .deps/vc-common.Tpo .deps/vc-common.Po
2402gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT obj-store.o -MD -MP -MF .deps/obj-store.Tpo -c -o obj-store.o `test -f '../common/obj-store.c' || echo './'`../common/obj-store.c
2403mv -f .deps/rpc-service.Tpo .deps/rpc-service.Po
2404gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT obj-backend-fs.o -MD -MP -MF .deps/obj-backend-fs.Tpo -c -o obj-backend-fs.o `test -f '../common/obj-backend-fs.c' || echo './'`../common/obj-backend-fs.c
2405mv -f .deps/obj-store.Tpo .deps/obj-store.Po
2406gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT block-mgr.o -MD -MP -MF .deps/block-mgr.Tpo -c -o block-mgr.o `test -f '../common/block-mgr.c' || echo './'`../common/block-mgr.c
2407../common/obj-backend-fs.c: In function ‘obj_backend_fs_write’:
2408../common/obj-backend-fs.c:229:43: warning: ‘.XXXXXX’ directive output may be truncated writing 7 bytes into a region of size between 1 and 4096 [-Wformat-truncation=]
2409 snprintf (tmp_path, SEAF_PATH_MAX, "%s.XXXXXX", path);
2410 ^~~~~~~
2411In file included from /usr/include/stdio.h:873,
2412 from ../common/common.h:17,
2413 from ../common/obj-backend-fs.c:5:
2414/usr/include/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 8 and 4103 bytes into a destination of size 4096
2415 return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
2416 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2417 __bos (__s), __fmt, __va_arg_pack ());
2418 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2419mv -f .deps/obj-backend-fs.Tpo .deps/obj-backend-fs.Po
2420gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT block-backend.o -MD -MP -MF .deps/block-backend.Tpo -c -o block-backend.o `test -f '../common/block-backend.c' || echo './'`../common/block-backend.c
2421mv -f .deps/block-backend.Tpo .deps/block-backend.Po
2422gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT block-backend-fs.o -MD -MP -MF .deps/block-backend-fs.Tpo -c -o block-backend-fs.o `test -f '../common/block-backend-fs.c' || echo './'`../common/block-backend-fs.c
2423mv -f .deps/block-mgr.Tpo .deps/block-mgr.Po
2424gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT mq-mgr.o -MD -MP -MF .deps/mq-mgr.Tpo -c -o mq-mgr.o `test -f '../common/mq-mgr.c' || echo './'`../common/mq-mgr.c
2425mv -f .deps/mq-mgr.Tpo .deps/mq-mgr.Po
2426gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT curl-init.o -MD -MP -MF .deps/curl-init.Tpo -c -o curl-init.o `test -f '../common/curl-init.c' || echo './'`../common/curl-init.c
2427mv -f .deps/block-backend-fs.Tpo .deps/block-backend-fs.Po
2428gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT sync-status-tree.o -MD -MP -MF .deps/sync-status-tree.Tpo -c -o sync-status-tree.o sync-status-tree.c
2429mv -f .deps/curl-init.Tpo .deps/curl-init.Po
2430gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT filelock-mgr.o -MD -MP -MF .deps/filelock-mgr.Tpo -c -o filelock-mgr.o filelock-mgr.c
2431mv -f .deps/sync-status-tree.Tpo .deps/sync-status-tree.Po
2432gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT set-perm.o -MD -MP -MF .deps/set-perm.Tpo -c -o set-perm.o set-perm.c
2433mv -f .deps/set-perm.Tpo .deps/set-perm.Po
2434gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -MT change-set.o -MD -MP -MF .deps/change-set.Tpo -c -o change-set.o change-set.c
2435mv -f .deps/filelock-mgr.Tpo .deps/filelock-mgr.Po
2436mv -f .deps/change-set.Tpo .deps/change-set.Po
2437/bin/sh ../libtool --tag=CC --mode=link gcc -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\""/usr/share/seafile"\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o seaf-daemon seaf-daemon.o job-mgr.o timer.o cevent.o http-tx-mgr.o vc-utils.o sync-mgr.o seafile-session.o seafile-crypt.o diff-simple.o wt-monitor.o wt-monitor-linux.o wt-monitor-structs.o clone-mgr.o seafile-config.o branch-mgr.o fs-mgr.o repo-mgr.o commit-mgr.o log.o rpc-service.o vc-common.o obj-store.o obj-backend-fs.o block-mgr.o block-backend.o block-backend-fs.o mq-mgr.o curl-init.o sync-status-tree.o filelock-mgr.o set-perm.o change-set.o ../lib/libseafile_common.la -lglib-2.0 -lgobject-2.0 -lglib-2.0 -lssl -lcrypto -luuid -lsqlite3 -levent ../common/cdc/libcdc.la ../common/index/libindex.la -lsearpc -lgio-2.0 -lgobject-2.0 -lglib-2.0 -ljansson -ljansson -lz -lcurl
2438libtool: link: gcc -DPKGDATADIR=\"/usr/share/seafile\" -DPACKAGE_DATA_DIR=\"/usr/share/seafile\" -DSEAFILE_CLIENT -I../include -I../lib -I../lib -I../common -I/usr/include/searpc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/libffi-3.2.1/include -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -Wall -march=native -O3 -pipe -fstack-protector-strong -fno-plt -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z -Wl,now -o seaf-daemon seaf-daemon.o job-mgr.o timer.o cevent.o http-tx-mgr.o vc-utils.o sync-mgr.o seafile-session.o seafile-crypt.o diff-simple.o wt-monitor.o wt-monitor-linux.o wt-monitor-structs.o clone-mgr.o seafile-config.o branch-mgr.o fs-mgr.o repo-mgr.o commit-mgr.o log.o rpc-service.o vc-common.o obj-store.o obj-backend-fs.o block-mgr.o block-backend.o block-backend-fs.o mq-mgr.o curl-init.o sync-status-tree.o filelock-mgr.o set-perm.o change-set.o ../lib/.libs/libseafile_common.a -lssl -lcrypto ../common/cdc/.libs/libcdc.a ../common/index/.libs/libindex.a -luuid -lsqlite3 -levent -lsearpc -lgio-2.0 -lgobject-2.0 -lglib-2.0 -ljansson -lz -lcurl -pthread
2439make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/daemon'
2440Making all in app
2441make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/app'
2442make[2]: Nothing to be done for 'all'.
2443make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/app'
2444Making all in doc
2445make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/doc'
2446make[2]: Nothing to be done for 'all'.
2447make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/doc'
2448Making all in python
2449make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python'
2450Making all in seafile
2451make[3]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python/seafile'
2452make[3]: Nothing to be done for 'all'.
2453make[3]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python/seafile'
2454make[3]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python'
2455make[3]: Nothing to be done for 'all-am'.
2456make[3]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python'
2457make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python'
2458make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5'
2459make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5'
2460make[1]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5'
2461==> Entering fakeroot environment...
2462==> Starting package()...
2463Making install in include
2464make[1]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/include'
2465make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/include'
2466make[2]: Nothing to be done for 'install-exec-am'.
2467 /usr/bin/mkdir -p '/tmp/trizen-trizen/seafile/pkg/seafile/usr/include/seafile'
2468 /usr/bin/install -c -m 644 seafile-rpc.h seafile.h '/tmp/trizen-trizen/seafile/pkg/seafile/usr/include/seafile'
2469make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/include'
2470make[1]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/include'
2471Making install in lib
2472make[1]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/lib'
2473make install-am
2474make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/lib'
2475make[3]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/lib'
2476/usr/bin/sed -i "s|(DESTDIR)|/tmp/trizen-trizen/seafile/pkg/seafile|g" libseafile.pc
2477 /usr/bin/mkdir -p '/tmp/trizen-trizen/seafile/pkg/seafile/usr/lib'
2478 /bin/sh ../libtool --mode=install /usr/bin/install -c libseafile.la '/tmp/trizen-trizen/seafile/pkg/seafile/usr/lib'
2479 /usr/bin/mkdir -p '/tmp/trizen-trizen/seafile/pkg/seafile/usr/lib/pkgconfig'
2480 /usr/bin/install -c -m 644 libseafile.pc '/tmp/trizen-trizen/seafile/pkg/seafile/usr/lib/pkgconfig'
2481 /usr/bin/mkdir -p '/tmp/trizen-trizen/seafile/pkg/seafile/usr/include/seafile'
2482 /usr/bin/install -c -m 644 seafile-object.h '/tmp/trizen-trizen/seafile/pkg/seafile/usr/include/seafile'
2483libtool: install: /usr/bin/install -c .libs/libseafile.so.0.0.0 /tmp/trizen-trizen/seafile/pkg/seafile/usr/lib/libseafile.so.0.0.0
2484libtool: install: (cd /tmp/trizen-trizen/seafile/pkg/seafile/usr/lib && { ln -s -f libseafile.so.0.0.0 libseafile.so.0 || { rm -f libseafile.so.0 && ln -s libseafile.so.0.0.0 libseafile.so.0; }; })
2485libtool: install: (cd /tmp/trizen-trizen/seafile/pkg/seafile/usr/lib && { ln -s -f libseafile.so.0.0.0 libseafile.so || { rm -f libseafile.so && ln -s libseafile.so.0.0.0 libseafile.so; }; })
2486libtool: install: /usr/bin/install -c .libs/libseafile.lai /tmp/trizen-trizen/seafile/pkg/seafile/usr/lib/libseafile.la
2487libtool: install: /usr/bin/install -c .libs/libseafile.a /tmp/trizen-trizen/seafile/pkg/seafile/usr/lib/libseafile.a
2488libtool: install: chmod 644 /tmp/trizen-trizen/seafile/pkg/seafile/usr/lib/libseafile.a
2489libtool: install: ranlib /tmp/trizen-trizen/seafile/pkg/seafile/usr/lib/libseafile.a
2490libtool: warning: remember to run 'libtool --finish /usr/lib'
2491make[3]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/lib'
2492make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/lib'
2493make[1]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/lib'
2494Making install in common
2495make[1]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common'
2496Making install in cdc
2497make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/cdc'
2498make[3]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/cdc'
2499make[3]: Nothing to be done for 'install-exec-am'.
2500make[3]: Nothing to be done for 'install-data-am'.
2501make[3]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/cdc'
2502make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/cdc'
2503Making install in index
2504make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/index'
2505make[3]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/index'
2506make[3]: Nothing to be done for 'install-exec-am'.
2507make[3]: Nothing to be done for 'install-data-am'.
2508make[3]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/index'
2509make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common/index'
2510make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common'
2511make[3]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common'
2512make[3]: Nothing to be done for 'install-exec-am'.
2513make[3]: Nothing to be done for 'install-data-am'.
2514make[3]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common'
2515make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common'
2516make[1]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/common'
2517Making install in daemon
2518make[1]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/daemon'
2519make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/daemon'
2520make[2]: Nothing to be done for 'install-data-am'.
2521 /usr/bin/mkdir -p '/tmp/trizen-trizen/seafile/pkg/seafile/usr/bin'
2522 /bin/sh ../libtool --mode=install /usr/bin/install -c seaf-daemon '/tmp/trizen-trizen/seafile/pkg/seafile/usr/bin'
2523libtool: install: /usr/bin/install -c seaf-daemon /tmp/trizen-trizen/seafile/pkg/seafile/usr/bin/seaf-daemon
2524make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/daemon'
2525make[1]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/daemon'
2526Making install in app
2527make[1]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/app'
2528make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/app'
2529make[2]: Nothing to be done for 'install-data-am'.
2530 /usr/bin/mkdir -p '/tmp/trizen-trizen/seafile/pkg/seafile/usr/bin'
2531 /usr/bin/install -c seaf-cli '/tmp/trizen-trizen/seafile/pkg/seafile/usr/bin'
2532make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/app'
2533make[1]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/app'
2534Making install in doc
2535make[1]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/doc'
2536make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/doc'
2537make[2]: Nothing to be done for 'install-exec-am'.
2538 /usr/bin/mkdir -p '/tmp/trizen-trizen/seafile/pkg/seafile/usr/share/man/man1'
2539 /usr/bin/install -c -m 644 seaf-daemon.1 seaf-cli.1 '/tmp/trizen-trizen/seafile/pkg/seafile/usr/share/man/man1'
2540make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/doc'
2541make[1]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/doc'
2542Making install in python
2543make[1]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python'
2544Making install in seafile
2545make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python/seafile'
2546make[3]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python/seafile'
2547make[3]: Nothing to be done for 'install-exec-am'.
2548 /usr/bin/mkdir -p '/tmp/trizen-trizen/seafile/pkg/seafile/usr/lib/python2.7/site-packages/seafile'
2549 /usr/bin/install -c -m 644 __init__.py rpcclient.py '/tmp/trizen-trizen/seafile/pkg/seafile/usr/lib/python2.7/site-packages/seafile'
2550Byte-compiling python modules...
2551__init__.pyrpcclient.py
2552Byte-compiling python modules (optimized versions) ...
2553__init__.pyrpcclient.py
2554make[3]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python/seafile'
2555make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python/seafile'
2556make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python'
2557make[3]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python'
2558make[3]: Nothing to be done for 'install-exec-am'.
2559make[3]: Nothing to be done for 'install-data-am'.
2560make[3]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python'
2561make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python'
2562make[1]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5/python'
2563make[1]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5'
2564make[2]: Entering directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5'
2565make[2]: Nothing to be done for 'install-exec-am'.
2566make[2]: Nothing to be done for 'install-data-am'.
2567make[2]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5'
2568make[1]: Leaving directory '/tmp/trizen-trizen/seafile/src/seafile-6.2.5'
2569==> Tidying install...
2570 -> Removing empty directories...
2571 -> Removing libtool files...
2572 -> Purging unwanted files...
2573 -> Removing static library files...
2574 -> Stripping unneeded symbols from binaries and libraries...
2575 -> Compressing man and info pages...
2576==> Checking for packaging issues...
2577==> Creating package "seafile"...
2578 -> Generating .PKGINFO file...
2579 -> Generating .BUILDINFO file...
2580 -> Generating .MTREE file...
2581 -> Compressing package...
2582==> Leaving fakeroot environment.
2583==> Finished making: seafile 6.2.5-1 (Mon 01 Oct 2018 07:01:05 PM EEST)
2584==> Cleaning up...
2585loading packages...
2586resolving dependencies...
2587looking for conflicting packages...
2588
2589Packages (1) seafile-6.2.5-1
2590
2591Total Installed Size: 0.65 MiB
2592
2593:: Proceed with installation? [Y/n]
2594(1/1) checking keys in keyring [########################################################################################] 100%
2595(1/1) checking package integrity [########################################################################################] 100%
2596(1/1) loading package files [########################################################################################] 100%
2597(1/1) checking for file conflicts [########################################################################################] 100%
2598(1/1) checking available disk space [########################################################################################] 100%
2599:: Processing package changes...
2600(1/1) installing seafile [########################################################################################] 100%
2601:: Running post-transaction hooks...
2602(1/2) Reloading system manager configuration...
2603(2/2) Arming ConditionNeedsUpdate...
2604==> Making package: seafile-client 6.2.5-1 (Mon 01 Oct 2018 07:01:08 PM EEST)
2605==> Checking runtime dependencies...
2606==> Installing missing dependencies...
2607resolving dependencies...
2608looking for conflicting packages...
2609
2610Packages (12) cdparanoia-10.2-7 graphene-1.8.2-1 gst-plugins-base-1.14.3-1 libvisual-0.4.0-7 qt5-declarative-5.11.2-1 qt5-location-5.11.2-1 qt5-sensors-5.11.2-1 qt5-webchannel-5.11.2-1 qt5-xmlpatterns-5.11.2-1 qt5-tools-5.11.2-1
2611 qt5-webengine-5.11.2-1 qt5-webkit-5.212.0alpha2-20
2612
2613Total Download Size: 58.68 MiB
2614Total Installed Size: 228.24 MiB
2615
2616:: Proceed with installation? [Y/n]
2617:: Retrieving packages...
2618 qt5-tools-5.11.2-1-x86_64 5.6 MiB 4.74M/s 00:01 [########################################################################################] 9%
2619 qt5-xmlpatterns-5.11.2-1-x86_64 6.7 MiB 4.43M/s 00:02 [########################################################################################] 11%
2620 qt5-declarative-5.11.2-1-x86_64 10.2 MiB 3.80M/s 00:03 [########################################################################################] 17%
2621 qt5-location-5.11.2-1-x86_64 12.8 MiB 3.48M/s 00:04 [########################################################################################] 21%
2622 qt5-sensors-5.11.2-1-x86_64 13.0 MiB 3.43M/s 00:04 [########################################################################################] 22%
2623 qt5-webchannel-5.11... 13.0 MiB 3.41M/s 00:04 [######################] 22%
2624 cdparanoia-10.2-7-x... 13.1 MiB 3.30M/s 00:04 [######################] 22%
2625 libvisual-0.4.0-7-x... 13.2 MiB 3.25M/s 00:04 [######################] 22%
2626 graphene-1.8.2-1-x86_64 13.4 MiB 3.18M/s 00:04 [######################] 22%
2627 gst-plugins-base-1.... 13.6 MiB 3.12M/s 00:04 [######################] 23%
2628 qt5-webkit-5.212.0a... 25.3 MiB 3.04M/s 00:08 [######################] 43%
2629 qt5-webengine-5.11.... 58.7 MiB 3.69M/s 00:16 [######################] 100%
2630(12/12) checking keys in keyring [######################] 100%
2631(12/12) checking package integrity [########################################################################################] 100%
2632(12/12) loading package files [########################################################################################] 100%
2633(12/12) checking for file conflicts [########################################################################################] 100%
2634(12/12) checking available disk space [########################################################################################] 100%
2635:: Processing package changes...
2636( 1/12) installing qt5-tools [########################################################################################] 100%
2637Optional dependencies for qt5-tools
2638 clang: for qdoc
2639 qt5-webkit: for Qt Assistant [pending]
2640( 2/12) installing qt5-xmlpatterns [########################################################################################] 100%
2641( 3/12) installing qt5-declarative [########################################################################################] 100%
2642( 4/12) installing qt5-location [########################################################################################] 100%
2643( 5/12) installing qt5-sensors [########################################################################################] 100%
2644Optional dependencies for qt5-sensors
2645 qt5-declarative: QML bindings [installed]
2646( 6/12) installing qt5-webchannel [########################################################################################] 100%
2647( 7/12) installing cdparanoia [########################################################################################] 100%
2648( 8/12) installing libvisual [########################################################################################] 100%
2649( 9/12) installing graphene [########################################################################################] 100%
2650(10/12) installing gst-plugins-base [########################################################################################] 100%
2651(11/12) installing qt5-webkit [########################################################################################] 100%
2652Optional dependencies for qt5-webkit
2653 gst-plugins-good: Webm codec support
2654(12/12) installing qt5-webengine [########################################################################################] 100%
2655:: Running post-transaction hooks...
2656(1/3) Updating icon theme caches...
2657(2/3) Arming ConditionNeedsUpdate...
2658(3/3) Updating the desktop file MIME type cache...
2659==> Checking buildtime dependencies...
2660==> Installing missing dependencies...
2661resolving dependencies...
2662looking for conflicting packages...
2663
2664Packages (4) jsoncpp-1.8.4-2 libuv-1.23.1-1 rhash-1.3.6-1 cmake-3.12.2-1
2665
2666Total Download Size: 7.38 MiB
2667Total Installed Size: 34.62 MiB
2668
2669:: Proceed with installation? [Y/n]
2670:: Retrieving packages...
2671 libuv-1.23.1-1-x86_64 187.5 KiB 1933K/s 00:00 [########################################################################################] 2%
2672 jsoncpp-1.8.4-2-x86_64 1305.3 KiB 1957K/s 00:01 [########################################################################################] 17%
2673 cmake-3.12.2-1-x86_64 7.3 MiB 2.20M/s 00:03 [########################################################################################] 98%
2674 rhash-1.3.6-1-x86_64 7.4 MiB 2.17M/s 00:03 [########################################################################################] 100%
2675(4/4) checking keys in keyring [########################################################################################] 100%
2676(4/4) checking package integrity [########################################################################################] 100%
2677(4/4) loading package files [########################################################################################] 100%
2678(4/4) checking for file conflicts [########################################################################################] 100%
2679(4/4) checking available disk space [########################################################################################] 100%
2680:: Processing package changes...
2681(1/4) installing jsoncpp [########################################################################################] 100%
2682Optional dependencies for jsoncpp
2683 jsoncpp-doc: documentation
2684(2/4) installing libuv [########################################################################################] 100%
2685(3/4) installing rhash [########################################################################################] 100%
2686(4/4) installing cmake [########################################################################################] 100%
2687Optional dependencies for cmake
2688 qt5-base: cmake-gui [installed]
2689 libxkbcommon-x11: cmake-gui [installed]
2690:: Running post-transaction hooks...
2691(1/4) Updating icon theme caches...
2692(2/4) Arming ConditionNeedsUpdate...
2693(3/4) Updating the desktop file MIME type cache...
2694(4/4) Updating the MIME type database...
2695==> Retrieving sources...
2696 -> Downloading seafile-client-v6.2.5.tar.gz...
2697 % Total % Received % Xferd Average Speed Time Time Time Current
2698 Dload Upload Total Spent Left Speed
2699100 129 0 129 0 0 166 0 --:--:-- --:--:-- --:--:-- 166
2700100 2287k 0 2287k 0 0 634k 0 --:--:-- 0:00:03 --:--:-- 1206k
2701==> Validating source files with sha256sums...
2702 seafile-client-v6.2.5.tar.gz ... Passed
2703==> Extracting sources...
2704 -> Extracting seafile-client-v6.2.5.tar.gz with bsdtar
2705==> Starting prepare()...
2706==> Starting build()...
2707-- The C compiler identification is GNU 8.2.1
2708-- The CXX compiler identification is GNU 8.2.1
2709-- Check for working C compiler: /usr/lib/ccache/bin/cc
2710-- Check for working C compiler: /usr/lib/ccache/bin/cc -- works
2711-- Detecting C compiler ABI info
2712-- Detecting C compiler ABI info - done
2713-- Detecting C compile features
2714-- Detecting C compile features - done
2715-- Check for working CXX compiler: /usr/lib/ccache/bin/c++
2716-- Check for working CXX compiler: /usr/lib/ccache/bin/c++ -- works
2717-- Detecting CXX compiler ABI info
2718-- Detecting CXX compiler ABI info - done
2719-- Detecting CXX compile features
2720-- Detecting CXX compile features - done
2721-- Found PkgConfig: /usr/bin/pkg-config (found version "1.5.3")
2722Build type: Release
2723qt5 version: 5.11.2
2724-- Looking for pthread.h
2725-- Looking for pthread.h - found
2726-- Looking for pthread_create
2727-- Looking for pthread_create - not found
2728-- Looking for pthread_create in pthreads
2729-- Looking for pthread_create in pthreads - not found
2730-- Looking for pthread_create in pthread
2731-- Looking for pthread_create in pthread - found
2732-- Found Threads: TRUE
2733-- Checking for module 'sqlite3>=3.0.0'
2734-- Found sqlite3, version 3.25.1
2735-- Checking for module 'jansson>=2.0'
2736-- Found jansson, version 2.11
2737-- Checking for module 'libsearpc>=1.0'
2738-- Found libsearpc, version 3.1.0
2739-- Checking for module 'openssl>=0.98'
2740-- Found openssl, version 1.1.1
2741-- Checking for module 'libseafile>=1.7'
2742-- Found libseafile, version 6.2.5
2743-- Checking for module 'libevent>=2.0'
2744-- Found libevent, version 2.1.8-stable
2745-- Checking for module 'zlib>=1.2'
2746-- Found zlib, version 1.2.11
2747-- Found internal library: utils
2748-- Found internal library: quazip
2749-- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
2750-- Configuring done
2751-- Generating done
2752-- Build files have been written to: /tmp/trizen-trizen/seafile-client/src/build
2753Scanning dependencies of target utils
2754Scanning dependencies of target quazip
2755[ 0%] Building CXX object CMakeFiles/quazip.dir/third_party/quazip/JlCompress.cpp.o
2756[ 1%] Building CXX object CMakeFiles/utils.dir/src/utils/utils.cpp.o
2757[ 1%] Building CXX object CMakeFiles/quazip.dir/third_party/quazip/quazip.cpp.o
2758[ 1%] Building CXX object CMakeFiles/utils.dir/src/utils/rsa.cpp.o
2759[ 1%] Building CXX object CMakeFiles/quazip.dir/third_party/quazip/quazipfile.cpp.o
2760[ 1%] Building CXX object CMakeFiles/utils.dir/src/utils/api-utils.cpp.o
2761[ 2%] Building CXX object CMakeFiles/quazip.dir/third_party/quazip/quazipfileinfo.cpp.o
2762[ 2%] Building CXX object CMakeFiles/quazip.dir/third_party/quazip/quaziodevice.cpp.o
2763[ 3%] Building CXX object CMakeFiles/utils.dir/src/utils/paint-utils.cpp.o
2764[ 3%] Building CXX object CMakeFiles/quazip.dir/third_party/quazip/quagzipfile.cpp.o
2765[ 3%] Building CXX object CMakeFiles/quazip.dir/third_party/quazip/quazipnewinfo.cpp.o
2766[ 4%] Building CXX object CMakeFiles/quazip.dir/third_party/quazip/quaadler32.cpp.o
2767[ 4%] Building CXX object CMakeFiles/quazip.dir/third_party/quazip/quazipdir.cpp.o
2768[ 4%] Building CXX object CMakeFiles/utils.dir/src/utils/file-utils.cpp.o
2769[ 4%] Building CXX object CMakeFiles/quazip.dir/third_party/quazip/quacrc32.cpp.o
2770[ 5%] Building CXX object CMakeFiles/quazip.dir/third_party/quazip/qioapi.cpp.o
2771[ 5%] Building C object CMakeFiles/quazip.dir/third_party/quazip/zip.c.o
2772/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/third_party/quazip/zip.c: In function ‘zip64local_SearchCentralDir’:
2773/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/third_party/quazip/zip.c:530:5: warning: this ‘for’ clause does not guard... [-Wmisleading-indentation]
2774 for (i=(int)uReadSize-3; (i--)>0;)
2775 ^~~
2776/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/third_party/quazip/zip.c:538:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘for’
2777 if (uPosFound!=0)
2778 ^~
2779[ 5%] Building C object CMakeFiles/quazip.dir/third_party/quazip/unzip.c.o
2780[ 5%] Building CXX object CMakeFiles/utils.dir/src/utils/translate-commit-desc.cpp.o
2781[ 5%] Linking CXX static library libquazip.a
2782[ 5%] Built target quazip
2783[ 5%] Building CXX object CMakeFiles/utils.dir/src/utils/json-utils.cpp.o
2784[ 6%] Building C object CMakeFiles/utils.dir/src/utils/log.c.o
2785[ 6%] Building CXX object CMakeFiles/utils.dir/src/utils/stl.cpp.o
2786[ 6%] Building CXX object CMakeFiles/utils.dir/src/utils/process-linux.cpp.o
2787[ 7%] Linking CXX static library libutils.a
2788[ 7%] Built target utils
2789[ 8%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_nb_NO.qm
2790[ 8%] Generating src/moc_seafile-applet.cpp
2791[ 8%] Generating src/moc_account-mgr.cpp
2792Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_nb_NO.qm'...
2793 Generated 451 translation(s) (451 finished and 0 unfinished)
2794 Ignored 277 untranslated source text(s)
2795[ 9%] Generating src/moc_daemon-mgr.cpp
2796[ 9%] Generating src/moc_configurator.cpp
2797[ 9%] Generating src/moc_repo-service.cpp
2798[ 9%] Generating src/moc_auto-login-service.cpp
2799[ 9%] Generating src/moc_repo-service-helper.cpp
2800[ 10%] Generating src/moc_events-service.cpp
2801[ 10%] Generating src/moc_avatar-service.cpp
2802[ 10%] Generating src/moc_open-local-helper.cpp
2803[ 11%] Generating src/moc_server-status-service.cpp
2804[ 11%] Generating src/moc_account-info-service.cpp
2805[ 11%] Generating src/moc_customization-service.cpp
2806[ 11%] Generating src/moc_message-poller.cpp
2807[ 12%] Generating src/moc_network-mgr.cpp
2808[ 12%] Generating src/moc_settings-mgr.cpp
2809[ 12%] Generating src/moc_traynotificationwidget.cpp
2810[ 13%] Generating src/moc_traynotificationmanager.cpp
2811[ 13%] Generating src/moc_log-uploader.cpp
2812[ 13%] Generating src/api/moc_api-client.cpp
2813[ 13%] Generating src/api/moc_api-request.cpp
2814[ 14%] Generating src/api/moc_requests.cpp
2815[ 14%] Generating src/rpc/moc_rpc-client.cpp
2816[ 14%] Generating src/rpc/moc_rpc-server.cpp
2817[ 15%] Generating src/ui/moc_main-window.cpp
2818[ 15%] Generating src/ui/moc_init-seafile-dialog.cpp
2819[ 15%] Generating src/ui/moc_login-dialog.cpp
2820[ 15%] Generating src/ui/moc_account-settings-dialog.cpp
2821[ 16%] Generating src/ui/moc_check-repo-root-perm-dialog.cpp
2822[ 16%] Generating src/ui/moc_create-repo-dialog.cpp
2823[ 16%] Generating src/ui/moc_repo-detail-dialog.cpp
2824[ 17%] Generating src/ui/moc_settings-dialog.cpp
2825[ 17%] Generating src/ui/moc_download-repo-dialog.cpp
2826[ 17%] Generating src/ui/moc_cloud-view.cpp
2827[ 17%] Generating src/ui/moc_tray-icon.cpp
2828[ 18%] Generating src/ui/moc_about-dialog.cpp
2829[ 18%] Generating src/ui/moc_repo-tree-model.cpp
2830[ 18%] Generating src/ui/moc_repo-tree-view.cpp
2831[ 19%] Generating src/ui/moc_repo-item-delegate.cpp
2832[ 19%] Generating src/ui/moc_clone-tasks-dialog.cpp
2833[ 19%] Generating src/ui/moc_clone-tasks-table-model.cpp
2834[ 20%] Generating src/ui/moc_clone-tasks-table-view.cpp
2835[ 20%] Generating src/ui/moc_server-status-dialog.cpp
2836[ 20%] Generating src/ui/moc_search-tab.cpp
2837[ 20%] Generating src/ui/moc_search-tab-items.cpp
2838[ 21%] Generating src/ui/moc_uninstall-helper-dialog.cpp
2839[ 21%] Generating src/ui/moc_init-vdrive-dialog.cpp
2840[ 21%] Generating src/ui/moc_ssl-confirm-dialog.cpp
2841[ 21%] Generating src/ui/moc_private-share-dialog.cpp
2842[ 22%] Generating src/ui/moc_user-name-completer.cpp
2843[ 22%] Generating src/ui/moc_account-view.cpp
2844[ 23%] Generating src/ui/moc_seafile-tab-widget.cpp
2845[ 23%] Generating src/ui/moc_tab-view.cpp
2846[ 23%] Generating src/ui/moc_loading-view.cpp
2847[ 23%] Generating src/ui/moc_logout-view.cpp
2848[ 23%] Generating src/ui/moc_repos-tab.cpp
2849[ 24%] Generating src/ui/moc_starred-files-tab.cpp
2850[ 24%] Generating src/ui/moc_starred-files-list-model.cpp
2851[ 24%] Generating src/ui/moc_starred-files-list-view.cpp
2852[ 25%] Generating src/ui/moc_activities-tab.cpp
2853[ 25%] Generating src/ui/moc_starred-file-item-delegate.cpp
2854[ 25%] Generating src/ui/moc_events-list-view.cpp
2855[ 25%] Generating src/ui/moc_event-details-dialog.cpp
2856[ 26%] Generating src/ui/moc_event-details-tree.cpp
2857[ 26%] Generating src/ui/moc_set-repo-password-dialog.cpp
2858[ 27%] Generating src/ui/moc_sync-errors-dialog.cpp
2859[ 27%] Generating src/ui/moc_search-bar.cpp
2860[ 27%] Generating src/filebrowser/moc_file-browser-manager.cpp
2861[ 27%] Generating src/ui/moc_two-factor-dialog.cpp
2862[ 27%] Generating src/filebrowser/moc_file-browser-dialog.cpp
2863[ 28%] Generating src/filebrowser/moc_file-browser-requests.cpp
2864[ 28%] Generating src/filebrowser/moc_file-browser-search-tab.cpp
2865[ 28%] Generating src/filebrowser/moc_file-table.cpp
2866[ 29%] Generating src/filebrowser/moc_data-mgr.cpp
2867[ 29%] Generating src/filebrowser/moc_tasks.cpp
2868[ 29%] Generating src/filebrowser/moc_reliable-upload.cpp
2869[ 29%] Generating src/filebrowser/moc_progress-dialog.cpp
2870[ 30%] Generating src/filebrowser/moc_sharedlink-dialog.cpp
2871[ 30%] Generating src/filebrowser/moc_seafilelink-dialog.cpp
2872[ 30%] Generating src/filebrowser/moc_auto-update-mgr.cpp
2873[ 30%] Generating src/filebrowser/moc_transfer-mgr.cpp
2874[ 31%] Generating src/filebrowser/moc_thumbnail-service.cpp
2875[ 31%] Generating third_party/QtAwesome/moc_QtAwesome.cpp
2876[ 31%] Generating third_party/quazip/moc_quazipfile.cpp
2877[ 32%] Generating src/shib/moc_shib-login-dialog.cpp
2878[ 32%] Generating src/shib/moc_shib-helper.cpp
2879[ 32%] Generating ui_login-dialog.h
2880[ 32%] Generating ui_about-dialog.h
2881[ 33%] Generating ui_account-settings-dialog.h
2882[ 33%] Generating ui_create-repo-dialog.h
2883/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/ui/account-settings-dialog.ui: Warning: Z-order assignment: '' is not a valid widget.
2884[ 34%] Generating ui_settings-dialog.h
2885[ 34%] Generating ui_repo-detail-dialog.h
2886[ 34%] Generating ui_init-seafile-dialog.h
2887[ 34%] Generating ui_download-repo-dialog.h
2888[ 34%] Generating ui_cloud-view.h
2889[ 35%] Generating ui_clone-tasks-dialog.h
2890[ 35%] Generating ui_init-vdrive-dialog.h
2891[ 35%] Generating ui_server-status-dialog.h
2892[ 35%] Generating ui_ssl-confirm-dialog.h
2893[ 36%] Generating ui_uninstall-helper-dialog.h
2894[ 36%] Generating ui_private-share-dialog.h
2895[ 36%] Generating ui_account-view.h
2896[ 37%] Generating ui_two-factor-dialog.h
2897[ 37%] Generating ui_set-repo-password-dialog.h
2898[ 37%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_ca.qm
2899Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_ca.qm'...
2900 Generated 232 translation(s) (232 finished and 0 unfinished)
2901 Ignored 496 untranslated source text(s)
2902[ 37%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_de_DE.qm
2903[ 37%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_en.qm
2904Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_de_DE.qm'...
2905 Generated 725 translation(s) (725 finished and 0 unfinished)
2906 Ignored 3 untranslated source text(s)
2907Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_en.qm'...
2908 Generated 0 translation(s) (0 finished and 0 unfinished)
2909 Ignored 728 untranslated source text(s)
2910[ 38%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_es.qm
2911[ 38%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_es_AR.qm
2912Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_es.qm'...
2913 Generated 702 translation(s) (702 finished and 0 unfinished)
2914 Ignored 26 untranslated source text(s)
2915Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_es_AR.qm'...
2916 Generated 702 translation(s) (702 finished and 0 unfinished)
2917 Ignored 26 untranslated source text(s)
2918[ 38%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_es_MX.qm
2919[ 39%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_fr_FR.qm
2920Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_es_MX.qm'...
2921 Generated 702 translation(s) (702 finished and 0 unfinished)
2922 Ignored 26 untranslated source text(s)
2923Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_fr_FR.qm'...
2924 Generated 702 translation(s) (702 finished and 0 unfinished)
2925 Ignored 26 untranslated source text(s)
2926[ 39%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_he_IL.qm
2927[ 39%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_hu_HU.qm
2928Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_he_IL.qm'...
2929 Generated 195 translation(s) (195 finished and 0 unfinished)
2930 Ignored 533 untranslated source text(s)
2931Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_hu_HU.qm'...
2932 Generated 634 translation(s) (634 finished and 0 unfinished)
2933 Ignored 94 untranslated source text(s)
2934[ 39%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_is.qm
2935[ 40%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_it.qm
2936Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_is.qm'...
2937 Generated 566 translation(s) (566 finished and 0 unfinished)
2938 Ignored 162 untranslated source text(s)
2939Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_it.qm'...
2940 Generated 675 translation(s) (675 finished and 0 unfinished)
2941 Ignored 53 untranslated source text(s)
2942[ 40%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_ko_KR.qm
2943[ 40%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_nl_BE.qm
2944Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_ko_KR.qm'...
2945 Generated 648 translation(s) (648 finished and 0 unfinished)
2946 Ignored 80 untranslated source text(s)
2947Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_nl_BE.qm'...
2948 Generated 392 translation(s) (392 finished and 0 unfinished)
2949 Ignored 336 untranslated source text(s)
2950[ 41%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_pl_PL.qm
2951[ 41%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_pt_BR.qm
2952Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_pt_BR.qm'...
2953Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_pl_PL.qm'...
2954 Generated 520 translation(s) (520 finished and 0 unfinished)
2955 Ignored 208 untranslated source text(s)
2956 Generated 687 translation(s) (687 finished and 0 unfinished)
2957 Ignored 41 untranslated source text(s)
2958[ 41%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_pt_PT.qm
2959[ 41%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_ru.qm
2960Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_pt_PT.qm'...
2961 Generated 187 translation(s) (187 finished and 0 unfinished)
2962 Ignored 541 untranslated source text(s)
2963Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_ru.qm'...
2964 Generated 725 translation(s) (725 finished and 0 unfinished)
2965 Ignored 3 untranslated source text(s)
2966[ 42%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_sk_SK.qm
2967[ 42%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_uk.qm
2968Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_sk_SK.qm'...
2969 Generated 195 translation(s) (195 finished and 0 unfinished)
2970 Ignored 533 untranslated source text(s)
2971Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_uk.qm'...
2972 Generated 215 translation(s) (215 finished and 0 unfinished)
2973 Ignored 513 untranslated source text(s)
2974[ 42%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_zh_CN.qm
2975[ 43%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_zh_TW.qm
2976Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_zh_CN.qm'...
2977 Generated 728 translation(s) (728 finished and 0 unfinished)
2978Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_zh_TW.qm'...
2979 Generated 486 translation(s) (486 finished and 0 unfinished)
2980 Ignored 242 untranslated source text(s)
2981[ 43%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_tr.qm
2982[ 43%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_nl_NL.qm
2983Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_tr.qm'...
2984 Generated 486 translation(s) (486 finished and 0 unfinished)
2985 Ignored 242 untranslated source text(s)
2986Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_nl_NL.qm'...
2987 Generated 596 translation(s) (596 finished and 0 unfinished)
2988 Ignored 132 untranslated source text(s)
2989[ 43%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_lv.qm
2990[ 44%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_ja.qm
2991Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_lv.qm'...
2992 Generated 317 translation(s) (317 finished and 0 unfinished)
2993 Ignored 411 untranslated source text(s)
2994Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_ja.qm'...
2995 Generated 200 translation(s) (200 finished and 0 unfinished)
2996 Ignored 528 untranslated source text(s)
2997[ 44%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_sv.qm
2998[ 44%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_cs_CZ.qm
2999Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_sv.qm'...
3000 Generated 49 translation(s) (49 finished and 0 unfinished)
3001 Ignored 679 untranslated source text(s)
3002Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_cs_CZ.qm'...
3003 Generated 644 translation(s) (644 finished and 0 unfinished)
3004 Ignored 84 untranslated source text(s)
3005[ 45%] Generating /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_el_GR.qm
3006[ 46%] Generating qrc_QtAwesome.cpp
3007Updating '/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/i18n/seafile_el_GR.qm'...
3008 Generated 569 translation(s) (569 finished and 0 unfinished)
3009 Ignored 159 untranslated source text(s)
3010[ 46%] Generating qrc_seafile-client.cpp
3011Scanning dependencies of target seafile-applet
3012[ 46%] Building CXX object CMakeFiles/seafile-applet.dir/src/i18n.cpp.o
3013[ 46%] Building CXX object CMakeFiles/seafile-applet.dir/src/main.cpp.o
3014[ 47%] Building CXX object CMakeFiles/seafile-applet.dir/src/seafile-applet.cpp.o
3015[ 47%] Building CXX object CMakeFiles/seafile-applet.dir/src/account.cpp.o
3016[ 47%] Building CXX object CMakeFiles/seafile-applet.dir/src/account-mgr.cpp.o
3017[ 48%] Building CXX object CMakeFiles/seafile-applet.dir/src/daemon-mgr.cpp.o
3018[ 48%] Building CXX object CMakeFiles/seafile-applet.dir/src/configurator.cpp.o
3019[ 48%] Building CXX object CMakeFiles/seafile-applet.dir/src/open-local-helper.cpp.o
3020[ 48%] Building CXX object CMakeFiles/seafile-applet.dir/src/message-poller.cpp.o
3021[ 49%] Building CXX object CMakeFiles/seafile-applet.dir/src/network-mgr.cpp.o
3022[ 49%] Building CXX object CMakeFiles/seafile-applet.dir/src/auto-login-service.cpp.o
3023[ 49%] Building CXX object CMakeFiles/seafile-applet.dir/src/repo-service.cpp.o
3024[ 50%] Building CXX object CMakeFiles/seafile-applet.dir/src/repo-service-helper.cpp.o
3025[ 50%] Building CXX object CMakeFiles/seafile-applet.dir/src/events-service.cpp.o
3026/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/repo-service.cpp: In member function ‘void RepoService::removeCloudFileBrowserCache()’:
3027/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/repo-service.cpp:530:53: warning: null argument where non-null required (argument 1) [-Wnonnull]
3028 ::unlink((const char*)(toCStr(fullpath)));
3029 ^
3030/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/repo-service.cpp: In member function ‘virtual void WipeFilesThread::run()’:
3031/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/repo-service.cpp:549:42: warning: null argument where non-null required (argument 1) [-Wnonnull]
3032 ::unlink(toCStr(cached_files_[i]));
3033 ^
3034[ 50%] Building CXX object CMakeFiles/seafile-applet.dir/src/server-status-service.cpp.o
3035[ 50%] Building CXX object CMakeFiles/seafile-applet.dir/src/account-info-service.cpp.o
3036[ 51%] Building CXX object CMakeFiles/seafile-applet.dir/src/customization-service.cpp.o
3037[ 51%] Building CXX object CMakeFiles/seafile-applet.dir/src/avatar-service.cpp.o
3038[ 51%] Building CXX object CMakeFiles/seafile-applet.dir/src/settings-mgr.cpp.o
3039[ 52%] Building CXX object CMakeFiles/seafile-applet.dir/src/traynotificationwidget.cpp.o
3040[ 52%] Building CXX object CMakeFiles/seafile-applet.dir/src/traynotificationmanager.cpp.o
3041[ 52%] Building CXX object CMakeFiles/seafile-applet.dir/src/certs-mgr.cpp.o
3042In file included from /tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/traynotificationmanager.cpp:1:
3043/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/traynotificationmanager.h: In constructor ‘TrayNotificationManager::TrayNotificationManager(QObject*)’:
3044/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/traynotificationmanager.h:21:37: warning: ‘TrayNotificationManager::notificationWidgets’ will be initialized after [-Wreorder]
3045 QList<TrayNotificationWidget*>* notificationWidgets;
3046 ^~~~~~~~~~~~~~~~~~~
3047/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/traynotificationmanager.cpp:4:78: warning: base ‘QObject’ [-Wreorder]
3048 : notificationWidgets(new QList<TrayNotificationWidget*>()), QObject(parent)
3049 ^
3050/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/traynotificationmanager.cpp:3:1: warning: when initialized here [-Wreorder]
3051 TrayNotificationManager::TrayNotificationManager(QObject *parent)
3052 ^~~~~~~~~~~~~~~~~~~~~~~
3053[ 52%] Building CXX object CMakeFiles/seafile-applet.dir/src/log-uploader.cpp.o
3054[ 53%] Building CXX object CMakeFiles/seafile-applet.dir/src/api/api-client.cpp.o
3055[ 53%] Building CXX object CMakeFiles/seafile-applet.dir/src/api/api-request.cpp.o
3056[ 53%] Building CXX object CMakeFiles/seafile-applet.dir/src/api/api-error.cpp.o
3057[ 54%] Building CXX object CMakeFiles/seafile-applet.dir/src/api/requests.cpp.o
3058/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/api/api-error.cpp: In member function ‘bool ApiError::operator==(const ApiError&)’:
3059/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/api/api-error.cpp:84:10: warning: ‘same’ may be used uninitialized in this function [-Wmaybe-uninitialized]
3060 bool same;
3061 ^~~~
3062[ 54%] Building CXX object CMakeFiles/seafile-applet.dir/src/api/server-repo.cpp.o
3063[ 54%] Building CXX object CMakeFiles/seafile-applet.dir/src/api/starred-file.cpp.o
3064[ 54%] Building CXX object CMakeFiles/seafile-applet.dir/src/api/event.cpp.o
3065[ 55%] Building CXX object CMakeFiles/seafile-applet.dir/src/api/commit-details.cpp.o
3066[ 55%] Building CXX object CMakeFiles/seafile-applet.dir/src/api/contact-share-info.cpp.o
3067[ 55%] Building CXX object CMakeFiles/seafile-applet.dir/src/rpc/rpc-client.cpp.o
3068[ 55%] Building CXX object CMakeFiles/seafile-applet.dir/src/rpc/rpc-server.cpp.o
3069[ 56%] Building CXX object CMakeFiles/seafile-applet.dir/src/rpc/local-repo.cpp.o
3070/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/rpc/rpc-client.cpp: In member function ‘int SeafileRpcClient::listLocalRepos(std::vector<LocalRepo>*)’:
3071/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/rpc/rpc-client.cpp:131:35: warning: cast between incompatible function types from ‘void (*)(gpointer)’ {aka ‘void (*)(void*)’} to ‘GFunc’ {aka ‘void (*)(void*, void*)’} [-Wcast-function-type]
3072 g_list_foreach (repos, (GFunc)g_object_unref, NULL);
3073 ^~~~~~~~~~~~~~
3074/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/rpc/rpc-client.cpp: In member function ‘int SeafileRpcClient::getCloneTasks(std::vector<CloneTask>*)’:
3075/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/rpc/rpc-client.cpp:452:37: warning: cast between incompatible function types from ‘void (*)(gpointer)’ {aka ‘void (*)(void*)’} to ‘GFunc’ {aka ‘void (*)(void*, void*)’} [-Wcast-function-type]
3076 g_list_foreach (objlist, (GFunc)g_object_unref, NULL);
3077 ^~~~~~~~~~~~~~
3078/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/rpc/rpc-client.cpp: In member function ‘int SeafileRpcClient::getCloneTasksCount(int*)’:
3079/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/rpc/rpc-client.cpp:569:37: warning: cast between incompatible function types from ‘void (*)(gpointer)’ {aka ‘void (*)(void*)’} to ‘GFunc’ {aka ‘void (*)(void*, void*)’} [-Wcast-function-type]
3080 g_list_foreach (objlist, (GFunc)g_object_unref, NULL);
3081 ^~~~~~~~~~~~~~
3082/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/rpc/rpc-client.cpp: In member function ‘bool SeafileRpcClient::getCommitDiff(const QString&, const QString&, const QString&, CommitDetails*)’:
3083/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/rpc/rpc-client.cpp:974:37: warning: cast between incompatible function types from ‘void (*)(gpointer)’ {aka ‘void (*)(void*)’} to ‘GFunc’ {aka ‘void (*)(void*, void*)’} [-Wcast-function-type]
3084 g_list_foreach (objlist, (GFunc)g_object_unref, NULL);
3085 ^~~~~~~~~~~~~~
3086/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/rpc/rpc-client.cpp: In member function ‘bool SeafileRpcClient::getSyncErrors(std::vector<SyncError>*, int, int)’:
3087/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/rpc/rpc-client.cpp:994:37: warning: cast between incompatible function types from ‘void (*)(gpointer)’ {aka ‘void (*)(void*)’} to ‘GFunc’ {aka ‘void (*)(void*, void*)’} [-Wcast-function-type]
3088 g_list_foreach (objlist, (GFunc)g_object_unref, NULL);
3089 ^~~~~~~~~~~~~~
3090[ 56%] Building CXX object CMakeFiles/seafile-applet.dir/src/rpc/clone-task.cpp.o
3091[ 56%] Building CXX object CMakeFiles/seafile-applet.dir/src/rpc/sync-error.cpp.o
3092[ 57%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/about-dialog.cpp.o
3093[ 57%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/main-window.cpp.o
3094[ 57%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/init-seafile-dialog.cpp.o
3095[ 57%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/login-dialog.cpp.o
3096[ 58%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/account-settings-dialog.cpp.o
3097[ 58%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/check-repo-root-perm-dialog.cpp.o
3098[ 58%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/repo-detail-dialog.cpp.o
3099[ 59%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/settings-dialog.cpp.o
3100[ 59%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/create-repo-dialog.cpp.o
3101[ 59%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/download-repo-dialog.cpp.o
3102[ 59%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/tray-icon.cpp.o
3103[ 60%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/cloud-view.cpp.o
3104[ 60%] Building CXX object CMakeFiles/seafile-applet.dir/src/utils/uninstall-helpers.cpp.o
3105/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/utils/uninstall-helpers.cpp: In function ‘int {anonymous}::posix_rmdir(const QString&)’:
3106/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/utils/uninstall-helpers.cpp:57:57: warning: null argument where non-null required (argument 1) [-Wnonnull]
3107 std::unique_ptr<char[]> root_ptr(strdup(toCStr(root)));
3108 ^
3109[ 60%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/repo-item.cpp.o
3110[ 61%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/repo-tree-model.cpp.o
3111[ 61%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/repo-tree-view.cpp.o
3112[ 61%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/repo-item-delegate.cpp.o
3113/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/repo-item-delegate.cpp: In member function ‘void RepoItemDelegate::paintRepoItem(QPainter*, const QStyleOptionViewItem&, const RepoItem*) const’:
3114/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/repo-item-delegate.cpp:225:9: warning: variable ‘scale_factor’ set but not used [-Wunused-but-set-variable]
3115 int scale_factor = 1;
3116 ^~~~~~~~~~~~
3117/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/repo-item-delegate.cpp: In member function ‘void RepoItemDelegate::paintRepoCategoryItem(QPainter*, const QStyleOptionViewItem&, const RepoCategoryItem*) const’:
3118/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/repo-item-delegate.cpp:393:9: warning: variable ‘scale_factor’ set but not used [-Wunused-but-set-variable]
3119 int scale_factor = 1;
3120 ^~~~~~~~~~~~
3121[ 61%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/clone-tasks-dialog.cpp.o
3122[ 62%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/clone-tasks-table-model.cpp.o
3123[ 62%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/clone-tasks-table-view.cpp.o
3124[ 62%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/server-status-dialog.cpp.o
3125[ 63%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/init-vdrive-dialog.cpp.o
3126[ 63%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/uninstall-helper-dialog.cpp.o
3127[ 63%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/search-tab.cpp.o
3128[ 63%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/search-tab-items.cpp.o
3129/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/search-tab.cpp: In member function ‘virtual bool SearchTab::eventFilter(QObject*, QEvent*)’:
3130/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/search-tab.cpp:146:13: warning: variable ‘scale_factor’ set but not used [-Wunused-but-set-variable]
3131 int scale_factor = 1;
3132 ^~~~~~~~~~~~
3133[ 64%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/ssl-confirm-dialog.cpp.o
3134[ 64%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/private-share-dialog.cpp.o
3135[ 64%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/user-name-completer.cpp.o
3136[ 65%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/proxy-style.cpp.o
3137[ 65%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/account-view.cpp.o
3138[ 65%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/seafile-tab-widget.cpp.o
3139[ 65%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/tab-view.cpp.o
3140[ 66%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/loading-view.cpp.o
3141[ 66%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/logout-view.cpp.o
3142[ 66%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/repos-tab.cpp.o
3143[ 67%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/starred-files-tab.cpp.o
3144[ 67%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/starred-files-list-view.cpp.o
3145[ 67%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/starred-files-list-model.cpp.o
3146[ 67%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/starred-file-item.cpp.o
3147[ 68%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/starred-file-item-delegate.cpp.o
3148[ 68%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/activities-tab.cpp.o
3149[ 68%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/events-list-view.cpp.o
3150[ 69%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/event-details-dialog.cpp.o
3151[ 69%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/event-details-tree.cpp.o
3152[ 69%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/set-repo-password-dialog.cpp.o
3153/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/event-details-tree.cpp: In member function ‘virtual void EventDetailsFileItemDelegate::paint(QPainter*, const QStyleOptionViewItem&, const QModelIndex&) const’:
3154/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/event-details-tree.cpp:41:10: warning: variable ‘selected’ set but not used [-Wunused-but-set-variable]
3155 bool selected = false;
3156 ^~~~~~~~
3157/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/event-details-tree.cpp: In member function ‘QString EventDetailsFileItem::etype_desc() const’:
3158/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/event-details-tree.cpp:138:1: warning: control reaches end of non-void function [-Wreturn-type]
3159 }
3160 ^
3161/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/event-details-tree.cpp: In member function ‘QIcon EventDetailsFileItem::etype_icon() const’:
3162/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/event-details-tree.cpp:156:1: warning: control reaches end of non-void function [-Wreturn-type]
3163 }
3164 ^
3165/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/event-details-tree.cpp: In member function ‘const char* EventDetailsFileItem::etype_color() const’:
3166/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/ui/event-details-tree.cpp:174:1: warning: control reaches end of non-void function [-Wreturn-type]
3167 }
3168 ^
3169[ 69%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/sync-errors-dialog.cpp.o
3170[ 70%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/search-bar.cpp.o
3171[ 70%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/two-factor-dialog.cpp.o
3172[ 70%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/file-browser-manager.cpp.o
3173[ 71%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/file-browser-dialog.cpp.o
3174[ 71%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/file-browser-requests.cpp.o
3175[ 71%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/file-browser-search-tab.cpp.o
3176[ 71%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/data-mgr.cpp.o
3177[ 72%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/data-cache.cpp.o
3178/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/filebrowser/file-browser-search-tab.cpp: In member function ‘virtual void FileBrowserSearchItemDelegate::paint(QPainter*, const QStyleOptionViewItem&, const QModelIndex&) const’:
3179/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/filebrowser/file-browser-search-tab.cpp:133:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
3180 if (!text.isEmpty())
3181 ^~
3182/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/filebrowser/file-browser-search-tab.cpp:135:5: note: here
3183 case FILE_COLUMN_MTIME:
3184 ^~~~
3185[ 72%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/file-table.cpp.o
3186[ 72%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/seaf-dirent.cpp.o
3187[ 73%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/reliable-upload.cpp.o
3188[ 73%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/tasks.cpp.o
3189/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/filebrowser/file-table.cpp: In member function ‘virtual void FileTableViewDelegate::paint(QPainter*, const QStyleOptionViewItem&, const QModelIndex&) const’:
3190/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/filebrowser/file-table.cpp:224:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
3191 if (!text.isEmpty())
3192 ^~
3193/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/filebrowser/file-table.cpp:227:5: note: here
3194 case FILE_COLUMN_MTIME:
3195 ^~~~
3196/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/filebrowser/file-table.cpp:228:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
3197 if (index.column() == FILE_COLUMN_MTIME)
3198 ^~
3199/tmp/trizen-trizen/seafile-client/src/seafile-client-6.2.5/src/filebrowser/file-table.cpp:231:5: note: here
3200 case FILE_COLUMN_MODIFIER:
3201 ^~~~
3202[ 73%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/progress-dialog.cpp.o
3203[ 73%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/sharedlink-dialog.cpp.o
3204[ 74%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/seafilelink-dialog.cpp.o
3205[ 74%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/auto-update-mgr.cpp.o
3206[ 74%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/transfer-mgr.cpp.o
3207[ 75%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/thumbnail-service.cpp.o
3208[ 75%] Building CXX object CMakeFiles/seafile-applet.dir/third_party/QtAwesome/QtAwesome.cpp.o
3209[ 75%] Building CXX object CMakeFiles/seafile-applet.dir/src/shib/shib-login-dialog.cpp.o
3210[ 75%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_seafile-applet.cpp.o
3211[ 76%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_account-mgr.cpp.o
3212[ 76%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_configurator.cpp.o
3213[ 76%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_daemon-mgr.cpp.o
3214[ 77%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_auto-login-service.cpp.o
3215[ 77%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_repo-service.cpp.o
3216[ 77%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_repo-service-helper.cpp.o
3217[ 77%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_events-service.cpp.o
3218[ 78%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_avatar-service.cpp.o
3219[ 78%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_open-local-helper.cpp.o
3220[ 78%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_server-status-service.cpp.o
3221[ 79%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_account-info-service.cpp.o
3222[ 79%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_customization-service.cpp.o
3223[ 79%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_message-poller.cpp.o
3224[ 79%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_network-mgr.cpp.o
3225[ 80%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_settings-mgr.cpp.o
3226[ 80%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_traynotificationwidget.cpp.o
3227[ 80%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_traynotificationmanager.cpp.o
3228[ 80%] Building CXX object CMakeFiles/seafile-applet.dir/src/moc_log-uploader.cpp.o
3229[ 81%] Building CXX object CMakeFiles/seafile-applet.dir/src/api/moc_api-client.cpp.o
3230[ 81%] Building CXX object CMakeFiles/seafile-applet.dir/src/api/moc_api-request.cpp.o
3231[ 81%] Building CXX object CMakeFiles/seafile-applet.dir/src/api/moc_requests.cpp.o
3232[ 82%] Building CXX object CMakeFiles/seafile-applet.dir/src/rpc/moc_rpc-client.cpp.o
3233[ 82%] Building CXX object CMakeFiles/seafile-applet.dir/src/rpc/moc_rpc-server.cpp.o
3234[ 82%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_main-window.cpp.o
3235[ 82%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_init-seafile-dialog.cpp.o
3236[ 83%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_login-dialog.cpp.o
3237[ 83%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_account-settings-dialog.cpp.o
3238[ 83%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_check-repo-root-perm-dialog.cpp.o
3239[ 84%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_create-repo-dialog.cpp.o
3240[ 84%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_repo-detail-dialog.cpp.o
3241[ 84%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_settings-dialog.cpp.o
3242[ 84%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_download-repo-dialog.cpp.o
3243[ 85%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_cloud-view.cpp.o
3244[ 85%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_tray-icon.cpp.o
3245[ 85%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_about-dialog.cpp.o
3246[ 86%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_repo-tree-model.cpp.o
3247[ 86%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_repo-tree-view.cpp.o
3248[ 86%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_repo-item-delegate.cpp.o
3249[ 86%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_clone-tasks-dialog.cpp.o
3250[ 87%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_clone-tasks-table-model.cpp.o
3251[ 87%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_clone-tasks-table-view.cpp.o
3252[ 87%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_server-status-dialog.cpp.o
3253[ 88%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_search-tab.cpp.o
3254[ 88%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_search-tab-items.cpp.o
3255[ 88%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_init-vdrive-dialog.cpp.o
3256[ 88%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_uninstall-helper-dialog.cpp.o
3257[ 89%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_ssl-confirm-dialog.cpp.o
3258[ 89%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_private-share-dialog.cpp.o
3259[ 89%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_user-name-completer.cpp.o
3260[ 90%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_account-view.cpp.o
3261[ 90%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_seafile-tab-widget.cpp.o
3262[ 90%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_tab-view.cpp.o
3263[ 90%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_loading-view.cpp.o
3264[ 91%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_logout-view.cpp.o
3265[ 91%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_repos-tab.cpp.o
3266[ 91%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_starred-files-tab.cpp.o
3267[ 92%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_starred-files-list-view.cpp.o
3268[ 92%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_starred-files-list-model.cpp.o
3269[ 92%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_starred-file-item-delegate.cpp.o
3270[ 92%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_activities-tab.cpp.o
3271[ 93%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_events-list-view.cpp.o
3272[ 93%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_event-details-dialog.cpp.o
3273[ 93%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_event-details-tree.cpp.o
3274[ 94%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_set-repo-password-dialog.cpp.o
3275[ 94%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_sync-errors-dialog.cpp.o
3276[ 94%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_search-bar.cpp.o
3277[ 94%] Building CXX object CMakeFiles/seafile-applet.dir/src/ui/moc_two-factor-dialog.cpp.o
3278[ 95%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_file-browser-manager.cpp.o
3279[ 95%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_file-browser-dialog.cpp.o
3280[ 95%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_file-browser-requests.cpp.o
3281[ 96%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_file-browser-search-tab.cpp.o
3282[ 96%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_file-table.cpp.o
3283[ 96%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_data-mgr.cpp.o
3284[ 96%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_tasks.cpp.o
3285[ 97%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_reliable-upload.cpp.o
3286[ 97%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_progress-dialog.cpp.o
3287[ 97%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_sharedlink-dialog.cpp.o
3288[ 98%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_seafilelink-dialog.cpp.o
3289[ 98%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_auto-update-mgr.cpp.o
3290[ 98%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_transfer-mgr.cpp.o
3291[ 98%] Building CXX object CMakeFiles/seafile-applet.dir/src/filebrowser/moc_thumbnail-service.cpp.o
3292[ 99%] Building CXX object CMakeFiles/seafile-applet.dir/third_party/QtAwesome/moc_QtAwesome.cpp.o
3293[ 99%] Building CXX object CMakeFiles/seafile-applet.dir/third_party/quazip/moc_quazipfile.cpp.o
3294[ 99%] Building CXX object CMakeFiles/seafile-applet.dir/src/shib/moc_shib-login-dialog.cpp.o
3295[100%] Building CXX object CMakeFiles/seafile-applet.dir/src/shib/moc_shib-helper.cpp.o
3296[100%] Building CXX object CMakeFiles/seafile-applet.dir/qrc_seafile-client.cpp.o
3297[100%] Building CXX object CMakeFiles/seafile-applet.dir/qrc_QtAwesome.cpp.o
3298[100%] Linking CXX executable seafile-applet
3299[100%] Built target seafile-applet
3300==> Entering fakeroot environment...
3301==> Starting package()...
3302[ 3%] Built target quazip
3303[ 7%] Built target utils
3304[100%] Built target seafile-applet
3305Install the project...
3306-- Install configuration: "Release"
3307-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/16x16
3308-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/16x16/apps
3309-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/16x16/apps/seafile.png
3310-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/22x22
3311-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/22x22/apps
3312-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/22x22/apps/seafile.png
3313-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/24x24
3314-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/24x24/apps
3315-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/24x24/apps/seafile.png
3316-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/32x32
3317-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/32x32/apps
3318-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/32x32/apps/seafile.png
3319-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/48x48
3320-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/48x48/apps
3321-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/48x48/apps/seafile.png
3322-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/128x128
3323-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/128x128/apps
3324-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/128x128/apps/seafile.png
3325-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/scalable
3326-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/scalable/apps
3327-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/icons/hicolor/scalable/apps/seafile.svg
3328-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/applications/seafile.desktop
3329-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/share/pixmaps/seafile.png
3330-- Installing: /tmp/trizen-trizen/seafile-client/pkg/seafile-client/usr/bin/seafile-applet
3331==> Tidying install...
3332 -> Removing empty directories...
3333 -> Removing libtool files...
3334 -> Purging unwanted files...
3335 -> Removing static library files...
3336 -> Stripping unneeded symbols from binaries and libraries...
3337 -> Compressing man and info pages...
3338==> Checking for packaging issues...
3339==> WARNING: Package contains reference to $srcdir
3340usr/bin/seafile-applet
3341==> Creating package "seafile-client"...
3342 -> Generating .PKGINFO file...
3343 -> Generating .BUILDINFO file...
3344 -> Generating .MTREE file...
3345 -> Compressing package...
3346==> Leaving fakeroot environment.
3347==> Finished making: seafile-client 6.2.5-1 (Mon 01 Oct 2018 07:06:23 PM EEST)
3348==> Cleaning up...
3349loading packages...
3350resolving dependencies...
3351looking for conflicting packages...
3352
3353Packages (1) seafile-client-6.2.5-1
3354
3355Total Installed Size: 3.97 MiB
3356
3357:: Proceed with installation? [Y/n]
3358(1/1) checking keys in keyring [########################################################################################] 100%
3359(1/1) checking package integrity [########################################################################################] 100%
3360(1/1) loading package files [########################################################################################] 100%
3361(1/1) checking for file conflicts [########################################################################################] 100%
3362(1/1) checking available disk space [########################################################################################] 100%
3363:: Processing package changes...
3364(1/1) installing seafile-client [########################################################################################] 100%
3365:: Running post-transaction hooks...
3366(1/3) Updating icon theme caches...
3367(2/3) Arming ConditionNeedsUpdate...
3368(3/3) Updating the desktop file MIME type cache...
3369trizen -S seafile-client 570.80s user 61.55s system 121% cpu 8:38.43 total
3370 /tmp î‚°