AC_PROG_CC
AC_USE_SYSTEM_EXTENSIONS
-AM_C_PROTOTYPES
AC_C_CONST
AC_FUNC_ALLOCA
+dnl its save to say that in 2023 all compilers support prototypes
+AC_DEFINE([PROTOTYPES], [1], [Define to 1 if your compiler supports function prototypes.])
AC_HEADER_STDC
AC_CHECK_HEADERS([string.h stdlib.h unistd.h stdarg.h math.h pwd.h])
MEDIA=$ac_cv_value_media
AC_SUBST(MEDIA)
+dnl Define the default input encoding.
+AC_ARG_WITH(encoding,
+[ --with-encoding(=ENCODING) use input encoding (ENCODING), default is latin1],
+ if test "X$withval" != "Xno"; then
+ if test "X$withval" = "Xyes"; then
+ ac_cv_value_encoding='latin1'
+ else
+ ac_cv_value_encoding=$withval
+ fi
+ else
+ ac_cv_value_encoding=${ENCODING-latin1}
+ fi,
+ ac_cv_value_encoding=${ENCODING-latin1}
+)
+ENCODING=$ac_cv_value_encoding
+AC_SUBST(ENCODING)
+
dnl Find the printer spooler command.
AC_CHECK_PROG(SPOOLER, lpr, lpr)
AC_SUBST(PSLEVEL)
dnl Internationalization.
-AM_GNU_GETTEXT
-AM_GNU_GETTEXT_VERSION([0.17])
+AM_GNU_GETTEXT([external])
+AM_GNU_GETTEXT_VERSION([0.21.1])
dnl Path separator character.
AC_DEFINE_UNQUOTED([PATH_SEPARATOR], [':'],
AC_SUBST(CFLAGS)
AC_SUBST(LDFLAGS)
-AC_CONFIG_FILES([Makefile po/Makefile.in intl/Makefile po/Makefile \
+AC_CONFIG_FILES([Makefile po/Makefile.in\
compat/Makefile \
afm/Makefile \
afmlib/Makefile \
echo "Option Change with configure's option Current value"
echo "---------------------------------------------------------"
echo "Media --with-media=MEDIA $MEDIA"
+echo "Encoding --with-encoding=ENCODING $ENCODING"
echo "Spooler --with-spooler=SPOOLER $SPOOLER"
echo "PS level --with-ps-level=LEVEL $PSLEVEL"
echo ""