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