aboutsummaryrefslogtreecommitdiffstats
path: root/bindings/swig/swig.m4
blob: 9ff89d7a2c5c4a422af01df797ec4052b6d06d68 (plain) (blame)
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
#----------------------------------------------------------------
# Look for SWIG
#----------------------------------------------------------------

AC_DEFUN(SW_PROG_SWIG,
[

AC_ARG_WITH(swigbin,[  --with-swigbin=path        Set location of swig executable],[ SWIGBIN="$withval"], [SWIGBIN=])
AC_ARG_ENABLE(swig,[  --enable-swig=path       Run swig to generate new source default=no],, enable_swig=no)

if test -z "$SWIGBIN"; then
AC_PATH_PROG(SWIG, swig)
else
AC_PATH_PROG(SWIG, swig, "not found", $SWIGBIN)
fi

runswig=true
if test x"$SWIG"="xnot found"; then
	runswig=false
fi
if test x"$enable_swig"="xno"; then
	runswig=false
fi

AM_CONDITIONAL(RUNSWIG, test x$runswig = xtrue)

#ac_cv_swigversion=``

])