9 test -d autom4te.cache && rm -r autom4te.cache
10 test -d config || mkdir config
15 if [ "`uname -s`" = FreeBSD ]; then
16 # FreeBSD intalls the various auto* tools with version numbers
17 echo "Using special configuration for FreeBSD ..."
19 aclocal="aclocal19 -I /usr/local/share/aclocal"
21 libtoolize=libtoolize15
22 autoheader=autoheader259
25 if [ "`uname -s`" = Darwin ]; then
26 echo "Using special configuration for Darwin/MacOS ..."
27 libtoolize=glibtoolize
30 if $automake --version|head -1 |grep '1\.[4-7]'; then
31 echo "automake 1.4-1.7 is active. You should use automake 1.8 or later"
32 if [ -f /etc/debian_version ]; then
33 echo " sudo apt-get install automake1.9"
34 echo " sudo update-alternatives --config automake"
41 if grep AC_CONFIG_HEADERS configure.ac >/dev/null; then
44 if grep AM_PROG_LIBTOOL configure.ac >/dev/null; then
50 $libtoolize --automake --force
51 $automake --add-missing
54 if [ -f config.cache ]; then
58 enable_configure=false
64 sh_cflags="-O0 -g -Wall -Wdeclaration-after-statement -Wstrict-prototypes"
65 sh_cxxflags="-g -Wall"
79 if $enable_configure; then
80 if [ -n "$sh_cflags" ]; then
82 CFLAGS="$sh_cflags" CXXFLAGS="$sh_cxxflags" ./configure --disable-shared --enable-static $*
84 CFLAGS="$sh_cflags" CXXFLAGS="$sh_cxxflags" ./configure $*
93 Build the Makefiles with the configure command.
94 ./configure [--someoption=somevalue ...]
96 For help on options or configuring run
99 Build and install binaries with the usual
104 Build distribution tarball with
107 Verify distribution tarball with
111 if [ -f /etc/debian_version ]; then
113 Or just build the Debian packages without configuring
114 dpkg-buildpackage -rfakeroot
116 When building from Git, you need these Debian packages:
117 autoconf automake libtool gcc tcl8.4
118 xsltproc docbook docbook-xml docbook-xsl
119 libxslt1-dev libgnutls-dev libreadline5-dev libicu-dev
121 And if you want to make a Debian package: dpkg-dev fakeroot debhelper
122 (Then run "dpkg-buildpackage -rfakeroot" in this directory.)
126 if [ "`uname -s`" = FreeBSD ]; then
128 When building from a Git, you need these FreeBSD Ports:
129 autoconf259, automake19, libtool15, bison, tcl84,
130 docbook-xsl, libxml2, libxslt, g++-4.0, make