freeswitch/libs/libzrtp/bootstrap.sh
Travis Cross fc40475037 Build from the root directory
Move all the GNU build files to the root directory so that we look
like a normal *NIX-centric project.

Thanks to Viktor Krikrun for an initial patch here.  For this commit,
I ended up redoing the move from scratch to separate out this move
from other changes.
2013-02-11 16:41:43 +00:00

15 lines
201 B
Bash
Executable File

#!/bin/sh
reconf () {
aclocal
mkdir -p config
libtoolize --copy --automake
autoconf
autoheader
automake --no-force --add-missing --copy
}
(cd third_party/bnlib && ./bootstrap.sh)
reconf