Browse Source

Add the new_postgres script

master
Jonathan "Duke" Leto 13 years ago
parent
commit
c2c1452981
  1. 21
      bin/new_postgres

21
bin/new_postgres

@ -0,0 +1,21 @@
#!/bin/sh
#--with-perl \
#--with-libxml \
if ["$CC" -eq ""]; then
CC=cc
fi
ccache --version
if [ $? -eq 0 ]; then
CC="ccache $CC"
fi
./configure \
--prefix=$PG_PREFIX \
--with-pgport=$PGPORT \
--enable-debug \
--enable-cassert
Loading…
Cancel
Save