summaryrefslogtreecommitdiff
path: root/libpq/version.h.in
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-11-30 22:37:25 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-12-06 15:11:04 +0300
commitf1f39911e0d2d88c98eae96a3eb14a53c664206f (patch)
tree4cf4e3a84d895f59323d3b6ab4bfab38b3cab489 /libpq/version.h.in
parentfc9499b8a7b7a3e350bfabf2cd6ae0bc13f04bea (diff)
Upgrade to 12.1
Diffstat (limited to 'libpq/version.h.in')
-rw-r--r--libpq/version.h.in26
1 files changed, 0 insertions, 26 deletions
diff --git a/libpq/version.h.in b/libpq/version.h.in
deleted file mode 100644
index af772da..0000000
--- a/libpq/version.h.in
+++ /dev/null
@@ -1,26 +0,0 @@
-/* file : libpq/version.h.in -*- C -*-
- * copyright : Copyright (c) 2016-2019 Code Synthesis Ltd
- * license : PostgreSQL License; see accompanying COPYRIGHT file
- */
-
-#ifndef PG_MAJORVERSION /* Note: using the version macro itself. */
-
-/*
- * Note that staring PostgreSQL 10 the release version schema changed (see
- * build/bootstrap.build for details).
- */
-#if $libpq.version.major$ < 10
-# define PG_MAJORVERSION "$libpq.version.major$.$libpq.version.minor$"
-#else
-# error "change PG_MAJORVERSION macro definition"
-# define PG_MAJORVERSION "$libpq.version.major$"
-#endif
-
-/*
- * Is valid for both old and new version schemes (see above).
- */
-#define PG_VERSION_NUM (10000 * $libpq.version.major$ + \
- 100 * $libpq.version.minor$ + \
- $libpq.version.patch$)
-
-#endif /* PG_MAJORVERSION */