svn commit: r564897 - head/multimedia/libxine

Tobias C. Berner tcberner at FreeBSD.org
Wed Feb 10 19:20:07 UTC 2021


Author: tcberner
Date: Wed Feb 10 19:20:06 2021
New Revision: 564897
URL: https://svnweb.freebsd.org/changeset/ports/564897

Log:
  multimedia/libxine: fix linking against openssl
  
  This fixes the build on DragonflyBSD (and likely openssl from ports):
  
  [...]
  tls/tls_openssl.c:183: error: undefined reference to 'ERR_get_error'
  tls/tls_openssl.c:183: error: undefined reference to 'ERR_error_string'
  tls/tls_openssl.c:199: error: undefined reference to 'ERR_get_error'
  [...]
  
  Reported by:	 tuxillo at quantumachine.net

Modified:
  head/multimedia/libxine/Makefile

Modified: head/multimedia/libxine/Makefile
==============================================================================
--- head/multimedia/libxine/Makefile	Wed Feb 10 19:17:45 2021	(r564896)
+++ head/multimedia/libxine/Makefile	Wed Feb 10 19:20:06 2021	(r564897)
@@ -124,7 +124,7 @@ NLS_CONFIGURE_ENABLE=		nls
 NFS_LIB_DEPENDS=		libnfs.so:net/libnfs
 NFS_CONFIGURE_ENABLE=		nfs
 OPENSSL_CONFIGURE_ON=		--enable-tls
-OPENSSL_CONFIGURE_ENV=		OPENSSL_LIBS="-L${OPENSSLLIB} -lssl" \
+OPENSSL_CONFIGURE_ENV=		OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl" \
 				OPENSSL_CFLAGS="-I${OPENSSLINC}"
 OPENSSL_USES=			ssl
 PIXBUF_CONFIGURE_ENABLE=	gdkpixbuf


More information about the svn-ports-all mailing list