Update configure.ac.in syntax

This commit is contained in:
Romain Bouvier
2022-05-30 13:08:40 +02:00
parent 1a36cc2959
commit a572e16dfb

View File

@@ -35,7 +35,7 @@ dnl ***************************
dnl *** Initialize automake ***
dnl ***************************
AM_INIT_AUTOMAKE([1.8 no-dist-gzip dist-bzip2 foreign])
AM_CONFIG_HEADER([config.h])
AC_CONFIG_HEADERS([config.h])
AM_MAINTAINER_MODE()
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
@@ -47,7 +47,7 @@ dnl *** Check for basic programs ***
dnl ********************************
AC_PROG_CC()
AM_PROG_CC_C_O()
AC_PROG_LD()
LT_PATH_LD([])
AC_PROG_INSTALL()
IT_PROG_INTLTOOL()
@@ -59,7 +59,6 @@ AC_C_CONST()
dnl **********************************
dnl *** Check for standard headers ***
dnl **********************************
AC_HEADER_STDC()
AC_CHECK_HEADERS([stdlib.h string.h])
dnl ******************************
@@ -87,7 +86,7 @@ dnl ***********************************
dnl ********** Check for skel *********
dnl ***********************************
AC_ARG_WITH([skel],
AC_HELP_STRING([--with-skel], [build with task-manager-skel.c]),
AS_HELP_STRING([--with-skel],[build with task-manager-skel.c]),
[ac_skel="$withval"],
[ac_skel=no])
@@ -143,7 +142,7 @@ XDT_FEATURE_DEBUG()
dnl ***************
dnl *** Outputs ***
dnl ***************
AC_OUTPUT([
AC_CONFIG_FILES([
Makefile
src/Makefile
data/Makefile
@@ -155,6 +154,7 @@ data/icons/128x128/Makefile
data/icons/scalable/Makefile
po/Makefile.in
])
AC_OUTPUT
dnl ***************************
dnl *** Print configuration ***