Browse Source

Build proftpd with IPv6 support only if the toolchain was configured as such.

"Steven J. Hill" 18 years ago
parent
commit
b9721176ba
1 changed files with 5 additions and 0 deletions
  1. 5 0
      package/proftpd/proftpd.mk

+ 5 - 0
package/proftpd/proftpd.mk

@@ -11,6 +11,10 @@ PROFTPD_CAT:=bzcat
 PROFTPD_BINARY:=proftpd
 PROFTPD_TARGET_BINARY:=usr/sbin/proftpd
 
+ifeq ($(BR2_INET_IPV6),y)
+ENABLE_IPV6:=--enable-ipv6
+endif
+
 $(DL_DIR)/$(PROFTPD_SOURCE):
 	 $(WGET) -P $(DL_DIR) $(PROFTPD_SITE)/$(PROFTPD_SOURCE)
 
@@ -40,6 +44,7 @@ $(PROFTPD_DIR)/.configured: $(PROFTPD_DIR)/.unpacked
 		--disable-dso \
 		--enable-shadow \
 		$(DISABLE_LARGEFILE) \
+		$(ENABLE_IPV6) \
 		--with-gnu-ld \
 	);
 	touch $(PROFTPD_DIR)/.configured