Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / by-name / li / libgpiod_1 / 0001-Drop-AC_FUNC_MALLOC-and-_REALLOC-and-check-for-them-.patch
blobf2ee8e8d3d730a54cb19b1e89581e4e200349031
1 From 2cc80dc06ea42087788cf27b31821ffa99a22f89 Mon Sep 17 00:00:00 2001
2 From: Johannes Lode <johannes.lode@dynainstruments.com>
3 Date: Thu, 14 Nov 2019 10:44:00 +0100
4 Subject: [PATCH] Drop AC_FUNC_MALLOC and _REALLOC and check for them as
5 regular functions.
7 While cross-compiling there occurred "undefined reference to
8 `rpl_malloc'", the suggested change fixes the problem.
10 Tested for native X86_64 and armv7a-unknown-linux-gnueabihf.
11 ---
12 configure.ac | 3 ++-
13 1 file changed, 2 insertions(+), 1 deletion(-)
15 diff --git a/configure.ac b/configure.ac
16 index 008499d..b492dc4 100644
17 --- a/configure.ac
18 +++ b/configure.ac
19 @@ -81,7 +81,8 @@ AC_DEFUN([HEADER_NOT_FOUND_CXX],
21 # This is always checked (library needs this)
22 AC_HEADER_STDC
23 -AC_FUNC_MALLOC
24 +# AC_FUNC_MALLOC -- does not work while cross-compiling
25 +AC_CHECK_FUNC([malloc realloc])
26 AC_CHECK_FUNC([ioctl], [], [FUNC_NOT_FOUND_LIB([ioctl])])
27 AC_CHECK_FUNC([asprintf], [], [FUNC_NOT_FOUND_LIB([asprintf])])
28 AC_CHECK_FUNC([scandir], [], [FUNC_NOT_FOUND_LIB([scandir])])
29 --
30 2.25.1