Browse Source

postgresql: enhanced .conf to build without readline if not installed

karasz/new-early
Alejandro Mery 16 years ago
parent
commit
a7d6fb58f8
  1. 6
      database/postgresql/postgresql.conf

6
database/postgresql/postgresql.conf

@ -41,6 +41,12 @@ for x in openssl perl python; do
fi
done
for x in readline; do
if ! pkginstalled $x; then
var_append extraconfopt " " "--without-$x"
fi
done
postgresql_pm() {
# Create the data directory
mkdir -p $root/$localstatedir/data

Loading…
Cancel
Save