~/D/g/mailsync (master)> makepkg -s
==> Making package: mailsync 5.2.1-2 (Friday 28 March 2025 03:58:33 PM)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found mailsync_5.2.1.orig.tar.gz
-> Found imap-2007f.tar.gz
-> Found 1006_openssl1.1_autoverify.patch
-> Found c-client-2006k_GENTOO_amd64-so-fix.patch
==> Validating source files with sha512sums...
mailsync_5.2.1.orig.tar.gz ... Passed
imap-2007f.tar.gz ... Passed
1006_openssl1.1_autoverify.patch ... Passed
c-client-2006k_GENTOO_amd64-so-fix.patch ... Passed
==> Extracting sources...
-> Extracting mailsync_5.2.1.orig.tar.gz with bsdtar
-> Extracting imap-2007f.tar.gz with bsdtar
==> Starting prepare()...
patching file src/osdep/unix/Makefile
Hunk #1 succeeded at 977 with fuzz 1 (offset 15 lines).
patching file src/osdep/unix/ssl_unix.c
==> Removing existing $pkgdir/ directory...
==> Starting build()...
make build EXTRACFLAGS='-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Wno-format-security -Wno-implicit-function-declaration -Wno-incompatible-pointer-types -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -fPIC -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lpam' EXTRALDFLAGS='-Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,-z,pack-relative-relocs' EXTRADRIVERS='mbox' EXTRAAUTHENTICATORS='gss' PASSWDTYPE=pam SSLTYPE=unix IP=4 EXTRASPECIALS='' BUILDTYPE=lnp
make[1]: Entering directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f'
Rebuilding c-client for lnp...
cd c-client;make all CC=cat CCTYPE
CFLAGS="cat CFLAGS" cat SPECIALS
make[2]: Entering directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client'
cat osdepbas.c osdepckp.c osdeplog.c osdepssl.c > osdep.c
Building OS-dependent module
If you get No such file error messages for files x509.h, ssl.h,
pem.h, buffer.h, bio.h, and crypto.h, that means that OpenSSL
is not installed on your system. Either install OpenSSL first
or build with command: make slx SSLTYPE=none
cat CCTYPE -c cat CFLAGS cat OSCFLAGS -c osdep.c
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/stdlib.h:26,
from osdep.h:43,
from osdep.c:31:
/usr/include/features.h:199:3: warning: #warning "_BSD_SOURCE and SVIDSOURCE are deprecated, use DEFAULTSOURCE" [-Wcpp]
199 | # warning "_BSD_SOURCE and SVIDSOURCE are deprecated, use DEFAULTSOURCE"
| ^~~~~~~
In file included from auths.c:2,
from env_unix.c:260,
from osdep.c:50:
auth_gss.c: In function ‘auth_gssapi_server’:
auth_gss.c:399:21: warning: format ‘%s’ expects argument of type ‘char ’, but argument 3 has type ‘void ’ [-Wformat=]
399 | SERVER_LOG ("Failed to acquire credentials for %s",buf.value);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~
| |
| void
auth_gss.c:55:43: note: in definition of macro ‘SERVER_LOG’
55 | #define SERVER_LOG(x,y) syslog (LOG_ALERT,x,y)
| ^
auth_gss.c:399:57: note: format string is defined here
399 | SERVER_LOG ("Failed to acquire credentials for %s",buf.value);
| ~^
| |
| char

| %p
auth_gss.c:406:23: warning: format ‘%s’ expects argument of type ‘char ’, but argument 3 has type ‘void ’ [-Wformat=]
406 | SERVER_LOG ("Unknown GSSAPI failure: %s",resp.value);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~
| |
| void
auth_gss.c:55:43: note: in definition of macro ‘SERVER_LOG’
55 | #define SERVER_LOG(x,y) syslog (LOG_ALERT,x,y)
| ^
auth_gss.c:406:49: note: format string is defined here
406 | SERVER_LOG ("Unknown GSSAPI failure: %s",resp.value);
| ~^
| |
| char

| %p
auth_gss.c:414:21: warning: format ‘%s’ expects argument of type ‘char ’, but argument 3 has type ‘void ’ [-Wformat=]
414 | SERVER_LOG ("GSSAPI mechanism status: %s",resp.value);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~
| |
| void
auth_gss.c:55:43: note: in definition of macro ‘SERVER_LOG’
55 | #define SERVER_LOG(x,y) syslog (LOG_ALERT,x,y)
| ^
auth_gss.c:414:48: note: format string is defined here
414 | SERVER_LOG ("GSSAPI mechanism status: %s",resp.value);
| ~^
| |
| char

| %p
osdep.c: In function ‘ssl_start_work’:
osdep.c:459:40: warning: ‘TLSv1_client_method’ is deprecated: Since OpenSSL 1.1.0 [-Wdeprecated-declarations]
459 | TLSv1_client_method () :
| ^~~~~~~~~~~~~~~~~~~
In file included from osdep.c:267:
/usr/include/openssl/ssl.h:2046:50: note: declared here
2046 | OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD TLSv1_client_method(void);
| ^~~~~~~~~~~~~~~~~~~
osdep.c: In function ‘ssl_server_init’:
osdep.c:954:40: warning: ‘TLSv1_server_method’ is deprecated: Since OpenSSL 1.1.0 [-Wdeprecated-declarations]
954 | TLSv1_server_method () :
| ^~~~~~~~~~~~~~~~~~~
/usr/include/openssl/ssl.h:2045:50: note: declared here
2045 | OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD
TLSv1_server_method(void);
| ^~~~~~~~~~~~~~~~~~~
osdep.c:969:5: warning: ‘SSL_CTX_use_RSAPrivateKey_file’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
969 | else if (!(SSL_CTX_use_RSAPrivateKey_file (stream->context,key,
| ^~~~
/usr/include/openssl/ssl.h:1704:12: note: declared here
1704 | __owur int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX ctx, const char file,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
osdep.c: In function ‘ssl_genkey’:
osdep.c:1025:5: warning: ‘RSA_generate_key’ is deprecated: Since OpenSSL 0.9.8 [-Wdeprecated-declarations]
1025 | if (!(key = RSA_generate_key (export ? keylength : 1024,RSA_F4,NIL,NIL))) {
| ^~
In file included from /usr/include/openssl/x509.h:36,
from /usr/include/openssl/x509v3.h:25,
from osdep.c:266:
/usr/include/openssl/rsa.h:264:30: note: declared here
264 | OSSL_DEPRECATEDIN_0_9_8 RSA RSA_generate_key(int bits, unsigned long e, void
| ^~~~~~~~~~~~~~~~
In file included from auths.c:4:
auth_md5.c: In function ‘auth_md5_pwd’:
auth_md5.c:195:5: warning: ignoring return value of ‘read’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
195 | read (fd,buf = (char
) fs_get (sbuf.st_size + 1),sbuf.st_size);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
env_unix.c: In function ‘pw_login’:
env_unix.c:785:44: warning: ignoring return value of ‘chdir’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
785 | (ret = env_init (user,home))) chdir (myhomedir ());
| ^~~~~~~~~~~~~~~~~~~~
In file included from osdep.c:53:
tcp_unix.c: In function ‘tcp_name’:
tcp_unix.c:979:44: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 1001 [-Wformat-overflow=]
979 | sprintf (tmp,"Reverse DNS resolution %s",adr);
| ^~ ~~~
In file included from /usr/include/stdio.h:970,
from osdep.c:32:
In function ‘sprintf’,
inlined from ‘tcp_name’ at tcp_unix.c:979:7:
/usr/include/bits/stdio2.h:30:10: note: ‘__builtin___sprintf_chk’ output between 24 and 1047 bytes into a destination of size 1024
30 | return builtin_sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31 | __glibc_objsize (__s), fmt,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32 |
va_arg_pack ());
| ~~~~~~~~~~~~~~~~~
tcp_unix.c: In function ‘tcp_name’:
tcp_unix.c:987:42: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=]
987 | if (flag) sprintf (ret = tmp,"%s %s",t,adr);
| ^
In function ‘sprintf’,
inlined from ‘tcp_name’ at tcp_unix.c:987:17:
/usr/include/bits/stdio2.h:30:10: note: ‘__builtin___sprintf_chk’ output 2 or more bytes (assuming 1025) into a destination of size 1024
30 | return builtin_sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31 | __glibc_objsize (__s), fmt,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32 |
va_arg_pack ());
| ~~~~~~~~~~~~~~~~~
sh -c 'rm -rf c-client.a || true'
ar rc c-client.a osdep.o mail.o misc.o newsrc.o smanager.o utf8.o utf8aux.o siglocal.o dummy.o pseudo.o netmsg.o flstring.o fdstring.o rfc822.o nntp.o smtp.o imap4r1.o pop3.o unix.o mbx.o mmdf.o tenex.o mtx.o news.o phile.o mh.o mx.o mix.o;ranlib c-client.a
cc -g -O2 -pipe -fno-omit-frame-pointer -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Wno-format-security -Wno-implicit-function-declaration -Wno-incompatible-pointer-types -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -fPIC -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lpam -DCHUNKSIZE=65536 -shared -Wl,-soname,libc-client.so.1 -o libc-client.so.1.0.0 osdep.o mail.o misc.o newsrc.o smanager.o utf8.o utf8aux.o siglocal.o dummy.o pseudo.o netmsg.o flstring.o fdstring.o rfc822.o nntp.o smtp.o imap4r1.o pop3.o unix.o mbx.o mmdf.o tenex.o mtx.o news.o phile.o mh.o mx.o mix.o
/usr/bin/ld: osdep.o: in function ssl_onceonlyinit': /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:337:(.text+0x63a0): warning: the use of tmpnam' is dangerous, better use mkstemp' make[2]: Leaving directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client' sh -c 'rm -rf rebuild || true' Building bundled tools... cd mtest;make make[2]: Entering directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/mtest' cat ../c-client/CCTYPE-I../c-clientcat ../c-client/CFLAGS-o mtest mtest.o ../c-client/c-client.acat ../c-client/LDFLAGS/usr/bin/ld: ../c-client/c-client.a(osdep.o): in functionssl_onceonlyinit':
/home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:337:(.text+0x63a0): warning: the use of tmpnam' is dangerous, better use mkstemp'
/usr/bin/ld: mtest.o: in function prompt': /home/leonidas/Downloads/git/mailsync/src/imap-2007f/mtest/mtest.c:598:(.text+0x1243): warning: the gets' function is dangerous and should not be used.
make[2]: Leaving directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/mtest'
cd ipopd;make
make[2]: Entering directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/ipopd'
cat ../c-client/CCTYPE -I../c-client cat ../c-client/CFLAGS -o ipop2d ipop2d.o ../c-client/c-client.a cat ../c-client/LDFLAGS
/usr/bin/ld: ../c-client/c-client.a(osdep.o): in function ssl_onceonlyinit': /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:337:(.text+0x63a0): warning: the use of tmpnam' is dangerous, better use mkstemp' cat ../c-client/CCTYPE-I../c-clientcat ../c-client/CFLAGS-o ipop3d ipop3d.o ../c-client/c-client.acat ../c-client/LDFLAGS/usr/bin/ld: ../c-client/c-client.a(osdep.o): in functionssl_onceonlyinit':
/home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:337:(.text+0x63a0): warning: the use of tmpnam' is dangerous, better use mkstemp'
make[2]: Leaving directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/ipopd'
cd imapd;make
make[2]: Entering directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/imapd'
cat ../c-client/CCTYPE -I../c-client cat ../c-client/CFLAGS -DANOFILE="/etc/anonymous.newsgroups" -DALERTFILE="/etc/imapd.alert" -DNNTPFILE="/etc/imapd.nntp" -DUSERALERTFILE=".imapalert" -DSHUTDOWNFILE="/etc/nologin" -o imapd imapd.o ../c-client/c-client.a cat ../c-client/LDFLAGS
/usr/bin/ld: ../c-client/c-client.a(osdep.o): in function ssl_onceonlyinit': /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:337:(.text+0x63a0): warning: the use of tmpnam' is dangerous, better use mkstemp' make[2]: Leaving directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/imapd' cd mailutil;make make[2]: Entering directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/mailutil' cat ../c-client/CCTYPE-I../c-clientcat ../c-client/CFLAGS-o mailutil mailutil.o ../c-client/c-client.acat ../c-client/LDFLAGS/usr/bin/ld: ../c-client/c-client.a(osdep.o): in functionssl_onceonlyinit':
/home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:337:(.text+0x63a0): warning: the use of tmpnam' is dangerous, better use mkstemp'
make[2]: Leaving directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/mailutil'
cd mlock;make || true
make[2]: Entering directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/mlock'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/mlock'
cd dmail;make || true
make[2]: Entering directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/dmail'
cat ../c-client/CCTYPE -I../c-client cat ../c-client/CFLAGS -o dmail dmail.o dquota.o ../c-client/c-client.a cat ../c-client/LDFLAGS
/usr/bin/ld: ../c-client/c-client.a(osdep.o): in function ssl_onceonlyinit': /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:337:(.text+0x63a0): warning: the use of tmpnam' is dangerous, better use mkstemp' make[2]: Leaving directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/dmail' cd tmail;make || true make[2]: Entering directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/tmail' cat ../c-client/CCTYPE-I../c-clientcat ../c-client/CFLAGS-o tmail tmail.o tquota.o ../c-client/c-client.acat ../c-client/LDFLAGS/usr/bin/ld: ../c-client/c-client.a(osdep.o): in functionssl_onceonlyinit':
/home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:337:(.text+0x63a0): warning: the use of tmpnam' is dangerous, better use mkstemp'
make[2]: Leaving directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f/tmail'
make[1]: Leaving directory '/home/leonidas/Downloads/git/mailsync/src/imap-2007f'
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking for gawk... (cached) gawk
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for string.h... (cached) yes
checking for an ANSI C-conforming const... yes
checking whether lstat dereferences a symlink specified with a trailing slash... yes
checking whether stat accepts an empty string... no
checking for getpass... yes
checking for memset... yes
checking for strchr... yes
checking for strdup... yes
checking for strerror... yes
checking for strtoul... yes
checking for crypt in -lcrypt... yes
checking for connect... yes
checking for gethostbyname... yes
checking for libssl... found in /usr/lib
checking for main in -lssl... yes
checking for main in -lcrypto... yes
checking for openssl/ssl.h... found in /usr/include
checking for krb5-config... found /usr/bin/krb5-config
checking for pam library... found in /usr/lib
checking for pam headers... found in /usr/include
checking if pam test program compiles... no
checking for c-client.h... found in /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client
checking for c-client library... found /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/c-client.a
checking whether c-client built with kerberos gssapi support... yes
checking if kerberos is required and available for linking against c-client... yes
checking whether c-client requires ssl linkage... yes
checking if simple c-client program compiles without pam support... no
checking if we've seen pam somewhere around... no
checking if c-client works without -fno-operator-names in c++... no
checking if adding -fno-operator-names helps... yes
checking if c-client includes md5 support... no
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
make all-recursive
make[1]: Entering directory '/home/leonidas/Downloads/git/mailsync/src/mailsync-5.2.1'
Making all in src
make[2]: Entering directory '/home/leonidas/Downloads/git/mailsync/src/mailsync-5.2.1/src'
g++ -fno-operator-names -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Wno-format-security -Wno-implicit-function-declaration -Wno-incompatible-pointer-types -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -Wp,-D_GLIBCXX_ASSERTIONS -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,-z,pack-relative-relocs -o mailsync mailsync_main.o commandline.o configuration.o types.o mail_handling.o c-client_callbacks.o utils.o store.o channel.o msgid.o msgstring.o /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/c-client.a -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -L/usr/lib -lssl -lcrypto -lcrypt
/usr/bin/ld: /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/c-client.a(osdep.o): in function ssl_onceonlyinit': /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:337:(.text+0x63a0): warning: the use of tmpnam' is dangerous, better use mkstemp' /usr/bin/ld: /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/c-client.a(osdep.o): in function checkpw_cleanup':
/home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:143:(.text+0x147): undefined reference to pam_setcred' /usr/bin/ld: /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:144:(.text+0x157): undefined reference to pam_end'
/usr/bin/ld: /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/c-client.a(osdep.o): in function checkpw': /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:163:(.text+0xbb8c): undefined reference to pam_start'
/usr/bin/ld: /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:165:(.text+0xbbac): undefined reference to pam_set_item' /usr/bin/ld: /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:166:(.text+0xbbbc): undefined reference to pam_authenticate'
/usr/bin/ld: /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:167:(.text+0xbbcc): undefined reference to pam_acct_mgmt' /usr/bin/ld: /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:168:(.text+0xbbdf): undefined reference to pam_setcred'
/usr/bin/ld: /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/c-client.a(osdep.o): in function checkpw_cleanup': /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:143:(.text+0xbc2e): undefined reference to pam_setcred'
/usr/bin/ld: /home/leonidas/Downloads/git/mailsync/src/imap-2007f/c-client/osdep.c:144:(.text+0xbc3b): undefined reference to `pam_end'
collect2: error: ld returned 1 exit status
make[2]: *** [Makefile:233: mailsync] Error 1
make[2]: Leaving directory '/home/leonidas/Downloads/git/mailsync/src/mailsync-5.2.1/src'
make[1]: *** [Makefile:227: all-recursive] Error 1
make[1]: Leaving directory '/home/leonidas/Downloads/git/mailsync/src/mailsync-5.2.1'
make: *** [Makefile:164: all] Error 2
==> ERROR: A failure occurred in build().
Aborting...