File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -73,11 +73,13 @@ Please see the [LibUV installation guide](https://github.com/libuv/libuv)
73
73
74
74
```
75
75
./buildconf
76
- ./configure --enable-experimental-async-api --enable- async
76
+ ./configure --enable-async
77
77
make && sudo make install
78
78
```
79
79
80
80
We can use `--enable-debug` to enable debug mode, which is useful for development.
81
+
82
+ **Note:** The `--enable-experimental-async-api` option is no longer needed as the Async API is now enabled by default in the core.
81
83
82
84
---
83
85
@@ -102,10 +104,12 @@ Please see the [LibUV installation guide](https://github.com/libuv/libuv)
102
104
```
103
105
cd \path\to\php-src
104
106
buildconf
105
- configure --enable-experimental-async-api --enable- async
107
+ configure --enable-async
106
108
nmake
107
109
```
108
110
111
+ **Note:** The `--enable-experimental-async-api` option is no longer needed as the Async API is now enabled by default in the core.
112
+
109
113
---
110
114
111
115
## Adapted PHP Functions
You can’t perform that action at this time.
0 commit comments