2007-03-11 06:52:04 -04:00
|
|
|
#!/bin/sh
|
|
|
|
echo "bootstrap: checking installation..."
|
|
|
|
|
2010-06-07 20:44:27 -04:00
|
|
|
BGJOB=false
|
2010-06-13 20:16:28 -04:00
|
|
|
while getopts jh arg
|
|
|
|
do
|
|
|
|
case $arg in
|
|
|
|
j) BGJOB=true;;
|
|
|
|
h) echo "Usage: $0 <options>"
|
|
|
|
echo " Options:"
|
|
|
|
echo " -j => Run Jobs in Background"
|
|
|
|
exit;;
|
|
|
|
esac
|
|
|
|
done
|
2010-06-07 20:44:27 -04:00
|
|
|
|
2007-03-11 06:52:04 -04:00
|
|
|
BASEDIR=`pwd`;
|
|
|
|
LIBDIR=${BASEDIR}/libs;
|
2011-08-31 08:42:53 -04:00
|
|
|
SUBDIRS="ilbc curl iksemel js js/nsprpub ldns libdingaling libedit libsndfile pcre sofia-sip \
|
2010-09-21 13:35:41 -04:00
|
|
|
speex sqlite srtp openzap freetdm spandsp libg722_1 portaudio unimrcp tiff-3.8.2 broadvoice silk libcodec2";
|
2007-03-11 06:52:04 -04:00
|
|
|
|
2007-11-12 19:45:20 -05:00
|
|
|
if [ ! -f modules.conf ]; then
|
|
|
|
cp build/modules.conf.in modules.conf
|
|
|
|
fi
|
|
|
|
|
2007-03-19 15:26:25 -04:00
|
|
|
# keep automake from making us magically GPL, and to stop complaining about missing files.
|
|
|
|
cp -f docs/COPYING .
|
|
|
|
cp -f docs/AUTHORS .
|
2008-03-31 12:37:22 -04:00
|
|
|
cp -f docs/ChangeLog .
|
2007-03-19 15:26:25 -04:00
|
|
|
touch NEWS
|
|
|
|
touch README
|
|
|
|
|
2007-03-11 06:52:04 -04:00
|
|
|
# autoconf 2.59 or newer
|
2007-04-08 15:13:07 -04:00
|
|
|
ac_version=`${AUTOCONF:-autoconf} --version 2>/dev/null|sed -e 's/^[^0-9]*//;s/[a-z]* *$//;s/[- ].*//g;q'`
|
2007-03-11 06:52:04 -04:00
|
|
|
if test -z "$ac_version"; then
|
|
|
|
echo "bootstrap: autoconf not found."
|
|
|
|
echo " You need autoconf version 2.59 or newer installed"
|
2010-04-21 09:26:54 -04:00
|
|
|
echo " to build FreeSWITCH from source."
|
2007-03-11 06:52:04 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
2010-03-22 19:05:20 -04:00
|
|
|
|
|
|
|
if test `uname -s` = "OpenBSD" && test "$ac_version" = "2.62"; then
|
|
|
|
echo "Autoconf 2.62 is broken on OpenBSD, please try another version"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2007-05-14 10:21:38 -04:00
|
|
|
IFS=_; set $ac_version; IFS=' '
|
|
|
|
ac_version=$1
|
2007-03-11 06:52:04 -04:00
|
|
|
IFS=.; set $ac_version; IFS=' '
|
|
|
|
if test "$1" = "2" -a "$2" -lt "59" || test "$1" -lt "2"; then
|
|
|
|
echo "bootstrap: autoconf version $ac_version found."
|
|
|
|
echo " You need autoconf version 2.59 or newer installed"
|
2010-04-21 09:26:54 -04:00
|
|
|
echo " to build FreeSWITCH from source."
|
2007-03-11 06:52:04 -04:00
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "bootstrap: autoconf version $ac_version (ok)"
|
|
|
|
fi
|
|
|
|
|
2010-03-22 19:05:20 -04:00
|
|
|
|
2007-03-20 13:55:08 -04:00
|
|
|
# automake 1.7 or newer
|
2007-05-14 09:54:52 -04:00
|
|
|
|
2007-04-08 15:13:07 -04:00
|
|
|
am_version=`${AUTOMAKE:-automake} --version 2>/dev/null|sed -e 's/^[^0-9]*//;s/[a-z]* *$//;s/[- ].*//g;q'`
|
2007-03-12 13:54:14 -04:00
|
|
|
if test -z "$am_version"; then
|
|
|
|
echo "bootstrap: automake not found."
|
2007-03-20 13:55:08 -04:00
|
|
|
echo " You need automake version 1.7 or newer installed"
|
2010-04-21 09:26:54 -04:00
|
|
|
echo " to build FreeSWITCH from source."
|
2007-03-12 13:54:14 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
2007-05-14 09:54:52 -04:00
|
|
|
IFS=_; set $am_version; IFS=' '
|
|
|
|
am_version=$1
|
2007-03-12 13:54:14 -04:00
|
|
|
IFS=.; set $am_version; IFS=' '
|
2007-03-19 17:31:30 -04:00
|
|
|
if test "$1" = "1" -a "$2" -lt "7"; then
|
2007-03-12 13:54:14 -04:00
|
|
|
echo "bootstrap: automake version $am_version found."
|
2007-03-19 17:31:30 -04:00
|
|
|
echo " You need automake version 1.7 or newer installed"
|
2010-04-21 09:26:54 -04:00
|
|
|
echo " to build FreeSWITCH from source."
|
2007-03-12 13:54:14 -04:00
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "bootstrap: automake version $am_version (ok)"
|
|
|
|
fi
|
|
|
|
|
2008-12-16 09:31:17 -05:00
|
|
|
# aclocal 1.7 or newer
|
|
|
|
|
|
|
|
acl_version=`${ACLOCAL:-aclocal} --version 2>/dev/null|sed -e 's/^[^0-9]*//;s/[a-z]* *$//;s/[- ].*//g;q'`
|
|
|
|
if test -z "$acl_version"; then
|
|
|
|
echo "bootstrap: aclocal not found."
|
|
|
|
echo " You need aclocal version 1.7 or newer installed"
|
2010-04-21 09:26:54 -04:00
|
|
|
echo " to build FreeSWITCH from source."
|
2008-12-16 09:31:17 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
IFS=_; set $acl_version; IFS=' '
|
|
|
|
acl_version=$1
|
|
|
|
IFS=.; set $acl_version; IFS=' '
|
|
|
|
if test "$1" = "1" -a "$2" -lt "7"; then
|
|
|
|
echo "bootstrap: aclocal version $acl_version found."
|
|
|
|
echo " You need aclocal version 1.7 or newer installed"
|
2010-04-21 09:26:54 -04:00
|
|
|
echo " to build FreeSWITCH from source."
|
2008-12-16 09:31:17 -05:00
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "bootstrap: aclocal version $acl_version (ok)"
|
|
|
|
fi
|
|
|
|
|
2007-03-11 06:52:04 -04:00
|
|
|
# Sample libtool --version outputs:
|
|
|
|
# ltmain.sh (GNU libtool) 1.3.3 (1.385.2.181 1999/07/02 15:49:11)
|
|
|
|
# ltmain.sh (GNU libtool 1.1361 2004/01/02 23:10:52) 1.5a
|
|
|
|
# output is multiline from 1.5 onwards
|
|
|
|
|
|
|
|
# Require libtool 1.4 or newer
|
2009-06-17 05:47:36 -04:00
|
|
|
libtool=${LIBTOOL:-`${LIBDIR}/apr/build/PrintPath glibtool libtool libtool22 libtool15 libtool14`}
|
2007-03-11 06:52:04 -04:00
|
|
|
lt_pversion=`$libtool --version 2>/dev/null|sed -e 's/([^)]*)//g;s/^[^0-9]*//;s/[- ].*//g;q'`
|
|
|
|
if test -z "$lt_pversion"; then
|
2009-06-17 05:40:47 -04:00
|
|
|
echo "bootstrap: libtool not found."
|
2010-04-21 09:26:54 -04:00
|
|
|
echo " You need libtool version 1.5.14 or newer to build FreeSWITCH from source."
|
2009-06-17 05:40:47 -04:00
|
|
|
exit 1
|
2007-03-11 06:52:04 -04:00
|
|
|
fi
|
|
|
|
lt_version=`echo $lt_pversion|sed -e 's/\([a-z]*\)$/.\1/'`
|
|
|
|
IFS=.; set $lt_version; IFS=' '
|
|
|
|
lt_status="good"
|
2007-03-20 13:20:38 -04:00
|
|
|
|
2007-04-06 19:45:01 -04:00
|
|
|
if test -z "$1"; then a=0 ; else a=$1;fi
|
|
|
|
if test -z "$2"; then b=0 ; else b=$2;fi
|
|
|
|
if test -z "$3"; then c=0 ; else c=$3;fi
|
2009-04-06 18:29:10 -04:00
|
|
|
lt_major=$a
|
2007-03-31 13:25:10 -04:00
|
|
|
|
2009-04-06 18:29:10 -04:00
|
|
|
if test "$a" -eq "2"; then
|
|
|
|
lt_status="good"
|
|
|
|
elif test "$a" -lt "2"; then
|
2007-03-31 13:25:10 -04:00
|
|
|
if test "$b" -lt "5" -o "$b" = "5" -a "$c" -lt "14" ; then
|
2007-03-11 06:52:04 -04:00
|
|
|
lt_status="bad"
|
|
|
|
fi
|
2007-03-22 11:21:31 -04:00
|
|
|
else
|
|
|
|
lt_status="bad"
|
2007-03-11 06:52:04 -04:00
|
|
|
fi
|
|
|
|
if test $lt_status = "good"; then
|
|
|
|
echo "bootstrap: libtool version $lt_pversion (ok)"
|
|
|
|
else
|
2009-06-17 05:40:47 -04:00
|
|
|
echo "bootstrap: libtool version $lt_pversion found."
|
2010-04-21 09:26:54 -04:00
|
|
|
echo " You need libtool version 1.5.14 or newer to build FreeSWITCH from source."
|
2009-06-17 05:40:47 -04:00
|
|
|
exit 1
|
2007-03-11 06:52:04 -04:00
|
|
|
fi
|
|
|
|
|
2009-04-06 18:29:10 -04:00
|
|
|
# check libtoolize availability
|
|
|
|
if [ -n "${LIBTOOL}" ]; then
|
|
|
|
libtoolize=${LIBTOOLIZE:-`dirname "${libtool}"`/libtoolize}
|
|
|
|
else
|
2009-11-10 20:41:23 -05:00
|
|
|
libtoolize=${LIBTOOLIZE:-`${LIBDIR}/apr/build/PrintPath glibtoolize libtoolize libtoolize22 libtoolize15 libtoolize14`}
|
2009-04-06 18:29:10 -04:00
|
|
|
fi
|
|
|
|
if [ "x$libtoolize" = "x" ]; then
|
|
|
|
echo "libtoolize not found in path"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ ! -x "$libtoolize" ]; then
|
2010-10-31 18:22:53 -04:00
|
|
|
echo "$libtoolize does not exist or is not executable"
|
2009-04-06 18:29:10 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# compare libtool and libtoolize version
|
|
|
|
ltl_pversion=`$libtoolize --version 2>/dev/null|sed -e 's/([^)]*)//g;s/^[^0-9]*//;s/[- ].*//g;q'`
|
|
|
|
ltl_version=`echo $ltl_pversion|sed -e 's/\([a-z]*\)$/.\1/'`
|
|
|
|
IFS=.; set $ltl_version; IFS=' '
|
|
|
|
|
|
|
|
if [ "x${lt_version}" != "x${ltl_version}" ]; then
|
|
|
|
echo "$libtool and $libtoolize have different versions"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Info output
|
|
|
|
#
|
|
|
|
echo "Bootstrapping using:"
|
|
|
|
echo " autoconf : ${AUTOCONF:-`which autoconf`}"
|
|
|
|
echo " automake : ${AUTOMAKE:-`which automake`}"
|
|
|
|
echo " aclocal : ${ACLOCAL:-`which aclocal`}"
|
|
|
|
echo " libtool : ${libtool} (${lt_version})"
|
|
|
|
echo " libtoolize: ${libtoolize}"
|
|
|
|
echo
|
|
|
|
|
2007-03-11 06:52:04 -04:00
|
|
|
echo "Entering directory ${LIBDIR}/apr"
|
|
|
|
cd ${LIBDIR}/apr
|
|
|
|
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership.
|
|
|
|
# The ASF licenses this file to You 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.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
# bootstrap: Build the support scripts needed to compile from a
|
|
|
|
# checked-out version of the source code.
|
|
|
|
|
|
|
|
# Create the libtool helper files
|
|
|
|
#
|
|
|
|
# Note: we copy (rather than link) them to simplify distribution.
|
|
|
|
# Note: APR supplies its own config.guess and config.sub -- we do not
|
|
|
|
# rely on libtool's versions
|
|
|
|
#
|
|
|
|
echo "Copying libtool helper files ..."
|
|
|
|
|
|
|
|
# Remove any libtool files so one can switch between libtool 1.3
|
|
|
|
# and libtool 1.4 by simply rerunning the bootstrap script.
|
|
|
|
(cd build ; rm -f ltconfig ltmain.sh libtool.m4)
|
|
|
|
|
2009-04-07 16:04:22 -04:00
|
|
|
if ${libtoolize} -n --install >/dev/null 2>&1 ; then
|
2009-04-06 18:29:10 -04:00
|
|
|
$libtoolize --force --copy --install
|
|
|
|
else
|
|
|
|
$libtoolize --force --copy
|
|
|
|
fi
|
2007-03-11 06:52:04 -04:00
|
|
|
|
|
|
|
if [ -f libtool.m4 ]; then
|
|
|
|
ltfile=`pwd`/libtool.m4
|
|
|
|
else
|
2009-04-06 18:29:10 -04:00
|
|
|
if [ $lt_major -eq 2 ]; then
|
|
|
|
ltfindcmd="`sed -n \"/aclocaldir=/{s/.*=/echo /p;q;}\" < $libtoolize`"
|
|
|
|
ltfile=${LIBTOOL_M4-`eval "$ltfindcmd"`/libtool.m4}
|
|
|
|
else
|
|
|
|
ltfindcmd="`sed -n \"/=[^\\\`]/p;/libtool_m4=/{s/.*=/echo /p;q;}\" \
|
|
|
|
< $libtoolize`"
|
|
|
|
ltfile=${LIBTOOL_M4-`eval "$ltfindcmd"`}
|
|
|
|
fi
|
2007-03-11 06:52:04 -04:00
|
|
|
# Expecting the code above to be very portable, but just in case...
|
|
|
|
if [ -z "$ltfile" -o ! -f "$ltfile" ]; then
|
|
|
|
ltpath=`dirname $libtoolize`
|
|
|
|
ltfile=`cd $ltpath/../share/aclocal ; pwd`/libtool.m4
|
|
|
|
fi
|
|
|
|
fi
|
2009-04-06 18:29:10 -04:00
|
|
|
|
2007-03-11 06:52:04 -04:00
|
|
|
if [ ! -f $ltfile ]; then
|
|
|
|
echo "$ltfile not found"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "bootstrap: Using libtool.m4 at ${ltfile}."
|
|
|
|
|
|
|
|
cat $ltfile | sed -e 's/LIBTOOL=\(.*\)top_build/LIBTOOL=\1apr_build/' > build/libtool.m4
|
|
|
|
|
|
|
|
# libtool.m4 from 1.6 requires ltsugar.m4
|
|
|
|
if [ -f ltsugar.m4 ]; then
|
|
|
|
rm -f build/ltsugar.m4
|
|
|
|
mv ltsugar.m4 build/ltsugar.m4
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Clean up any leftovers
|
|
|
|
rm -f aclocal.m4 libtool.m4
|
|
|
|
|
|
|
|
# fix for FreeBSD (at least):
|
|
|
|
# libtool.m4 is in share/aclocal, while e.g. aclocal19 only looks in share/aclocal19
|
|
|
|
# get aclocal's default directory and include the libtool.m4 directory via -I if
|
|
|
|
# it's in a different location
|
|
|
|
|
|
|
|
aclocal_dir="`${ACLOCAL:-aclocal} --print-ac-dir`"
|
|
|
|
|
|
|
|
if [ -n "${aclocal_dir}" -a -n "${ltfile}" -a "`dirname ${ltfile}`" != "${aclocal_dir}" ] ; then
|
|
|
|
ACLOCAL_OPTS="-I `dirname ${ltfile}`"
|
|
|
|
fi
|
|
|
|
|
2009-04-06 18:29:10 -04:00
|
|
|
### run aclocal
|
|
|
|
echo "Re-creating aclocal.m4 ..."
|
|
|
|
${ACLOCAL:-aclocal} ${ACLOCAL_OPTS}
|
|
|
|
|
|
|
|
### do some work to toss config.cache?
|
|
|
|
echo "Creating configure ..."
|
|
|
|
${AUTOCONF:-autoconf}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generate the autoconf header
|
|
|
|
#
|
|
|
|
echo "Creating include/arch/unix/apr_private.h.in ..."
|
|
|
|
${AUTOHEADER:-autoheader}
|
|
|
|
|
2010-06-07 20:44:27 -04:00
|
|
|
# Libs automake automation function
|
|
|
|
libbootstrap()
|
|
|
|
{
|
|
|
|
i=$1
|
2010-06-08 13:21:54 -04:00
|
|
|
if [ -d ${LIBDIR}/${i} ] ; then
|
2007-03-11 06:52:04 -04:00
|
|
|
echo "Entering directory ${LIBDIR}/${i}"
|
|
|
|
cd ${LIBDIR}/${i}
|
|
|
|
rm -f aclocal.m4
|
|
|
|
CFFILE=
|
|
|
|
if [ -f ${LIBDIR}/${i}/configure.in ] ; then
|
|
|
|
CFFILE="${LIBDIR}/${i}/configure.in"
|
|
|
|
else
|
|
|
|
if [ -f ${LIBDIR}/${i}/configure.ac ] ; then
|
|
|
|
CFFILE="${LIBDIR}/${i}/configure.ac"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -z ${CFFILE} ] ; then
|
|
|
|
|
|
|
|
LTTEST=`grep "AC_PROG_LIBTOOL" ${CFFILE}`
|
|
|
|
LTTEST2=`grep "AM_PROG_LIBTOOL" ${CFFILE}`
|
2009-06-10 17:45:27 -04:00
|
|
|
AMTEST=`grep "AM_INIT_AUTOMAKE" ${CFFILE}`
|
|
|
|
AMTEST2=`grep "AC_PROG_INSTALL" ${CFFILE}`
|
2007-03-11 06:52:04 -04:00
|
|
|
AHTEST=`grep "AC_CONFIG_HEADERS" ${CFFILE}`
|
|
|
|
|
|
|
|
echo "Creating aclocal.m4"
|
|
|
|
${ACLOCAL:-aclocal} ${ACLOCAL_OPTS} ${ACLOCAL_FLAGS}
|
|
|
|
|
|
|
|
#only run if AC_PROG_LIBTOOL is in configure.in/configure.ac
|
|
|
|
if [ ! -z "${LTTEST}" -o "${LTTEST2}" ] ; then
|
|
|
|
echo "Running libtoolize..."
|
2009-04-07 18:07:57 -04:00
|
|
|
if ${libtoolize} -n --install >/dev/null 2>&1 ; then
|
2009-04-06 18:29:10 -04:00
|
|
|
$libtoolize --force --copy --install
|
|
|
|
else
|
|
|
|
$libtoolize --force --copy
|
|
|
|
fi
|
2007-03-11 06:52:04 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Creating configure"
|
|
|
|
${AUTOCONF:-autoconf}
|
|
|
|
|
|
|
|
#only run if AC_CONFIG_HEADERS is found in configure.in/configure.ac
|
|
|
|
if [ ! -z "${AHTEST}" ] ; then
|
|
|
|
echo "Running autoheader..."
|
|
|
|
${AUTOHEADER:-autoheader} ;
|
|
|
|
fi
|
|
|
|
|
2009-06-08 14:57:29 -04:00
|
|
|
#run if AM_INIT_AUTOMAKE / AC_PROG_INSTALL is in configure.in/configure.ac
|
2009-06-10 17:45:27 -04:00
|
|
|
if [ ! -z "${AMTEST}" -o "${AMTEST2}" ] ; then
|
2009-06-08 14:57:29 -04:00
|
|
|
echo "Creating Makefile.in"
|
|
|
|
${AUTOMAKE:-automake} --no-force --add-missing --copy ;
|
2007-03-11 06:52:04 -04:00
|
|
|
fi
|
|
|
|
rm -rf autom4te*.cache
|
|
|
|
fi
|
2010-06-08 13:21:54 -04:00
|
|
|
else
|
|
|
|
echo "Skipping directory ${LIBDIR}/${i}"
|
|
|
|
fi
|
2010-06-07 20:44:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Remove autoconf 2.5x's cache directory
|
|
|
|
rm -rf autom4te*.cache
|
|
|
|
|
|
|
|
echo "Entering directory ${LIBDIR}/apr-util"
|
|
|
|
cd ${LIBDIR}/apr-util
|
2010-09-01 18:59:22 -04:00
|
|
|
if [ "${BGJOB}" = "false" ] ; then
|
2010-06-07 20:44:27 -04:00
|
|
|
./buildconf
|
|
|
|
else
|
|
|
|
./buildconf &
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
for i in ${SUBDIRS}
|
|
|
|
do
|
2010-09-01 18:59:22 -04:00
|
|
|
if [ "${BGJOB}" = "false" ] ; then
|
2010-06-07 20:44:27 -04:00
|
|
|
libbootstrap ${i}
|
|
|
|
else
|
|
|
|
libbootstrap ${i} &
|
|
|
|
fi
|
2007-03-11 06:52:04 -04:00
|
|
|
done
|
|
|
|
|
2010-09-01 18:59:22 -04:00
|
|
|
if [ "${BGJOB}" = "true" ] ; then
|
2010-06-07 20:44:27 -04:00
|
|
|
wait
|
|
|
|
fi
|
2007-03-11 06:52:04 -04:00
|
|
|
cd ${BASEDIR}
|
|
|
|
|
|
|
|
rm -f aclocal.m4
|
|
|
|
${ACLOCAL:-aclocal} ${ACLOCAL_OPTS}
|
2007-03-20 01:44:59 -04:00
|
|
|
$libtoolize --copy --automake
|
2007-03-11 06:52:04 -04:00
|
|
|
${AUTOCONF:-autoconf}
|
|
|
|
${AUTOHEADER:-autoheader}
|
2008-04-21 15:07:18 -04:00
|
|
|
${AUTOMAKE:-automake} --no-force --add-missing --copy
|
2007-03-11 06:52:04 -04:00
|
|
|
rm -rf autom4te*.cache
|
|
|
|
|