X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=acinclude.m4;h=7e262c561d4b579def9052e66016eb5e1e4c1599;hb=312c1f22e9740afa6b6d2eff88fb49826917f35f;hp=e7dd390d6917babdf7743cda447829d8af8fa973;hpb=08588e75a1df413eff334c30d62a93d04cb214cf;p=pspp diff --git a/acinclude.m4 b/acinclude.m4 index e7dd390d69..7e262c561d 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -32,7 +32,7 @@ AC_DEFUN([PSPP_PERL], AC_PATH_PROG([PERL], perl, no) AC_SUBST([PERL])dnl if test "$PERL" != no && $PERL -e 'require 5.005_03;'; then :; else - PSPP_REQUIRED_PREREQ([Perl 5.005_03 (or later)]) + PSPP_OPTIONAL_PREREQ([Perl 5.005_03 (or later)]) fi # The PSPP autobuilder appends a build number to the PSPP version number, @@ -43,17 +43,58 @@ AC_DEFUN([PSPP_PERL], AC_SUBST([VERSION_FOR_PERL]) ]) -dnl Check that Python 2 or 3 is available. -AC_DEFUN([PSPP_PYTHON], - [AC_ARG_VAR([PYTHON], [Python 2 or 3 interpreter]) - AC_CHECK_PROGS([PYTHON], [python python2 python3], [none])]) +dnl CHECK_PERL_MODULE([MODULE], [RUN-IF-AVAILABLE], [RUN-IF-NOT-AVAILABLE]) +AC_DEFUN([CHECK_PERL_MODULE], + [echo "configure:__oline__: running $PERL -M$1 -e '' >&AS_MESSAGE_LOG_FD" >&AS_MESSAGE_LOG_FD + $PERL -M$1 -e '' >&AS_MESSAGE_LOG_FD 2>&1 + retval=$? + echo "configure:__oline__: \$? = $retval" >&AS_MESSAGE_LOG_FD + AS_IF([test $retval = 0], [$2], [$3])]) + +AC_DEFUN([PSPP_PERL_MODULE], + [AC_ARG_WITH( + [perl-module], + [AS_HELP_STRING([--without-perl-module], [do not build the Perl module])], + [AS_CASE([$with_perl_module], + [yes|no], [], + [AC_MSG_FAILURE([--with-perl-module argument must be 'yes' or 'no'])]) + WITH_PERL_MODULE=$with_perl_module], + [if test "$PERL" != no && test x"$cross_compiling" != x"yes"; then + WITH_PERL_MODULE=yes + else + WITH_PERL_MODULE=no + fi]) + AC_SUBST([WITH_PERL_MODULE]) + AM_CONDITIONAL(WITH_PERL_MODULE, test $WITH_PERL_MODULE = yes) + + if test $WITH_PERL_MODULE = yes; then + if test "$PERL" = no; then + PSPP_REQUIRED_PREREQ([Perl 5.005_03 or later (or use --without-perl-module)]) + fi + CHECK_PERL_MODULE([Config::Perl::V], [], + [PSPP_REQUIRED_PREREQ([Config::Perl::V Perl module (or use --without-perl-module)])]) + CHECK_PERL_MODULE([Text::Diff], [], + [PSPP_OPTIONAL_PREREQ([Text::Diff Perl module for running Perl tests])]) + fi]) + +dnl Check that Python 3 is available. +AC_DEFUN([PSPP_PYTHON3], + [AC_ARG_VAR([PYTHON3], [Python 3 interpreter]) + AC_CHECK_PROGS([PYTHON3], [python3 python], [none]) + if test "$PYTHON3" != no && $PYTHON3 -c ' +import sys +sys.exit(0 if sys.version_info >= (3,4) else 1) +'; then :; else + PSPP_REQUIRED_PREREQ([Python 3.4 (or later)]) + fi + ]) dnl PSPP_CHECK_CC_OPTION([OPTION], [ACTION-IF-ACCEPTED], [ACTION-IF-REJECTED]) dnl Check whether the given C compiler OPTION is accepted. dnl If so, execute ACTION-IF-ACCEPTED, otherwise ACTION-IF-REJECTED. AC_DEFUN([PSPP_CHECK_CC_OPTION], [ - m4_define([pspp_cv_name], [pspp_cv_[]m4_translit([$1], [-], [_])])dnl + m4_define([pspp_cv_name], [pspp_cv_[]m4_translit([$1], [-=], [__])])dnl AC_CACHE_CHECK([whether $CC accepts $1], [pspp_cv_name], [pspp_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $1" @@ -306,14 +347,27 @@ dnl PSPP_ENABLE_WERROR AC_DEFUN([PSPP_ENABLE_WERROR], [AC_ARG_ENABLE( [Werror], - [AC_HELP_STRING([--enable-Werror], [Add -Werror to CFLAGS])], + [AS_HELP_STRING([--enable-Werror], [Add -Werror to CFLAGS])], [], [enable_Werror=no]) AC_CONFIG_COMMANDS_PRE( [if test "X$enable_Werror" = Xyes; then CFLAGS="$CFLAGS -Werror -Wno-error=deprecated-declarations" # gnulib needs this, for now: CFLAGS="$CFLAGS -Wno-error=attributes" - fi])]) + fi]) + + dnl Gnulib triggers the following error for me with GCC 12.x: + dnl + dnl In function 'convert_to_decimal', + dnl inlined from 'scale10_round_decimal_decoded' at ../gl/vasnprintf.c:1368:12: + dnl ../gl/vasnprintf.c:939:26: error: argument 1 value '18446744073709551615' exceeds maximum object size 9223372036854775807 [-Werror=alloc-size-larger-than=] + dnl 939 | char *c_ptr = (char *) malloc (xsum (xsum (extra_zeroes, c_len), 1)); + dnl | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + dnl + dnl I prefer to just disable the error because I think the warning is wrong. + if test "X$enable_Werror" = Xyes; then + PSPP_ENABLE_OPTION([-Wno-error=alloc-size-larger-than=]) + fi]) # The following comes from Open vSwitch: # ----------------------------------------------------------------------