From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, FREEMAIL_FROM,MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from primenet.com.au (ns1.primenet.com.au [203.24.36.2]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id a95373cb for ; Thu, 5 Dec 2019 15:42:22 +0000 (UTC) Received: (qmail 10410 invoked by alias); 5 Dec 2019 15:42:12 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: List-Unsubscribe: X-Seq: 24493 Received: (qmail 25880 invoked by uid 1010); 5 Dec 2019 15:42:12 -0000 X-Qmail-Scanner-Diagnostics: from mail-io1-f44.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.102.1/25653. spamassassin: 3.4.2. Clear:RC:0(209.85.166.44):SA:0(-1.8/5.0):. Processed in 0.876994 secs); 05 Dec 2019 15:42:12 -0000 X-Envelope-From: nolange79@gmail.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.166.44 as permitted sender) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=Whq4GqaX02bTxD9PzYN+Py0SJet6G1Jq0FVZXFug7DA=; b=nYh0M5LqDqMf2fO6r7RbhsjDe9K4KjIdOW5bYBJwnLs9uOJrHnaJWvZanVMtIpJBRm mDDsQLZnkiJuDbwl9yvzQCG2/we/DUiXbmhqyGaL/w0YxBEEqyZATU0znqisfa46Pxx/ ctF8+Rsfcbv60uTyf1iocwcOdNrzaOHttu8jaJjs/1sKin51gn4OK+QPEuStO8AF+uap A4DlNVbMVdlE4ZcKU/D7o3KAXTxff2JjJds9h1u1tE6R/hSN/dBIikpJgBVYARS1ZQXG nbIQZOdo62pjbCWvSUUKLPwxXgC6acIPv/KfjL2GiuRLyTRJvcH1uYvmuxFRqlv5Fmeg MZSg== X-Gm-Message-State: APjAAAUtTIJDc8xte7/8KJlkkn93/JU6k7lxS3B/XJgMABVLUwH3+BF2 /o5bbZ8aDJJb0ud4fSiGoNqgwPY2vql9rkjXVvcIgkoX X-Google-Smtp-Source: APXvYqxZZF9cxLf82GKXwgV0BL0ShY3M+DSmdSRFivwdc5GtNErNtvqkfVp8mrrYfvDS6zoii18nL/7iztiR5cjQFgg= X-Received: by 2002:a05:6602:24d3:: with SMTP id h19mr6877610ioe.79.1575560498739; Thu, 05 Dec 2019 07:41:38 -0800 (PST) MIME-Version: 1.0 From: Norbert Lange Date: Thu, 5 Dec 2019 16:41:27 +0100 Message-ID: Subject: Several modules can only be used dynamically? To: zsh-users@zsh.org Content-Type: text/plain; charset="UTF-8" Hello, I use a static build (toolchain without any support for dl-open) of zsh, and I just found out that I am missing the zsh/regex Module even though configure found all buildtime requirements. Looking at the source it seems that this and several other modules are only allowed to me built dynamically. Is this the intention? If this is some License issue, then first I am using musl (which should not add any issues) and second its a private build for internal use. The shell should be dropped into a production system for development, so there is a desire to not touch anything or depend on anything. I was able to build zsh with a static zsh/regex after editing the offending line sed -e 's,echo dynamic,echo either,' -i zsh/Src/Modules/regex.mdd Norbert