diff options
author | marino <marino@FreeBSD.org> | 2013-12-27 03:50:48 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2013-12-27 03:50:48 +0800 |
commit | b0b32468e0f8a763f1da840659fbcfd76e38690a (patch) | |
tree | ecb14387ea0d240859be8761bb7771961f355303 /graphics | |
parent | e2004eaa1da70bf92dd847b7a6abf7211d4404aa (diff) | |
download | freebsd-ports-gnome-b0b32468e0f8a763f1da840659fbcfd76e38690a.tar.gz freebsd-ports-gnome-b0b32468e0f8a763f1da840659fbcfd76e38690a.tar.zst freebsd-ports-gnome-b0b32468e0f8a763f1da840659fbcfd76e38690a.zip |
graphics/apngasm: restore LDFLAGS+= -lz
The LDFLAGS definition was removed with the previous commit, but
LDFLAGS+=-lz is still required for newer gcc with new binutils.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/apngasm/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/graphics/apngasm/Makefile b/graphics/apngasm/Makefile index 43d22ae5d475..f6e334115073 100644 --- a/graphics/apngasm/Makefile +++ b/graphics/apngasm/Makefile @@ -19,6 +19,8 @@ NO_WRKSUBDIR= yes USE_ZIP= yes USES= dos2unix gmake +LDFLAGS+= -lz + PORTDOCS= readme.txt PLIST_FILES= bin/${PORTNAME} |