1
#!/bin/sh
2
# Run this to generate all the initial makefiles, etc.
3
4
DIE=0
5
package=gst-plugins-base
6
srcfile=gst/audiotestsrc/gstaudiotestsrc.c
7
8
# source helper functions
9
if test ! -f common/gst-autogen.sh;
10
then
11
  echo There is something wrong with your source tree.
12
  echo You are missing common/gst-autogen.sh
13
  exit 1
14
fi
15
. common/gst-autogen.sh
16
17
CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-gtk-doc --enable-plugin-docs'
18
19
autogen_options $@
20
21
printf "+ check for build tools"
22
if test ! -z "$NOCHECK"; then echo " skipped"; else  echo; fi
23
version_check "autoconf" "$AUTOCONF autoconf autoconf259 autoconf257 autoconf-2.54 autoconf-2.53 autoconf-2.52" \
24
              "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1
25
version_check "automake" "$AUTOMAKE automake automake-1.11 automake-1.10 automake-1.9 automake19 automake-1.7 automake-1.6 automake-1.5" \
26
              "ftp://ftp.gnu.org/pub/gnu/automake/" 1 7 || DIE=1
27
version_check "autopoint" "autopoint" \
28
              "ftp://ftp.gnu.org/pub/gnu/gettext/" 0 14 || DIE=1
29
version_check "libtoolize" "$LIBTOOLIZE libtoolize glibtoolize" \
30
              "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1
31
version_check "pkg-config" "" \
32
              "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
33
34
die_check $DIE
35
36
autoconf_2_52d_check || DIE=1
37
aclocal_check || DIE=1
38
autoheader_check || DIE=1
39
40
die_check $DIE
41
42
# if no arguments specified then this will be printed
43
if test -z "$*"; then
44
  echo "+ checking for autogen.sh options"
45
  echo "  This autogen script will automatically run ./configure as:"
46
  echo "  ./configure $CONFIGURE_DEF_OPT"
47
  echo "  To pass any additional options, please specify them on the $0"
48
  echo "  command line."
49
fi
50
51
toplevel_check $srcfile
52
53
# autopoint
54
#    older autopoint (< 0.12) has a tendency to complain about mkinstalldirs
55
if test -x mkinstalldirs; then rm mkinstalldirs; fi
56
#    first remove patch if necessary, then run autopoint, then reapply
57
if test -f po/Makefile.in.in;
58
then
59
  patch -p0 -R --forward < common/gettext.patch
60
fi
61
tool_run "$autopoint --force"
62
patch -p0 < common/gettext.patch
63
64
tool_run "$libtoolize" "--copy --force"
65
tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
66
tool_run "$autoheader"
67
68
# touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
69
echo timestamp > stamp-h.in 2> /dev/null
70
71
tool_run "$autoconf"
72
tool_run "$automake" "-a -c"
73
74
# if enable exists, add an -enable option for each of the lines in that file
75
if test -f enable; then
76
  for a in `cat enable`; do
77
    CONFIGURE_FILE_OPT="--enable-$a"
78
  done
79
fi
80
81
# if disable exists, add an -disable option for each of the lines in that file
82
if test -f disable; then
83
  for a in `cat disable`; do
84
    CONFIGURE_FILE_OPT="$CONFIGURE_FILE_OPT --disable-$a"
85
  done
86
fi
87
88
test -n "$NOCONFIGURE" && {
89
  echo "+ skipping configure stage for package $package, as requested."
90
  echo "+ autogen.sh done."
91
  exit 0
92
}
93
94
echo "+ running configure ... "
95
test ! -z "$CONFIGURE_DEF_OPT" && echo "  ./configure default flags: $CONFIGURE_DEF_OPT"
96
test ! -z "$CONFIGURE_EXT_OPT" && echo "  ./configure external flags: $CONFIGURE_EXT_OPT"
97
test ! -z "$CONFIGURE_FILE_OPT" && echo "  ./configure enable/disable flags: $CONFIGURE_FILE_OPT"
98
echo
99
100
./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT $CONFIGURE_FILE_OPT || {
101
        echo "  configure failed"
102
        exit 1
103
}
104
105
echo "Now type 'make' to compile $package."