From owner-freebsd-hackers@FreeBSD.ORG Thu May 6 14:40:22 2010 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D357F1065670 for ; Thu, 6 May 2010 14:40:22 +0000 (UTC) (envelope-from xorquewasp@googlemail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 68E4F8FC0A for ; Thu, 6 May 2010 14:40:22 +0000 (UTC) Received: by wyb36 with SMTP id 36so23256wyb.13 for ; Thu, 06 May 2010 07:40:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:received:date:from:to:subject :message-id:mime-version:content-type:content-disposition; bh=S7eQ3TvgOQwM0JCD7UErErW5I3NuucBvkec91e+nx5I=; b=wKkcOdko1Mns73+Evkyi4AfQHvZuWdjYv0VAVumQ2vFlJe21Q5XfyDgD6oUkkXc36Q WOh5zjgPKBdETgcMmiBqiDkqVaIt5w+LUwFrz+kc/beZfqloTsLsm3wc1K1HF1ptqW3E fHpBykLZUacFFpeOxfycl6DqvwbOMKb/rHQ/o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:subject:message-id:mime-version:content-type :content-disposition; b=FOp/zKoEKoNXDn1l7hxGrYsA14+08Y+EiyHQ/KET9MX0cRFSgxZS4KcBR5bDAVHiuA dKt7wXIerpprBr2PdAD+aIUqSjVOXWM8MrBQhLFRYuGJn9LHgMisYN5vsLFpY6Jgfkdg kne6qTD/nLWeq005PGkpDzfkzEbwf0WGcbri4= Received: by 10.227.68.144 with SMTP id v16mr4256048wbi.156.1273156812433; Thu, 06 May 2010 07:40:12 -0700 (PDT) Received: from viper.internal.network (dsl78-143-204-136.in-addr.fast.co.uk [78.143.204.136]) by mx.google.com with ESMTPS id x6sm3560419gvf.12.2010.05.06.07.40.11 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 06 May 2010 07:40:11 -0700 (PDT) Received: by viper.internal.network (Postfix, from userid 11001) id 63F5A4AC08; Thu, 6 May 2010 14:40:10 +0000 (UTC) Date: Thu, 6 May 2010 14:40:10 +0000 From: xorquewasp@googlemail.com To: freebsd-hackers@freebsd.org Message-ID: <20100506144010.GA62314@logik.internal.network> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: QTDIR? X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2010 14:40:22 -0000 When compiling some QT4 based programs from source, the configure script asks for $QTDIR. On Debian and other systems, there's a single QT root with symlinks to the real locations: $ ls -alF /usr/share/qt4/ total 356 drwxr-xr-x 6 root root 4096 2010-05-05 15:01 ./ drwxr-xr-x 187 root root 4096 2010-05-06 02:16 ../ drwxr-xr-x 2 root root 4096 2010-05-05 15:01 bin/ drwxr-xr-x 3 root root 4096 2010-05-05 15:01 doc/ lrwxrwxrwx 1 root root 17 2010-05-05 15:01 include -> ../../include/qt4/ drwxr-xr-x 99 root root 4096 2010-05-05 15:01 mkspecs/ lrwxrwxrwx 1 root root 21 2010-05-05 15:01 plugins -> ../../lib/qt4/plugins/ -rw-r--r-- 1 root root 333331 2010-02-11 15:55 q3porting.xml drwxr-xr-x 2 root root 4096 2010-05-05 15:01 translations/ On FreeBSD, there doesn't seem to be any such directory (meaning some programs actually become impossible to compile as they want to look in one place for their includes/binaries and can't do so). Is there are directory I'm not aware of, or am I going to have to do some manual surgery? xw