forked from mia/Aegisub
The (disabled) people were seeing beside ALSA support was actually
hunspell being disabled, due to --without-hunspell definfing alsa_disabled, fix this and add it to the final package status of configure. Originally committed to SVN as r1902.
This commit is contained in:
parent
ef09793948
commit
51561cee79
1 changed files with 5 additions and 2 deletions
|
@ -274,8 +274,8 @@ PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= 2.4,
|
||||||
[AC_MSG_FAILURE([aegisub requires >= fontconfig >= 2.4])])
|
[AC_MSG_FAILURE([aegisub requires >= fontconfig >= 2.4])])
|
||||||
|
|
||||||
|
|
||||||
AC_ARG_WITH(hunspell, [ --without-hunspell build without hunspell support], alsa_disabled="(disabled)")
|
AC_ARG_WITH(hunspell, [ --without-hunspell build without hunspell support], hunspell_disabled="(disabled)")
|
||||||
if test "x$with_hunspell" != xno; then
|
if test "$with_hunspell" != "no"; then
|
||||||
AC_CHECK_LIB([hunspell], [main],[HUNSPELL_LDFLAGS="-lhunspell"; with_hunspell="yes"], [with_hunspell=no])
|
AC_CHECK_LIB([hunspell], [main],[HUNSPELL_LDFLAGS="-lhunspell"; with_hunspell="yes"], [with_hunspell=no])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -573,4 +573,7 @@ Video Providers
|
||||||
Subtitle Providers:
|
Subtitle Providers:
|
||||||
asa: $with_asa
|
asa: $with_asa
|
||||||
libass: $with_libass
|
libass: $with_libass
|
||||||
|
|
||||||
|
Misc Packages:
|
||||||
|
hunspell: $with_hunspell $hunspell_disabled
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in a new issue