File: virt-rpcgen.m4

package info (click to toggle)
libvirt-sandbox 0.5.1%2Bgit20160404-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,104 kB
  • ctags: 1,964
  • sloc: ansic: 12,696; python: 2,110; makefile: 447; sh: 302; xml: 151; perl: 110
file content (11 lines) | stat: -rw-r--r-- 367 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
AC_DEFUN([LIBVIRT_SANDBOX_RPCGEN], [
    AC_PATH_PROG([PERL], [perl], [no])
    AC_PATH_PROG([RPCGEN], [rpcgen], [no])

    if test "$ac_cv_path_PERL" = "no" ; then
      AC_MSG_ERROR([perl is required to build the libvirt-sandbox])
    fi
    if test "$ac_cv_path_RPCGEN" = "no" ; then
      AC_MSG_ERROR([rpcgen is required to build the libvirt-sandbox])
    fi
])