We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8ce808d + 8cfefb1 commit e8f7649Copy full SHA for e8f7649
binding.gyp
@@ -6,18 +6,6 @@
6
'src/binding.cc'
7
],
8
'conditions' : [
9
- ['OS=="mac"', {
10
- 'include_dirs': ['<!@(pg_config --includedir)'],
11
- 'libraries' : ['-lpq -L<!@(pg_config --libdir)']
12
- }],
13
- ['OS=="linux"', {
14
15
16
17
- ['OS=="solaris"', {
18
19
20
21
['OS=="win"', {
22
'include_dirs': ['<!@(pg_config --includedir)'],
23
'libraries' : ['libpq.lib'],
@@ -28,6 +16,9 @@
28
]
29
},
30
}
+ }, { # OS!="win"
+ 'include_dirs': ['<!@(pg_config --includedir)'],
+ 'libraries' : ['-lpq -L<!@(pg_config --libdir)']
31
}]
32
33
24
0 commit comments