sip-lab 1.12.35 → 1.12.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -15,18 +15,19 @@ TODO:
15
15
  - add suport for T.38 fax
16
16
  - add support for WebRTC
17
17
  - add support for video playing/recording from/to file
18
+ - use prebuildify-cross to support multiple OSs and OS versions.
18
19
 
19
20
  ### Installation
20
21
 
21
- This is an node.js addon and it is known to work on Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04, Debian 10 and Debian 11 (it is known to not work on Debian 8 unless the app is built locally).
22
- It is distributed with prebuild binaries for node.js 15.0.0 and above (but built for Debian 11).
22
+ This is an node.js addon and it is known to work on Debian 11, Debian 10, Ubuntu 22.04 and Ubuntu 20.04.
23
+ It is distributed with prebuild binaries for node.js 15.0.0 and above (but built for Debian 11. For other Debian versions or for Ubuntu a local built of the addon will be executed. Being the case, be patient as the build process will take several minutes to complete).
23
24
 
24
25
  To install it, first install some dependencies:
25
26
  ```
26
27
  apt install build-essential automake autoconf libtool libspeex-dev libopus-dev libsdl2-dev libavdevice-dev libswscale-dev libv4l-dev libopencore-amrnb-dev libopencore-amrwb-dev libvo-amrwbenc-dev libvo-amrwbenc-dev libboost-dev libtiff-dev libpcap-dev libssl-dev uuid-dev cmake
27
28
  ```
28
29
 
29
- Then install sip-lab:
30
+ Then install sip-lab (local build of the addon might be triggered here if this is not Debian 11):
30
31
  ```
31
32
  npm install sip-lab
32
33
  ```
@@ -0,0 +1,6 @@
1
+ #ifndef __SIPLAB_CONSTANTS_H__
2
+ #define __SIPLAB_CONSTANTS_H__
3
+
4
+ #define FAX_FLAG_TRANSMIT_ON_IDLE 1
5
+
6
+ #endif /* __SIPLAB_CONSTANTS_H__ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sip-lab",
3
- "version": "1.12.35",
3
+ "version": "1.12.37",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "engines": {
@@ -32,6 +32,7 @@
32
32
  "index.js",
33
33
  "binding.gyp",
34
34
  "build_deps.sh",
35
+ "include",
35
36
  "src",
36
37
  "README.md",
37
38
  "DEV.md",