aboutsummaryrefslogtreecommitdiff
path: root/libs/postgresql/patches/700-no-arm-crc-march-change.patch
Commit message (Collapse)AuthorAge
* postgresql: update to version 15.3Daniel Golle2023-08-05
| | | | | | | | | | | Fixes security issues: * CVE-2023-2454 * CVE-2023-2455 See release notes for details: https://www.postgresql.org/about/news/postgresql-153-148-1311-1215-and-1120-released-2637/ Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* postgresql: update to version 15.1Daniel Golle2023-01-14
| | | | | | | | | | | | | https://www.postgresql.org/docs/release/15.0/ https://www.postgresql.org/docs/release/15.1/ A dump/restore using pg_dumpall or use of pg_upgrade or logical replication is required for those wishing to migrate data from any previous release. Do not backport to release branch which should remain on version 14. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* postgresql: update to version 14.6Daniel Golle2022-12-20
| | | | | | | | This release contains a variety of fixes from 14.5. See https://www.postgresql.org/docs/release/14.6/ for details. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* postgresql: update to version 14.5Daniel Golle2022-09-07
| | | | | | | | | Release date: 2022-08-11 Adresses CVE-2022-2625. For more details, please see the release notes[1]. [1]: https://www.postgresql.org/docs/release/14.5/ Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* postgresql: update to 14.2Daniel Golle2022-03-18
| | | | | | | | Minor release with a large number of fixes and small changes. See release notes[1] for details. [1]: https://www.postgresql.org/docs/release/14.2/ Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* postgresql: update to version 14.0Daniel Golle2021-10-09
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* postgresql: prevent addition of ARM target flagSebastian Kemper2021-07-07
configure.in checks for "ARMv8 CRC32C intrinsics" and goes as far as adding "-march=armv8-a+crc" to the target flags if the compiler allows it. This can clash with the OpenWrt target flags in CONFIG_TARGET_OPTIMIZATION. If for example the latter is set to "-mcpu=cortex-a9" the following warning is issued: cc1: warning: switch '-mcpu=cortex-a9' conflicts with '-march=armv5t' switch This commit prevents configure.in from adding the mentioned flag. The addition is unwanted when cross-compiling. An issue was raised for this recently, see [1]. [1] https://github.com/openwrt/packages/issues/16034 Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>