39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#======================================================================
if [[ ! $(ls /usr/lib/*/libpq.*) ]];then
echo "Postgresql build needed."
echo "BUILD_POSTGRES=yes" >> makefile.inc
fi
if [[ ! $(ls /usr/lib/libsqlite3.*) ]];then
echo "Sqlite3 build needed."
echo "BUILD_SQLITE3=yes" >> makefile.inc
fi
}
#======================================================================
|
|
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#======================================================================
if [[ ! $(ls /usr/lib/*/libpq.*) ]];then
echo "Postgresql build needed."
echo "BUILD_POSTGRES=yes" >> makefile.inc
fi
if [[ ! $(ls /usr/lib/*/libsqlite3.*) ]];then
echo "Sqlite3 build needed."
echo "BUILD_SQLITE3=yes" >> makefile.inc
fi
}
#======================================================================
|