]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
configure: fix formatting of --disable-lz4 and --enable-comp-stub
authorFrank Lichtenheld <frank@lichtenheld.com>
Mon, 6 Feb 2023 13:08:46 +0000 (14:08 +0100)
committerGert Doering <gert@greenie.muc.de>
Sat, 25 Feb 2023 16:57:47 +0000 (17:57 +0100)
Make consistent with the other options.

Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <20230206130846.63415-1-frank@lichtenheld.com>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg26156.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
configure.ac

index c44d38568d8d7a4e19684676d6d397fcb5175f82..4c271464b6bf9167a82de2e95f97e972d5f2ce9c 100644 (file)
@@ -80,14 +80,16 @@ AC_ARG_ENABLE(
        [enable_lzo="yes"]
 )
 
-AC_ARG_ENABLE(lz4,
-       [  --disable-lz4           Disable LZ4 compression support],
+AC_ARG_ENABLE(
+       [lz4],
+       [AS_HELP_STRING([--disable-lz4], [disable LZ4 compression support @<:@default=yes@:>@])],
        [enable_lz4="$enableval"],
        [enable_lz4="yes"]
 )
 
-AC_ARG_ENABLE(comp-stub,
-       [  --enable-comp-stub      Don't compile compression support but still allow limited interoperability with compression-enabled peers],
+AC_ARG_ENABLE(
+       [comp-stub],
+       [AS_HELP_STRING([--enable-comp-stub], [disable compression support but still allow limited interoperability with compression-enabled peers @<:@default=no@:>@])],
        [enable_comp_stub="$enableval"],
        [enable_comp_stub="no"]
 )