From 51561cee79059503e32a1a751675c94e8995e4b5 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Wed, 5 Mar 2008 15:35:47 +0000 Subject: [PATCH] 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. --- configure.in | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 71f4484c6..db038e4a5 100644 --- a/configure.in +++ b/configure.in @@ -274,8 +274,8 @@ PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= 2.4, [AC_MSG_FAILURE([aegisub requires >= fontconfig >= 2.4])]) -AC_ARG_WITH(hunspell, [ --without-hunspell build without hunspell support], alsa_disabled="(disabled)") -if test "x$with_hunspell" != xno; then +AC_ARG_WITH(hunspell, [ --without-hunspell build without hunspell support], hunspell_disabled="(disabled)") +if test "$with_hunspell" != "no"; then AC_CHECK_LIB([hunspell], [main],[HUNSPELL_LDFLAGS="-lhunspell"; with_hunspell="yes"], [with_hunspell=no]) fi @@ -573,4 +573,7 @@ Video Providers Subtitle Providers: asa: $with_asa libass: $with_libass + +Misc Packages: + hunspell: $with_hunspell $hunspell_disabled ]);