]> git.meshlink.io Git - catta/commitdiff
Disable AC_FUNC_MALLOC and AC_FUNC_REALLOC
authorTed Percival <ted@tedp.net>
Sat, 26 Apr 2008 11:55:04 +0000 (11:55 +0000)
committerTed Percival <ted@tedp.net>
Sat, 26 Apr 2008 11:55:04 +0000 (11:55 +0000)
because they cause unnecessary build failures

Closes #196

git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1780 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe

configure.ac

index 65e5367a8e6d8c68ffb96012b8cfd265bd66097a..5590fddd41a9d7f8c3c8cbe2b553702baf60a56f 100644 (file)
@@ -353,8 +353,10 @@ AC_HEADER_SYS_WAIT
 # Checks for library functions.
 AC_FUNC_MEMCMP
 AC_FUNC_SELECT_ARGTYPES
-AC_FUNC_MALLOC
-AC_FUNC_REALLOC
+# avahi_malloc actually returns NULL for avahi_malloc(0), so it does not matter
+# whether libc's malloc does too. (Same for realloc.)
+#AC_FUNC_MALLOC
+#AC_FUNC_REALLOC
 AC_CHECK_FUNCS([gethostname memchr memmove memset mkdir select socket strchr strcspn strdup strerror strrchr strspn strstr uname setresuid setreuid setresgid setregid strcasecmp gettimeofday putenv strncasecmp strlcpy gethostbyname seteuid setegid setproctitle getprogname])
 
 AC_FUNC_CHOWN