From d082c472e5318eee8b651d709fbcca86464e4c97 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Thu, 3 Nov 2011 10:49:14 +0700 Subject: [PATCH] Check for /usr/bin/swig2.0 too. SWIG 2 is named that way on Debian-based systems... --- m4/ac_pkg_swig.m4 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/m4/ac_pkg_swig.m4 b/m4/ac_pkg_swig.m4 index 64c33cdb..fbe6c94b 100644 --- a/m4/ac_pkg_swig.m4 +++ b/m4/ac_pkg_swig.m4 @@ -1,5 +1,7 @@ dnl @synopsis AC_PROG_SWIG([major.minor.micro]) dnl +dnl NOTICE: for new code, use http://www.gnu.org/s/autoconf-archive/ax_pkg_swig.html instead. +dnl dnl This macro searches for a SWIG installation on your system. If dnl found you should call SWIG via $(SWIG). You can use the optional dnl first argument to check if the version of the available SWIG is @@ -26,10 +28,12 @@ dnl @version 2004-09-20 dnl dnl Modified by Alexey Sokolov on 2011-05-06 dnl @license GPLWithACException +dnl +dnl NOTICE: for new code, use http://www.gnu.org/s/autoconf-archive/ax_pkg_swig.html instead. AC_DEFUN([AC_PROG_SWIG],[ SWIG_ERROR="" - AC_PATH_PROG([SWIG],[swig]) + AC_PATH_PROGS([SWIG],[swig swig2.0]) if test -z "$SWIG" ; then dnl AC_MSG_WARN([cannot find 'swig' program. You should look at http://www.swig.org]) SWIG_ERROR='SWIG is not installed. You should look at http://www.swig.org'