configure: remove usage of deprecated AC_HELP_STRING
authorNathan Hjelm <hjelmn@google.com>
Tue, 27 Jul 2021 05:29:01 +0000 (23:29 -0600)
committerNathan Hjelm <hjelmn@google.com>
Tue, 27 Jul 2021 05:29:01 +0000 (23:29 -0600)
This macro was replaced by AS_HELP_STRING. This commit updates the lingering deprecated call
with the new macro as used elsewhere in configure.ac.

Signed-off-by: Nathan Hjelm <hjelmn@google.com>
configure.ac
libusb/version_nano.h

index 4302b53..f6cf2f9 100644 (file)
@@ -171,7 +171,7 @@ linux)
        AC_SEARCH_LIBS([clock_gettime], [rt], [], [], [])
        AC_CHECK_FUNCS([pthread_setname_np])
        AC_ARG_ENABLE([udev],
-               [AC_HELP_STRING([--enable-udev], [use udev for device enumeration and hotplug support (recommended) [default=yes]])],
+               [AS_HELP_STRING([--enable-udev], [use udev for device enumeration and hotplug support (recommended) [default=yes]])],
                [use_udev=$enableval], [use_udev=yes])
        if test "x$use_udev" = xyes; then
                dnl system has udev. use it or fail!
index a2c106c..94aba9b 100644 (file)
@@ -1 +1 @@
-#define LIBUSB_NANO 11646
+#define LIBUSB_NANO 11647