From owner-svn-ports-all@freebsd.org Sun Jan 1 19:32:10 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D95E4C92A1F; Sun, 1 Jan 2017 19:32:10 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8F23F1512; Sun, 1 Jan 2017 19:32:10 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v01JW9Bb057779; Sun, 1 Jan 2017 19:32:09 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v01JW9DT057778; Sun, 1 Jan 2017 19:32:09 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201701011932.v01JW9DT057778@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 1 Jan 2017 19:32:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430275 - head/cad/linuxcnc-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jan 2017 19:32:11 -0000 Author: antoine Date: Sun Jan 1 19:32:09 2017 New Revision: 430275 URL: https://svnweb.freebsd.org/changeset/ports/430275 Log: - Fix configure - Mark broken: fails to build hal/user_comps/mb2hal/mb2hal.c:362:63: error: too few arguments to function call, expected 3, have 2 modbus_set_response_timeout(this_mb_link->modbus, &timeout); ~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ /usr/local/include/modbus/modbus.h:185:12: note: 'modbus_set_response_timeout' declared here MODBUS_API int modbus_set_response_timeout(modbus_t *ctx, uint32_t to_sec, uint32_t to_usec); ^ hal/user_comps/mb2hal/mb2hal.c:369:59: error: too few arguments to function call, expected 3, have 2 modbus_set_byte_timeout(this_mb_link->modbus, &timeout); ~~~~~~~~~~~~~~~~~~~~~~~ ^ /usr/local/include/modbus/modbus.h:188:12: note: 'modbus_set_byte_timeout' declared here MODBUS_API int modbus_set_byte_timeout(modbus_t *ctx, uint32_t to_sec, uint32_t to_usec); ^ Modified: head/cad/linuxcnc-devel/Makefile Modified: head/cad/linuxcnc-devel/Makefile ============================================================================== --- head/cad/linuxcnc-devel/Makefile Sun Jan 1 19:30:37 2017 (r430274) +++ head/cad/linuxcnc-devel/Makefile Sun Jan 1 19:32:09 2017 (r430275) @@ -11,6 +11,8 @@ COMMENT= Open Source CNC machine control LICENSE= GPLv2 +BROKEN= fails to build, too few arguments to modbus_set_response_timeout + LIB_DEPENDS= libBLT25.so:x11-toolkits/blt \ libboost_python.so:devel/boost-python-libs \ libfontconfig.so:x11-fonts/fontconfig \ @@ -33,7 +35,10 @@ PATCH_WRKSRC= ${WRKDIR}/linuxcnc-${GH_TA ALL_TARGET= default GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-realtime=uspace --enable-non-distributable=yes CFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" CXXFLAGS="-I${LOCALBASE}/include" CXX=c++ CC=cc --with-locale-dir="${PREFIX}/share/locale" +CONFIGURE_ARGS= --with-realtime=uspace --enable-non-distributable=yes \ + CFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" \ + CXXFLAGS="-I${LOCALBASE}/include" CXX=c++ CC=cc \ + --with-locale-dir="${PREFIX}/share/locale" --with-python=${PYTHON_CMD} MAKE_ENV= BUILD_VERBOSE=1 USES= autoreconf gettext gmake ncurses pkgconfig python readline shebangfix tk USE_GL= gl glu