Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/librfxcodec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap32
1 files changed, 32 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
new file mode 100755
index 0000000..a5ef9dd
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,32 @@
+#!/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 || which libtoolize
+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
+autoreconf -fvi