2007-03-31 05:51:07 +08:00
|
|
|
#!/bin/sh
|
2016-11-19 07:53:11 +08:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2007-03-31 05:51:07 +08:00
|
|
|
|
|
|
|
# This is a simple script which is meant to help developers
|
|
|
|
# better deal with the GNU autotools, specifically:
|
|
|
|
#
|
|
|
|
# aclocal
|
2019-05-28 16:26:57 +08:00
|
|
|
# libtoolize
|
2007-03-31 05:51:07 +08:00
|
|
|
# autoconf
|
2019-05-28 16:26:57 +08:00
|
|
|
# autoheader
|
2012-07-23 05:36:20 +08:00
|
|
|
# automake
|
2007-03-31 05:51:07 +08:00
|
|
|
#
|
|
|
|
# The whole thing is quite complex...
|
|
|
|
#
|
|
|
|
# The idea is to run this collection of tools on a single platform,
|
|
|
|
# typically the main development platform, running a recent version of
|
|
|
|
# autoconf. In theory, if we had these tools on each platform where we
|
|
|
|
# ever expected to port the software, we would never need to checkin
|
|
|
|
# more than a few autotools configuration files. However, the whole
|
|
|
|
# idea is to generate a configure script and associated files in a way
|
|
|
|
# that is portable across platforms, so we *have* to check in a whole
|
|
|
|
# bunch of files generated by all these tools.
|
|
|
|
|
|
|
|
# The real source files are:
|
|
|
|
#
|
|
|
|
# acinclude.m4 (used by aclocal)
|
|
|
|
# configure.ac (main autoconf file)
|
|
|
|
# Makefile.am, */Makefile.am (automake config files)
|
|
|
|
#
|
|
|
|
# All the rest is auto-generated.
|
|
|
|
|
2015-07-13 23:20:36 +08:00
|
|
|
if [ "$1" = "clean" ]; then
|
2014-01-13 05:38:11 +08:00
|
|
|
echo "Cleaning..."
|
|
|
|
rm configure aclocal.m4
|
2019-11-29 04:31:23 +08:00
|
|
|
rm m4/l*
|
2014-01-13 05:38:11 +08:00
|
|
|
rm config/*
|
|
|
|
rmdir config
|
|
|
|
find . -iname "Makefile.in" -type f -exec rm '{}' +
|
|
|
|
fi
|
|
|
|
|
2023-10-25 23:45:42 +08:00
|
|
|
bail_out()
|
|
|
|
{
|
|
|
|
echo
|
|
|
|
echo " Something went wrong, bailing out!"
|
|
|
|
echo
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2017-09-17 00:47:04 +08:00
|
|
|
# Prevent any errors that might result from failing to properly invoke
|
|
|
|
# `libtoolize` or `glibtoolize,` whichever is present on your system,
|
|
|
|
# from occurring by testing for its existence and capturing the absolute path to
|
|
|
|
# its location for caching purposes prior to using it later on in 'Step 2:'
|
2017-03-08 05:23:47 +08:00
|
|
|
if command -v libtoolize >/dev/null 2>&1; then
|
|
|
|
LIBTOOLIZE="$(command -v libtoolize)"
|
|
|
|
elif command -v glibtoolize >/dev/null 2>&1; then
|
|
|
|
LIBTOOLIZE="$(command -v glibtoolize)"
|
|
|
|
else
|
2017-03-10 04:32:17 +08:00
|
|
|
echo "Unable to find a valid copy of libtoolize or glibtoolize in your PATH!"
|
2017-03-08 05:23:47 +08:00
|
|
|
bail_out
|
|
|
|
fi
|
|
|
|
|
2007-03-31 05:51:07 +08:00
|
|
|
# --- Step 1: Generate aclocal.m4 from:
|
2017-09-17 00:47:04 +08:00
|
|
|
# . acinclude.m4
|
2007-03-31 05:51:07 +08:00
|
|
|
# . config/*.m4 (these files are referenced in acinclude.m4)
|
|
|
|
|
2011-07-28 04:13:44 +08:00
|
|
|
mkdir -p config
|
|
|
|
|
2007-03-31 05:51:07 +08:00
|
|
|
echo "Running aclocal"
|
2011-07-28 04:13:44 +08:00
|
|
|
aclocal -I config || bail_out
|
2007-03-31 05:51:07 +08:00
|
|
|
|
2012-07-23 05:36:20 +08:00
|
|
|
# --- Step 2:
|
2007-03-31 05:51:07 +08:00
|
|
|
|
2017-03-10 04:35:17 +08:00
|
|
|
echo "Running $LIBTOOLIZE"
|
2017-03-08 05:23:47 +08:00
|
|
|
$LIBTOOLIZE -f -c || bail_out
|
|
|
|
$LIBTOOLIZE --automake || bail_out
|
2007-03-31 05:51:07 +08:00
|
|
|
|
2021-11-29 02:17:23 +08:00
|
|
|
# Run aclocal a 2nd time because glibtoolize created additional m4 files.
|
|
|
|
echo "Running aclocal"
|
|
|
|
aclocal -I config || bail_out
|
|
|
|
|
2019-05-28 16:26:57 +08:00
|
|
|
# --- Step 3: Generate configure and include/miaconfig.h from:
|
|
|
|
# . configure.ac
|
|
|
|
#
|
|
|
|
|
|
|
|
echo "Running autoconf"
|
|
|
|
autoconf || bail_out
|
|
|
|
|
|
|
|
if grep -q PKG_CHECK_MODULES configure; then
|
|
|
|
# The generated configure is invalid because pkg-config is unavailable.
|
|
|
|
rm configure
|
|
|
|
echo "Missing pkg-config. Check the build requirements."
|
|
|
|
bail_out
|
|
|
|
fi
|
|
|
|
|
|
|
|
# --- Step 4: Generate config.h.in from:
|
2011-07-28 04:13:44 +08:00
|
|
|
# . configure.ac (look for AM_CONFIG_HEADER tag or AC_CONFIG_HEADER tag)
|
2007-03-31 05:51:07 +08:00
|
|
|
|
2011-07-28 04:13:44 +08:00
|
|
|
echo "Running autoheader"
|
|
|
|
autoheader -f || bail_out
|
2007-03-31 05:51:07 +08:00
|
|
|
|
2019-05-28 16:26:57 +08:00
|
|
|
# --- Step 5: Generate Makefile.in, src/Makefile.in, and a whole bunch of
|
2007-03-31 05:51:07 +08:00
|
|
|
# files in config (config.guess, config.sub, depcomp,
|
|
|
|
# install-sh, missing, mkinstalldirs) plus COPYING and
|
|
|
|
# INSTALL from:
|
|
|
|
# . Makefile.am
|
|
|
|
# . src/Makefile.am
|
|
|
|
#
|
|
|
|
# Using --add-missing --copy makes sure that, if these files are missing,
|
|
|
|
# they are copied from the system so they can be used in a distribution.
|
|
|
|
|
|
|
|
echo "Running automake --add-missing --copy"
|
2017-05-16 02:08:54 +08:00
|
|
|
automake --add-missing --copy --warnings=all || bail_out
|
2011-07-28 04:13:44 +08:00
|
|
|
|
|
|
|
echo ""
|
2007-03-31 05:51:07 +08:00
|
|
|
echo "All done."
|
|
|
|
echo "To build the software now, do something like:"
|
|
|
|
echo ""
|
2012-07-23 05:36:20 +08:00
|
|
|
echo "$ ./configure [--enable-debug] [...other options]"
|