From nobody Sun Apr 3 07:23:28 2022 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 526421A66AFF for ; Sun, 3 Apr 2022 07:23:36 +0000 (UTC) (envelope-from iio7@tutanota.com) Received: from w1.tutanota.de (w1.tutanota.de [81.3.6.162]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mail.tutanota.de", Issuer "Sectigo RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4KWQPM2ykqz4RGK for ; Sun, 3 Apr 2022 07:23:35 +0000 (UTC) (envelope-from iio7@tutanota.com) Received: from w3.tutanota.de (unknown [192.168.1.164]) by w1.tutanota.de (Postfix) with ESMTP id 2ACA5FA040C for ; Sun, 3 Apr 2022 07:23:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1648970608; s=s1; d=tutanota.com; h=From:From:To:To:Subject:Subject:Content-Description:Content-ID:Content-Type:Content-Type:Content-Transfer-Encoding:Content-Transfer-Encoding:Cc:Date:Date:In-Reply-To:In-Reply-To:MIME-Version:MIME-Version:Message-ID:Message-ID:Reply-To:References:References:Sender; bh=UB2wwaKwTNj/jJMOsY2uqGGNnRNfdOlBjwrdz2RswM4=; b=ydZqDkwcj1vg73RZpZprZyPCwZIcKKVwA3qgkBpruHHjdFiBulOklao17ZKRACQh x/mwMAG5ZIXm4qbcCX+jeuwctatexoLTzUVpWfIN3E6FdwXXfu3N1AI8GjHA+r4Jf/Q Eqr7EbbGFhxF0yUNkudcFN7oB2j346MGW0LlCRA891U59gnHqlQRMkjb5gasQIFnsHk d8U5piews/WQbm7EQjldLck3QnEhYpKdIS8Vf5jiD5zISQrX8avvsBo3E7ueQdWLuqY G3GE32Y3a2hfA1ShpXSiefREuj1vBZCv80dtgJSg1CML0ZMi20BH8qK2VR55mfTgdQU KbbViSgVRQ== Date: Sun, 3 Apr 2022 09:23:28 +0200 (CEST) From: iio7@tutanota.com To: Freebsd Questions Message-ID: In-Reply-To: <20220403081640.c06b0ca8d723ae6b863423bf@sohara.org> References: <20220403071433.bcd687df6ee47a4a70aa6434@sohara.org> <20220403081640.c06b0ca8d723ae6b863423bf@sohara.org> Subject: Re: How to add compile time options to a port? List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 4KWQPM2ykqz4RGK X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=tutanota.com header.s=s1 header.b=ydZqDkwc; dmarc=pass (policy=quarantine) header.from=tutanota.com; spf=pass (mx1.freebsd.org: domain of iio7@tutanota.com designates 81.3.6.162 as permitted sender) smtp.mailfrom=iio7@tutanota.com X-Spamd-Result: default: False [-3.00 / 15.00]; RCVD_TLS_LAST(0.00)[]; ARC_NA(0.00)[]; R_DKIM_ALLOW(-0.20)[tutanota.com:s=s1]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; RWL_MAILSPIKE_GOOD(0.00)[81.3.6.162:from]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:81.3.6.160/28]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; NEURAL_HAM_LONG(-1.00)[-1.000]; RCPT_COUNT_ONE(0.00)[1]; TO_DN_ALL(0.00)[]; DKIM_TRACE(0.00)[tutanota.com:+]; DMARC_POLICY_ALLOW(-0.50)[tutanota.com,quarantine]; FROM_NO_DN(0.00)[]; NEURAL_HAM_SHORT(-1.00)[-1.000]; MLMMJ_DEST(0.00)[freebsd-questions]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; SUBJECT_ENDS_QUESTION(1.00)[]; ASN(0.00)[asn:24679, ipnet:81.3.0.0/18, country:DE]; RCVD_COUNT_TWO(0.00)[2]; MID_RHS_MATCH_FROM(0.00)[] X-ThisMailContainsUnwantedMimeParts: N Thank you very much! Yes, without the -D option it works perfectly. make FOO_DESC="wibble wibble" FOO_CONFIGURE_WITH="gpm-mouse" Cheers. Apr 3, 2022, 07:16 by steve@sohara.org: > On Sun, 3 Apr 2022 07:14:33 +0100 > "Steve O'Hara-Smith" wrote: > >> On Sun, 3 Apr 2022 07:37:41 +0200 (CEST) >> iio7@tutanota.com wrote: >> >> > I would like still to know if this isn't possible without editing >> > the Makefile? >> >> Untested but >> >> make -D FOO_DESC="wibble wibble" -D FOO_CONFIGURE_WITH="gpm-mouse" >> >> should do the trick. >> > > Remove the -Ds I'm thinking of another make. > > -- > Steve O'Hara-Smith >