Skip to content

Commit ad65335

Browse files
authored
Merge pull request #1441 from b4n/ac-cleanup
Small Autotools cleanup
2 parents 1d0e74a + 7f5d407 commit ad65335

13 files changed

Lines changed: 5 additions & 1450 deletions

File tree

addons/INSTALL

Lines changed: 0 additions & 182 deletions
This file was deleted.

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

configure.ac

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ AC_USE_SYSTEM_EXTENSIONS
1515
AC_PROG_CC
1616
AC_PROG_CC_C99
1717
AM_PROG_CC_C_O
18-
AC_DISABLE_STATIC
19-
AC_PROG_LIBTOOL
18+
LT_INIT([disable-static])
2019

2120
dnl i18n, inline so autoreconf can detect gettext usage
2221
AM_GNU_GETTEXT_VERSION([0.19.8])

0 commit comments

Comments
 (0)