summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/libmng/unmaintained/autogen.sh
diff options
context:
space:
mode:
authorEirik Aavitsland <eirik.aavitsland@qt.io>2018-10-10 15:23:51 +0200
committerEirik Aavitsland <eirik.aavitsland@qt.io>2018-10-12 13:17:11 +0000
commit3e081dbc87eb3872197f56ddea8f55edf9c8aa3b (patch)
tree9c392097e16e7a3094c47ed6c74af85d697f8f51 /src/3rdparty/libmng/unmaintained/autogen.sh
parentceebd297c3e4365940469347208e5f22b764d6a3 (diff)
Remove bundled, unmaintained libmng source codev5.12.0-beta2
[ChangeLog][Third-Party Code] The unmaintained bundled libmng has been removed. Building the mng handler will require libmng to be present as a system or external library. Change-Id: I4a4805fa3f3088b5d581b92bfeabba7978bac5f7 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/3rdparty/libmng/unmaintained/autogen.sh')
-rwxr-xr-xsrc/3rdparty/libmng/unmaintained/autogen.sh50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/3rdparty/libmng/unmaintained/autogen.sh b/src/3rdparty/libmng/unmaintained/autogen.sh
deleted file mode 100755
index 308ae37..0000000
--- a/src/3rdparty/libmng/unmaintained/autogen.sh
+++ /dev/null
@@ -1,50 +0,0 @@
-# autogen.sh
-#
-# invoke the auto* tools to create the configureation system
-
-# move out configure.in
-if ! test -f configure.in; then
- echo "copying configure.in"
- ln -s makefiles/configure.in .
-fi
-
-# move out the macros and run aclocal
-if test ! -f acinclude.m4 -a -r makefiles/acinclude.m4; then
- echo "copying configure macros"
- ln -s makefiles/acinclude.m4 .
-fi
-
-# copy up our Makefile template
-if ! test -f Makefile.am; then
- echo "copying automake template"
- ln -s makefiles/Makefile.am .
-fi
-
-echo "running aclocal"
-aclocal
-
-# libtool is named glibtool on MacOS X
-for LIBTOOLIZE in libtoolize glibtoolize nope; do
- ($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 && break
-done
-if test x$LIBTOOLIZE = xnope; then
- echo "error: Could not find libtoolize in the path!"
- echo " You'll need to install a copy of libtool before continuing"
- echo " with the generation of the build system."
- echo
- exit 1
-fi
-
-echo "running $LIBTOOLIZE"
-$LIBTOOLIZE --automake
-
-echo "running automake"
-automake --foreign --add-missing
-
-echo "building configure script"
-autoconf
-
-# and finally invoke our new configure
-./configure $*
-
-# end