File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,15 @@ $ make
29
29
$ make install
30
30
```
31
31
32
+ ### On Windows
33
+ Extract contents of one of the above mentioned directories to ` [php-src]/../pecl/php-meminfo `
34
+
35
+ ``` bash
36
+ $ buildconf
37
+ $ configure --enable-meminfo
38
+ $ nmake
39
+ ```
40
+
32
41
## Enabling the extension
33
42
Add the following line to your ` php.ini ` :
34
43
Original file line number Diff line number Diff line change
1
+ ARG_ENABLE("meminfo", "Enable Meminfo support", "no");
2
+
3
+ if (PHP_MEMINFO = "yes") {
4
+ AC_DEFINE('HAVE_MEMINFO', 1, '[Whether you have Memory Info]');
5
+ EXTENSION("meminfo", "meminfo.c");
6
+ }
Original file line number Diff line number Diff line change
1
+ ARG_ENABLE("meminfo", "Enable Meminfo support", "no");
2
+
3
+ if (PHP_MEMINFO = "yes") {
4
+ AC_DEFINE('HAVE_MEMINFO', 1, '[Whether you have Memory Info]');
5
+ EXTENSION("meminfo", "meminfo.c");
6
+ }
You can’t perform that action at this time.
0 commit comments