X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=acinclude.m4;h=f0700099628930dbc3cfaff713913b9614edf286;hb=653ecf0645a5b15f7f184c27de633a7ce1a555f7;hp=5e393144f4f08cc18dc2d966772b4fae6b2083a8;hpb=f045a2f12a05da6429cd94e6ac8b7f45e7c95e92;p=pspp diff --git a/acinclude.m4 b/acinclude.m4 index 5e393144f4..f070009962 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -43,10 +43,17 @@ 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 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. @@ -66,6 +73,30 @@ AC_DEFUN([PSPP_CHECK_CC_OPTION], fi ]) +# PSPP_ENABLE_OPTION comes from Open vSwitch: +# ---------------------------------------------------------------------- +# Copyright (c) 2007-2017 Nicira, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at: +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +dnl PSPP_ENABLE_OPTION([OPTION]) +dnl Check whether the given C compiler OPTION is accepted. +dnl If so, add it to WARNING_FLAGS. +dnl Example: PSPP_ENABLE_OPTION([-Wdeclaration-after-statement]) +AC_DEFUN([PSPP_ENABLE_OPTION], + [PSPP_CHECK_CC_OPTION([$1], [WARNING_FLAGS="$WARNING_FLAGS $1"]) + AC_SUBST([WARNING_FLAGS])]) +# ---------------------------------------------------------------------- + dnl Check for readline and history libraries. dnl Modified for PSPP, based on readline.m4 serial 3 from @@ -139,40 +170,6 @@ AC_DEFUN([PSPP_READLINE], AC_SUBST(LTLIBREADLINE) ]) -dnl Check for build tools. Adapted from bfd library. - -AC_DEFUN([PSPP_CC_FOR_BUILD], -[# Put a plausible default for CC_FOR_BUILD in Makefile. -if test -z "$CC_FOR_BUILD"; then - if test "x$cross_compiling" = "xno"; then - CC_FOR_BUILD='$(CC)' - else - CC_FOR_BUILD=cc - fi -fi -AC_SUBST(CC_FOR_BUILD) -# Also set EXEEXT_FOR_BUILD. -if test "x$cross_compiling" = "xno"; then - EXEEXT_FOR_BUILD='$(EXEEXT)' -else - AC_CACHE_CHECK([for build system executable suffix], pspp_cv_build_exeext, - [rm -f conftest* - echo 'int main () { return 0; }' > conftest.c - pspp_cv_build_exeext= - ${CC_FOR_BUILD} -o conftest conftest.c 1>&5 2>&5 - for file in conftest.*; do - case $file in # ( - *.c | *.o | *.obj | *.ilk | *.pdb) ;; # ( - *) pspp_cv_build_exeext=`echo $file | sed -e s/conftest//` ;; - esac - done - rm -f conftest* - test x"${pspp_cv_build_exeext}" = x && pspp_cv_build_exeext=no]) - EXEEXT_FOR_BUILD="" - test x"${pspp_cv_build_exeext}" != xno && EXEEXT_FOR_BUILD=${pspp_cv_build_exeext} -fi -AC_SUBST(EXEEXT_FOR_BUILD)]) - dnl Check for LC_PAPER, _NL_PAPER_WIDTH, _NL_PAPER_HEIGHT. AC_DEFUN([PSPP_LC_PAPER], [AC_CACHE_CHECK(for LC_PAPER, pspp_cv_lc_paper, [