machines or dispatch function calls to machines that are better suited to do the work. It allows you to do work in parallel, to load balance processing, and to call functions between languages. It can be used in a variety of applications, from high-availability web sites to the transport for database replication. WWW: http://www.gearman.org/
11 lines
283 B
C++
11 lines
283 B
C++
--- ./libgearman-server/log.cc.orig 2013-06-05 15:55:41.000000000 -0400
|
|
+++ ./libgearman-server/log.cc 2013-07-17 14:33:54.000000000 -0400
|
|
@@ -56,6 +56,8 @@
|
|
|
|
#ifdef _WIN32
|
|
# include <malloc.h>
|
|
+#elif defined(__FreeBSD__)
|
|
+# include <stdlib.h>
|
|
#else
|
|
# include <alloca.h>
|
|
#endif
|