Merge pull request #524 from pruiz/mvc-allowhtml-fix
[mono.git] / autogen.sh
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
3 # Ripped off from GNOME macros version
4
5 DIE=0
6
7 srcdir=`dirname $0`
8 test -z "$srcdir" && srcdir=.
9
10 if [ -n "$MONO_PATH" ]; then
11         # from -> /mono/lib:/another/mono/lib
12         # to -> /mono /another/mono
13         for i in `echo ${MONO_PATH} | tr ":" " "`; do
14                 i=`dirname ${i}`
15                 if [ -n "{i}" -a -d "${i}/share/aclocal" ]; then
16                         ACLOCAL_FLAGS="-I ${i}/share/aclocal $ACLOCAL_FLAGS"
17                 fi
18                 if [ -n "{i}" -a -d "${i}/bin" ]; then
19                         PATH="${i}/bin:$PATH"
20                 fi
21         done
22         export PATH
23 fi
24
25 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
26   echo
27   echo "**Error**: You must have \`autoconf' installed to compile Mono."
28   echo "Download the appropriate package for your distribution,"
29   echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
30   DIE=1
31 }
32
33 if [ -z "$LIBTOOL" ]; then
34   LIBTOOL=`which glibtool 2>/dev/null` 
35   if [ ! -x "$LIBTOOL" ]; then
36     LIBTOOL=`which libtool`
37   fi
38 fi
39
40 (grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null) && {
41   ($LIBTOOL --version) < /dev/null > /dev/null 2>&1 || {
42     echo
43     echo "**Error**: You must have \`libtool' installed to compile Mono."
44     echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.2d.tar.gz"
45     echo "(or a newer version if it is available)"
46     DIE=1
47   }
48 }
49
50 grep "^AM_GNU_GETTEXT" $srcdir/configure.in >/dev/null && {
51   grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \
52   (gettext --version) < /dev/null > /dev/null 2>&1 || {
53     echo
54     echo "**Error**: You must have \`gettext' installed to compile Mono."
55     echo "Get ftp://alpha.gnu.org/gnu/gettext-0.10.35.tar.gz"
56     echo "(or a newer version if it is available)"
57     DIE=1
58   }
59 }
60
61 (automake --version) < /dev/null > /dev/null 2>&1 || {
62   echo
63   echo "**Error**: You must have \`automake' installed to compile Mono."
64   echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz"
65   echo "(or a newer version if it is available)"
66   DIE=1
67   NO_AUTOMAKE=yes
68 }
69
70
71 # if no automake, don't bother testing for aclocal
72 test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || {
73   echo
74   echo "**Error**: Missing \`aclocal'.  The version of \`automake'"
75   echo "installed doesn't appear recent enough."
76   echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz"
77   echo "(or a newer version if it is available)"
78   DIE=1
79 }
80
81 if test "$DIE" -eq 1; then
82   exit 1
83 fi
84
85 if test x$NOCONFIGURE = x && test -z "$*"; then
86   echo "**Warning**: I am going to run \`configure' with no arguments."
87   echo "If you wish to pass any to it, please specify them on the"
88   echo \`$0\'" command line."
89   echo
90 fi
91
92 case $CC in
93 xlc )
94   am_opt=--include-deps;;
95 esac
96
97
98 if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then
99   if test -z "$NO_LIBTOOLIZE" ; then 
100     echo "Running libtoolize..."
101     ${LIBTOOL}ize --force --copy
102   fi
103 fi
104
105
106 #
107 # Plug in the extension module
108 #
109 has_ext_mod=false
110 for PARAM; do
111     if test "$PARAM" = "--enable-extension-module" ; then
112                 has_ext_mod=true
113         fi
114 done
115
116 if test x$has_ext_mod = xtrue; then
117         pushd ../mono-extensions/scripts
118         sh ./prepare-repo.sh || exit 1
119         popd
120 else
121         cat mono/mini/Makefile.am.in > mono/mini/Makefile.am
122         cat mono/metadata/Makefile.am.in > mono/metadata/Makefile.am
123 fi
124
125
126 echo "Running aclocal -I m4 -I . $ACLOCAL_FLAGS ..."
127 aclocal -Wnone -I m4 -I . $ACLOCAL_FLAGS || {
128   echo
129   echo "**Error**: aclocal failed. This may mean that you have not"
130   echo "installed all of the packages you need, or you may need to"
131   echo "set ACLOCAL_FLAGS to include \"-I \$prefix/share/aclocal\""
132   echo "for the prefix where you installed the packages whose"
133   echo "macros were not found"
134   exit 1
135 }
136
137 if grep "^AC_CONFIG_HEADERS" configure.in >/dev/null; then
138   echo "Running autoheader..."
139   autoheader || { echo "**Error**: autoheader failed."; exit 1; }
140 fi
141
142 echo "Running automake --gnu $am_opt ..."
143 automake --add-missing --gnu -Wno-portability -Wno-obsolete $am_opt ||
144   { echo "**Error**: automake failed."; exit 1; }
145 echo "Running autoconf ..."
146 autoconf || { echo "**Error**: autoconf failed."; exit 1; }
147
148 if test -d $srcdir/libgc; then
149   echo Running libgc/autogen.sh ...
150   (cd $srcdir/libgc ; NOCONFIGURE=1 ./autogen.sh "$@")
151   echo Done running libgc/autogen.sh ...
152 fi
153
154 if test -d $srcdir/eglib; then
155   echo Running eglib/autogen.sh ...
156   (cd $srcdir/eglib ; NOCONFIGURE=1 ./autogen.sh "$@")
157   echo Done running eglib/autogen.sh ...
158 fi
159
160
161 conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c
162
163 if test x$NOCONFIGURE = x; then
164   echo Running $srcdir/configure $conf_flags "$@" ...
165   $srcdir/configure $conf_flags "$@" \
166   && echo Now type \`make\' to compile $PKG_NAME || exit 1
167 else
168   echo Skipping configure process.
169 fi