This commit is contained in:
TMA 2026-03-14 23:57:41 +01:00
parent bfaffa88bd
commit 856c8472d6
3 changed files with 13 additions and 6 deletions

7
prepare.sh Normal file
View file

@ -0,0 +1,7 @@
#!/bin/sh
apt source libpq-dev
cd postgresql-[0-9]*/
./configure --without-readline --with-openssl
make -C src/common/ && make -C src/port && make -C src/interfaces/libpq/
cp src/common/libpgcommon.a src/port/libpgport.a src/interfaces/libpq/libpq.a ..