wmshutdown: Destroy dialog window before shutting down. This is especially useful...
[dockapps.git] / buttonmaker / autogen.sh
blobbb3fc46c07b4d9a5689593c403e468bdab64c3a9
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
4 srcdir=`dirname $0`
5 test -z "$srcdir" && srcdir=.
7 DIE=0
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"
13 export 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"
20 exit 1
23 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
24 echo
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/"
28 DIE=1
31 (grep "^IT_PROG_INTLTOOL" $srcdir/configure.ac >/dev/null) && {
32 (intltoolize --version) < /dev/null > /dev/null 2>&1 || {
33 echo
34 echo "**Error**: You must have \`intltool' installed."
35 echo "You can get it from:"
36 echo " ftp://ftp.gnome.org/pub/GNOME/"
37 DIE=1
41 (grep "^AM_PROG_XML_I18N_TOOLS" $srcdir/configure.ac >/dev/null) && {
42 (xml-i18n-toolize --version) < /dev/null > /dev/null 2>&1 || {
43 echo
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/"
47 DIE=1
51 (grep "^LT_INIT" $srcdir/configure.ac >/dev/null) && {
52 (libtool --version) < /dev/null > /dev/null 2>&1 || {
53 echo
54 echo "**Error**: You must have \`libtool' installed."
55 echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/"
56 DIE=1
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 || {
63 echo
64 echo "**Error**: You must have \`glib' installed."
65 echo "You can get it from: ftp://ftp.gtk.org/pub/gtk"
66 DIE=1
70 (automake --version) < /dev/null > /dev/null 2>&1 || {
71 echo
72 echo "**Error**: You must have \`automake' installed."
73 echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/"
74 DIE=1
75 NO_AUTOMAKE=yes
79 # if no automake, don't bother testing for aclocal
80 test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || {
81 echo
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/"
85 DIE=1
88 if test "$DIE" -eq 1; then
89 exit 1
92 if test -z "$*"; 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."
96 echo
99 case $CC in
100 xlc )
101 am_opt=--include-deps;;
102 esac
104 for coin in `find $srcdir -path $srcdir/CVS -prune -o -name configure.ac -print`
106 dr=`dirname $coin`
107 if test -f $dr/NO-AUTO-GEN; then
108 echo skipping $dr -- flagged as no auto-gen
109 else
110 echo processing $dr
111 ( cd $dr
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 "^LT_INIT" 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 "^A[CM]_CONFIG_HEADER" configure.ac >/dev/null; then
140 echo "Running autoheader..."
141 autoheader
143 echo "Running automake --gnu $am_opt ..."
144 automake --add-missing --gnu $am_opt
145 echo "Running autoconf ..."
146 autoconf
149 done
151 if test x$NOCONFIGURE = x; then
152 echo Running $srcdir/configure "$@" ...
153 $srcdir/configure "$@" \
154 && echo Now type \`make\' to compile. || exit 1
155 else
156 echo Skipping configure process.