File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ PHP NEWS
13
13
. Fixed bug GH-10168: use-after-free when utilizing assigned object freed
14
14
during assignment. (nielsdos)
15
15
16
+ - Curl:
17
+ . Fixed deprecation warning at compile time. (Max Kellermann)
18
+
16
19
- Date:
17
20
. Fix GH-10447 ('p' format specifier does not yield 'Z' for 00:00). (Derick)
18
21
Original file line number Diff line number Diff line change 62
62
#include "curl_private.h"
63
63
#include "curl_arginfo.h"
64
64
65
+ #ifdef __GNUC__
66
+ /* don't complain about deprecated CURLOPT_* we're exposing to PHP; we
67
+ need to keep using those to avoid breaking PHP API compatibiltiy */
68
+ # pragma GCC diagnostic ignored "-Wdeprecated-declarations"
69
+ #endif
70
+
65
71
#ifdef PHP_CURL_NEED_OPENSSL_TSL /* {{{ */
66
72
static MUTEX_T * php_curl_openssl_tsl = NULL ;
67
73
You can’t perform that action at this time.
0 commit comments