diff options
author | John Marino <marino@FreeBSD.org> | 2013-12-27 03:50:48 +0800 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2013-12-27 03:50:48 +0800 |
commit | 1207a6a2f730ac18f9d8362e698c81a1ece8fd92 (patch) | |
tree | ecb14387ea0d240859be8761bb7771961f355303 /graphics/apngasm | |
parent | 652dde7a1c9140b287881baecad4605cae135715 (diff) | |
download | freebsd-ports-gnome-1207a6a2f730ac18f9d8362e698c81a1ece8fd92.tar.gz freebsd-ports-gnome-1207a6a2f730ac18f9d8362e698c81a1ece8fd92.tar.zst freebsd-ports-gnome-1207a6a2f730ac18f9d8362e698c81a1ece8fd92.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/apngasm')
-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} |