Project

General

Profile

Actions

Bug #3237

closed

./configure --disable-ipv6 prints "Features: enabled: network-ipv6"

Added by Deweloper 5 months ago. Updated 5 months ago.

Status:
Fixed
Priority:
Low
Category:
build_autotools
Target version:
ASK QUESTIONS IN Forums:
No

Description

Despite calling ./configure with --disable-ipv6, it still prints:

Features:

enabled: 
  network-ipv6

although it seems it generates config.h properly since it contains:
/* #undef HAVE_IPV6 */
Actions #1

Updated by gstrauss 5 months ago

  • Status changed from New to Patch Pending
  • Priority changed from Normal to Low

It is only the reporting trace. IPv6 support is disabled with --disable-ipv6

--- a/configure.ac
+++ b/configure.ac
@@ -1793,7 +1793,7 @@ lighty_track_feature "auth-crypt" "" \
   'test "$found_crypt" != no'

 lighty_track_feature "network-ipv6" "" \
-  'test "$ac_cv_ipv6_support" != no'
+  'test "$ipv6" != false'

 lighty_track_feature "large-files" "" \
   'test "$ENABLE_LFS" = yes'
Actions #2

Updated by gstrauss 5 months ago

  • Status changed from Patch Pending to Fixed
Actions

Also available in: Atom