node-sword-interface 1.0.115 → 1.0.116
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/binding.gyp +6 -0
- package/package.json +1 -1
package/binding.gyp
CHANGED
|
@@ -100,6 +100,12 @@
|
|
|
100
100
|
"conditions":[
|
|
101
101
|
["is_ios==1", {
|
|
102
102
|
"type": "shared_library",
|
|
103
|
+
# Exclude unzip sources from iOS build, because these symbols otherwise
|
|
104
|
+
# get duplicated with the unzip symbols in the static libsword.a.
|
|
105
|
+
"sources!": [
|
|
106
|
+
"src/lib/unzip/unzip.c",
|
|
107
|
+
"src/lib/unzip/ioapi.c"
|
|
108
|
+
],
|
|
103
109
|
'include_dirs': [
|
|
104
110
|
"<(module_root_dir)/src/sword_backend",
|
|
105
111
|
"<(module_root_dir)/src/lib",
|