diff options
| author | Andres Freund | 2022-12-06 19:25:54 +0000 |
|---|---|---|
| committer | Andres Freund | 2022-12-06 19:25:54 +0000 |
| commit | 79f7c482f6745959f7aeea4f7386fceb02ad8889 (patch) | |
| tree | 00f2920f57b14c41c8e9273ff78ef4e7765da4ac /src/port | |
| parent | a61b1f74823c9c4f79c95226a461f1e7a367764b (diff) | |
meson: Basic cygwin support
There likely are further issues, but as evidenced by the CI task proposed by
Justin in the referenced thread, this suffices to build and run basic tests in
cygwin (some fixes for the test infrastructure are needed, but that's
independent of the meson aspect).
Author: Justin Pryzby <pryzby@telsasoft.com>
Reviewed-by: Andres Freund <andres@anarazel.de>
Discussion: https://postgr.es/m/20221021034040.GT16921@telsasoft.com
Diffstat (limited to 'src/port')
| -rw-r--r-- | src/port/meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/port/meson.build b/src/port/meson.build index c2222696f1b..0ba83cc7930 100644 --- a/src/port/meson.build +++ b/src/port/meson.build @@ -40,6 +40,10 @@ if host_system == 'windows' 'win32setlocale.c', 'win32stat.c', ) +elif host_system == 'cygwin' + pgport_sources += files( + 'dirmod.c', + ) endif if cc.get_id() == 'msvc' |
