]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
r13971@tombo: nickm | 2008-01-30 14:25:25 -0500
authorNick Mathewson <nickm@torproject.org>
Wed, 30 Jan 2008 19:25:31 +0000 (19:25 +0000)
committerNick Mathewson <nickm@torproject.org>
Wed, 30 Jan 2008 19:25:31 +0000 (19:25 +0000)
 Write a new autoconf macro to test whether a function is declared. It is suboptimal and possibly buggy in some way, but it seems to work for me.  use it to test for a declaration of malloc_good_size, so we can workaround operating systems (like older OSX) that have the function in their libc but do not deign to declare it in their headers.  Should resolve bug 587.

svn:r13339

ChangeLog
acinclude.m4
configure.in
src/common/util.c

index fd92d71fd1f21d9cb3e84b1647cbbdf5253adcf0..6d93eef1cc02eef6ab09424bcea887266de8208f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,9 @@ Changes in version 0.2.0.19-alpha - 2008-0?-??
       recognize them.  Fixes bug 571.  Bugfix on 0.2.0.x.
     - Stop recommending that every server operator send mail to tor-ops.
       Resolves bug 597.  Bugfix on 0.1.2.x.
+    - Detect version of OSX where malloc_good_size is present in the
+      library but never actually declared.  Resolves bug 587.  Bugfix
+      on 0.2.0.x.
 
 
 Changes in version 0.2.0.18-alpha - 2008-01-25
index 7f27afd5a36b895409cf8d16d4abf5f51bb83e4b..fb2eba834d7b71c6b1fb8c0323b0a9f103193c68 100644 (file)
@@ -193,3 +193,17 @@ CPPFLAGS="$tor_saved_CPPFLAGS"
 
 ]) dnl end defun
 
+dnl Check whether the prototype for a function is present or missing.
+dnl Apple has a nasty habit of putting functions in their libraries (so that
+dnl AC_CHECK_FUNCS passes) but not actually declaring them in the headers.
+dnl
+dnl TOR_CHECK_PROTYPE(1:functionname, 2:macroname, 2: includes)
+AC_DEFUN([TOR_CHECK_PROTOTYPE], [
+ AC_CACHE_CHECK([for declaration of $1], tor_cv_$1_declared, [
+   AC_COMPILE_IFELSE(AC_LANG_PROGRAM([$3],[void *ptr= $1 ;]),
+                     tor_cv_$1_declared=yes,tor_cv_$1_declared=no)])
+if test x$tor_cv_$1_declared != xno ; then
+  AC_DEFINE($2, 1,
+       [Defined if the prototype for $1 seems to be present.])
+fi
+])
\ No newline at end of file
index c7580eafa30a1bc22cdbe2e4d13ef194d31cb9d0..8e675a6d3ffef4aebce422d764937e3818ba0dec 100644 (file)
@@ -275,6 +275,14 @@ dnl These headers are not essential
 
 AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/param.h sys/wait.h limits.h sys/limits.h netinet/in.h arpa/inet.h machine/limits.h syslog.h sys/time.h sys/resource.h inttypes.h utime.h sys/utime.h sys/mman.h netintet/in.h netinet/in6.h malloc.h sys/syslimits.h malloc/malloc.h)
 
+TOR_CHECK_PROTOTYPE(malloc_good_size, HAVE_MALLOC_GOOD_SIZE_PROTOTYPE,
+[#ifdef HAVE_MALLOC_H
+#include <malloc.h>
+#endif
+#ifdef HAVE_MALLOC_MALLOC_H
+#include <malloc/malloc.h>
+#endif])
+
 AC_CHECK_HEADERS(net/if.h, net_if_found=1, net_if_found=0,
 [#ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
index 8f08c9b6afc4c9642a55f17e107b0f173efd36cc..0623093e64f0038771d2373d603f481dd88bfbb0 100644 (file)
@@ -224,6 +224,14 @@ _tor_free(void *mem)
   tor_free(mem);
 }
 
+#if defined(HAVE_MALLOC_GOOD_SIZE) && !defined(HAVE_MALLOC_GOOD_SIZE_PROTOTYPE)
+/* Some version of Mac OSX have malloc_good_size in their libc, but not
+ * actually defined in malloc/malloc.h.  We detect this and work around it by
+ * prototyping.
+ */
+extern size_t malloc_good_size(size_t size);
+#endif
+
 /** Allocate and return a chunk of memory of size at least *<b>size</p>, using
  * the same resources we would use to malloc *<b>sizep</b>.  Set *<b>sizep</b>
  * to the number of usable bytes in the chunk of memory. */