From owner-svn-ports-head@FreeBSD.ORG Sat Nov 9 12:30:29 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 14F05559; Sat, 9 Nov 2013 12:30:29 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DCCA72B3D; Sat, 9 Nov 2013 12:30:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA9CUS69064887; Sat, 9 Nov 2013 12:30:28 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA9CUSN1064885; Sat, 9 Nov 2013 12:30:28 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201311091230.rA9CUSN1064885@svn.freebsd.org> From: William Grzybowski Date: Sat, 9 Nov 2013 12:30:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333284 - in head/sysutils/heartbeat: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Nov 2013 12:30:29 -0000 Author: wg Date: Sat Nov 9 12:30:28 2013 New Revision: 333284 URL: http://svnweb.freebsd.org/changeset/ports/333284 Log: sysutils/heartbeat: fix build without gcc - Fix build without gcc - Convert lib depends to new format [1] PR: ports/183800 Submitted by: maintainer, wg [1] Added: head/sysutils/heartbeat/files/patch-tools-Makefile.am (contents, props changed) Modified: head/sysutils/heartbeat/Makefile Modified: head/sysutils/heartbeat/Makefile ============================================================================== --- head/sysutils/heartbeat/Makefile Sat Nov 9 12:21:06 2013 (r333283) +++ head/sysutils/heartbeat/Makefile Sat Nov 9 12:30:28 2013 (r333284) @@ -16,10 +16,10 @@ COMMENT= Subsystem for High-Availability BUILD_DEPENDS= bison:${PORTSDIR}/devel/bison -LIB_DEPENDS= gnutls:${PORTSDIR}/security/gnutls \ - net:${PORTSDIR}/net/libnet \ - uuid:${PORTSDIR}/misc/e2fsprogs-libuuid \ - xml2:${PORTSDIR}/textproc/libxml2 +LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls \ + libnet.so:${PORTSDIR}/net/libnet \ + libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \ + libxml2.so:${PORTSDIR}/textproc/libxml2 PATCH_DEPENDS= libtool:${PORTSDIR}/devel/libtool USE_AUTOTOOLS= autoconf autoheader automake aclocal libtool libltdl Added: head/sysutils/heartbeat/files/patch-tools-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/heartbeat/files/patch-tools-Makefile.am Sat Nov 9 12:30:28 2013 (r333284) @@ -0,0 +1,11 @@ +--- tools/Makefile.am.orig 2008-08-18 12:32:19.000000000 +0000 ++++ tools/Makefile.am 2013-11-08 13:57:58.000000000 +0000 +@@ -43,7 +43,7 @@ + + ## SOURCES + ccdv: $(top_srcdir)/tools/ccdv.c +- gcc $(AM_CFLAGS) $(CFLAGS) -o ccdv $(top_srcdir)/tools/ccdv.c ++ $(CC) $(AM_CFLAGS) $(CFLAGS) -o ccdv $(top_srcdir)/tools/ccdv.c + + cl_status_SOURCES = cl_status.c + # A little trick. Now ccdv can be auto-built but not auto-cleaned.