You are not logged in.

#1 2017-08-26 09:21:35

khouli
Member
Registered: 2014-12-14
Posts: 70

[SOLVED] Netatalk PKGBUILD is broken, can someone who knows autotoo...

The AUR package netatalk is currently broken. I don't know autotools well enough to know if this is a problem with the PKGBUILD or with Netatalk.

The build error:

gcc: error: ../../libatalk/.libs/libatalk.so: No such file or directory

The libatalk library is part of Netatalk. libatalk.so is a symlink to libatalk.so.18.0.0 which apparently should be getting built but isn't.

Can someone who knows autotools well help me figure out where the problem is and how to fix or work around it? Thanks.

Last edited by khouli (2017-08-26 15:20:47)

Offline

#2 2017-08-26 14:30:25

Lone_Wolf
Forum Moderator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,920

Re: [SOLVED] Netatalk PKGBUILD is broken, can someone who knows autotoo...

No problems building that one on my system.

try adding -C or --cleanbuild to the  makepkg command to make sure there are no leftovers from previous builds in $srcdir .


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#3 2017-08-26 14:36:06

khouli
Member
Registered: 2014-12-14
Posts: 70

Re: [SOLVED] Netatalk PKGBUILD is broken, can someone who knows autotoo...

Weird. --cleanbuild didn't work for me. What could be making the difference? Something in our compiler toolchains?

If it helps, the build also fails for me if I manually build the project with the same ./configure options that the PKGBUILD uses.

Offline

#4 2017-08-26 15:07:08

WorMzy
Forum Moderator
From: Scotland
Registered: 2010-06-16
Posts: 11,862
Website

Re: [SOLVED] Netatalk PKGBUILD is broken, can someone who knows autotoo...

What could be making the difference? Something in our compiler toolchains?

Could be. Post the full makepkg command you're using, re-run it and append the -L flag to generate logs. Post the logs here.


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Online

#5 2017-08-26 15:19:37

khouli
Member
Registered: 2014-12-14
Posts: 70

Re: [SOLVED] Netatalk PKGBUILD is broken, can someone who knows autotoo...

Suddenly the build works. As silly as this sounds, I have no idea what changed...

Last edited by khouli (2017-08-26 15:21:10)

Offline

#6 2017-08-26 15:48:29

Lone_Wolf
Forum Moderator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,920

Re: [SOLVED] Netatalk PKGBUILD is broken, can someone who knows autotoo...

TL;DR :
Upstream appears to have never heard about arch linux, PKGBUILD needs lots of tweaks to build correctly.


-------------------------
There may be unlisted dependencies i have installed and you don't , or settings in /etc/makepkg.conf .

However, when looking closer, i noticed lots of weird messages during build.

#	autoreconf -fi
#	CFLAGS="-Wno-unused-result -O2" \

Commenting out these 2 lines reduced the number of warnings, but the make file doesn't seem to have an install target.

Also :

Running ldconfig to ensure libraries installed in system library directories are added to the dynamic linker cache ... /usr/bin/ldconfig: Can't create temporary cache file /etc/ld.so.cache~: Permission denied
make[3]: [Makefile:943: install-exec-hook] Error 1 (ignored)

That's a very weird message.

-------------

netatalk doc wrote:

Prerequisites
Required third party software

    Berkeley DB.

    At the time of writing you need at least version 4.6.

    Libgcrypt

    Required for OS X 10.7 and later. Libgcrypt is needed for DHX2.

    Libgcrypt can be downloaded from: http://directory.fsf.org/wiki/Libgcrypt.

libgcrypt is in PKGBUILD, but berkely db isn't .

Adding db didn't make a difference, it couldn't find the db headers.
Figured out it looks in certain folders not used in arch linux to find berkely db.
Corrected that by setting bdb-location as /usr so it will find /usr/include/db.h  .

This package needs a lot of work before it will function, below is a PKGBUILD with the changes i made.
As i doubt the package it builds will function, i've added a return command to abort building.

# Maintainer: Denis Yantarev <denis dot yantarev at gmail dot com>
# Contributor: SJ_UnderWater
# Contributor: Dominik Dingel <mail at wodar dot de>
# Contributor: William Udovich <nerdzrule7 at earthlink dot net>
# Contributor: Farhan Yousaf <farhany at xaviya dot com>

pkgname=netatalk
pkgver=3.1.11
pkgrel=1
pkgdesc='Open-source implementation of the Apple Filing Protocol'
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
url='http://netatalk.sourceforge.net'
license=('GPL')
depends=('avahi>=0.6' 'libldap' 'libgcrypt>=1.2.3' 'libevent' 'python2' 'dbus-glib' 'python2-dbus' 'pam' 'db')
replaces=('netatalk-git' 'netatalk2')
backup=('etc/afp.conf'
	'etc/extmap.conf')
install=$pkgname.install
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2
	python2.patch)
md5sums=('8f79ce2a275b128ebb07188766f088fc'
	'97bc0467dd8a866d9f0835d6440e3c19')

prepare() {
	cd "$srcdir/$pkgname-$pkgver"
	patch -p0 < "$srcdir/python2.patch"
}

build() {
	cd "$srcdir/$pkgname-$pkgver"
#	autoreconf -fi
#	CFLAGS="-Wno-unused-result -O2" \
	./configure \
            --prefix=/usr --localstatedir=/var/state --sysconfdir=/etc \
            --sbindir=/usr/bin --enable-silent-rules --with-init-style=systemd \
            --with-cracklib --with-cnid-cdb-backend --enable-pgp-uam --with-libevent=no \
            --with-bdb=/usr
	make
}

package() {
	cd "$srcdir/$pkgname-$pkgver"
	make DESTDIR="$pkgdir" install
# package has issues and should not be used yet, making sure build aborts.
        return 1
}

Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#7 2017-08-26 16:07:15

khouli
Member
Registered: 2014-12-14
Posts: 70

Re: [SOLVED] Netatalk PKGBUILD is broken, can someone who knows autotoo...

It turns out the original issue was caused by using LLVM's lld as my ld. (I didn't connect the dots because even after changing back to GNU ld the issue seemed to persist and then later it "magically" corrected itself. Something somewhere was being cached I guess.)

Here's the log of the failing build with my ld switched back to LLVM's lld in case that's still interesting. The makepkg command was "makepkg -fC -L".

macros/netatalk.m4:4: warning: underquoted definition of AX_CHECK_DOCBOOK
macros/netatalk.m4:4:   run info Automake 'Extending aclocal'
macros/netatalk.m4:4:   or see http://www.gnu.org/software/automake/manual/automake.html#Extending-aclocal
aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
libtoolize: putting auxiliary files in '..'.
libtoolize: copying file '../ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
configure.in:14: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated.  For more info, see:
configure.in:14: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
configure.in:38: installing '../compile'
configure.in:14: installing '../missing'
automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
Makefile.am: installing '../depcomp'
libtoolize: putting auxiliary files in '.'.
libtoolize: copying file './ltmain.sh'
libtoolize: putting macros in 'macros'.
libtoolize: copying file 'macros/libtool.m4'
libtoolize: copying file 'macros/ltoptions.m4'
libtoolize: copying file 'macros/ltsugar.m4'
libtoolize: copying file 'macros/ltversion.m4'
libtoolize: copying file 'macros/lt~obsolete.m4'
libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([macros])' to configure.ac,
libtoolize: and rerunning libtoolize and aclocal.
macros/netatalk.m4:4: warning: underquoted definition of AX_CHECK_DOCBOOK
macros/netatalk.m4:4:   run info Automake 'Extending aclocal'
macros/netatalk.m4:4:   or see http://www.gnu.org/software/automake/manual/automake.html#Extending-aclocal
configure.ac:9: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated.  For more info, see:
configure.ac:9: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
configure.ac:15: installing './compile'
configure.ac:9: installing './missing'
bin/ad/Makefile.am: installing './depcomp'
doc/manpages/man1/Makefile.am:35: warning: '%'-style pattern rules are a GNU make extension
doc/manpages/man5/Makefile.am:21: warning: '%'-style pattern rules are a GNU make extension
doc/manpages/man8/Makefile.am:21: warning: '%'-style pattern rules are a GNU make extension
libatalk/dsi/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/afp_config.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
automake: warning: possible forward-incompatibility.
automake: At least a source file is in a subdirectory, but the 'subdir-objects'
automake: automake option hasn't been enabled.  For now, the corresponding output
automake: object file(s) will be placed in the top-level directory.  However,
automake: this behaviour will change in future Automake versions: they will
automake: unconditionally cause object files to be placed in the same subdirectory
automake: of the corresponding sources.
automake: You are advised to start using 'subdir-objects' option throughout your
automake: project, to avoid future incompatibilities.
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/afp_dsi.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/afp_options.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/afp_util.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/afprun.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/appl.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/auth.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/catsearch.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/desktop.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/dircache.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/directory.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/enumerate.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/extattrs.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/fce_api.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/fce_util.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/file.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/filedir.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/fork.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/hash.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/mangle.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/messages.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/nfsquota.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/ofork.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/quota.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/status.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/spotlight_marshalling.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/switch.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/uam.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/unix.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:12: warning: source file '$(top_srcdir)/etc/afpd/volume.c' is in a subdirectory,
test/afpd/Makefile.am:12: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:63: warning: source file '$(top_srcdir)/etc/afpd/acls.c' is in a subdirectory,
test/afpd/Makefile.am:63: but option 'subdir-objects' is disabled
test/afpd/Makefile.am:67: warning: source file '$(top_srcdir)/etc/afpd/spotlight.c' is in a subdirectory,
test/afpd/Makefile.am:67: but option 'subdir-objects' is disabled
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for gawk... (cached) gawk
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for gcc option to accept ISO C99... none needed
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/local/bin/ld
checking if the linker (/usr/local/bin/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 3458764513820540925
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/local/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... gcc -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 dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/local/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... unsupported
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... no
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for perl... /usr/bin/perl
checking for perl... (cached) /usr/bin/grep
checking for ps... /usr/bin/ps
checking whether byte ordering is bigendian... no
checking for inline... inline
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
checking whether yytext is a pointer... yes
checking for bison... bison -y
checking to see if we can add '__attribute__((unused))' to CFLAGS... yes
checking mntent.h usability... yes
checking mntent.h presence... yes
checking for mntent.h... yes
checking for unistd.h... (cached) yes
checking termios.h usability... yes
checking termios.h presence... yes
checking for termios.h... yes
checking ufs/quota.h usability... no
checking ufs/quota.h presence... no
checking for ufs/quota.h... no
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking sgtty.h usability... yes
checking sgtty.h presence... yes
checking for sgtty.h... yes
checking statfs.h usability... no
checking statfs.h presence... no
checking for statfs.h... no
checking for dlfcn.h... (cached) yes
checking langinfo.h usability... yes
checking langinfo.h presence... yes
checking for langinfo.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/fcntl.h usability... yes
checking sys/fcntl.h presence... yes
checking for sys/fcntl.h... yes
checking sys/termios.h usability... yes
checking sys/termios.h presence... yes
checking for sys/termios.h... yes
checking sys/mnttab.h usability... no
checking sys/mnttab.h presence... no
checking for sys/mnttab.h... no
checking sys/statvfs.h usability... yes
checking sys/statvfs.h presence... yes
checking for sys/statvfs.h... yes
checking for sys/stat.h... (cached) yes
checking sys/vfs.h usability... yes
checking sys/vfs.h presence... yes
checking for sys/vfs.h... yes
checking for sys/mount.h... yes
checking for fshare_t... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking for 64 bit off_t... yes
checking if large file support is available... yes
checking for library containing dlopen... -ldl
checking for dlerror... yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dld_link in -ldld... no
checking for dlopen... (cached) no
checking for dlsym... no
checking for dlclose... no
checking for _ prefix in compiled symbols... no
checking what extension is used for runtime loadable modules... .so
checking for openat... yes
checking for renameat... yes
checking for fstatat... yes
checking for unlinkat... yes
checking for struct tm.tm_gmtoff... yes
checking for backtrace_symbols... yes
checking for dirfd... yes
checking for getusershell... yes
checking for pread... yes
checking for pwrite... yes
checking for pselect... yes
checking for setlinebuf... yes
checking for strlcat... no
checking for strlcpy... no
checking for strnlen... yes
checking for mempcpy... yes
checking for vasprintf... yes
checking for asprintf... yes
checking for mmap... yes
checking for utime... yes
checking for getpagesize... yes
checking for library containing gethostbyname... none required
checking for library containing connect... none required
checking for getifaddrs... yes
checking for the pthreads library -lpthreads... no
checking whether pthreads work without any flags... no
checking whether pthreads work with -Kthread... no
checking whether pthreads work with -kthread... no
checking for the pthreads library -llthread... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking whether to check for 64bit libraries... yes
 * Linux specific configuration
checking linux/dqblk_xfs.h usability... yes
checking linux/dqblk_xfs.h presence... yes
checking for linux/dqblk_xfs.h... yes
checking for ldconfig... /usr/bin/ldconfig
NETA_LDCONFIG = /usr/bin/ldconfig
no
checking whether to enable AFS support... no
checking for main in -lcrack... yes
setting cracklib dictionary to /usr/lib64/cracklib_dict
checking for cracklib support... yes
checking whether to enable verbose debug code... no
checking whether to enable debugging with debuggers... no
checking for libiconv... no
checking for working iconv... yes
checking whether iconv supports UCS-2-INTERNAL... no
checking whether or not to use Database Daemon CNID backend... yes
checking whether or not to use BDB Concurrent Data Store... yes
checking whether or not to use LAST DID scheme... yes
checking whether or not to use TDB DID scheme... yes
checking MySQL library and headers... checking for mysql_config... /usr/bin/mysql_config
/usr/bin/mysql_config
checking default DID scheme... dbd
checking whether default CNID scheme has been activated... yes
checking for main in -lrpcsvc... yes
checking rpc/rpc.h usability... yes
checking rpc/rpc.h presence... yes
checking for rpc/rpc.h... yes
checking rpc/pmap_prot.h usability... yes
checking rpc/pmap_prot.h presence... yes
checking for rpc/pmap_prot.h... yes
checking rpcsvc/rquota.h usability... yes
checking rpcsvc/rquota.h presence... yes
checking for rpcsvc/rquota.h... yes
checking for getfsquota in -lquota... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking avahi-client/client.h usability... yes
checking avahi-client/client.h presence... yes
checking for avahi-client/client.h... yes
checking for avahi_client_new in -lavahi-client... yes
checking for  avahi-client >= 0.6 ... yes
checking for  avahi-client >= 0.6.4 ... yes
checking whether to enable Zerconf support... yes
checking whether to enable the TCP wrappers... yes
checking for PAM installation directory... yes (path: /etc/pam.d)
checking security/pam_appl.h usability... yes
checking security/pam_appl.h presence... yes
checking for security/pam_appl.h... yes
checking pam/pam_appl.h usability... no
checking pam/pam_appl.h presence... no
checking for pam/pam_appl.h... no
checking for pam_set_item in -lpam... yes
checking for includable common PAM config... yes (include system-auth)
checking whether to enable PAM support... yes
checking shadow.h usability... yes
checking shadow.h presence... yes
checking for shadow.h... yes
checking whether shadow support should be enabled... yes
checking whether checking for a valid shell should be enabled... yes
enabling general systemd support
checking for libgcrypt-config... /usr/bin/libgcrypt-config
checking for LIBGCRYPT - version >= 1.2.3... yes (1.8.0)
checking libgcrypt API version... okay
checking libgcrypt hast CAST5 API... yes
configure: Enabling DHX2 UAM
checking for SSL... /usr (enabling RANDNUM and DHX support)
checking for main in -lcrypto... yes
checking for main in -ldes... no
checking for Berkeley DB headers in /usr/local/include/... no
checking for Berkeley DB headers in /usr/local/include/db6.1... no
checking for Berkeley DB headers in /usr/local/include/db6... no
checking for Berkeley DB headers in /usr/local/include/db5... no
checking for Berkeley DB headers in /usr/local/include/db5.3... no
checking for Berkeley DB headers in /usr/local/include/db5.2... no
checking for Berkeley DB headers in /usr/local/include/db5.1... no
checking for Berkeley DB headers in /usr/local/include/db51... no
checking for Berkeley DB headers in /usr/local/include/db5.0... no
checking for Berkeley DB headers in /usr/local/include/db50... no
checking for Berkeley DB headers in /usr/local/include/db4.8... no
checking for Berkeley DB headers in /usr/local/include/db48... no
checking for Berkeley DB headers in /usr/local/include/db4.7... no
checking for Berkeley DB headers in /usr/local/include/db47... no
checking for Berkeley DB headers in /usr/local/include/db4.6... no
checking for Berkeley DB headers in /usr/local/include/db46... no
checking for Berkeley DB headers in /usr/local/include/db4... no
checking for Berkeley DB headers in /usr/include/... yes
checking /usr/include//db.h version >= 4.6.0... yes
checking Berkeley DB library (-ldb53)... no
checking Berkeley DB library (-ldb5.3)... no
checking Berkeley DB library (-ldb-53)... no
checking Berkeley DB library (-ldb-5.3)... 5.3.28 ... yes
checking crypt.h usability... yes
checking crypt.h presence... yes
checking for crypt.h... yes
checking for main in -lcrypt... yes
checking whether the PGP UAM should be build... yes
checking whether Kerberos V UAM should be build... no
checking for Kerberos 5 (necessary for GetSrvrInfo:DirectoryNames support)... auto
checking krb5/krb5.h usability... yes
checking krb5/krb5.h presence... yes
checking for krb5/krb5.h... yes
checking for krb5-config... /usr/bin/krb5-config
checking for krb5-config... /usr/bin/krb5-config
checking for krb5_free_unparsed_name... yes
checking for krb5_free_error_message... yes
checking for krb5_free_keytab_entry_contents... yes
checking for krb5_kt_free_entry... yes
checking whether configuration files should be overwritten... no
checking for LDAP (necessary for client-side ACL visibility)... auto
checking ldap.h usability... yes
checking ldap.h presence... yes
checking for ldap.h... yes
checking for ldap_init in -lldap... yes
checking whether to support ACLs... auto
checking for acl_get_file in -lacl... yes
checking for getxattr in -lattr... yes
checking for POSIX ACL support... yes
configure: Using POSIX ACLs
checking for acl_get_perm_np... no
checking for acl_from_mode... checking for acl_from_mode... yes
yes
checking acl/libacl.h usability... yes
checking acl/libacl.h presence... yes
checking for acl/libacl.h... yes
checking sys/attributes.h usability... no
checking sys/attributes.h presence... no
checking for sys/attributes.h... no
checking attr/xattr.h usability... yes
checking attr/xattr.h presence... yes
checking for attr/xattr.h... yes
checking sys/xattr.h usability... yes
checking sys/xattr.h presence... yes
checking for sys/xattr.h... yes
checking sys/extattr.h usability... no
checking sys/extattr.h presence... no
checking for sys/extattr.h... no
checking sys/uio.h usability... yes
checking sys/uio.h presence... yes
checking for sys/uio.h... yes
checking sys/ea.h usability... no
checking sys/ea.h presence... no
checking for sys/ea.h... no
checking for library containing getxattr... none required
checking for getxattr... yes
checking for lgetxattr... yes
checking for fgetxattr... yes
checking for listxattr... yes
checking for llistxattr... yes
checking for flistxattr... yes
checking for removexattr... yes
checking for lremovexattr... yes
checking for fremovexattr... yes
checking for setxattr... yes
checking for lsetxattr... yes
checking for fsetxattr... yes
checking whether xattr interface takes additional options... no
checking if the realpath function allows a NULL argument... yes
checking for sendfile... yes
checking for splice... yes
checking whether to use bundled libevent... no
checking whether to use bundled tdb... yes
Package tracker-sparql-0.12 was not found in the pkg-config search path.
Perhaps you should add the directory containing `tracker-sparql-0.12.pc'
to the PKG_CONFIG_PATH environment variable
No package 'tracker-sparql-0.12' found
checking for tracker-sparql-0.12 >= 0.12... no
checking whether to enable developer build... no
checking for dtrace... yes
checking for dbus-1 >= 1.1... yes
checking for dbus-glib-1... yes
checking for gthread-2.0... yes
checking for dbus_g_bus_get_private... yes
checking whether to use Filesystem Hierarchy Standard (FHS) compatibility... no
checking netatalk lockfile path... /var/lock/netatalk
checking whether to build Docbook documentation... no
checking whether make supports nested variables... (cached) yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating bin/Makefile
config.status: creating bin/ad/Makefile
config.status: creating bin/afppasswd/Makefile
config.status: creating bin/cnid/Makefile
config.status: creating bin/cnid/cnid2_create
config.status: creating bin/megatron/Makefile
config.status: creating bin/misc/Makefile
config.status: creating config/Makefile
config.status: creating config/pam/Makefile
config.status: creating contrib/Makefile
config.status: creating contrib/macusers/Makefile
config.status: creating contrib/macusers/macusers
config.status: creating contrib/shell_utils/Makefile
config.status: creating contrib/shell_utils/apple_dump
config.status: creating contrib/shell_utils/asip-status.pl
config.status: creating distrib/Makefile
config.status: creating distrib/config/Makefile
config.status: creating distrib/config/netatalk-config
config.status: creating distrib/initscripts/Makefile
config.status: creating distrib/m4/Makefile
config.status: creating doc/Makefile
config.status: creating doc/html.xsl
config.status: creating doc/man.xsl
config.status: creating doc/manual/Makefile
config.status: creating doc/manual/manual.xml
config.status: creating doc/manpages/Makefile
config.status: creating doc/manpages/man1/Makefile
config.status: creating doc/manpages/man5/Makefile
config.status: creating doc/manpages/man8/Makefile
config.status: creating etc/Makefile
config.status: creating etc/afpd/Makefile
config.status: creating etc/cnid_dbd/Makefile
config.status: creating etc/netatalk/Makefile
config.status: creating etc/spotlight/Makefile
config.status: creating etc/uams/Makefile
config.status: creating include/Makefile
config.status: creating include/atalk/Makefile
config.status: creating libatalk/Makefile
config.status: creating libatalk/acl/Makefile
config.status: creating libatalk/adouble/Makefile
config.status: creating libatalk/bstring/Makefile
config.status: creating libatalk/cnid/Makefile
config.status: creating libatalk/cnid/cdb/Makefile
config.status: creating libatalk/cnid/last/Makefile
config.status: creating libatalk/cnid/dbd/Makefile
config.status: creating libatalk/cnid/tdb/Makefile
config.status: creating libatalk/cnid/mysql/Makefile
config.status: creating libatalk/compat/Makefile
config.status: creating libatalk/dsi/Makefile
config.status: creating libatalk/iniparser/Makefile
config.status: creating libatalk/talloc/Makefile
config.status: creating libatalk/tdb/Makefile
config.status: creating libatalk/unicode/Makefile
config.status: creating libatalk/unicode/charsets/Makefile
config.status: creating libatalk/util/Makefile
config.status: creating libatalk/vfs/Makefile
config.status: creating macros/Makefile
config.status: creating man/Makefile
config.status: creating man/man1/Makefile
config.status: creating man/man1/ad.1
config.status: creating man/man1/afpldaptest.1
config.status: creating man/man1/afppasswd.1
config.status: creating man/man1/afpstats.1
config.status: creating man/man1/apple_dump.1
config.status: creating man/man1/asip-status.pl.1
config.status: creating man/man1/dbd.1
config.status: creating man/man1/macusers.1
config.status: creating man/man1/netatalk-config.1
config.status: creating man/man1/uniconv.1
config.status: creating man/man5/Makefile
config.status: creating man/man5/afp.conf.5
config.status: creating man/man5/afp_signature.conf.5
config.status: creating man/man5/afp_voluuid.conf.5
config.status: creating man/man5/extmap.conf.5
config.status: creating man/man8/Makefile
config.status: creating man/man8/afpd.8
config.status: creating man/man8/cnid_dbd.8
config.status: creating man/man8/cnid_metad.8
config.status: creating man/man8/netatalk.8
config.status: creating test/Makefile
config.status: creating test/afpd/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default commands
Compilation summary:
    CPPFLAGS       = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_srcdir) -D_FORTIFY_SOURCE=2
    CFLAGS         = -D_U_="__attribute__((unused))" -Wno-unused-result -O2
    LIBS           =  -lcrack
    PTHREADS:
        LIBS   = 
        CFLAGS = -pthread
    SSL:
        LIBS   =  -L/usr/lib64 -lcrypto
        CFLAGS =  -I/usr/include/openssl
    LIBGCRYPT:
        LIBS   = -lgcrypt -lgpg-error
        CFLAGS = 
    PAM:
        LIBS   =  -lpam
        CFLAGS = 
    WRAP:
        LIBS   = -lwrap
        CFLAGS = 
    BDB:
        LIBS   =  -L/usr/lib64 -ldb-5.3
        CFLAGS = 
    ZEROCONF:
        LIBS   =  -lavahi-common -lavahi-client
        CFLAGS =  -D_REENTRANT
    LDAP:
        LIBS   =  -lldap
        CFLAGS = 
    LIBEVENT:
        LIBS   = 
        CFLAGS = 
    TDB:
        bundled
    MySQL:
        LIBS   = -L/usr/lib  -lmysqlclient -lpthread -lz -lm -ldl -lssl -lcrypto
        CFLAGS = -I/usr/include/mysql 
Configure summary:
    INIT STYLE:
         systemd
    AFP:
         Extended Attributes: ad | sys
         ACL support: yes
         Spotlight: no
    CNID:
         backends:  dbd cdb last tdb mysql
    UAMS:
         DHX     (PAM SHADOW)
         DHX2    (PAM SHADOW)
         RANDNUM (afppasswd)
         PGP
         clrtxt  (PAM SHADOW)
         guest
    Options:
         Zeroconf support:        yes
         tcp wrapper support:     yes
         quota support:           yes
         valid shell check:       yes
         cracklib support:        yes
         ACL support:             auto
         Kerberos support:        yes
         LDAP support:            yes
         AFP stats via dbus:      yes
         dtrace probes:           yes
    Paths:
         Netatalk lockfile:       /var/lock/netatalk
         init directory:          /usr/lib/systemd/system
         dbus system directory:   ${sysconfdir}/dbus-1/system.d
         pam config directory:    ${sysconfdir}/pam.d
    Documentation:
         Docbook:                 no
make  all-recursive
make[1]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11'
Making all in include
make[2]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/include'
Making all in atalk
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/include/atalk'
/bin/sh ../../libtool --mode=execute dtrace -o afp_dtrace.h -h -s ../../include/atalk/afp_dtrace.d
make  all-am
make[4]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/include/atalk'
make[4]: Nothing to be done for 'all-am'.
make[4]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/include/atalk'
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/include/atalk'
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/include'
make[3]: Nothing to be done for 'all-am'.
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/include'
make[2]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/include'
Making all in libatalk
make[2]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk'
Making all in acl
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/acl'
  CC       libacl_la-uuid.lo
  CC       libacl_la-cache.lo
  CC       libacl_la-unix.lo
  CC       libacl_la-ldap.lo
  CC       libacl_la-ldap_config.lo
  CCLD     libacl.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/acl'
Making all in adouble
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/adouble'
  CC       ad_attr.lo
  CC       ad_flush.lo
  CC       ad_date.lo
  CC       ad_conv.lo
  CC       ad_lock.lo
  CC       ad_mmap.lo
  CC       ad_open.lo
  CC       ad_read.lo
  CC       ad_recvfile.lo
  CC       ad_sendfile.lo
  CC       ad_size.lo
  CC       ad_write.lo
ad_flush.c: In function ‘ad_flush_hf’:
ad_flush.c:306:25: warning: implicit declaration of function ‘become_root’ [-Wimplicit-function-declaration]
                         become_root();
                         ^~~~~~~~~~~
ad_flush.c:308:25: warning: implicit declaration of function ‘unbecome_root’ [-Wimplicit-function-declaration]
                         unbecome_root();
                         ^~~~~~~~~~~~~
  CCLD     libadouble.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/adouble'
Making all in bstring
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/bstring'
  CC       bstrlib.lo
  CC       bstradd.lo
  CCLD     libbstring.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/bstring'
Making all in compat
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/compat'
  CC       misc.lo
  CC       mktemp.lo
  CC       pselect.lo
  CC       strlcpy.lo
  CC       getusershell.lo
  CC       rquota_xdr.lo
  CCLD     libcompat.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/compat'
Making all in cnid
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid'
Making all in last
make[4]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid/last'
  CC       cnid_last.lo
  CCLD     libcnid_last.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid/last'
Making all in cdb
make[4]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid/cdb'
  CC       libcnid_cdb_la-cnid_cdb_get.lo
  CC       libcnid_cdb_la-cnid_cdb_close.lo
  CC       libcnid_cdb_la-cnid_cdb_add.lo
  CC       libcnid_cdb_la-cnid_cdb_lookup.lo
  CC       libcnid_cdb_la-cnid_cdb_delete.lo
  CC       libcnid_cdb_la-cnid_cdb_open.lo
  CC       libcnid_cdb_la-cnid_cdb_resolve.lo
  CC       libcnid_cdb_la-cnid_cdb_rebuild_add.lo
  CC       libcnid_cdb_la-cnid_cdb_update.lo
  CCLD     libcnid_cdb.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid/cdb'
Making all in dbd
make[4]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid/dbd'
  CC       cnid_dbd.lo
  CCLD     libcnid_dbd.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid/dbd'
Making all in tdb
make[4]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid/tdb'
  CC       libcnid_tdb_la-cnid_tdb_close.lo
  CC       libcnid_tdb_la-cnid_tdb_delete.lo
  CC       libcnid_tdb_la-cnid_tdb_lookup.lo
  CC       libcnid_tdb_la-cnid_tdb_add.lo
  CC       libcnid_tdb_la-cnid_tdb_get.lo
  CC       libcnid_tdb_la-cnid_tdb_open.lo
  CC       libcnid_tdb_la-cnid_tdb_resolve.lo
  CC       libcnid_tdb_la-cnid_tdb_update.lo
  CCLD     libcnid_tdb.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid/tdb'
Making all in mysql
make[4]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid/mysql'
  CC       libcnid_mysql_la-cnid_mysql.lo
  CCLD     libcnid_mysql.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid/mysql'
make[4]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid'
  CC       cnid.lo
  CC       cnid_init.lo
  CCLD     libcnid.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid'
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/cnid'
Making all in dsi
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/dsi'
  CC       dsi_getstat.lo
  CC       dsi_attn.lo
  CC       dsi_cmdreply.lo
  CC       dsi_close.lo
  CC       dsi_getsess.lo
  CC       dsi_read.lo
  CC       dsi_init.lo
  CC       dsi_opensess.lo
  CC       dsi_tickle.lo
  CC       dsi_tcp.lo
  CC       dsi_write.lo
  CC       dsi_stream.lo
  CCLD     libdsi.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/dsi'
Making all in iniparser
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/iniparser'
  CC       dictionary.lo
  CC       iniparser.lo
  CCLD     libiniparser.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/iniparser'
Making all in talloc
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/talloc'
  CC       talloc.lo
  CC       dalloc.lo
  CCLD     libtalloc.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/talloc'
Making all in util
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/util'
  CC       libutil_la-fault.lo
  CC       libutil_la-gettok.lo
  CC       libutil_la-bprint.lo
  CC       libutil_la-getiface.lo
  CC       libutil_la-cnid.lo
  CC       libutil_la-locking.lo
  CC       libutil_la-module.lo
  CC       libutil_la-logger.lo
  CC       libutil_la-netatalk_conf.lo
  CC       libutil_la-queue.lo
  CC       libutil_la-server_child.lo
  CC       libutil_la-server_ipc.lo
  CC       libutil_la-server_lock.lo
netatalk_conf.c: In function ‘creatvol’:
netatalk_conf.c:710:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
             global_path = atalk_iniparser_getstring(obj->iniconfig,
                         ^
netatalk_conf.c: In function ‘load_volumes’:
netatalk_conf.c:1529:21: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
         includefile = atalk_iniparser_getstring(obj->iniconfig, INISEC_GLOBAL,
                     ^
  CC       libutil_la-socket.lo
  CC       libutil_la-strdicasecmp.lo
  CC       libutil_la-unix.lo
  CC       libutil_la-ftw.lo
  CCLD     libutil.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/util'
Making all in unicode
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/unicode'
Making all in charsets
make[4]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/unicode/charsets'
  CC       mac_roman.lo
  CC       mac_hebrew.lo
  CC       mac_greek.lo
  CC       mac_turkish.lo
  CC       mac_centraleurope.lo
  CC       mac_cyrillic.lo
  CC       mac_japanese.lo
  CC       mac_chinese_trad.lo
  CC       mac_chinese_simp.lo
  CC       mac_korean.lo
  CC       generic_cjk.lo
  CC       generic_mb.lo
  CCLD     libcharsets.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/unicode/charsets'
make[4]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/unicode'
  CC       iconv.lo
  CC       charcnv.lo
  CC       utf16_case.lo
  CC       util_unistr.lo
  CC       utf8.lo
  CCLD     libunicode.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/unicode'
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/unicode'
Making all in vfs
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/vfs'
  CC       vfs.lo
  CC       ea_sys.lo
  CC       unix.lo
  CC       ea_ad.lo
  CC       extattr.lo
  CC       acl.lo
  CCLD     libvfs.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/vfs'
Making all in tdb
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/tdb'
  CC       dump.lo
  CC       error.lo
  CC       freelist.lo
  CC       freelistcheck.lo
  CC       check.lo
  CC       io.lo
  CC       lock.lo
  CC       open.lo
  CC       tdb.lo
  CC       transaction.lo
  CC       traverse.lo
  CCLD     libtdb.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk/tdb'
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk'
  CC       libatalk_la-dummy.lo
  CCLD     libatalk.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk'
make[2]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/libatalk'
Making all in bin
make[2]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/bin'
Making all in afppasswd
make[3]: Entering directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/bin/afppasswd'
  CC       afppasswd.o
afppasswd.c: In function ‘update_passwd’:
afppasswd.c:178:16: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
     if (passwd = FascistCheck(password, _PATH_CRACKLIB)) {
                ^
  CCLD     afppasswd
gcc: error: ../../libatalk/.libs/libatalk.so: No such file or directory
make[3]: *** [Makefile:508: afppasswd] Error 1
make[3]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/bin/afppasswd'
make[2]: *** [Makefile:474: all-recursive] Error 1
make[2]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11/bin'
make[1]: *** [Makefile:524: all-recursive] Error 1
make[1]: Leaving directory '/tmp/makepkg/netatalk/src/netatalk-3.1.11'
make: *** [Makefile:456: all] Error 2
[1m[31m==> ERROR:[m[1m A failure occurred in build().[m
[1m    Aborting...[m

Offline

Board footer

Powered by FluxBB