mirror of https://github.com/odrling/Aegisub
* Remove awk check -- we haven't need it in over a year.
* Remove check for iconv.m4, I switched to custom code over a year ago. Originally committed to SVN as r5153.
This commit is contained in:
parent
23d96d071c
commit
73bd4f2398
|
@ -19,7 +19,7 @@ GLIB_REQUIRED_VERSION=2.10.0
|
|||
AUTOCONF_REQUIRED_VERSION=2.54
|
||||
AUTOMAKE_REQUIRED_VERSION=1.10
|
||||
|
||||
REQUIRED_M4="fontutil.m4 gettext.m4 pkg.m4 iconv.m4"
|
||||
REQUIRED_M4="fontutil.m4 gettext.m4 pkg.m4"
|
||||
REQUIRED_M4_WX="wxwin29.m4 wxwin.m4"
|
||||
|
||||
PROJECT="aegisub"
|
||||
|
@ -132,30 +132,6 @@ if test x$AUTOMAKE != x; then
|
|||
fi
|
||||
|
||||
|
||||
if test -z "$BIN_AWK"; then
|
||||
BIN_AWK=`which awk`
|
||||
fi
|
||||
|
||||
$ECHO_N "checking for AWK ... "
|
||||
if test -x "$BIN_AWK"; then
|
||||
echo $BIN_AWK
|
||||
else
|
||||
echo "not found"
|
||||
echo
|
||||
echo " You must have 'awk' installed. Please set"
|
||||
echo " BIN_AWK or add it to your PATH."
|
||||
echo
|
||||
DIE=1
|
||||
fi
|
||||
|
||||
if test "$DIE" -eq 1; then
|
||||
echo
|
||||
echo "Please install/upgrade the missing tools and call me again."
|
||||
echo
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
if ! test "$1" = "--skip-configure"; then
|
||||
echo
|
||||
echo "I am going to run ./configure with the following arguments:"
|
||||
|
|
Loading…
Reference in New Issue