mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 14:56:46 +02:00
It cannot be built against older libpq, so we have to build it as the default version right away. ld: ../../../src/fe_utils/libpgfeutils.a(connect_utils.o): in function `disconnectDatabase': connect_utils.c:(.text+0x35d): undefined reference to `PQcancelCreate' ld: connect_utils.c:(.text+0x369): undefined reference to `PQcancelBlocking' ld: connect_utils.c:(.text+0x372): undefined reference to `PQcancelFinish' Co-Authored-By: Jakub Jirutka <jakub@jirutka.cz>
12 lines
214 B
Bash
12 lines
214 B
Bash
#!/bin/sh
|
|
|
|
majorver=${1%%.*}
|
|
|
|
cat >&2 <<EOF
|
|
*
|
|
* If you want to use JIT in PostgreSQL, install postgresql$majorver-jit or
|
|
* postgresql-jit (if you didn't install specific major version of postgresql).
|
|
*
|
|
EOF
|
|
|
|
exit 0
|