Date: Wed, 7 Nov 2018 03:30:51 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r484381 - head/devel/gearmand Message-ID: <201811070330.wA73UpCx084383@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Wed Nov 7 03:30:51 2018 New Revision: 484381 URL: https://svnweb.freebsd.org/changeset/ports/484381 Log: devel/gearmand: drop duplicate USE_CXXSTD Building in C++11 or later (reverting r460065) doesn't work yet: libgearman/client.cc:580:71: error: comparison between pointer and integer ('gearman_connection_st *' and 'int') if (gearman_connection_create_args(client->universal, host, port) == false) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~~ libgearman/client.cc:891:18: error: comparison between pointer and integer ('bool *' and 'int') if (is_known == false and is_running == false) ~~~~~~~~ ^ ~~~~~ libgearman/client.cc:891:42: error: comparison between pointer and integer ('bool *' and 'int') if (is_known == false and is_running == false) ~~~~~~~~~~ ^ ~~~~~ PR: 231743 Pointy hat to: linimon Modified: head/devel/gearmand/Makefile (contents, props changed) Modified: head/devel/gearmand/Makefile ============================================================================== --- head/devel/gearmand/Makefile Wed Nov 7 03:24:59 2018 (r484380) +++ head/devel/gearmand/Makefile Wed Nov 7 03:30:51 2018 (r484381) @@ -21,7 +21,6 @@ USERS= gearmand GROUPS= gearmand USES= compiler:c++11-lang pathfix gmake perl5 python:build libtool -USE_CXXSTD= c++11 USE_PERL5= build GNU_CONFIGURE= yes USE_LDCONFIG= yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811070330.wA73UpCx084383>