File tree 1 file changed +6
-3
lines changed 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,15 @@ For more information, visit his website at <http://www.daemonology.net/bsdiff/>.
23
23
24
24
``` bash
25
25
pecl install bsdiff
26
+
27
+ # or, if you want to install it without the prompts (i.e., using default installation option(s)):
28
+ yes ' ' | pecl install bsdiff
26
29
```
27
30
28
- In case BZip2 can't be found automatically, use option ` -- with-bz2` to specify the installation directory of BZip2. e.g.,
31
+ In case BZip2 can't be found automatically, use option ` with-bz2 ` to specify the installation directory of BZip2. e.g.,
29
32
30
33
``` bash
31
- pecl install -D ' with-bz2="/usr/local/opt/bzip2"'
34
+ pecl install -D ' with-bz2="/usr/local/opt/bzip2"' bsdiff # If BZip2 is installed via Homebrew on MacOS.
32
35
```
33
36
34
37
## Manual Installation
@@ -50,7 +53,7 @@ extension=bsdiff.so
50
53
In case BZip2 can't be found automatically, use option ` --with-bz2 ` to specify the installation directory of BZip2. e.g.,
51
54
52
55
``` bash
53
- ./configure --with-bz2=/usr/local/opt/bzip2 # When BZip2 is installed via Homebrew on MacOS.
56
+ ./configure --with-bz2=/usr/local/opt/bzip2 # If BZip2 is installed via Homebrew on MacOS.
54
57
```
55
58
56
59
## Usage
You can’t perform that action at this time.
0 commit comments