aboutsummaryrefslogtreecommitdiffstats
path: root/t.regression
blob: 939d42a85680204b14412c2ceeb43f823fed91c0 (plain)
1
2
#! /bin/sh
exec ./regression
.sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#! /bin/sh

# bootstrap.sh - bootstrap the fetchmail build after a fresh subversion checkout
# (C) 2004  Matthias Andree -- GNU GPL V2

set -e
# sanity checks:
test -f fetchmail.h
test -f fetchmail.c
test -f Makefile.am

# kill junk:
rm -rf autom4te.cache

echo
echo "Please stand by while generating files,"
echo "this may take a minute or two..."
echo

# Original autogen.sh:
#rm -f po/Makefile.in.in po/ChangeLog po/ChangeLog~ || true
#gettextize -c -f || true

# do not use -s here, Eric S. Raymond (ESR) writes they don't
# work well in Debian's build system
${AUTORECONF:=autoreconf} -iv

# Taken from ESR's autgen.sh:
#
# For the Debian build, refresh list of +x scripts, to avoid
# possible breakage if upstream tarball does not include the file
# or if it is mispackaged for whatever reason
#
test -d debian && {
	rm -f debian/executable.files
	find -type f -perm +111 ! -name '.*' -fprint debian/executable.files
}

echo
echo "You can now run ./configure and make as usual. See INSTALL for details."
echo