From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 04 19:24:59 2013 Received: (at submit) by debbugs.gnu.org; 4 Jul 2013 23:24:59 +0000 Received: from localhost ([127.0.0.1]:58287 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UustW-0003F8-88 for submit@debbugs.gnu.org; Thu, 04 Jul 2013 19:24:58 -0400 Received: from eggs.gnu.org ([208.118.235.92]:59205) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UupU9-0005RW-5r for submit@debbugs.gnu.org; Thu, 04 Jul 2013 15:46:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UupU2-0007FX-Cz for submit@debbugs.gnu.org; Thu, 04 Jul 2013 15:46:28 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-99.2 required=5.0 tests=BAYES_50,FREEMAIL_FROM, T_DKIM_INVALID,USER_IN_WHITELIST autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:34403) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UupU2-0007FM-5y for submit@debbugs.gnu.org; Thu, 04 Jul 2013 15:46:26 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60908) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UupU0-00007W-O1 for bug-automake@gnu.org; Thu, 04 Jul 2013 15:46:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UupTz-0007Eb-7v for bug-automake@gnu.org; Thu, 04 Jul 2013 15:46:24 -0400 Received: from mail-we0-x234.google.com ([2a00:1450:400c:c03::234]:57346) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UupTy-0007EM-VE for bug-automake@gnu.org; Thu, 04 Jul 2013 15:46:23 -0400 Received: by mail-we0-f180.google.com with SMTP id w56so1376693wes.25 for ; Thu, 04 Jul 2013 12:46:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:subject:from:reply-to:to:date:content-type :x-mailer:mime-version:content-transfer-encoding; bh=Opeoz8iMC7nnBOvY/A65gp4B/3ittjgL7LbIPKPTn6M=; b=iQkZ2LHZXPrBVzgSknlO5Oz6sFsrlt/Rg4wodbtrXsEagtY7U0UEpVWweFJ3UbBD0g s17fbSoBv1B5h7Bd2HJpDYs3BY4XFgxFuTnik/ABUygeWKbzhghuzzoijUWv+V5+fwqC CbjcLVoCq6HhHFbHzwgvplNlzS2Lo/SR9R1fF8Mtu1ZODbWVl6n/23Ew5MkNzl+RFcdV ErlODkFedpXeaU+9X29r3Q6fj560KYyeGHQ47Knbm8bTXGJgwog/jCeZJ59LlFAZk1Tu ozQLs5oW89N2l66BxfKfH7N7il1op/LHhHmjvSeGe3FLcRxsrRK7PAEjjIm63BqogwSp m9IA== X-Received: by 10.180.21.209 with SMTP id x17mr4065124wie.47.1372967181349; Thu, 04 Jul 2013 12:46:21 -0700 (PDT) Received: from [192.168.1.11] (cpc18-cmbg15-2-0-cust264.5-4.cable.virginmedia.com. [81.97.71.9]) by mx.google.com with ESMTPSA id f8sm36464257wiv.0.2013.07.04.12.46.20 for (version=SSLv3 cipher=RC4-SHA bits=128/128); Thu, 04 Jul 2013 12:46:20 -0700 (PDT) Message-ID: <51d5d10c.c848b40a.2a02.ffffb8ec@mx.google.com> Subject: Support building Vala projects without distributing generated C files From: Philip Withnall To: bug-automake@gnu.org Date: Thu, 04 Jul 2013 20:46:19 +0100 Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.6.4 (3.6.4-3.fc18) Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.3 (----) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Thu, 04 Jul 2013 19:24:56 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: philip@tecnocode.co.uk List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.3 (----) Vala is now a mature, stable and widely-distributed programming language, and there is no longer a need to force generated C files to be distributed in tarballs of Vala projects. One problem this causes is with conditional compilation of code in Vala, as this changes generation of the C code rather than passing through #ifdefs to it. This means that --[enable|disable]-feature options can’t easily be implemented in autoconf using Vala’s #ifdefs, since the generated C code will only correspond to the enable/disable value chosen at distcheck time. It would therefore be nice if automake supported non-distribution of the generated C code, if a project chooses to do so. From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 19 12:37:42 2014 Received: (at control) by debbugs.gnu.org; 19 Dec 2014 17:37:42 +0000 Received: from localhost ([127.0.0.1]:51793 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Y21Uk-0001qg-3f for submit@debbugs.gnu.org; Fri, 19 Dec 2014 12:37:42 -0500 Received: from mail-wi0-f173.google.com ([209.85.212.173]:48560) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Y21Ui-0001qU-3F for control@debbugs.gnu.org; Fri, 19 Dec 2014 12:37:40 -0500 Received: by mail-wi0-f173.google.com with SMTP id r20so2664018wiv.6 for ; Fri, 19 Dec 2014 09:37:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:mime-version:to:subject:content-type :content-transfer-encoding; bh=tvQGe5ZlzVr2v8f5uLH6AVe9DbDcPB3xJHmAJRRxQKE=; b=LIxuebzFOTRR58z5EX+Op3XkUMS8lkUmlrA+2eoaXLuZOpI7Oz+DEXR8xY69g3+hL+ CMXFjgRhwABU5WXZLstWPcZS4Q+WLtZ+N3uwWfJr/1S0dF7nliNFLgpEC3HxKtgwMGC5 2jOggIbI7Ft85v04ig0B98bSAcv17EYaWSW41Ta+Juca+IVqP8QWUYiCWnq5dDOmCgHb vv+ED0cbBE4rHFuuBBbNgnKnjzc3XDWztlVIG6QWr+OfYyqzl6OJ79K3WUepvk8EfQ+8 93Y/zkkK4pJZL+CiuIyuUjMY0L/3ge8jhfiOfCLOo+1V3tq7osaY9KLugVwPy7TLQGZ0 a1TA== X-Received: by 10.194.92.37 with SMTP id cj5mr16930032wjb.81.1419010659480; Fri, 19 Dec 2014 09:37:39 -0800 (PST) Received: from [192.168.0.101] (host159-94-dynamic.7-79-r.retail.telecomitalia.it. [79.7.94.159]) by mx.google.com with ESMTPSA id cs8sm3121669wib.1.2014.12.19.09.37.38 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 19 Dec 2014 09:37:39 -0800 (PST) Message-ID: <54946261.6090803@gmail.com> Date: Fri, 19 Dec 2014 18:37:37 +0100 From: Stefano Lattarini MIME-Version: 1.0 To: GNU bug tracker automated control server Subject: 14796 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) severity 14796 wishlist stop