Build libminiupnpc from source now, and update version.

This commit is contained in:
Adam Ierymenko 2015-11-16 18:28:55 -08:00
commit cf6164e847
85 changed files with 11889 additions and 5 deletions

View file

@ -0,0 +1,14 @@
#!/bin/sh
for f in testreplyparse/*.xml ; do
bf="`dirname $f`/`basename $f .xml`"
if ./testupnpreplyparse $f $bf.namevalue ; then
echo "$f : passed"
else
echo "$f : FAILED"
exit 1
fi
done
exit 0