#!/usr/bin/sh
case "$1" in
  --bindir) echo "/vortex/2025-12/i686-w64-mingw32/sys-root/mingw/bin" ;;
  --docdir) echo "/vortex/2025-12/i686-w64-mingw32/sys-root/mingw/share/doc/postgresql" ;;
  --htmldir) echo "/vortex/2025-12/i686-w64-mingw32/sys-root/mingw/share/doc/postgresql/html" ;;
  --includedir) echo "/vortex/2025-12/i686-w64-mingw32/sys-root/mingw/include" ;;
  --includedir-server) echo "/vortex/2025-12/i686-w64-mingw32/sys-root/mingw/include/postgresql/server" ;;
  --libdir) echo "/vortex/2025-12/i686-w64-mingw32/sys-root/mingw/lib" ;;
  --pkglibdir) echo "/vortex/2025-12/i686-w64-mingw32/sys-root/mingw/lib/postgresql" ;;
  --pkgincludedir) echo "/vortex/2025-12/i686-w64-mingw32/sys-root/mingw/include" ;;
  --sharedir) echo "/vortex/2025-12/i686-w64-mingw32/sys-root/mingw/share/postgresql" ;;
  --sysconfdir) echo "/vortex/2025-12/i686-w64-mingw32/sys-root/mingw/etc" ;;
  --version) echo "PostgreSQL 18.3" ;;
  --cppflags|--ldflags) echo "" ;;
  --libs) echo "-lpq" ;;
  --configure) echo "--host=i686-w64-mingw32 --with-openssl --with-zlib" ;;
  *) echo "Usage: pg_config [OPTION]" >&2; exit 1 ;;
esac
