From owner-freebsd-ports Tue Jul 8 02:13:00 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA07110 for ports-outgoing; Tue, 8 Jul 1997 02:13:00 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (ala-ca11-02.ix.netcom.com [199.35.209.162]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA07103 for ; Tue, 8 Jul 1997 02:12:51 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.6/8.6.9) id CAA06717; Tue, 8 Jul 1997 02:11:14 -0700 (PDT) Date: Tue, 8 Jul 1997 02:11:14 -0700 (PDT) Message-Id: <199707080911.CAA06717@silvia.HIP.Berkeley.EDU> To: martinh@luminaop.com CC: ports@freebsd.org In-reply-to: <1.5.4.16.19970707121751.1dd73cf4@po.luminaop.com> (message from Martin Helliwell on Mon, 7 Jul 1997 12:24:43 -0700) Subject: gcl From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello, Martin. * My name is Martin Helliwell. I am a major LISP hacker who was very disapointed * to find out that the gcl port for FreeBSD 2.2 was broken. Since you are listed * as the port maintainer, I wanted to ask you if anyone is working to fix this * problem. If not, I can try it myself. I would appreciate any infomation * you have that might help me. I put a couple of hours into it already and * the basic * compiler is going together OK - so I don't think it will be that difficult * to fix. (of course I could be wrong) I suggest you look into the handbook (www.freebsd.org/handbook/porting.html). Also, other ports in /usr/ports/lang may help. * I could also post a reward for someone who provides a fix - not much, * maybe $100. Anyway, I think that a good common lisp compiler is an important * thing for FreeBSD to have with it and I want to do what I can to make it happen. * Please let me know what you think. Keep that for yourself. This is the last info I have on gcl, see if it helps. Satoshi ------- From: Ada T Lim Subject: gcl port To: ports@FreeBSD.ORG Date: Wed, 18 Jun 1997 23:06:03 +1000 (EST) --ELM866639163-6602-0_ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit ok, the dependency on old tk wasnt very important, so I removed it attached are new patch files Ada --ELM866639163-6602-0_ Content-Type: text/plain; charset=ISO-8859-1 Content-Disposition: attachment; filename=patch-ad Content-Description: patches/patch-ad Content-Transfer-Encoding: 7bit *** gcl-tk/tkAppInit.c.old Wed Jun 18 22:49:58 1997 --- gcl-tk/tkAppInit.c Wed Jun 18 22:50:19 1997 *************** *** 103,109 **** --- 103,114 ---- * where "app" is the name of the application. If this line is deleted * then no user-specific startup file will be run under any conditions. */ + /* This has been obsoleted in tcl 7.5 and later; hence there is no + user-specific startup file. + */ + #if 0 tcl_RcFileName = "~/.wishrc"; + #endif return TCL_OK; } --ELM866639163-6602-0_ Content-Type: text/plain; charset=ISO-8859-1 Content-Disposition: attachment; filename=patch-ae Content-Description: patches/patch-ae Content-Transfer-Encoding: 7bit *** gcl-tk/makefile.old Wed Jun 18 23:01:24 1997 --- gcl-tk/makefile Wed Jun 18 23:01:37 1997 *************** *** 19,25 **** TK_LIBRARY=/usr/lib/tk X11_INCLUDE_DIR=-I/usr/include TK_INCLUDE_DIR=-I/usr/include/tcl ! TK_LIBS=-L/usr/lib -ltk TCL_LIBS=-L/usr/lib -ltcl X11_LIBS=-L/usr/X11/lib -lX11 EMACS_SITE_LISP=/usr/lib/emacs/site-lisp --- 19,25 ---- TK_LIBRARY=/usr/lib/tk X11_INCLUDE_DIR=-I/usr/include TK_INCLUDE_DIR=-I/usr/include/tcl ! TK_LIBS=-L/usr/lib -ltk4.1 TCL_LIBS=-L/usr/lib -ltcl X11_LIBS=-L/usr/X11/lib -lX11 EMACS_SITE_LISP=/usr/lib/emacs/site-lisp --ELM866639163-6602-0_--