Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -2923,7 +2923,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
PG_PACKAGE_VERSION=14.7



ac_aux_dir=
for ac_dir in config "$srcdir"/config; do
if test -f "$ac_dir/install-sh"; then
Expand Down
5 changes: 5 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1636,6 +1636,11 @@ if test "$with_mdblocales" = yes; then
[AC_MSG_ERROR([mdblocales library not found])])
fi

if test "$with_mdblocales" = yes; then
AC_CHECK_LIB(mdblocales, mdb_setlocale, [],
[AC_MSG_ERROR([mdblocales library not found])])
fi

if test "$enable_external_fts" = yes; then
AC_CHECK_LIB(jansson, jansson_version_str, [],
[AC_MSG_ERROR([jansson library not found or version is too old, version must >= 2.13])])
Expand Down
1 change: 1 addition & 0 deletions gpcontrib/gpcloud/include/compress_writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "s3macros.h"
#include "writer.h"


// 2MB by default
extern uint64_t S3_ZIP_COMPRESS_CHUNKSIZE;

Expand Down
2 changes: 1 addition & 1 deletion src/test/regress/output/misc.source
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,6 @@ CONTEXT: SQL function "equipment" during startup
SELECT mdb_locale_enabled();
mdb_locale_enabled
--------------------
f
t
(1 row)

Loading