switching to XML DocBook
[dia.git] / autogen.sh
blob7db4a1a51ed77cb013c53a79f1bd094927b69544
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
4 srcdir=`dirname $0`
5 test -z "$srcdir" && srcdir=.
7 ORIGDIR=`pwd`
8 cd $srcdir
10 PROJECT=dia
11 TEST_TYPE=-d
12 FILE=objects
14 DIE=0
16 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
17 echo
18 echo "You must have autoconf installed to compile $PROJECT."
19 echo "Download the appropriate package for your distribution,"
20 echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
21 DIE=1
24 (libtool --version) < /dev/null > /dev/null 2>&1 || {
25 echo
26 echo "You must have libtool installed to compile $PROJECT."
27 echo "Get ftp://alpha.gnu.org/gnu/libtool-1.0h.tar.gz"
28 echo "(or a newer version if it is available)"
29 DIE=1
32 (intltoolize --version) < /dev/null > /dev/null 2>&1 || {
33 echo
34 echo "You must have intltool installed to compile $PROJECT."
35 echo "Get ftp://ftp.gnome.org/pub/GNOME/stable/sources/intltool/intltool-0.16.tar.gz"
36 echo "(or a newer version if it is available)"
37 DIE=1
40 (automake --version) < /dev/null > /dev/null 2>&1 || {
41 echo
42 echo "You must have automake installed to compile $PROJECT."
43 echo "Get ftp://ftp.cygnus.com/pub/home/tromey/automake-1.2d.tar.gz"
44 echo "(or a newer version if it is available)"
45 DIE=1
48 if test "$DIE" -eq 1; then
49 exit 1
52 test $TEST_TYPE $FILE || {
53 echo "You must run this script in the top-level $PROJECT directory"
54 exit 1
57 if test -z "$*"; then
58 echo "I am going to run ./configure with no arguments - if you wish "
59 echo "to pass any to it, please specify them on the $0 command line."
62 case $CC in
63 *lcc | *lcc\ *) am_opt=--include-deps;;
64 esac
66 echo "Running gettextize..."
67 glib-gettextize --copy --force
69 echo "Running intltoolize"
70 intltoolize --copy --force --automake
72 echo "Running libtoolize"
73 libtoolize --copy --force
75 aclocal $ACLOCAL_FLAGS
76 autoheader
77 automake --add-missing $am_opt
78 autoconf
80 cd $ORIGDIR
82 $srcdir/configure --enable-maintainer-mode --enable-db2html "$@"
84 echo
85 echo "Now type 'make' to compile $PROJECT."