mirror of
https://github.com/postgres/postgres.git
synced 2026-02-03 20:40:14 -05:00
Ok. Here is a patch to make psql work on Win32 (as a console mode application, of course). It requires getopt.c to be in src/utils - works fine with the FreeBSD version of it. Also, the file win32.mak should go into src/bin/psql. |
||
|---|---|---|
| .. | ||
| getopt.c | ||
| Makefile | ||
| README | ||
| strdup.c | ||
| version.c | ||
The utils directory contains components that are used by multiple subsystems in the Postgres source tree. We don't want subsystems reaching into other subsystems' directories and messing with the modularity of the system, so we gather any cross-subsystem utilities here. In particular, programs that form an interface between subsystems go here.