summaryrefslogtreecommitdiff
path: root/libpq/libpq/pg_config_os.h
blob: c3299fef6f1dd6e09529e75589563d86cae1c9fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* file      : libpq/pg_config_os.h -*- C -*-
 * 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 <include/port/linux.h>
#elif defined(__FreeBSD__)
#  include <include/port/freebsd.h>
#elif defined(__APPLE__)
#  include <include/port/darwin.h>
#elif defined(_WIN32)
#  include <include/port/win32.h>
#else
#  error this OS is not supported
#endif