Skip to content

Commit 13143db

Browse files
committed
autotools: Replace the last few AC_HELP_STRING usages
AC_HELP_STRING is obsolete for a while, and AS_HELP_STRING is a drop-in replacement we already use for the most part.
1 parent a8dcb20 commit 13143db

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

build/geany.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ AC_DEFUN([_GP_GEANY_LIBDIR],
22
[
33
AC_REQUIRE([PKG_PROG_PKG_CONFIG])
44
AC_ARG_WITH([geany-libdir],
5-
AC_HELP_STRING([--with-geany-libdir=PATH],
5+
AS_HELP_STRING([--with-geany-libdir=PATH],
66
[Set Geany's installation libdir [[default=auto]]]),
77
[geany_libdir=${withval}],
88
[geany_libdir=$(${PKG_CONFIG} --variable=libdir geany)])

build/geanylua.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ AC_DEFUN([GP_CHECK_GEANYLUA],
33
GP_ARG_DISABLE([GeanyLua], [auto])
44
55
AC_ARG_WITH([lua-pkg],
6-
AC_HELP_STRING([--with-lua-pkg=ARG],
6+
AS_HELP_STRING([--with-lua-pkg=ARG],
77
[name of Lua pkg-config script [[default=lua5.1]]]),
88
[LUA_PKG_NAME=${withval%.pc}],
99
[LUA_PKG_NAME=lua5.1

build/geanyvc.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ AC_DEFUN([GP_CHECK_GEANYVC],
33
GP_ARG_DISABLE([GeanyVC], [auto])
44
GP_COMMIT_PLUGIN_STATUS([GeanyVC])
55
AC_ARG_ENABLE(gtkspell,
6-
AC_HELP_STRING([--enable-gtkspell=ARG],
6+
AS_HELP_STRING([--enable-gtkspell=ARG],
77
[Enable GtkSpell support in GeanyVC. [[default=auto]]]),,
88
enable_gtkspell=auto)
99
GP_CHECK_GTK3([gtkspell_package=gtkspell3-3.0],

build/lsp.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ AC_DEFUN([GP_CHECK_LSP],
88
JSONRPC_GLIB_VERSION=3.44
99
1010
AC_ARG_ENABLE(system-jsonrpc,
11-
AC_HELP_STRING([--enable-system-jsonrpc],
11+
AS_HELP_STRING([--enable-system-jsonrpc],
1212
[Force using system json-glib and jsonrpc-glib libraries for the LSP plugin. [[default=no]]]),,
1313
enable_system_jsonrpc=no)
1414

0 commit comments

Comments
 (0)