diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2002-05-18 13:03:29 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2002-05-18 13:03:29 +0000 |
commit | c63e8768b1734be577a139f893693be11734031d (patch) | |
tree | 88a0737712d4b97966c51c6f6434bcbd068b3958 /graphics/png/files/makefile.freebsd | |
parent | Add missing MD5 checksum, sigh (diff) |
Add libz to LDADD/DPADD
Notes
Notes:
svn path=/head/; revision=59430
Diffstat (limited to 'graphics/png/files/makefile.freebsd')
-rw-r--r-- | graphics/png/files/makefile.freebsd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/png/files/makefile.freebsd b/graphics/png/files/makefile.freebsd index 6b2dd459d9c3..fb11ad93d813 100644 --- a/graphics/png/files/makefile.freebsd +++ b/graphics/png/files/makefile.freebsd @@ -22,8 +22,8 @@ MAN= libpng.3 libpngpf.3 png.5 MANDIR= /man/man SYMLINKS= libpng/png.h ${INCSDIR}/../png.h \ libpng/pngconf.h ${INCSDIR}/../pngconf.h -LDADD+= -lm -DPADD+= ${LIBM} +LDADD+= -lm -lz +DPADD+= ${LIBM} ${LIBZ} CFLAGS+= -I. -DPNG_USE_PNGGCCRD .if (${ARCH} != "i386") |