summarylogtreecommitdiffstats
path: root/enchant2.patch
diff options
context:
space:
mode:
Diffstat (limited to 'enchant2.patch')
-rw-r--r--enchant2.patch100
1 files changed, 0 insertions, 100 deletions
diff --git a/enchant2.patch b/enchant2.patch
deleted file mode 100644
index 49dfa8987667..000000000000
--- a/enchant2.patch
+++ /dev/null
@@ -1,100 +0,0 @@
---- configure 2016-07-20 14:21:48.000000000 +0200
-+++ configure 2018-02-26 18:27:32.473932890 +0100
-@@ -34949,9 +34947,9 @@ EOF
- ENCHANT_SEARCH_DIRS="/usr/local /usr"
- fi
- for i in $ENCHANT_SEARCH_DIRS; do
-- if test -f $i/include/enchant/enchant.h; then
-+ if test -f $i/include/enchant-2/enchant.h; then
- ENCHANT_DIR=$i
-- ENCHANT_INCDIR=$i/include/enchant
-+ ENCHANT_INCDIR=$i/include/enchant-2
- elif test -f $i/include/enchant.h; then
- ENCHANT_DIR=$i
- ENCHANT_INCDIR=$i/include
-@@ -34973,7 +34971,7 @@ $as_echo "#define HAVE_ENCHANT 1" >>conf
-
-
- if test "$ext_shared" = "yes"; then
-- ENCHANT_SHARED_LIBADD="-lenchant $ENCHANT_SHARED_LIBADD"
-+ ENCHANT_SHARED_LIBADD="-lenchant-2 $ENCHANT_SHARED_LIBADD"
- if test -n "$ENCHANT_LIBDIR"; then
-
- if test "$ENCHANT_LIBDIR" != "/usr/$PHP_LIBDIR" && test "$ENCHANT_LIBDIR" != "/usr/lib"; then
-@@ -35057,7 +35055,7 @@ $as_echo "#define HAVE_ENCHANT 1" >>conf
- case enchant in
- c|c_r|pthread*) ;;
- *)
-- LIBS="-lenchant $LIBS"
-+ LIBS="-lenchant-2 $LIBS"
- ;;
- esac
-
-@@ -35193,13 +35191,13 @@ $as_echo "#define HAVE_ENCHANT 1" >>conf
- esac
- done
-
-- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for enchant_broker_set_param in -lenchant" >&5
--$as_echo_n "checking for enchant_broker_set_param in -lenchant... " >&6; }
-+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for enchant_broker_set_param in -lenchant-2" >&5
-+$as_echo_n "checking for enchant_broker_set_param in -lenchant-2... " >&6; }
- if ${ac_cv_lib_enchant_enchant_broker_set_param+:} false; then :
- $as_echo_n "(cached) " >&6
- else
- ac_check_lib_save_LIBS=$LIBS
--LIBS="-lenchant $LIBS"
-+LIBS="-lenchant-2 $LIBS"
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
- /* end confdefs.h. */
-
---- ext/enchant/config.m4 2016-07-20 10:41:48.000000000 +0200
-+++ ext/enchant/config.m4 2018-02-26 18:38:19.950883183 +0100
-@@ -14,9 +14,9 @@ if test "$PHP_ENCHANT" != "no"; then
- ENCHANT_SEARCH_DIRS="/usr/local /usr"
- fi
- for i in $ENCHANT_SEARCH_DIRS; do
-- if test -f $i/include/enchant/enchant.h; then
-+ if test -f $i/include/enchant-2/enchant.h; then
- ENCHANT_DIR=$i
-- ENCHANT_INCDIR=$i/include/enchant
-+ ENCHANT_INCDIR=$i/include/enchant-2
- elif test -f $i/include/enchant.h; then
- ENCHANT_DIR=$i
- ENCHANT_INCDIR=$i/include
---- ext/enchant/enchant.c 2016-07-20 10:41:48.000000000 +0200
-+++ ext/enchant/enchant.c 2018-02-26 18:37:51.598885359 +0100
-@@ -750,7 +750,7 @@ PHP_FUNCTION(enchant_dict_quick_check)
- for (i = 0; i < n_sugg; i++) {
- add_next_index_string(sugg, suggs[i], 1);
- }
-- enchant_dict_free_suggestions(pdict->pdict, suggs);
-+ enchant_dict_free_string_list(pdict->pdict, suggs);
- }
-
-
-@@ -807,7 +807,7 @@ PHP_FUNCTION(enchant_dict_suggest)
- add_next_index_string(return_value, suggs[i], 1);
- }
-
-- enchant_dict_free_suggestions(pdict->pdict, suggs);
-+ enchant_dict_free_string_list(pdict->pdict, suggs);
- }
- }
- /* }}} */
-@@ -827,7 +827,7 @@ PHP_FUNCTION(enchant_dict_add_to_persona
-
- PHP_ENCHANT_GET_DICT;
-
-- enchant_dict_add_to_personal(pdict->pdict, word, wordlen);
-+ enchant_dict_add(pdict->pdict, word, wordlen);
- }
- /* }}} */
-
-@@ -865,7 +865,7 @@ PHP_FUNCTION(enchant_dict_is_in_session)
-
- PHP_ENCHANT_GET_DICT;
-
-- RETURN_BOOL(enchant_dict_is_in_session(pdict->pdict, word, wordlen));
-+ RETURN_BOOL(enchant_dict_is_added(pdict->pdict, word, wordlen));
- }
- /* }}} */