8000
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.
1 parent b8ddf44 commit b17a92fCopy full SHA for b17a92f
src/build
@@ -0,0 +1,26 @@
1
+#!/bin/sh
2
+#
3
+# PostgreSQL Build Script
4
5
+if echo '\c' | grep -s c >/dev/null 2>&1
6
+then
7
+ ECHO_N="echo -n"
8
+ ECHO_C=""
9
+else
10
+ ECHO_N="echo"
11
+ ECHO_C='\c'
12
+fi
13
+
14
+$ECHO_N "Additional directories to search for library files []: $ECHO_C"
15
+read a
16
+if [ "$a." = "." ]
17
18
+ ADD_LIB_DIRS=
19
20
+ ADD_LIB_DIRS=`echo "$a" | sed 's@ *@ @g; s@^\([^ ]\)@-L\1@; s@ \([^ ]\)@ -L\1@g'`
21
+ LDFLAGS=$ADD_LIB_DIRS
22
+ export LDFLAGS
23
24
25
+./configure
26
0 commit comments