Date: Mon, 17 Sep 2001 20:35:01 +0100 From: Jonathan Belson <jon@witchspace.com> To: freebsd-libh@freebsd.org Subject: Re: Some thoughts Message-ID: <3BA65065.19B14FA4@witchspace.com> References: <20010912200140.ZTNA29790.mta02-svc.ntlworld.com@there>
next in thread | previous in thread | raw e-mail | index | archive | help
[-- Attachment #1 --]
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
<http://www.witchspace.com>
[-- Attachment #2 --]
--- 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3BA65065.19B14FA4>
