diff options
Diffstat (limited to 'faad2/src/bootstrap')
-rw-r--r-- | faad2/src/bootstrap | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/faad2/src/bootstrap b/faad2/src/bootstrap new file mode 100644 index 0000000..79748cd --- /dev/null +++ b/faad2/src/bootstrap @@ -0,0 +1,17 @@ +#! /bin/sh
+
+case $OSTYPE in
+ darwin*)
+ LIBTOOLIZE=glibtoolize
+ ;;
+ *)
+ LIBTOOLIZE=libtoolize
+ ;;
+esac
+
+aclocal -I . && \
+autoheader && \
+$LIBTOOLIZE --automake --copy && \
+automake --add-missing --copy && \
+autoconf && \
+echo "Ready to run ./configure"
|