From: ng0 Date: Wed, 11 Sep 2019 13:21:55 +0000 (+0000) Subject: align.m4: Add stdlib.h explicitly to make the test pass on NetBSD. X-Git-Tag: v0.11.7~118 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=34055eec1e9bcb71537067367a93989c021fadc6;p=oweals%2Fgnunet.git align.m4: Add stdlib.h explicitly to make the test pass on NetBSD. Should not be problematic, every system we support right now has a stdlib. --- diff --git a/m4/align.m4 b/m4/align.m4 index 7bcbae8fa..57ffee7fc 100644 --- a/m4/align.m4 +++ b/m4/align.m4 @@ -13,7 +13,10 @@ AC_DEFUN([AC_UNALIGNED_64_ACCESS], [AC_CACHE_CHECK([whether unaligned 64-bit access works], ac_cv_unaligned_64_access, [ - AC_RUN_IFELSE([AC_LANG_PROGRAM([[struct S { int a,b,c;};]], + AC_RUN_IFELSE([AC_LANG_PROGRAM([[ + #include + struct S { int a,b,c;}; + ]], [[struct S s = {0,0,0}; long long * p = (long long *) &s.b; void *bp = malloc (50); long long x = *p;