mirror of
https://git.openafs.org/openafs.git
synced 2025-01-31 21:47:45 +00:00
3505c444f6
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>
12 lines
339 B
Plaintext
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)
|
|
])
|