mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
Run this command across the source:
perl -pi.bak -e 's/(20[012][0-9])-20[12][012]/$1-2023/g' `git ls-files`
and remove changes to po{,-docs}/*.po{,t} (these will be regenerated
later when we run 'make dist').
85 lines
3.0 KiB
Plaintext
85 lines
3.0 KiB
Plaintext
# libguestfs
|
|
# Copyright (C) 2009-2023 Red Hat Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
dnl Check for perl (required).
|
|
AC_CHECK_PROG([PERL],[perl],[perl],[no])
|
|
test "x$PERL" = "xno" &&
|
|
AC_MSG_ERROR([perl must be installed])
|
|
|
|
dnl Check for Pod::Man, Pod::Simple (for man pages).
|
|
AC_MSG_CHECKING([for Pod::Man])
|
|
if ! $PERL -MPod::Man -e1 >&AS_MESSAGE_LOG_FD 2>&1; then
|
|
AC_MSG_ERROR([perl Pod::Man must be installed])
|
|
else
|
|
AC_MSG_RESULT([yes])
|
|
fi
|
|
AC_MSG_CHECKING([for Pod::Simple])
|
|
if ! $PERL -MPod::Simple -e1 >&AS_MESSAGE_LOG_FD 2>&1; then
|
|
AC_MSG_ERROR([perl Pod::Simple must be installed])
|
|
else
|
|
AC_MSG_RESULT([yes])
|
|
fi
|
|
|
|
dnl Define the path to the podwrapper program.
|
|
PODWRAPPER="\$(guestfs_am_v_podwrapper)$PERL $(pwd)/podwrapper.pl"
|
|
AC_SUBST([PODWRAPPER])
|
|
|
|
dnl Check for Perl for Perl bindings and Perl tools.
|
|
AC_ARG_ENABLE([perl],
|
|
AS_HELP_STRING([--disable-perl], [disable Perl language bindings]),
|
|
[],
|
|
[enable_perl=yes])
|
|
AS_IF([test "x$enable_perl" != "xno"],[
|
|
dnl Check for Perl modules that must be present to compile and
|
|
dnl test the Perl bindings.
|
|
missing_perl_modules=no
|
|
for pm in Test::More Module::Build; do
|
|
AC_MSG_CHECKING([for $pm])
|
|
if ! $PERL -M$pm -e1 >&AS_MESSAGE_LOG_FD 2>&1; then
|
|
AC_MSG_RESULT([no])
|
|
missing_perl_modules=yes
|
|
else
|
|
AC_MSG_RESULT([yes])
|
|
fi
|
|
done
|
|
if test "x$missing_perl_modules" = "xyes"; then
|
|
AC_MSG_WARN([some Perl modules required to compile or test the Perl bindings are missing])
|
|
fi
|
|
])
|
|
AM_CONDITIONAL([HAVE_PERL],
|
|
[test "x$enable_perl" != "xno" && test "x$PERL" != "xno" && test "x$missing_perl_modules" != "xyes"])
|
|
|
|
dnl Check for Perl modules needed by Perl tools like podwrapper.
|
|
AS_IF([test "x$PERL" != "xno"],[
|
|
missing_perl_modules=no
|
|
for pm in Pod::Usage Getopt::Long Locale::TextDomain ; do
|
|
AC_MSG_CHECKING([for $pm])
|
|
if ! $PERL -M$pm -e1 >&AS_MESSAGE_LOG_FD 2>&1; then
|
|
AC_MSG_RESULT([no])
|
|
missing_perl_modules=yes
|
|
else
|
|
AC_MSG_RESULT([yes])
|
|
fi
|
|
done
|
|
if test "x$missing_perl_modules" = "xyes"; then
|
|
AC_MSG_WARN([some Perl modules required to compile the Perl documentation tools are missing])
|
|
fi
|
|
])
|
|
|
|
AM_CONDITIONAL([HAVE_TOOLS],
|
|
[test "x$PERL" != "xno" && test "x$missing_perl_modules" != "xyes"])
|