mirror of
https://github.com/openwrt/packages.git
synced 2025-12-26 11:16:31 +04:00
Switch to new major version 16.
Use meson to build for target, however, old autotools-style configure is
needed to clean the source directory before being able to run meson, and
host build of the timezone compiler ('zic') also still requires using the
old build system.
See also https://www.postgresql.org/docs/16/release-16.html
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
18 lines
627 B
Diff
18 lines
627 B
Diff
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -2124,10 +2124,10 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
|
|
# First check if __crc32c* intrinsics can be used with the default compiler
|
|
# flags. If not, check if adding -march=armv8-a+crc flag helps.
|
|
# CFLAGS_CRC is set if the extra flag is required.
|
|
-PGAC_ARMV8_CRC32C_INTRINSICS([])
|
|
-if test x"$pgac_armv8_crc32c_intrinsics" != x"yes"; then
|
|
- PGAC_ARMV8_CRC32C_INTRINSICS([-march=armv8-a+crc])
|
|
-fi
|
|
+#PGAC_ARMV8_CRC32C_INTRINSICS([])
|
|
+#if test x"$pgac_armv8_crc32c_intrinsics" != x"yes"; then
|
|
+# PGAC_ARMV8_CRC32C_INTRINSICS([-march=armv8-a+crc])
|
|
+#fi
|
|
|
|
AC_SUBST(CFLAGS_CRC)
|
|
|