https://github.com/behdad/glyphy
Revision 3310ac337b510664c867aaf0a1eecd7c6be21a26 authored by Behdad Esfahbod on 13 March 2022, 20:06:03 UTC, committed by Behdad Esfahbod on 13 March 2022, 20:48:59 UTC
If distance() results were unpredictable, then the equality tests were
not adequate...
1 parent 38dc1c5
Raw File
Tip revision: 3310ac337b510664c867aaf0a1eecd7c6be21a26 authored by Behdad Esfahbod on 13 March 2022, 20:06:03 UTC
[sdf] Fix artifacts on most drivers
Tip revision: 3310ac3
autogen.sh
#!/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 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
}

touch ChangeLog

echo "running autoreconf --force --install --verbose"
autoreconf --force --install --verbose || exit $?

cd $olddir
echo "running configure $@"
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
back to top