aboutsummaryrefslogtreecommitdiffstats
path: root/website
Commit message (Expand)AuthorAgeFilesLines
* WRT 6.3.8 security issues, replace 'for the nonce' by 'for 6.3.8'Matthias Andree2008-12-171-3/+3
* after 6.3.9 release, change will be -> has been fixed for CVE-2008-2711 and Matthias Andree2008-12-171-2/+2
* Fix HTML validator warnings, add HTML and CSS logos.Matthias Andree2008-11-271-15/+18
* Provide Security Alerts as a list, add intro, update solution.Matthias Andree2008-11-271-11/+18
* Since BerliOS's SSL setup is b0rked, use http:// rather than https://Matthias Andree2008-11-161-1/+1
* Update BerliOS release ID.Matthias Andree2008-11-161-1/+1
* Move 6.3.9 tag.Matthias Andree2008-11-161-33/+17
* Update timestamp.Matthias Andree2008-06-241-1/+1
* Mark CVE-2008-2711/fetchmail-SA-2008-01 revised 2008-06-24.Matthias Andree2008-06-241-4/+8
* Track website in separate SVN directory (mostly symlinks for now).Matthias Andree2008-06-1722-0/+505
or: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .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