r622: Fixes misplacement of the mask when resizing track and misplacement of the
[cinelerra_cv/mob.git] / libsndfile / reconf
blob14efd0b12b71efb73d8dca2e50ab1642d734d25b
1 #!/bin/sh
3 rm -f config.cache
5 if [ ! -e "src/config.h.in" ]; then
6 autoheader
7 fi
9 if [ -d $HOME/Proj/M4 ]; then
11 rm -f acinclude.m4.new
12 touch acinclude.m4.new
13 cat $HOME/Proj/M4/extra_largefile.m4 >>acinclude.m4.new
14 cat $HOME/Proj/M4/endian.m4 >>acinclude.m4.new
15 cat $HOME/Proj/M4/lrint.m4 >>acinclude.m4.new
16 cat $HOME/Proj/M4/lrintf.m4 >>acinclude.m4.new
18 if [ -f acinclude.m4 ]; then
19 cmp_data=`cmp acinclude.m4 acinclude.m4.new`
20 if [ x"$cmp_data" = "x" ]; then
21 echo "File acinclude.m4 unchanged."
22 else
23 echo "Updating acinclude.m4"
24 mv -f acinclude.m4.new acinclude.m4
26 else
27 mv acinclude.m4.new acinclude.m4
30 echo "Looking in $HOME/Proj/M4 directory."
31 aclocal -I $HOME/Proj/M4
32 else
33 aclocal
36 sed s/AM_PROG_INSTALL/AC_PROG_INSTALL/ aclocal.m4 >aclocal.m4.bak
37 mv -f aclocal.m4.bak aclocal.m4
39 automake --copy --add-missing
40 autoconf
41 # autoreconf -i --force --foreign
42 exit