summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorTom Lane2024-07-01 17:55:52 +0000
committerTom Lane2024-07-01 17:55:52 +0000
commitedadeb0710e838f6ce1f95973fae683a56fdba06 (patch)
tree05faefc07fcff0da2ed3e23c80af65159ac4d652 /contrib
parent7967d10c5b49ccb82f67a0b80678a1a932bccdee (diff)
Remove support for HPPA (a/k/a PA-RISC) architecture.
This old CPU architecture hasn't been produced in decades, and whatever instances might still survive are surely too underpowered for anyone to consider running Postgres on in production. We'd nonetheless continued to carry code support for it (largely at my insistence), because its unique implementation of spinlocks seemed like a good edge case for our spinlock infrastructure. However, our last buildfarm animal of this type was retired last year, and it seems quite unlikely that another will emerge. Without the ability to run tests, the argument that this is useful test code fails to hold water. Furthermore, carrying code support for an untestable architecture has costs not to be ignored. So, remove HPPA-specific code, in the same vein as commits 718aa43a4 and 92d70b77e. Discussion: https://postgr.es/m/3351991.1697728588@sss.pgh.pa.us
Diffstat (limited to 'contrib')
-rw-r--r--contrib/pgcrypto/crypt-blowfish.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pgcrypto/crypt-blowfish.c b/contrib/pgcrypto/crypt-blowfish.c
index 1264eccb3f2..5a1b1e10091 100644
--- a/contrib/pgcrypto/crypt-blowfish.c
+++ b/contrib/pgcrypto/crypt-blowfish.c
@@ -41,7 +41,7 @@
#ifdef __i386__
#define BF_ASM 0 /* 1 */
#define BF_SCALE 1
-#elif defined(__x86_64__) || defined(__hppa__)
+#elif defined(__x86_64__)
#define BF_ASM 0
#define BF_SCALE 1
#else