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 | |
parent | 9fedf087ebae4d82911dd36258f2793f23208767 (diff) | |
download | freebsd-ports-gnome-2b3faa92d48cb0fbb239e9f62ad7b7cd9a57c66d.tar.gz freebsd-ports-gnome-2b3faa92d48cb0fbb239e9f62ad7b7cd9a57c66d.tar.zst freebsd-ports-gnome-2b3faa92d48cb0fbb239e9f62ad7b7cd9a57c66d.zip |
Add libz to LDADD/DPADD
-rw-r--r-- | graphics/png/Makefile | 2 | ||||
-rw-r--r-- | graphics/png/files/makefile.freebsd | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/graphics/png/Makefile b/graphics/png/Makefile index b15d2bc4a9ce..f2b12760f2d4 100644 --- a/graphics/png/Makefile +++ b/graphics/png/Makefile @@ -7,7 +7,7 @@ PORTNAME= png PORTVERSION= 1.2.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= http://www.libpng.org/pub/png/src/ \ ftp://swrinde.nde.swri.edu/pub/png/src/ \ 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") |