1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
dnl Process this file with autoconf to produce a configure script.
# Copyright (C) 2012, 2014, 2022 Free Software Foundation, Inc.
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved. This file is offered as-is,
# without any warranty.
dnl Written by Brendan O'Dea <bod@debian.org>
AC_INIT([GNU help2man], [m4_esyscmd_s(./help2man.PL --version)],
[bug-help2man@gnu.org])
AC_CONFIG_SRCDIR(help2man.PL)
AC_CONFIG_AUX_DIR([build-aux])
AC_SUBST(auxdir, $ac_aux_dir)
LOCAL_PROG_PERL(5.008)
test -z "$PERL" && AC_MSG_ERROR([perl 5.8 required])
LOCAL_PERL_MODULE(Locale::gettext)
AC_PATH_PROG(MSGFMT, msgfmt)
AC_PROG_CC
AC_SEARCH_LIBS(dlsym, dl)
AC_SEARCH_LIBS(bindtextdomain, intl)
nls_default=yes
test "x$ac_cv_module_Locale__gettext" = xno && nls_default=no
test -z "$MSGFMT" && nls_default=no
test "x$ac_cv_search_dlsym" = xno && nls_default=no
test "x$ac_cv_search_bindtextdomain" = xno && nls_default=no
AC_ARG_ENABLE([nls],
AS_HELP_STRING([--enable-nls],
[enable support for generating localised pages]),
[ac_cv_enable_nls=$enableval], [ac_cv_enable_nls=$nls_default])
AC_SUBST(extra_make_all, '')
AC_SUBST(extra_make_install, '')
AC_SUBST(extra_extract_args, '')
if test "$ac_cv_enable_nls" = yes
then
# note: the following tests should match what is used to set nls_default above
test "x$ac_cv_module_Locale__gettext" = xno &&
AC_MSG_ERROR([perl module Locale::gettext required])
test -z "$MSGFMT" && AC_MSG_ERROR([gettext required])
test "x$ac_cv_search_dlsym" = xno &&
AC_MSG_ERROR([dlsym() required])
test "x$ac_cv_search_bindtextdomain" = xno &&
AC_MSG_ERROR([bindtextdomain() required])
extra_make_all='preload man_l10n info_l10n'
extra_make_install='install_preload install_l10n'
extra_extract_args='--with-gettext'
fi
AC_PROG_INSTALL
LOCAL_PROG_OR_MISSING(makeinfo)
LOCAL_PROG_OR_MISSING(install-info)
LOCAL_PROG_OR_MISSING(msgmerge)
LOCAL_PROG_OR_MISSING(xgettext)
LOCAL_PROG_OR_MISSING(po4a-updatepo)
LOCAL_PROG_OR_MISSING(po4a-translate)
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
|