diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-03-16 16:59:26 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-03-16 16:59:26 +0100 |
commit | dd45a599ad9fd7765c9664877f21e018fa56c8a0 (patch) | |
tree | 4ce77a573822055fd935de2c5f7ec134221b78ec | |
parent | ff828d5709195ff8ae4cae8a2874e06446d9f622 (diff) | |
download | sciteco-dd45a599ad9fd7765c9664877f21e018fa56c8a0.tar.gz |
removed check for glibc-compatible malloc and realloc
the MSVCRT versions are not glibc-compatible and we do not
actually need glibc compatible versions, as all allocations
are done through the libglib wrappers.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index c0402a9..85ab660 100644 --- a/configure.ac +++ b/configure.ac @@ -103,8 +103,6 @@ AC_TYPE_SIZE_T # Checks for library functions. # They must exist on every target system. -AC_FUNC_MALLOC -AC_FUNC_REALLOC AC_CHECK_FUNCS([memset setlocale strchr strrchr fstat], , [ AC_MSG_ERROR([Missing libc function]) ]) |