From: Paul Floyd Date: Tue, 12 Oct 2021 21:04:52 +0000 (+0200) Subject: Previous fix was out by one version tag. X-Git-Tag: VALGRIND_3_18_0~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5675b90cc07ca30a18ea653f51fb4973e0f73ff9;p=thirdparty%2Fvalgrind.git Previous fix was out by one version tag. memalign must have been added with FreeBSD 12.2 --- diff --git a/memcheck/tests/memalign2.c b/memcheck/tests/memalign2.c index c5a8b0e07c..a7bdb34c5d 100644 --- a/memcheck/tests/memalign2.c +++ b/memcheck/tests/memalign2.c @@ -31,7 +31,7 @@ int main ( void ) int res; assert(sizeof(long int) == sizeof(void*)); -#if !defined(VGO_freebsd) || (FREEBSD_VERS >= FREEBSD_12) +#if !defined(VGO_freebsd) || (FREEBSD_VERS >= FREEBSD_12_2) // Check behaviour of memalign/free for big alignment. // In particular, the below aims at checking that a // superblock with a big size is not marked as reclaimable