diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 9f72dd3..8abd702 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_PREREQ(2.12) -AC_REVISION($Revision: 1.7 $) +AC_PREREQ(2.13) +AC_REVISION($Revision: 1.8 $) AC_INIT(src/msgfmt.c) AM_INIT_AUTOMAKE(gettext, 0.10.36) AM_CONFIG_HEADER(config.h) @@ -15,8 +15,7 @@ AC_ISC_POSIX AC_PROG_INSTALL AC_PROG_YACC -dnl Make sure we see all GNU extensions. -AC_DEFINE(_GNU_SOURCE) +AC_DEFINE(_GNU_SOURCE, 1, [Make sure we see all GNU extensions.]) dnl Checks for libraries. @@ -47,7 +46,8 @@ fi AC_CHECK_FUNC(parse_printf_format, gt_cv_func_parse_printf_format=yes, gt_cv_func_parse_printf_format=no) if test $gt_cv_func_parse_printf_format = yes; then - AC_DEFINE(HAVE_PARSE_PRINTF_FORMAT) + AC_DEFINE(HAVE_PARSE_PRINTF_FORMAT, 1, + [Define if you have the parse_printf_format() function.]) else LIBOBJS="$LIBOBJS printf-prs.o" fi |