diff options
author | Greg Larkin <glarkin@FreeBSD.org> | 2013-07-17 19:27:53 +0000 |
---|---|---|
committer | Greg Larkin <glarkin@FreeBSD.org> | 2013-07-17 19:27:53 +0000 |
commit | 1da0d8ca92e2bf75848a88643ac814bea0941694 (patch) | |
tree | 10af22a5258fec74507b19ef43678971506e3554 /devel/gearmand-devel/files/patch-configure | |
parent | Mark DEPRECATED, until some has the time to look after it. (diff) |
Gearman provides a generic framework to farm out work to other
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/
Diffstat (limited to 'devel/gearmand-devel/files/patch-configure')
-rw-r--r-- | devel/gearmand-devel/files/patch-configure | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/devel/gearmand-devel/files/patch-configure b/devel/gearmand-devel/files/patch-configure new file mode 100644 index 000000000000..49219c48fe3f --- /dev/null +++ b/devel/gearmand-devel/files/patch-configure @@ -0,0 +1,40 @@ +--- ./configure.orig 2013-06-06 19:06:29.000000000 -0400 ++++ ./configure 2013-07-17 14:33:54.000000000 -0400 +@@ -17976,7 +17976,7 @@ + done + test -n "$CURL_CONFIG" || CURL_CONFIG="no" + +- if test "$CURL_CONFIG" == "no"; then : ++ if test "$CURL_CONFIG" = "no"; then : + + : + +@@ -17986,7 +17986,7 @@ + + else + +- if test x"" == x; then : ++ if test x"" = x; then : + + CURL_CFLAGS="`$CURL_CONFIG $curl_config_args --cflags`" + +@@ -17996,7 +17996,7 @@ + + fi + +- if test x"" == x; then : ++ if test x"" = x; then : + + CURL_LIBS="`$CURL_CONFIG $curl_config_args --libs`" + +@@ -23954,8 +23954,8 @@ + LIBS="$PTHREAD_LIBS" + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' +-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS -Werror conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS -Werror $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_c_compiler_gnu + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext |