mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Simplify configure test
The test for lz4.h used AC_CHECK_HEADERS, but nothing was using the resulting symbol HAVE_LZ4_H. Change this to use AC_CHECK_HEADER instead. This was probably an oversight, seeing that the nearby similar tests do this correctly.
This commit is contained in:
@ -373,9 +373,6 @@
|
||||
/* Define to 1 if `long long int' works and is 64 bits. */
|
||||
#undef HAVE_LONG_LONG_INT_64
|
||||
|
||||
/* Define to 1 if you have the <lz4.h> header file. */
|
||||
#undef HAVE_LZ4_H
|
||||
|
||||
/* Define to 1 if you have the <mbarrier.h> header file. */
|
||||
#undef HAVE_MBARRIER_H
|
||||
|
||||
|
@ -318,7 +318,6 @@ sub GenerateFiles
|
||||
HAVE_LOCALE_T => 1,
|
||||
HAVE_LONG_INT_64 => undef,
|
||||
HAVE_LONG_LONG_INT_64 => 1,
|
||||
HAVE_LZ4_H => undef,
|
||||
HAVE_MBARRIER_H => undef,
|
||||
HAVE_MBSTOWCS_L => 1,
|
||||
HAVE_MEMORY_H => 1,
|
||||
@ -541,7 +540,6 @@ sub GenerateFiles
|
||||
if ($self->{options}->{lz4})
|
||||
{
|
||||
$define{HAVE_LIBLZ4} = 1;
|
||||
$define{HAVE_LZ4_H} = 1;
|
||||
$define{USE_LZ4} = 1;
|
||||
}
|
||||
if ($self->{options}->{zstd})
|
||||
|
Reference in New Issue
Block a user