Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] Linkage fix for AIX (missing mod_export)
- X-seq: zsh-workers 29258
- From: Jérémie Roquet <arkanosis@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH] Linkage fix for AIX (missing mod_export)
- Date: Fri, 13 May 2011 10:54:38 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:from:date:message-id:subject:to :content-type:content-transfer-encoding; bh=OEX0xCZVrY28tmveoOmBm7+4RjBI0SyJvqpDYo/2xhQ=; b=eUC/KOKbtt+XakpEOE2+iTJkxLJ5UD+2w43XCx11HAHqVE4icXvJX8K0CSUW4sH+WS VOkBDxVMHNvnYYeaTw3yoNjFh5/9T6BOywIcVCjGil4rR2mpWFc+4yQHCKlp++CiPxcN RCuENZNTExtdvj7IYeG2LXU6b0Vqd33bCaNcs=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type :content-transfer-encoding; b=OZAkabpvRtV41pvWteOzL/BDQtggT4r5NRfTDAv90799fo28kIf4Sb6HO4Qtbp7NHS SMUWrF1LPXy4vtqrX6neEdANLVslX/jqml4WWOxSy1MFuiph3i7xZxx/degkbfUUrVaG mBsxnovz4QDWCCeYvJ8w9CyLgNsOWNqx6aUSw=
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
Hello,
zsh 4.3.11-dev-3 does not link on AIX.
The following patch fixes this.
BTW, compilation is now OK. Thanks Wayne, Peter for your help.
Best regards,
---
diff --git a/Src/Zle/zle_utils.c b/Src/Zle/zle_utils.c
index 03a514c..45e3044 100644
--- a/Src/Zle/zle_utils.c
+++ b/Src/Zle/zle_utils.c
@@ -596,7 +596,7 @@ struct zle_position *zle_positions;
*/
/**/
-void
+mod_export void
zle_save_positions(void)
{
struct region_highlight *rhp;
@@ -653,7 +653,7 @@ zle_save_positions(void)
*/
/**/
-void
+mod_export void
zle_restore_positions(void)
{
struct zle_position *oldpos = zle_positions;
--
Jérémie
Messages sorted by:
Reverse Date,
Date,
Thread,
Author