Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Mar 2020 08:31:12 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r529868 - head/print/panda
Message-ID:  <202003300831.02U8VCqM029380@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Mon Mar 30 08:31:12 2020
New Revision: 529868
URL: https://svnweb.freebsd.org/changeset/ports/529868

Log:
  print/panda: Unbreak build on FreeBSD >= 12.1
  
  ld: error: /wrkdirs/usr/ports/print/panda/work/panda-0.5.4/.libs/libpanda.so: undefined reference to compress2
  
  http://beefy6.nyi.freebsd.org/data/121amd64-default/529299/logs/errors/panda-0.5.4_9.log
  
  Explicitly link with zlib.

Modified:
  head/print/panda/Makefile

Modified: head/print/panda/Makefile
==============================================================================
--- head/print/panda/Makefile	Mon Mar 30 08:20:42 2020	(r529867)
+++ head/print/panda/Makefile	Mon Mar 30 08:31:12 2020	(r529868)
@@ -3,7 +3,7 @@
 
 PORTNAME=	panda
 PORTVERSION=	0.5.4
-PORTREVISION=	9
+PORTREVISION=	10
 CATEGORIES=	print
 MASTER_SITES=	SF \
 		SAVANNAH \
@@ -21,7 +21,7 @@ LIB_DEPENDS=	libpng.so:graphics/png \
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--enable-berkeley-db
 CPPFLAGS+=	-I${BDB_INCLUDE_DIR} -I${LOCALBASE}/include
-LIBS+=		-L${BDB_LIB_DIR} -L${LOCALBASE}/lib
+LIBS+=		-lz -L${BDB_LIB_DIR} -L${LOCALBASE}/lib
 INSTALL_TARGET=	install-strip
 USES=		autoreconf bdb dos2unix gmake jpeg libtool pathfix pkgconfig tar:bzip2
 DOS2UNIX_GLOB=	*.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003300831.02U8VCqM029380>