Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Nov 2013 20:31:56 GMT
From:      Justin Head <ports@encarnate.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/183800: sysutils/heartbeat: FreeBSD 10 Clang/GCC Fix
Message-ID:  <201311082031.rA8KVu1j041831@oldred.freebsd.org>
Resent-Message-ID: <201311082040.rA8Ke1Gm064717@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         183800
>Category:       ports
>Synopsis:       sysutils/heartbeat: FreeBSD 10 Clang/GCC Fix
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Nov 08 20:40:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Justin Head
>Release:        10.0-BETA3
>Organization:
Encarnate, LLC
>Environment:
FreeBSD  10.0-BETA3 FreeBSD 10.0-BETA3 #0 r257580: Sun Nov  3 19:43:01 UTC 2013     root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC  amd64
>Description:
Update for hardcoded gcc reference in source tools/Makefile.am.
>How-To-Repeat:
Build the port. It will fail now that gcc is out of base.
>Fix:
Patched to use $(CC) instead of 'gcc'.

Patch attached with submission follows:

Index: files/patch-tools-Makefile.am
===================================================================
--- files/patch-tools-Makefile.am	(revision 0)
+++ files/patch-tools-Makefile.am	(working copy)
@@ -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.

Property changes on: files/patch-tools-Makefile.am
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311082031.rA8KVu1j041831>