You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, we have to meet some requirements. This means we need to install the `phpize` command. The `phpize` command is used to prepare the build environment for a PHP extension.
7
+
Install the `phpize` command. This is usually done by installing the `php7-devel` package using the system's package manager.
8
+
For OpenSuse use
9
+
```
10
+
$ zypper in php7-devel
11
+
```
12
+
13
+
Now make sure you provide the fbclient.so and the header files (ibase.h). These are needed to compile. You can specify the include path for the ibase.h file with CPPFLAGS as you can see in the following listing.
0 commit comments