mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
762e7ba46d
harfbuzz library code from upstream harfbuzz-ng commit f51e167436a51b890ffe3f7f7920498fa287acd9; replaced HB_SCRIPT_* with MOZ_SCRIPT_* codes in gfx; adapted for changes to HB function signatures.
34 lines
745 B
Bash
Executable File
34 lines
745 B
Bash
Executable File
#!/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 autoreconf... "
|
|
which autoreconf || {
|
|
echo "*** No autoreconf 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" "$@"
|