summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDom Lachowicz <domlachowicz@gmail.com>2003-10-13 17:24:54 +0000
committerDom Lachowicz <domlachowicz@gmail.com>2003-10-13 17:24:54 +0000
commit63a91af0784f922482264886bc2edbe300a1be4b (patch)
tree7d81980e82b052748e217ba546017ce8c63afb1e
parenta3fcbc225cca43f8b2599f794096a101ee19731e (diff)
downloadenchant-63a91af0784f922482264886bc2edbe300a1be4b.tar.gz
5914
git-svn-id: svn+ssh://svn.abisource.com/svnroot/enchant/trunk@20868 bcba8976-2d24-0410-9c9c-aab3bd5fdfd6
-rw-r--r--configure.in22
1 files changed, 11 insertions, 11 deletions
diff --git a/configure.in b/configure.in
index 3fdcd4e..09f8d90 100644
--- a/configure.in
+++ b/configure.in
@@ -74,14 +74,14 @@ if test "x$have_cxx" = "xno"; then
fi
AM_CONDITIONAL(WITH_ISPELL, test "x$build_ispell" = "xyes")
-ispell_dict_dir=${datadir}/enchant/ispell
+ispell_dir=${datadir}/enchant/ispell
AC_ARG_WITH(ispell-dir, [ --with-ispell-dir=PATH path to installed ispell dicts ])
-if test "x$with_ispell_dict_dir" != "x" ; then
- ispell_dict_dir=$with_ispell_dict_dir
+if test "x$with_ispell_dir" != "x" ; then
+ ispell_dir=$with_ispell_dir
fi
-ISPELL_CFLAGS="-DENCHANT_ISPELL_DICT_DIR='\"$ispell_dict_dir\"'"
+ISPELL_CFLAGS="-DENCHANT_ISPELL_DICT_DIR='\"$ispell_dir\"'"
AC_SUBST(ISPELL_CFLAGS)
build_myspell=yes
@@ -93,14 +93,14 @@ if test "x$have_cxx" = "xno"; then
fi
AM_CONDITIONAL(WITH_MYSPELL, test "x$build_myspell" = "xyes")
-myspell_dict_dir=${datadir}/enchant/myspell
+myspell_dir=${datadir}/enchant/myspell
AC_ARG_WITH(myspell-dir, [ --with-myspell-dir=PATH path to installed myspell dicts ])
-if test "x$with_myspell_dict_dir" != "x" ; then
- myspell_dict_dir=$with_myspell_dict_dir
+if test "x$with_myspell_dir" != "x" ; then
+ myspell_dir=$with_myspell_dir
fi
-MYSPELL_CFLAGS="-DENCHANT_MYSPELL_DICT_DIR='\"$myspell_dict_dir\"'"
+MYSPELL_CFLAGS="-DENCHANT_MYSPELL_DICT_DIR='\"$myspell_dir\"'"
AC_SUBST(MYSPELL_CFLAGS)
check_aspell=yes
@@ -172,11 +172,11 @@ if test "x$check_uspell" != "xno"; then
PKG_CHECK_MODULES(USPELL, [libuspell >= 1.1.0], build_uspell=yes, build_uspell=no)
fi
-uspell_dict_dir=${datadir}/enchant/uspell
+uspell_dir=${datadir}/enchant/uspell
AC_ARG_WITH(uspell-dir, [ --with-uspell-dir=PATH path to installed uspell dicts ])
-if test "x$with_uspell_dict_dir" != "x" ; then
- uspell_dict_dir=$with_uspell_dict_dir
+if test "x$with_uspell_dir" != "x" ; then
+ uspell_dir=$with_uspell_dir
fi
USPELL_CFLAGS="$USPELL_CFLAGS -DENCHANT_USPELL_DICT_DIR='\"$uspell_dict_dir\"'"