xrdp/bootstrap

37 lines
462 B
Plaintext
Raw Normal View History

2008-08-03 07:30:03 +00:00
#!/bin/sh
which autoconf
if ! test $? -eq 0
then
echo "error, install autoconf"
exit 1
fi
which automake
if ! test $? -eq 0
then
echo "error, install automake"
exit 1
fi
2015-08-03 23:41:05 -04:00
which libtool || which libtoolize
2008-08-03 07:30:03 +00:00
if ! test $? -eq 0
then
echo "error, install libtool"
exit 1
fi
2012-05-04 23:29:00 -07:00
which pkg-config
if ! test $? -eq 0
then
echo "error, install pkg-config"
exit 1
fi
2008-08-15 04:08:51 +00:00
touch configure.ac
2008-11-02 21:27:42 +00:00
touch NEWS
touch AUTHORS
touch README
touch ChangeLog
2008-08-03 07:30:03 +00:00
autoreconf -fvi