diff options
author | ache <ache@FreeBSD.org> | 2002-05-18 21:03:29 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2002-05-18 21:03:29 +0800 |
commit | 2b3faa92d48cb0fbb239e9f62ad7b7cd9a57c66d (patch) | |
tree | 31abd1f4186dc616a1f907a13ab7045f6c4d6e8f /graphics/png/files | |
parent | 9fedf087ebae4d82911dd36258f2793f23208767 (diff) | |
download | freebsd-ports-graphics-2b3faa92d48cb0fbb239e9f62ad7b7cd9a57c66d.tar.gz freebsd-ports-graphics-2b3faa92d48cb0fbb239e9f62ad7b7cd9a57c66d.tar.zst freebsd-ports-graphics-2b3faa92d48cb0fbb239e9f62ad7b7cd9a57c66d.zip |
Add libz to LDADD/DPADD
Diffstat (limited to 'graphics/png/files')
-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 6b2dd459d9c..fb11ad93d81 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") |