From owner-freebsd-ports@FreeBSD.ORG Wed Feb 13 01:16:19 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8DE85F8B; Wed, 13 Feb 2013 01:16:19 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-ie0-x22f.google.com (mail-ie0-x22f.google.com [IPv6:2607:f8b0:4001:c03::22f]) by mx1.freebsd.org (Postfix) with ESMTP id 5E42AFE1; Wed, 13 Feb 2013 01:16:19 +0000 (UTC) Received: by mail-ie0-f175.google.com with SMTP id c12so1003342ieb.6 for ; Tue, 12 Feb 2013 17:16:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:x-received:reply-to:date:message-id:subject:from:to:cc :content-type; bh=DWh/xUFDVctev/3PCR+O1VR6xC+AHGKzRzUd8tZOqD8=; b=BqqbCeX4MBGGXFw8JlfVuYJUAZ61YzzhVMglSTpwLnnqcW0S8tON5Z7XWgTkev/5nM RFCGNlzG30325L3GZZIVYfUSggtVTdJeqL9D1PoCUDUSSkNm6CahHL+J/+1fOQ7LCabS djikutKy/bnWcqHaqiAa8JYQoFlN75Jp0BF+NuvbQqmtgTCLpiVlQ2Ysu+er1EqjdB9m YkXT1w+WtiwYrB6+FSS9FKgouxUsUcciHstsftzYUZThHYICLwKQUUtJX7LXo6XQt0Zv 9vEb+dTJ3fvrJA48ZLDPftLpBzv5BoDVTAa7627XrMVRhlHYzMktOoPsk0LHvlio/qHu qPDQ== MIME-Version: 1.0 X-Received: by 10.50.5.177 with SMTP id t17mr7628307igt.48.1360718178961; Tue, 12 Feb 2013 17:16:18 -0800 (PST) Received: by 10.64.44.2 with HTTP; Tue, 12 Feb 2013 17:16:18 -0800 (PST) Date: Wed, 13 Feb 2013 01:16:18 +0000 Message-ID: Subject: Re: galculator-2.1 fatal error: 'quadmath.h' file not found From: "b.f." To: AN , freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: naddy@FreeBSD.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: bf1783@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Feb 2013 01:16:19 -0000 > AN wrote: ... This appears to be one of those unfortunate errors that sometimes occur when the presence of additional software on your system adversely affects a build, in a way that isn't seen on the test machines or the package-building cluster, because those machines start builds in a clean sandbox, with only certain pre-computed dependencies installed. Here galculator's faulty configure script (which was probably written and tested on a system that has a recent version of gcc as the default compiler) looks for and finds libquadmath, which is part of gcc-4.[678], and then attempts to use it, without checking if the compiler that you are using can use GCC quadmath: > checking for sinhq in -lquadmath... yes You can either patch the port's sources, or add CONFIGURE_ENV+= ac_cv_lib_quadmath_sinhq=no to an included Makefile, or (if you need the extended precision features) try to build the port with USE_GCC=4.6+. b.