mirror of
https://github.com/roytam1/mozilla45esr.git
synced 2026-05-26 06:25:03 +00:00
89830cff26
- #334: more tele from TabBrowser; also remove gMultiProcessBrowser since we don't support it (16f8592aa) - #431: M1388354 M1388014 (da843afa1) - #438: M1393098 (539efce0c) - #388: M1354564 (d375d57d3) - #429: Brotli 1.0.1 (c69914a5a) (with ppc-only defines removed) - #429: install modules/woff2 (current to Fx57) (87b560912) (with ppc-only defines removed) - #429: update OTS to 5.2.0 plus patches and M1396026 (1ce2a83ec) (with binary literals removed) - #317: update graphite2 to 1.3.10 (f4bf5ad97) - #429: update Harfbuzz to 1.5.1 (083639c71) - #317: patch thebes for graphite2 alignment issues; enable graphite fonts (b7fead52b) - #434: adjust video queue settings; Mach factor decode delay logic (default off) (9b5b09a6c) - clean up a couple warnings (f37f7669d) - #426: M1385395 (b8ebae839) - #438: M1375599 (84bfb83b1) - #442: M1381157 (ffbe7ea3a)
47 lines
1.1 KiB
Bash
47 lines
1.1 KiB
Bash
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
test -n "$srcdir" || srcdir=`dirname "$0"`
|
|
test -n "$srcdir" || srcdir=.
|
|
|
|
olddir=`pwd`
|
|
cd $srcdir
|
|
|
|
echo -n "checking for ragel... "
|
|
which ragel || {
|
|
echo "You need to install ragel... See http://www.complang.org/ragel/"
|
|
exit 1
|
|
}
|
|
|
|
echo -n "checking for pkg-config... "
|
|
which pkg-config || {
|
|
echo "*** No pkg-config found, please install it ***"
|
|
exit 1
|
|
}
|
|
|
|
echo -n "checking for libtoolize... "
|
|
which glibtoolize || which libtoolize || {
|
|
echo "*** No libtoolize (libtool) found, please install it ***"
|
|
exit 1
|
|
}
|
|
echo -n "checking for gtkdocize... "
|
|
if which gtkdocize ; then
|
|
gtkdocize --copy || exit 1
|
|
else
|
|
echo "*** No gtkdocize (gtk-doc) found, skipping documentation ***"
|
|
echo "EXTRA_DIST = " > gtk-doc.make
|
|
fi
|
|
|
|
echo -n "checking for autoreconf... "
|
|
which autoreconf || {
|
|
echo "*** No autoreconf (autoconf) found, please install it ***"
|
|
exit 1
|
|
}
|
|
|
|
echo "running autoreconf --force --install --verbose"
|
|
autoreconf --force --install --verbose || exit $?
|
|
|
|
cd $olddir
|
|
echo "running configure $@"
|
|
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
|