mirror of https://github.com/neutrinolabs/xrdp
38 lines
487 B
Bash
Executable File
38 lines
487 B
Bash
Executable File
#!/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
|
|
|
|
which libtool
|
|
if ! test $? -eq 0
|
|
then
|
|
echo "error, install libtool"
|
|
exit 1
|
|
fi
|
|
|
|
which pkg-config
|
|
if ! test $? -eq 0
|
|
then
|
|
echo "error, install pkg-config"
|
|
exit 1
|
|
fi
|
|
|
|
touch configure.ac
|
|
touch NEWS
|
|
touch AUTHORS
|
|
touch README
|
|
touch ChangeLog
|
|
ln -s ../config.c $PWD/sesman/tools/config.c
|
|
autoreconf -fvi
|