mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
ce38b62c9b
Update from 17.00.0004 (2024-12-09) to 18.00.0001 (2026-03-23). This is a major version bump to the 18.x series, aligning with PostgreSQL 18 support. Switch from a fixed git commit to the 18.00.0001 tagged release. Add test.sh to verify the psqlodbca and psqlodbcw shared libraries are present after installation. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
13 lines
265 B
Bash
13 lines
265 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
psqlodbca)
|
|
[ -f /usr/lib/psqlodbca.so ] || { echo "FAIL: psqlodbca.so not found"; exit 1; }
|
|
echo "psqlodbca OK"
|
|
;;
|
|
psqlodbcw)
|
|
[ -f /usr/lib/psqlodbcw.so ] || { echo "FAIL: psqlodbcw.so not found"; exit 1; }
|
|
echo "psqlodbcw OK"
|
|
;;
|
|
esac
|