2 # Run this to generate all the initial makefiles, etc.
5 test -z "$srcdir" && srcdir
=.
9 if [ -n "$GNOME2_DIR" ]; then
10 ACLOCAL_FLAGS
="-I $GNOME2_DIR/share/aclocal $ACLOCAL_FLAGS"
11 LD_LIBRARY_PATH
="$GNOME2_DIR/lib:$LD_LIBRARY_PATH"
12 PATH
="$GNOME2_DIR/bin:$PATH"
14 export LD_LIBRARY_PATH
17 (test -f $srcdir/configure.ac
) ||
{
18 echo -n "**Error**: Directory "\
`$srcdir\'" does not look like the"
19 echo " top-level package directory"
23 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
25 echo "**Error**: You must have \`autoconf
' installed."
26 echo "Download the appropriate package for your distribution,"
27 echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
31 (grep "^IT_PROG_INTLTOOL" $srcdir/configure.ac >/dev/null) && {
32 (intltoolize --version) < /dev/null > /dev/null 2>&1 || {
34 echo "**Error**: You must have \`intltool' installed.
"
35 echo "You can get it from
:"
36 echo " ftp://ftp.gnome.org
/pub
/GNOME
/"
41 (grep "^AM_PROG_XML_I18N_TOOLS
" $srcdir/configure.ac >/dev/null) && {
42 (xml-i18n-toolize --version) < /dev/null > /dev/null 2>&1 || {
44 echo "**Error
**: You must have \
`xml-i18n-toolize' installed."
45 echo "You can get it from:"
46 echo " ftp://ftp.gnome.org/pub/GNOME/"
51 (grep "^AM_PROG_LIBTOOL" $srcdir/configure.ac >/dev/null) && {
52 (libtool --version) < /dev/null > /dev/null 2>&1 || {
54 echo "**Error**: You must have \`libtool
' installed."
55 echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/"
60 (grep "^AM_GLIB_GNU_GETTEXT" $srcdir/configure.ac >/dev/null) && {
61 (grep "sed.*POTFILES" $srcdir/configure.ac) > /dev/null || \
62 (glib-gettextize --version) < /dev/null > /dev/null 2>&1 || {
64 echo "**Error**: You must have \`glib' installed.
"
65 echo "You can get it from
: ftp://ftp.gtk.org
/pub
/gtk
"
70 (automake --version) < /dev/null > /dev/null 2>&1 || {
72 echo "**Error
**: You must have \
`automake' installed."
73 echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/"
79 # if no automake, don't bother testing for aclocal
80 test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || {
82 echo "**Error**: Missing \`aclocal
'. The version of \`automake'"
83 echo "installed doesn
't appear recent enough."
84 echo "You can get automake from ftp://ftp.gnu.org/pub/gnu/"
88 if test "$DIE" -eq 1; then
93 echo "**Warning**: I am going to run \`configure' with no arguments.
"
94 echo "If you wish to pass any to it
, please specify them on the
"
95 echo \`$0\'" command line.
"
101 am_opt=--include-deps;;
104 for coin in `find $srcdir -path $srcdir/CVS -prune -o -name configure.ac -print`
107 if test -f $dr/NO-AUTO-GEN; then
108 echo skipping $dr -- flagged as no auto-gen
113 aclocalinclude="$ACLOCAL_FLAGS"
115 if grep "^AM_GLIB_GNU_GETTEXT
" configure.ac >/dev/null; then
116 echo "Creating
$dr/aclocal.
m4 ...
"
117 test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
118 echo "Running glib-gettextize... Ignore non-fatal messages.
"
119 echo "no
" | glib-gettextize --force --copy
120 echo "Making
$dr/aclocal.
m4 writable ...
"
121 test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
123 if grep "^IT_PROG_INTLTOOL
" configure.ac >/dev/null; then
124 echo "Running intltoolize...
"
125 intltoolize --copy --force --automake
127 if grep "^AM_PROG_XML_I18N_TOOLS
" configure.ac >/dev/null; then
128 echo "Running xml-i18n-toolize...
"
129 xml-i18n-toolize --copy --force --automake
131 if grep "^AM_PROG_LIBTOOL
" configure.ac >/dev/null; then
132 if test -z "$NO_LIBTOOLIZE" ; then
133 echo "Running libtoolize...
"
134 libtoolize --force --copy
137 echo "Running aclocal
$aclocalinclude ...
"
138 aclocal $aclocalinclude
139 if grep "^AM_CONFIG_HEADER
" configure.ac >/dev/null; then
140 echo "Running autoheader...
"
143 echo "Running automake
--gnu $am_opt ...
"
144 automake --add-missing --gnu $am_opt
145 echo "Running autoconf ...
"
151 conf_flags="--enable-maintainer-mode"
153 if test x$NOCONFIGURE = x; then
154 echo Running $srcdir/configure $conf_flags "$@
" ...
155 $srcdir/configure $conf_flags "$@
" \
156 && echo Now type \`make\' to compile. || exit 1
158 echo Skipping configure process.