From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 144621FA29 for ; Sun, 8 Jan 2023 23:43:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1673221406; bh=1F1KQKk0zflatllojHmPBUFjG+4MhPYIf1ZYaX1QZn0=; h=From:To:Subject:Date:From; b=O68MdMtj6BhDzG37WRrP/aioLaB0EsQprt2IxCxyiwMWXymfX79qqh7AYnqeA+c3e BHiceGpNQpUJmqjzka45i+ocElN698C6hMgrf4bbxSbcSVtOOxdGpOKVZmIvwx/j3v JOhyaCRLeWxm1QM+3M07w4yFPU2j9CsktyH3Y278= From: Eric Wong To: Subject: [PATCH] httpd: different URLs for Ruby vs Perl versions Date: Sun, 8 Jan 2023 23:43:26 +0000 Message-Id: <20230108234326.17076-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: They're different projects, still, I guess... --- ext/mwrap/httpd.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ext/mwrap/httpd.h b/ext/mwrap/httpd.h index 0ef6cd9..cea79f7 100644 --- a/ext/mwrap/httpd.h +++ b/ext/mwrap/httpd.h @@ -38,7 +38,11 @@ #include "picohttpparser_c.h" #include #include -#define URL "https://80x24.org/mwrap-perl.git/about" +#if MWRAP_PERL +# define URL "https://80x24.org/mwrap-perl.git/" +#else +# define URL "https://80x24.org/mwrap.git/" +#endif #define TYPE_HTML "text/html; charset=UTF-8" #define TYPE_CSV "text/csv" #define TYPE_PLAIN "text/plain"