From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Nov 15 18:30:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.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 ESMTPS id 88B5DA79 for ; Fri, 15 Nov 2013 18:30:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 787B92C8C for ; Fri, 15 Nov 2013 18:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rAFIU19Q033148 for ; Fri, 15 Nov 2013 18:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rAFIU1I3033147; Fri, 15 Nov 2013 18:30:01 GMT (envelope-from gnats) Date: Fri, 15 Nov 2013 18:30:01 GMT Message-Id: <201311151830.rAFIU1I3033147@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Rainer Hurling Subject: Re: ports/183949: databases/mdbtools 0.7.1 fails to compile on 9.1p3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list Reply-To: Rainer Hurling List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Nov 2013 18:30:02 -0000 The following reply was made to PR ports/183949; it has been noted by GNATS. From: Rainer Hurling To: bug-followup@FreeBSD.org, etteldor@gmail.com Cc: Subject: Re: ports/183949: databases/mdbtools 0.7.1 fails to compile on 9.1p3 Date: Fri, 15 Nov 2013 19:26:18 +0100 This is a multi-part message in MIME format. --------------000600020301050807020003 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Sorry for the breakage with gcc42 as the systems compiler. The attached patch should only set gcc46+, if systems compiler is not clang, but gcc42. Would someone please be so kind to test this with gcc42, because I only have clang boxes, thanks. --------------000600020301050807020003 Content-Type: text/plain; charset=UTF-8; name="patch-Makefile.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-Makefile.txt" --- Makefile.orig 2013-11-10 20:44:44.000000000 +0100 +++ Makefile 2013-11-15 19:21:32.000000000 +0100 @@ -27,6 +27,12 @@ CONFIGURE_ARGS= --with-libiconv-prefix=${LOCALBASE} \ --with-iodbc=${LOCALBASE} +# If gcc42 is systems compiler, use gcc4.6+ +CCISCLANG!= ${CC} --version +.if empty(CCISCLANG:M*clang*) +USE_GCC= yes +.endif + DOCS= AUTHORS ChangeLog HACKING NEWS README TODO WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} --------------000600020301050807020003--