summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2022-07-25 15:19:14 +0200
committerLuke from DC <[email protected]>2022-11-03 07:42:35 +0000
commit74dad912ad7eb5e9a0efe3fee2af71da7cb0fdb2 (patch)
treeda6cba9d931fc88e7b35d8ac98fbd4679c902067
parent24e01e9d0c1ed7844a2bddd751aa0e7908febbaa (diff)
downloadmate-settings-daemon-74dad912ad7eb5e9a0efe3fee2af71da7cb0fdb2.tar.bz2
mate-settings-daemon-74dad912ad7eb5e9a0efe3fee2af71da7cb0fdb2.tar.xz
configure.ac: The macro 'AC_HELP_STRING' is obsolete
-rw-r--r--configure.ac18
1 files changed, 9 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac
index e03008d..b649c32 100644
--- a/configure.ac
+++ b/configure.ac
@@ -102,7 +102,7 @@ dnl ---------------------------------------------------------------------------
have_libnotify=no
AC_ARG_WITH(libnotify,
- AC_HELP_STRING([--without-libnotify], [Disable notifications (default: auto)]),
+ AS_HELP_STRING([--without-libnotify], [Disable notifications (default: auto)]),
with_libnotify=$withval, with_libnotify=auto)
if test "x$with_libnotify" != "xno"; then
@@ -142,10 +142,10 @@ dnl ---------------------------------------------------------------------------
dnl - Are we specifying a different dbus root ?
AC_ARG_WITH(dbus-sys,
- [AC_HELP_STRING([--with-dbus-sys=<dir>],
+ [AS_HELP_STRING([--with-dbus-sys=<dir>],
[where D-BUS system.d directory is])])
AC_ARG_WITH(dbus-services,
- [AC_HELP_STRING([--with-dbus-services=<dir>],
+ [AS_HELP_STRING([--with-dbus-services=<dir>],
[where D-BUS services directory is])])
if ! test -z "$with_dbus_sys" ; then
DBUS_SYS_DIR="$with_dbus_sys"
@@ -230,7 +230,7 @@ dnl ---------------------------------------------------------------------------
have_pulse=false
AC_ARG_ENABLE(pulse,
- AC_HELP_STRING([--disable-pulse], [Disable PulseAudio support]),
+ AS_HELP_STRING([--disable-pulse], [Disable PulseAudio support]),
[case "${enableval}" in
yes) WANT_PULSE=yes ;;
no) WANT_PULSE=no ;;
@@ -252,7 +252,7 @@ AC_SUBST(PULSE_LIBS)
have_libcanberra=no
AC_ARG_WITH(libcanberra,
- AC_HELP_STRING([--without-libcanberra], [Disable sound events (default: auto)]),
+ AS_HELP_STRING([--without-libcanberra], [Disable sound events (default: auto)]),
with_libcanberra=$withval, with_libcanberra=auto)
if test "x$with_libcanberra" != "xno"; then
@@ -268,7 +268,7 @@ AC_SUBST(LIBCANBERRA_LIBS)
have_libmatemixer=no
AC_ARG_WITH(libmatemixer,
- AC_HELP_STRING([--without-libmatemixer], [Disable volume event handling (default: auto)]),
+ AS_HELP_STRING([--without-libmatemixer], [Disable volume event handling (default: auto)]),
with_libmatemixer=$withval, with_libmatemixer=auto)
if test "x$with_libmatemixer" != "xno"; then
@@ -295,7 +295,7 @@ dnl smartcard section
dnl ==============================================
have_smartcard_support=false
AC_ARG_ENABLE(smartcard-support,
- AC_HELP_STRING([--disable-smartcard-support],
+ AS_HELP_STRING([--disable-smartcard-support],
[turn off smartcard support]),
[case "${enableval}" in
yes) WANT_SMARTCARD_SUPPORT=yes ;;
@@ -317,7 +317,7 @@ AC_SUBST(NSS_CFLAGS)
AC_SUBST(NSS_LIBS)
AC_ARG_WITH(nssdb,
- AC_HELP_STRING([--with-nssdb],
+ AS_HELP_STRING([--with-nssdb],
[where system NSS database is]))
NSS_DATABASE=""
@@ -389,7 +389,7 @@ AM_CONDITIONAL(BUILD_RFKILL, [test x"$enable_rfkill" = x"yes"])
# Enable Profiling
# ---------------------------------------------------------------------------
AC_ARG_ENABLE(profiling,
- [AC_HELP_STRING([--enable-profiling],
+ [AS_HELP_STRING([--enable-profiling],
[turn on profiling])],
, enable_profiling=no)
if test "x$enable_profiling" = "xyes"; then