java interface: add script to automatically generate lib loader C code
[lttv.git] / autogen.sh
CommitLineData
5f13cda0 1#!/bin/sh
2# Run this to generate all the initial makefiles, etc.
3
4srcdir=`dirname $0`
5test -z "$srcdir" && srcdir=.
6
7DIE=0
8
9if [ -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
15fi
16
bd14e4a8 17(test -f $srcdir/configure.ac) || {
5f13cda0 18 echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
19 echo " top-level package directory"
20 exit 1
21}
22
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
29}
30
bd14e4a8 31(grep "^AC_PROG_INTLTOOL" $srcdir/configure.ac >/dev/null) && {
5f13cda0 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
38 }
39}
40
bd14e4a8 41(grep "^AM_PROG_XML_I18N_TOOLS" $srcdir/configure.ac >/dev/null) && {
5f13cda0 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
48 }
49}
50
bd14e4a8 51(grep "^AM_PROG_LIBTOOL" $srcdir/configure.ac >/dev/null) && {
5f13cda0 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
57 }
58}
59
bd14e4a8
PMF
60(grep "^AM_GLIB_GNU_GETTEXT" $srcdir/configure.ac >/dev/null) && {
61 (grep "sed.*POTFILES" $srcdir/configure.ac) > /dev/null || \
5f13cda0 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
67 }
68}
69
ecef3b84 70(automake --version) < /dev/null > /dev/null 2>&1 || {
5f13cda0 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
76}
77
78
79# if no automake, don't bother testing for aclocal
ecef3b84 80test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || {
5f13cda0 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
86}
87
88if test "$DIE" -eq 1; then
89 exit 1
90fi
91
92if 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
97fi
98
99case $CC in
100xlc )
101 am_opt=--include-deps;;
102esac
103
bd14e4a8 104for coin in `find $srcdir -path $srcdir/CVS -prune -o -name configure.ac -print`
5f13cda0 105do
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
112
113 aclocalinclude="$ACLOCAL_FLAGS"
114
bd14e4a8 115 if grep "^AM_GLIB_GNU_GETTEXT" configure.ac >/dev/null; then
5f13cda0 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
122 fi
bd14e4a8 123 if grep "^AC_PROG_INTLTOOL" configure.ac >/dev/null; then
5f13cda0 124 echo "Running intltoolize..."
125 intltoolize --copy --force --automake
126 fi
bd14e4a8 127 if grep "^AM_PROG_XML_I18N_TOOLS" configure.ac >/dev/null; then
5f13cda0 128 echo "Running xml-i18n-toolize..."
129 xml-i18n-toolize --copy --force --automake
130 fi
bd14e4a8 131 if grep "^AM_PROG_LIBTOOL" configure.ac >/dev/null; then
aab6c90a 132 if test -z "$NO_LIBTOOLIZE" ; then
133 echo "Running libtoolize..."
134 libtoolize --force --copy
135 fi
136 fi
ecef3b84 137 echo "Running aclocal $aclocalinclude ..."
138 aclocal $aclocalinclude
bd14e4a8 139 if grep "^AM_CONFIG_HEADER" configure.ac >/dev/null; then
0e9ba239 140 echo "Running autoheader..."
141 autoheader
142 fi
ecef3b84 143 echo "Running automake --gnu $am_opt ..."
144 automake --add-missing --gnu $am_opt
5f13cda0 145 echo "Running autoconf ..."
146 autoconf
147 )
148 fi
149done
150
66f52ff0 151#if [ -a "$srcdir/include" ]; then
152# echo -n Removing old system include behavior emulation...
153# rm -rf $srcdir/include
154# echo done.
155#fi
156#echo -n Creating the system include behavior emulation...
157#mkdir $srcdir/include
158#mkdir $srcdir/include/ltt
159#ln -sf ../../LibLTT/ltt.h $srcdir/include/ltt/ltt.h
160#mkdir $srcdir/include/lttv
161#ln -sf ../../lttv/module.h $srcdir/include/lttv/module.h
162#ln -sf ../../lttv/hook.h $srcdir/include/lttv/hook.h
163#ln -sf ../../lttv/traceWindow.h $srcdir/include/lttv/traceWindow.h
164#echo done.
7c9cb10c 165
3bea00b5 166
167
5f13cda0 168if test x$NOCONFIGURE = x; then
169 echo Running $srcdir/configure $conf_flags "$@" ...
170 $srcdir/configure $conf_flags "$@" \
171 && echo Now type \`make\' to compile. || exit 1
172else
173 echo Skipping configure process.
174fi
This page took 0.067398 seconds and 4 git commands to generate.