openafs/src/cf/swig.m4
Andrew Deason 3505c444f6 Add AFS::ukernel libuafs perl bindings
Add the SWIG-generated AFS::ukernel perl module, which provides perl
bindings to libuafs calls.

Change-Id: I5ce480944a8c97cbca72c80e79fc40c0edb0962f
Reviewed-on: http://gerrit.openafs.org/2048
Reviewed-by: Derrick Brashear <shadow@dementia.org>
Tested-by: Derrick Brashear <shadow@dementia.org>
2011-07-08 22:20:06 -07:00

12 lines
339 B
Plaintext

dnl SWIG Autoconf glue. Build with SWIG-derived language bindings if SWIG
dnl is available; if it's not, don't build the extra language bindings.
AC_DEFUN([OPENAFS_SWIG],
[AC_CHECK_PROG([SWIG], [swig], [swig])
LIBUAFS_BUILD_PERL=
if test "x$SWIG" = "xswig" ; then
LIBUAFS_BUILD_PERL=LIBUAFS_BUILD_PERL
fi
AC_SUBST(LIBUAFS_BUILD_PERL)
])