aboutsummaryrefslogtreecommitdiff
path: root/www/nginx-devel/files/extra-patch-ngx_postgres-config
blob: e7440eb360f711cf788646d3ffed9e1f752f9312 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- ../ngx_postgres-1.0rc5-1-g49855a0/config.orig	2015-05-26 20:52:25.649166000 +0300
+++ ../ngx_postgres-1.0rc5-1-g49855a0/config	2015-05-26 20:53:10.331122000 +0300
@@ -48,12 +48,12 @@
 
     if [ $ngx_found = no ]; then
         # FreeBSD
-        ngx_feature="libpq library in /usr/local/"
-        ngx_feature_path="/usr/local/include"
+        ngx_feature="libpq library in %%PREFIX%%/"
+        ngx_feature_path="%%PREFIX%%/include"
         if [ $NGX_RPATH = YES ]; then
-            ngx_feature_libs="-R/usr/local/lib -L/usr/local/lib -lpq"
+            ngx_feature_libs="-R%%PREFIX%%/lib -L%%PREFIX%%/lib -lpq"
         else
-            ngx_feature_libs="-L/usr/local/lib -lpq"
+            ngx_feature_libs="-L%%PREFIX%%/lib -lpq"
         fi
         . auto/feature
     fi