5ce7f885f7
/usr/lib/libc.a(arc4random.o): In function `arc4random': /usr/src/lib/libc/gen/arc4random.c:(.text+0x350): multiple definition of `arc4random' /usr/local/lib/libcrypto.a(arc4random.o):(.text+0x0): first defined here /usr/lib/libc.a(arc4random.o): In function `arc4random_buf': /usr/src/lib/libc/gen/arc4random.c:(.text+0x4c0): multiple definition of `arc4random_buf' /usr/local/lib/libcrypto.a(arc4random.o):(.text+0xa0): first defined here c++: error: linker command failed with exit code 1 (use -v to see invocation) Sponsored by: Absolight
30 lines
610 B
Makefile
30 lines
610 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= bacula
|
|
PKGNAMESUFFIX= 5-client-static
|
|
|
|
COMMENT= Network backup solution (static client)
|
|
|
|
CONFLICTS= bacula-client-static-*
|
|
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
MASTERDIR= ${.CURDIR}/../../sysutils/bacula5-server
|
|
|
|
PLIST_FILES= sbin/bacula-fd-static \
|
|
sbin/bconsole-static
|
|
|
|
OPTIONS_DEFINE= NLS OPENSSL
|
|
OPTIONS_DEFAULT=OPENSSL
|
|
|
|
CONFIGURE_ARGS+= --enable-client-only \
|
|
--enable-static-fd \
|
|
--enable-static-cons \
|
|
--disable-libtool \
|
|
--disable-build-dird \
|
|
--disable-build-stored
|
|
|
|
BROKEN_aarch64= Fails to link: missing sbrk
|
|
|
|
BROKEN_SSL= libressl
|
|
|
|
.include "${MASTERDIR}/Makefile"
|