diff options
author | John Crispin <john@openwrt.org> | 2015-12-17 09:29:54 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-12-17 09:29:54 +0000 |
commit | a418d03d6d3c9ec8028c72b08f46c0a89c16e5f1 (patch) | |
tree | d8bb41baa80a79726946452335a1c24cb0dd40a7 /package/network/utils/dante/Makefile | |
parent | 68ff0d3d788eeb1880c997a8a9053bb6fdc37755 (diff) | |
download | upstream-a418d03d6d3c9ec8028c72b08f46c0a89c16e5f1.tar.gz upstream-a418d03d6d3c9ec8028c72b08f46c0a89c16e5f1.tar.bz2 upstream-a418d03d6d3c9ec8028c72b08f46c0a89c16e5f1.zip |
dante: update to 1.4.1
- 1.4.x has IPv6 support
- set C std explicitly due to gcc 5 changes/old code style of dante
- disable pam via configure vars since detection of without pam option
is broken (-lpam gets linked in if available)
- remove and refresh patches
only compile tested
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
SVN-Revision: 47926
Diffstat (limited to 'package/network/utils/dante/Makefile')
-rw-r--r-- | package/network/utils/dante/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package/network/utils/dante/Makefile b/package/network/utils/dante/Makefile index f10dd86c1b..b49ae7291c 100644 --- a/package/network/utils/dante/Makefile +++ b/package/network/utils/dante/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=dante -PKG_VERSION:=1.2.2 +PKG_VERSION:=1.4.1 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -23,14 +23,15 @@ PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk -TARGET_CFLAGS += -D_GNU_SOURCE +TARGET_CFLAGS += -D_GNU_SOURCE -std=gnu89 + CONFIGURE_ARGS += \ --without-upnp \ --without-pam \ --disable-libwrap CONFIGURE_VARS += \ - CC="$(TARGET_CC) $(TARGET_CFLAGS)" + ac_cv_search_pam_start="" define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include |