This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axios = require('axios') | |
const cheerio = require('cheerio') | |
const fs = require('fs') | |
const path = require('path') | |
const emojiList = {} | |
let key, value | |
axios.get('https://emojipedia.org/whatsapp/').then(response => { | |
if (response.status === 200) { | |
const $ = cheerio.load(response.data) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- ext/openssl/xp_ssl.c 2015-10-07 17:19:55.710935804 -0300 | |
+++ ext/openssl/xp_ssl.c 2015-10-07 17:23:12.723383144 -0300 | |
@@ -332,10 +332,12 @@ | |
sslsock->is_client = 1; | |
method = SSLv23_client_method(); | |
break; | |
+#ifndef OPENSSL_NO_SSL2 | |
case STREAM_CRYPTO_METHOD_SSLv2_CLIENT: | |
sslsock->is_client = 1; | |
method = SSLv2_client_method(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- ext/dom/node.c 2012-08-06 17:49:48.826716692 +0800 | |
+++ ext/dom/node.c 2012-08-06 17:52:47.633484660 +0800 | |
@@ -1895,9 +1895,17 @@ static void dom_canonicalization(INTERNA | |
RETVAL_FALSE; | |
} else { | |
if (mode == 0) { | |
+#ifdef LIBXML2_NEW_BUFFER | |
+ ret = xmlOutputBufferGetSize(buf); | |
+#else | |
ret = buf->buffer->use; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Zend/acinclude.m4 b/Zend/acinclude.m4 | |
index 7fa8c99..0375c9c 100644 | |
--- a/Zend/acinclude.m4 | |
+++ b/Zend/acinclude.m4 | |
@@ -9,7 +9,7 @@ AC_DEFUN([LIBZEND_BISON_CHECK],[ | |
# non-working versions, e.g. "3.0 3.2"; | |
# remove "none" when introducing the first incompatible bison version an | |
# separate any following additions by spaces | |
- bison_version_exclude="3.0" | |
+ bison_version_exclude="3.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: ext/intl/grapheme/grapheme_string.c | |
=================================================================== | |
--- ext/intl/grapheme/grapheme_string.c (revisión: 311981) | |
+++ ext/intl/grapheme/grapheme_string.c (copia de trabajo) | |
@@ -665,7 +665,7 @@ | |
/* }}} */ | |
/* {{{ grapheme_extract_charcount_iter - grapheme iterator for grapheme_extract MAXCHARS */ | |
-inline int32_t | |
+static inline int32_t |