mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
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
268 B
C
11 lines
268 B
C
--- ./libtest/lite.h.orig 2013-07-17 14:36:43.000000000 -0400
|
|
+++ ./libtest/lite.h 2013-07-17 14:37:02.000000000 -0400
|
|
@@ -53,6 +53,8 @@
|
|
|
|
#if defined(WIN32)
|
|
# include <malloc.h>
|
|
+#elif defined(__FreeBSD__)
|
|
+# include <stdlib.h>
|
|
#else
|
|
# include <alloca.h>
|
|
#endif
|