From owner-freebsd-ports Tue Sep 3 20:55:49 2002 Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93E7C37B400 for ; Tue, 3 Sep 2002 20:55:47 -0700 (PDT) Received: from itchy.serv.net (itchy.serv.net [205.153.154.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3377343E42 for ; Tue, 3 Sep 2002 20:55:47 -0700 (PDT) (envelope-from kkt@itchy.serv.net) Received: (from kkt@localhost) by itchy.serv.net (8.9.3/8.9.3) id UAA65647; Tue, 3 Sep 2002 20:55:10 -0700 (PDT) Date: Tue, 3 Sep 2002 20:55:10 -0700 (PDT) Message-Id: <200209040355.UAA65647@itchy.serv.net> From: Patrick Scheible To: ports@freebsd.org Subject: prob & fix with port/lang/icon Reply-To: kkt@serv.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, I built port/lang/icon last weekend on my FreeBSD 4.5 system. There was a little trouble. Make without changing anything fails, unable to find the X11 include files and libraries. It's a simple fix to /usr/ports/lang/icon/work/icon.v940src/Makedefs which should look like this: # Makefile definitions from config/unix/intel_freebsd # CC C compiler # CFLAGS flags for building C files # CFDYN additional flags for dynamic functions # RLINK flags for linking run-time system # RLIBS libraries to link with run-time system # XLIBS libraries to link for graphics # XPMDEFS definitions for building XPM library #CC = cc CFLAGS = -I/usr/X11R6/include #kkt 9-2-02 CFDYN = -fPIC RLINK = -Wl,-E RLIBS = -lm XLIBS = -L/usr/X11R6/lib -lX11 #kkt 9-2-02 XPMDEFS = -DZPIPE # Graphics enabled XL = -L../bin -lXpm $(XLIBS) The two lines I changed have the comment #kkt 9-2-02 at the end. The CCFLAGS line wasn't in the Makedefs at all, and the XLIBS line was there but commented out. I hope this helps! -- Patrick Scheible To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message