diff options
author | Rosen Penev <rosenp@gmail.com> | 2019-08-10 13:44:07 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2019-08-14 00:49:07 -0700 |
commit | bf2f1a02636a9b74e1d824cab384b8f3f9e7d819 (patch) | |
tree | 06c25bbab983329f36db2c184763cdc7f3f7cee4 /libs/libgd | |
parent | 4687ec17dba1eed3509f9c82084dd13b3deb02f2 (diff) |
libgd: Properly disable iconv support
HAVE_ICONV and HAVE_ICONV_H are two different headers that both need to
evaluate to false. Added the extra CONFIGURE_VARS.
This can be verified by passing -Werror=implicit-function-declaration
Added PKG_LICENSE_FILES
Updated homepage URL.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'libs/libgd')
-rw-r--r-- | libs/libgd/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/libs/libgd/Makefile b/libs/libgd/Makefile index 8d4fc08a5..75593183a 100644 --- a/libs/libgd/Makefile +++ b/libs/libgd/Makefile @@ -9,16 +9,17 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libgd PKG_VERSION:=2.2.5 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://github.com/$(PKG_NAME)/$(PKG_NAME)/releases/download/gd-$(PKG_VERSION)/ PKG_HASH:=8c302ccbf467faec732f0741a859eef4ecae22fea2d2ab87467be940842bde51 + PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io> PKG_LICENSE:=MIT +PKG_LICENSE_FILES:=COPYING PKG_FIXUP:=autoreconf - PKG_INSTALL:=1 PKG_BUILD_PARALLEL:=1 @@ -29,7 +30,7 @@ define Package/libgd CATEGORY:=Libraries DEPENDS:=+libjpeg +libpng +LIBGD_TIFF:libtiff +LIBGD_FREETYPE:libfreetype TITLE:=The GD graphics library - URL:=http://www.libgd.org/ + URL:=https://libgd.github.io/ MENU:=1 endef @@ -84,7 +85,9 @@ else endif CONFIGURE_VARS += \ - ac_cv_header_iconv_h=no + ac_cv_header_iconv_h=no \ + am_cv_func_iconv_works=no \ + am_func_iconv=no define Build/InstallDev $(INSTALL_DIR) $(1)/usr/bin |