9 test -d config || mkdir config
14 if [ "`uname -s`" = FreeBSD ]; then
15 # FreeBSD intalls the various auto* tools with version numbers
16 echo "Using special configuration for FreeBSD ..."
18 aclocal="aclocal -I /usr/local/share/aclocal"
24 if [ "`uname -s`" = Darwin ]; then
25 echo "Using special configuration for Darwin/MacOS ..."
26 libtoolize=glibtoolize
29 if $automake --version|head -1 |grep '1\.[4-7]'; then
30 echo "automake 1.4-1.7 is active. You should use automake 1.8 or later"
31 if [ -f /etc/debian_version ]; then
32 echo " sudo apt-get install automake1.9"
33 echo " sudo update-alternatives --config automake"
40 if grep AC_CONFIG_HEADERS configure.ac >/dev/null; then
43 $libtoolize --automake --force
44 $automake --add-missing
47 if [ -f config.cache ]; then
51 enable_configure=false
57 sh_cflags="-g -Wall -Wdeclaration-after-statement -Wstrict-prototypes"
58 sh_cxxflags="-g -Wall"
72 if $enable_configure; then
73 if [ -n "$sh_cflags" ]; then
74 CFLAGS="$sh_cflags" CXXFLAGS="$sh_cxxflags" ./configure \
75 --disable-shared --enable-static --with-pic $*
83 Build the Makefiles with the configure command.
84 ./configure [--someoption=somevalue ...]
86 For help on options or configuring run
89 Build and install binaries with the usual
94 Build distribution tarball with
97 Verify distribution tarball with
101 if [ -f /etc/debian_version ]; then
103 Or just build the Debian packages without configuring
104 dpkg-buildpackage -rfakeroot
106 When building from Git, you need these Debian packages:
107 autoconf, automake, libtool, gcc, bison, any tcl,
108 xsltproc, docbook, docbook-xml, docbook-xsl,
109 libxslt1-dev, libssl-dev, libreadline5-dev, libwrap0-dev,
112 Also perhaps: libgnutls-dev libicu-dev
114 And if you want to make a Debian package: dpkg-dev fakeroot debhelper
115 (Then run "dpkg-buildpackage -rfakeroot" in this directory.)
119 if [ "`uname -s`" = FreeBSD ]; then
121 When building from a Git, you need these FreeBSD Ports:
122 pkg_add -r autoconf262 automake110 libtool bison tcl84 \\
123 docbook-xsl libxml2 libxslt