wmi-1.3.16 from opsview.com

This commit is contained in:
Are Casilla
2019-02-16 00:16:52 +01:00
parent 163fdd3d1b
commit 17b3af2911
2146 changed files with 678824 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
#!/bin/sh
FULLBUILD=$1
shift 1
PIDL_EXTRA_ARGS="$*"
[ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1
PIDL="$PERL $srcdir/pidl/pidl --outputdir librpc/gen_ndr --header --ndr-parser --server --client --dcom-proxy --com-header --swig -- $PIDL_EXTRA_ARGS"
if [ x$FULLBUILD = xFULL ]; then
echo Rebuilding all idl files in librpc/idl
$PIDL $srcdir/librpc/idl/*.idl || exit 1
exit 0
fi
list=""
for f in $srcdir/librpc/idl/*.idl ; do
basename=`basename $f .idl`
ndr="librpc/gen_ndr/ndr_$basename.c"
# blergh - most shells don't have the -nt function
if [ -f $ndr ]; then
if [ x`find $srcdir/librpc/idl/ "(" -name $basename.idl -o -name ${basename}_*.inc ")" -a -newer $ndr` != x ]; then
list="$list $f"
fi
else
list="$list $f"
fi
done
if [ "x$list" != x ]; then
$PIDL $list || exit 1
fi
exit 0