From f1f39911e0d2d88c98eae96a3eb14a53c664206f Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Sat, 30 Nov 2019 22:37:25 +0300 Subject: Upgrade to 12.1 --- libpq/libpq/pg_config_os.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 libpq/libpq/pg_config_os.h (limited to 'libpq/libpq/pg_config_os.h') diff --git a/libpq/libpq/pg_config_os.h b/libpq/libpq/pg_config_os.h new file mode 100644 index 0000000..e616265 --- /dev/null +++ b/libpq/libpq/pg_config_os.h @@ -0,0 +1,21 @@ +/* file : libpq/pg_config_os.h -*- C -*- + * copyright : Copyright (c) 2016-2019 Code Synthesis Ltd + * license : PostgreSQL License; see accompanying COPYRIGHT file + */ + +/* + * The upstream package makefile creates this file as a symlink to the + * target-specific header in src/include/port/. + */ + +#if defined(__linux__) +# include +#elif defined(__FreeBSD__) +# include +#elif defined(__APPLE__) +# include +#elif defined(_WIN32) +# include +#else +# error this OS is not supported +#endif -- cgit v1.1