libupnp/bootstrap
Marcelo Roberto Jimenez c1e5e4d6a4 SF Tracker [ 1703533 ] Patch to make it compile under FreeBSD
Submitted By: Timothy Redaelli - drittz
I made some patches to make it compile under FreeBSD using
gethostbyaddr_r when supported.


git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@165 119443c7-1b9e-41f8-b6fc-b9c35fce742c
2007-04-28 17:45:34 +00:00

16 lines
233 B
Bash
Executable File

#!/bin/sh
rm -fr autom4te.cache
# Equivalent to
# aclocal
# autoheader
# automake --add-missing --copy
# autoconf
autoreconf --force --install -Wall -Wno-obsolete $* || exit 1
echo "Now run ./configure and then make."
exit 0