diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2020-03-30 08:31:12 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2020-03-30 08:31:12 +0000 |
commit | 1e2dd0bc6cf916a2c918eee238b205c1f39dfd52 (patch) | |
tree | 5e643c39cfeb4eba8fe718fbb46d901e1598451f | |
parent | textproc/groonga: Update version 9.1.2=>10.0.0 (diff) |
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.
Notes
Notes:
svn path=/head/; revision=529868
-rw-r--r-- | print/panda/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/panda/Makefile b/print/panda/Makefile index 197a4697a495..277580398b9d 100644 --- a/print/panda/Makefile +++ b/print/panda/Makefile @@ -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 |