summaryrefslogtreecommitdiffhomepage
path: root/contrib/libpng/autogen.sh
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2024-03-03 02:21:46 +0100
committerAki <please@ignore.pl>2024-03-03 02:26:05 +0100
commitdad0e8562c8e5994fcf2ebedac5a7ec920297d1f (patch)
tree1bf6bc6aa5531594588a5ec248e976110365c301 /contrib/libpng/autogen.sh
parentca18c5b1b5004ffa88b6b3b85cd038d1217c09c6 (diff)
downloadstarshatter-dad0e8562c8e5994fcf2ebedac5a7ec920297d1f.zip
starshatter-dad0e8562c8e5994fcf2ebedac5a7ec920297d1f.tar.gz
starshatter-dad0e8562c8e5994fcf2ebedac5a7ec920297d1f.tar.bz2
libpng sources removed from this tree
Diffstat (limited to 'contrib/libpng/autogen.sh')
-rwxr-xr-xcontrib/libpng/autogen.sh34
1 files changed, 0 insertions, 34 deletions
diff --git a/contrib/libpng/autogen.sh b/contrib/libpng/autogen.sh
deleted file mode 100755
index 5be104e..0000000
--- a/contrib/libpng/autogen.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#! /bin/sh
-# a quick hack script to generate necessary files from
-# auto* tools.
-#
-# WARNING: if you run this you will change the versions
-# of the tools which are used and, maybe, required!
-
-# You can define your own replacements in your environment.
-# $AUTOCONF, $AUTOMAKE, $AUTOHEADER, $AUTOPOINT, $ACLOCAL and $LIBTOOLIZE
-
-touch Makefile.am configure.ac
-{
- LT=${LIBTOOLIZE-libtoolize}
- echo "running $LT" >&2
- $LT --force --copy --automake
-} && {
- AL=${ACLOCAL-aclocal}
- echo "running $AL" >&2
- $AL
-} && {
- AH=${AUTOHEADER-autoheader}
- echo "running $AH [ignore the warnings]" >&2
- $AH
-} && {
- AM=${AUTOMAKE-automake}
- echo "running $AM" >&2
- $AM --force-missing --foreign -a -c
-} && {
- AC=${AUTOCONF-autoconf}
- echo "running $AC" >&2
- $AC
-} &&
- echo "autogen complete" >&2 ||
- echo "ERROR: autogen.sh failed, autogen is incomplete" >&2