openvms: look for USE_IPV6 in config.h (was: ENABLE_IPV6)

The OpenVMS script `config_h.com` is parsing the config header
generated by autotools. Let's make it look for the macro name we now
use universally across the codebase.

Follow-up to e411c98f70 #13349
Closes #13360
This commit is contained in:
Viktor Szakats 2024-04-13 09:51:36 +00:00
parent 41c03b4c98
commit 09f0390e11
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -847,7 +847,7 @@ $ goto cfgh_in_loop1
$ endif $ endif
$! $!
$ if (key2a .eqs. "HAVE") .or. (key2a .eqs. "STAT") .or. - $ if (key2a .eqs. "HAVE") .or. (key2a .eqs. "STAT") .or. -
(key2 .eqs. "ENABLE_IPV6") .or. (key2b .eqs. "LDAP") (key2 .eqs. "USE_IPV6") .or. (key2b .eqs. "LDAP")
$ then $ then
$! $!
$! Process extra underscores $! Process extra underscores
@ -866,7 +866,7 @@ $ double_under = 1
$ endif $ endif
$ endif $ endif
$! $!
$ if (key2_h .eqs. "_H") .or. (key2 .eqs. "ENABLE_IPV6") .or. - $ if (key2_h .eqs. "_H") .or. (key2 .eqs. "USE_IPV6") .or. -
(key2b .eqs. "LDAP") (key2b .eqs. "LDAP")
$ then $ then
$! $!
@ -892,7 +892,7 @@ $ endif
$! $!
$! And of course what's life with out some special cases $! And of course what's life with out some special cases
$!-------------------------------------------------------------------- $!--------------------------------------------------------------------
$ if key2 .eqs. "ENABLE_IPV6" $ if key2 .eqs. "USE_IPV6"
$ then $ then
$ headf = "in6" $ headf = "in6"
$ endif $ endif