diff options
author | rbuj <[email protected]> | 2022-07-25 15:19:07 +0200 |
---|---|---|
committer | Luke from DC <[email protected]> | 2022-08-20 16:48:09 +0000 |
commit | 955ddc3187344cce1e3fa7343444ebe20634cb9a (patch) | |
tree | 65c7b1c07f2c096ed854df72cba4ab4a6763f977 | |
parent | 7b1b00d5ddffc349ca117843bd0d015e9fb08a89 (diff) | |
download | mate-panel-955ddc3187344cce1e3fa7343444ebe20634cb9a.tar.bz2 mate-panel-955ddc3187344cce1e3fa7343444ebe20634cb9a.tar.xz |
configure.ac: The macro 'AC_HELP_STRING' is obsolete
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 7ec1b1e0..0ebbe036 100644 --- a/configure.ac +++ b/configure.ac @@ -42,7 +42,7 @@ PANEL_INTLTOOL_MATE_PANEL_APPLET_RULE='%.mate-panel-applet: %.mate-panel-applet. AC_SUBST([PANEL_INTLTOOL_MATE_PANEL_APPLET_RULE]) AC_ARG_ENABLE(deprecation_flags, - [AC_HELP_STRING([--enable-deprecation-flags], + [AS_HELP_STRING([--enable-deprecation-flags], [use *_DISABLE_DEPRECATED flags @<:@default=no@:>@])],, [enable_deprecation_flags=no]) @@ -115,7 +115,7 @@ PANEL_INPROCESS_NONE= PANEL_INPROCESS_ALL= PANEL_INPROCESS_APPLETS= AC_ARG_WITH(in-process-applets, - AC_HELP_STRING([--with-in-process-applets=APPLETS], + AS_HELP_STRING([--with-in-process-applets=APPLETS], [comma-separated list of applets to compile in-process (possible values: none, clock, fish, notification-area, wncklet, all) @<:@default=none@:>@]), [for i in `echo $withval | tr , ' '`; do if test $i = "none"; then @@ -178,14 +178,14 @@ AC_STRUCT_DIRENT_D_TYPE # $enable_x11 and $enable_wayland will be set to "yes", "no" or "auto" AC_ARG_ENABLE(x11, - [AC_HELP_STRING([--enable-x11], + [AS_HELP_STRING([--enable-x11], [Explicitly enable or disable X11 support (default is to enable only if X development libraries are detected)])], [enable_x11=$enableval], [enable_x11=auto]) AC_ARG_ENABLE(wayland, - [AC_HELP_STRING([--enable-wayland], + [AS_HELP_STRING([--enable-wayland], [Explicitly enable or disable Wayland support (default is to enable only if Wayland client development library is detected)])], [enable_wayland=$enableval], |