autoconf: Some updates

* Remove AC_HEADER_STDC
* AC_OUTPUT -> AC_CONFIG_FILES + AC_OUTPUT
This commit is contained in:
Gaël Bonithon 2021-02-02 19:41:30 +01:00 committed by Romain Bouvier
parent 297825c4c2
commit 4f0d513e2b

View file

@ -42,7 +42,6 @@ AM_PROG_CC_C_O()
dnl ********************************** dnl **********************************
dnl *** Check for standard headers *** dnl *** Check for standard headers ***
dnl ********************************** dnl **********************************
AC_HEADER_STDC()
AC_CHECK_HEADERS([math.h]) AC_CHECK_HEADERS([math.h])
dnl ****************************** dnl ******************************
@ -67,7 +66,7 @@ dnl *** Check for debugging support ***
dnl *********************************** dnl ***********************************
XDT_FEATURE_DEBUG() XDT_FEATURE_DEBUG()
AC_OUTPUT([ AC_CONFIG_FILES([
Makefile Makefile
po/Makefile.in po/Makefile.in
panel-plugin/Makefile panel-plugin/Makefile
@ -86,3 +85,4 @@ themes/Default-tiny/Makefile
themes/Horrid/Makefile themes/Horrid/Makefile
themes/Tango/Makefile themes/Tango/Makefile
]) ])
AC_OUTPUT