File tree 4 files changed +1
-12
lines changed
4 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -14103,19 +14103,13 @@ $as_echo "$LZ4" >&6; }
14103
14103
fi
14104
14104
14105
14105
if test "$with_lz4" = yes; then
14106
- for ac_header in lz4.h
14107
- do :
14108
14106
ac_fn_c_check_header_mongrel "$LINENO" "lz4.h" "ac_cv_header_lz4_h" "$ac_includes_default"
14109
14107
if test "x$ac_cv_header_lz4_h" = xyes; then :
14110
- cat >>confdefs.h <<_ACEOF
14111
- #define HAVE_LZ4_H 1
14112
- _ACEOF
14113
14108
14114
14109
else
14115
14110
as_fn_error $? "lz4.h header file is required for LZ4" "$LINENO" 5
14116
14111
fi
14117
14112
14118
- done
14119
14113
14120
14114
fi
14121
14115
Original file line number Diff line number Diff line change 1525
1525
1526
1526
PGAC_PATH_PROGS(LZ4, lz4)
1527
1527
if test "$with_lz4" = yes; then
1528
- AC_CHECK_HEADERS ( lz4.h , [ ] , [ AC_MSG_ERROR ( [ lz4.h header file is required for LZ4] ) ] )
1528
+ AC_CHECK_HEADER ( lz4.h , [ ] , [ AC_MSG_ERROR ( [ lz4.h header file is required for LZ4] ) ] )
1529
1529
fi
1530
1530
1531
1531
PGAC_PATH_PROGS(ZSTD, zstd)
Original file line number Diff line number Diff line change 373
373
/* Define to 1 if `long long int' works and is 64 bits. */
374
374
#undef HAVE_LONG_LONG_INT_64
375
375
376
- /* Define to 1 if you have the <lz4.h> header file. */
377
- #undef HAVE_LZ4_H
378
-
379
376
/* Define to 1 if you have the <mbarrier.h> header file. */
380
377
#undef HAVE_MBARRIER_H
381
378
Original file line number Diff line number Diff line change @@ -318,7 +318,6 @@ sub GenerateFiles
318
318
HAVE_LOCALE_T => 1,
319
319
HAVE_LONG_INT_64 => undef ,
320
320
HAVE_LONG_LONG_INT_64 => 1,
321
- HAVE_LZ4_H => undef ,
322
321
HAVE_MBARRIER_H => undef ,
323
322
HAVE_MBSTOWCS_L => 1,
324
323
HAVE_MEMORY_H => 1,
@@ -541,7 +540,6 @@ sub GenerateFiles
541
540
if ($self -> {options }-> {lz4 })
542
541
{
543
542
$define {HAVE_LIBLZ4 } = 1;
544
- $define {HAVE_LZ4_H } = 1;
545
543
$define {USE_LZ4 } = 1;
546
544
}
547
545
if ($self -> {options }-> {zstd })
You can’t perform that action at this time.
0 commit comments