提交 b792834a 编写于 作者: P Pavel Fedin 提交者: Martin Kletzander

Add support for portable-rpcgen from portablexdr library

This allows to build libvirt under MinGW
Signed-off-by: NPavel Fedin <p.fedin@samsung.com>
上级 4d2cf054
...@@ -401,7 +401,7 @@ AM_CONDITIONAL([HAVE_LIBTASN1], [test "x$ac_cv_header_libtasn1_h" = "xyes"]) ...@@ -401,7 +401,7 @@ AM_CONDITIONAL([HAVE_LIBTASN1], [test "x$ac_cv_header_libtasn1_h" = "xyes"])
AC_CHECK_LIB([intl],[gettext],[]) AC_CHECK_LIB([intl],[gettext],[])
dnl Do we have rpcgen? dnl Do we have rpcgen?
AC_PATH_PROG([RPCGEN], [rpcgen], [no]) AC_PATH_PROGS([RPCGEN], [rpcgen portable-rpcgen], [no])
AM_CONDITIONAL([HAVE_RPCGEN], [test "x$ac_cv_path_RPCGEN" != "xno"]) AM_CONDITIONAL([HAVE_RPCGEN], [test "x$ac_cv_path_RPCGEN" != "xno"])
dnl Is this GLIBC's buggy rpcgen? dnl Is this GLIBC's buggy rpcgen?
AM_CONDITIONAL([HAVE_GLIBC_RPCGEN], AM_CONDITIONAL([HAVE_GLIBC_RPCGEN],
......
...@@ -38,7 +38,10 @@ my $target = shift; ...@@ -38,7 +38,10 @@ my $target = shift;
unlink $target; unlink $target;
open RPCGEN, "-|", $rpcgen, $mode, $xdrdef if ($rpcgen =~ /portable-rpcgen/) {
$rpcgen = "$rpcgen -o -";
}
open RPCGEN, "-|", "$rpcgen $mode $xdrdef"
or die "cannot run $rpcgen $mode $xdrdef: $!"; or die "cannot run $rpcgen $mode $xdrdef: $!";
open TARGET, ">$target" open TARGET, ">$target"
or die "cannot create $target: $!"; or die "cannot create $target: $!";
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册