From owner-freebsd-libh Mon Sep 17 12:32:25 2001 Delivered-To: freebsd-libh@freebsd.org Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by hub.freebsd.org (Postfix) with ESMTP id 8482837B413 for ; Mon, 17 Sep 2001 12:32:21 -0700 (PDT) Received: from witchspace.com ([213.105.80.222]) by mta03-svc.ntlworld.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20010917193220.XLCO23687.mta03-svc.ntlworld.com@witchspace.com> for ; Mon, 17 Sep 2001 20:32:20 +0100 Message-ID: <3BA65065.19B14FA4@witchspace.com> Date: Mon, 17 Sep 2001 20:35:01 +0100 From: Jonathan Belson X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-libh@freebsd.org Subject: Re: Some thoughts References: <20010912200140.ZTNA29790.mta02-svc.ntlworld.com@there> Content-Type: multipart/mixed; boundary="------------78726E69112509A095FB1808" Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------78726E69112509A095FB1808 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Jonathan Belson wrote: > > Hiya > > I've just been having a play with libh (though I haven't manged to > get the last snapshot to compile completely - still looking into it) I don't know if I'm missing something here, but it seems that the Makefile in bin/tclh checks for libfreetype in $(X11BASE) rather than $(LOCALBASE). I suppose you should use 'freetype-config' to find the files, but the attached patch should fix the problem. -- C-YA Jon --------------78726E69112509A095FB1808 Content-Type: text/plain; charset=us-ascii; name="diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diff" --- bin/tclh/Makefile.orig Mon Sep 17 20:28:34 2001 +++ bin/tclh/Makefile Mon Sep 17 20:32:01 2001 @@ -41,7 +41,7 @@ .if exists(${X11BASE}/lib/libXrender.a) LDADD+= -lXrender .endif -.if exists(${X11BASE}/lib/libfreetype.a) +.if exists(${LOCALBASE}/lib/libfreetype.a) LDADD+= -lfreetype .endif LDADD+= -lX11 --------------78726E69112509A095FB1808-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message