diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:21 -0600 |
commit | dfe289850f068f19ba4a83ab4e7e22a7e09c13c9 (patch) | |
tree | c297348a55df66c571de4525646e0b9762427353 /kspell2/plugins/configure.in.in | |
parent | b7658a0d5eca24a9d37c6e04f88298ef02389db0 (diff) | |
download | tdelibs-dfe289850f068f19ba4a83ab4e7e22a7e09c13c9.tar.gz tdelibs-dfe289850f068f19ba4a83ab4e7e22a7e09c13c9.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kspell2/plugins/configure.in.in')
-rw-r--r-- | kspell2/plugins/configure.in.in | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/kspell2/plugins/configure.in.in b/kspell2/plugins/configure.in.in deleted file mode 100644 index 8aaf6de2c..000000000 --- a/kspell2/plugins/configure.in.in +++ /dev/null @@ -1,41 +0,0 @@ - AC_ARG_WITH(aspell,AC_HELP_STRING([--with-aspell],[Enable aspell support [default=check]]),[aspell_test="$withval"],[aspell_test="yes"]) - - if test "x$aspell_test" = "xyes" ; then - AC_LANG_SAVE - AC_LANG_C - dnl Check for aspell library - KDE_CHECK_LIB(aspell, new_aspell_config, [LIBASPELL="-laspell"]) - KDE_CHECK_HEADER(aspell.h) - if test -z "$ac_cv_header_aspell_h"; then - echo "" - echo "Your libaspell is too old or not installed, I couldn't find aspell.h." - echo "You must download aspell >= 0.50.2, see http://aspell.net" - echo "Spell-checking with libaspell will not be available, only with ispell dicts." - echo "" - fi - AC_LANG_RESTORE - fi - - aspell_datadir="/usr/lib/aspell" - if test -f "/usr/bin/pspell-config"; then - aspell_datadir=`/usr/bin/pspell-config --pkgdatadir` - fi - - AC_DEFINE_UNQUOTED( ASPELL_DATADIR, ["$aspell_datadir"], [Define where aspell data dir is] ) - AM_CONDITIONAL(include_aspell_plugin, test -n "$ac_cv_header_aspell_h" -a -n "$LIBASPELL") - - AC_ARG_WITH(hspell,AC_HELP_STRING([--with-hspell],[Enable hspell support [default=check]]),[hspell_test="$withval"],[hspell_test="yes"]) - - if test "x$hspell_test" = "xyes" ; then - AC_LANG_SAVE - AC_LANG_C - dnl Check for hspell library - KDE_CHECK_LIB(hspell, hspell_check_word, [LIBHSPELL="-lhspell"],[],-lz) - KDE_CHECK_HEADER(hspell.h) - if test "$ac_cv_header_hspell_h" != "yes"; then - unset LIBHSPELL - fi - AC_LANG_RESTORE - fi - - AM_CONDITIONAL(include_hspell_plugin, test "$ac_cv_header_hspell_h" = "yes" -a -n "$LIBHSPELL") |