From owner-cvs-ports Tue Nov 19 04:55:16 1996 Return-Path: owner-cvs-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id EAA02963 for cvs-ports-outgoing; Tue, 19 Nov 1996 04:55:16 -0800 (PST) Received: from dfw-ix4.ix.netcom.com (dfw-ix4.ix.netcom.com [206.214.98.4]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id EAA02958; Tue, 19 Nov 1996 04:55:13 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (wck-ca14-53.ix.netcom.com [207.92.174.117]) by dfw-ix4.ix.netcom.com (8.6.13/8.6.12) with ESMTP id EAA01032; Tue, 19 Nov 1996 04:54:19 -0800 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id EAA02436; Tue, 19 Nov 1996 04:54:16 -0800 (PST) Date: Tue, 19 Nov 1996 04:54:16 -0800 (PST) Message-Id: <199611191254.EAA02436@silvia.HIP.Berkeley.EDU> To: torstenb@freefall.freebsd.org CC: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-ports@freefall.freebsd.org In-reply-to: <199611191106.DAA27418@freefall.freebsd.org> (message from Torsten Blum on Tue, 19 Nov 1996 03:06:49 -0800 (PST)) Subject: Re: cvs commit: ports/games/imaze Makefile ports/games/imaze/patches patch-ab patch-aa From: asami@freebsd.org (Satoshi Asami) Sender: owner-cvs-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * Use Motif if HAVE_MOTIF and MOTIFLIB are defined (/etc/make.conf). * default it to build the xview version. (1) Checking MOTIFLIB here is meaningless, many users won't have it defined even if they have Motif. (HAVE_MOTIF will define MOTIFLIB it in bsd.port.mk, which is included after this line.) (2) We don't want to ship static Motif libraries if the port can be compiled with other toolkits. >From the above two, I think it's better if you check if defined(HAVE_MOTIF) and !defined(MOTIF_STATIC). Satoshi