summaryrefslogtreecommitdiff
path: root/m4/ax_cc_tentdef.m4
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2023-04-13 14:45:52 +0200
committerPeter Simons <simons@cryp.to>2023-04-13 14:45:52 +0200
commited466f7ff448260f37ce3e72c92541dcf6e6b327 (patch)
tree305037ec5dd1e2b4b7f925df0996d6084883a56e /m4/ax_cc_tentdef.m4
parent635eedac772dc323f3946f3fdbb5718057c612e5 (diff)
downloadautoconf-archive-ed466f7ff448260f37ce3e72c92541dcf6e6b327.tar.gz
Re-format macros into canonical format after recent changes.
Diffstat (limited to 'm4/ax_cc_tentdef.m4')
-rw-r--r--m4/ax_cc_tentdef.m419
1 files changed, 9 insertions, 10 deletions
diff --git a/m4/ax_cc_tentdef.m4 b/m4/ax_cc_tentdef.m4
index 9171dea..5b119fc 100644
--- a/m4/ax_cc_tentdef.m4
+++ b/m4/ax_cc_tentdef.m4
@@ -1,5 +1,5 @@
# ===========================================================================
-# https://www.gnu.org/software/autoconf-archive/
+# https://www.gnu.org/software/autoconf-archive/ax_cc_tentdef.html
# ===========================================================================
#
# SYNOPSIS
@@ -8,14 +8,14 @@
#
# DESCRIPTION
#
-# Determine whether the C compiler supports C tentative defintions.
-# See K&R book Appendix A10.2 on 'extern' and tentative definitions.
-# Some compilers use a 'strict definition-reference model'
-# Traditionally most UNIX C compilers support tentative definitions,
-# whereas some compiler such as Metrowerks or WATCOM C do not.
+# Determine whether the C compiler supports C tentative defintions. See
+# K&R book Appendix A10.2 on 'extern' and tentative definitions. Some
+# compilers use a 'strict definition-reference model' Traditionally most
+# UNIX C compilers support tentative definitions, whereas some compiler
+# such as Metrowerks or WATCOM C do not.
#
-# The $ac_cv_tentdef variable will be either no or yes,
-# and can be overridden on the command line using --with-tentdef
+# The $ac_cv_tentdef variable will be either no or yes, and can be
+# overridden on the command line using --with-tentdef
#
# See also: ax_cc_attrcommon.m4 for a __attribute__(( __common__)) test
#
@@ -36,7 +36,7 @@
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <https://www.gnu.org/licenses/>.
-#serial 1
+#serial 2
AC_ARG_WITH(tentdef,
[ --with-tentdef use C tentative definitions],
@@ -98,4 +98,3 @@ rm -rf $ac_clean_files
],ac_cv_tentdef=no,ac_cv_tentdef=yes)
AC_MSG_RESULT($ac_cv_tentdef)
])
-