zsh-workers
 help / color / mirror / code / Atom feed
From: Sven Wischnowsky <wischnow@informatik.hu-berlin.de>
To: zsh-workers@sunsite.auc.dk
Subject: Re: Preliminary release of 3.0.8 - please test
Date: Mon, 28 Feb 2000 14:30:51 +0100 (MET)	[thread overview]
Message-ID: <200002281330.OAA03759@beta.informatik.hu-berlin.de> (raw)
In-Reply-To: "Bart Schaefer"'s message of Mon, 28 Feb 2000 00:21:16 +0000


Bart Schaefer wrote:

> I realize most people on this list are now using 3.1.6-dev-19, but it'd
> be helpful to me if a few people could grab this and at least report any
> build-time errors.  Several of the changes are to the configure scripts,
> and I have only Linux to test on.
> 
> 	ftp://ftp.brasslantern.com/pub/zsh/zsh-3.0.8.tar.gz
> 
> Note that I haven't updated the doc.tar yet, but there's only one minor
> change to that.  I'll update everything and make an official announcement
> after I either hear that it looks OK, or a few days pass with no response
> at all ...

Seems to compile and run fine with OSF1 (a.k.a. DU 4.0) and Solaris 2.6.

Only got some warnings:

  init.c: In function `parseargs':
  init.c:254: warning: subscript has type `char'
  init.c:257: warning: subscript has type `char'
  ...
  params.c: In function `lcsetfn':
  params.c:1601: warning: cast from pointer to integer of different size

Which is easily fixed.

Bye
 Sven

diff -u -r os/init.c Src/init.c
--- os/init.c	Mon Feb 28 14:24:09 2000
+++ Src/init.c	Mon Feb 28 14:26:26 2000
@@ -251,10 +251,10 @@
 		else
 		    dosetopt(optno, action, 1);
               break;
-	    } else if (isspace(**argv)) {
+	    } else if (isspace(STOUC(**argv))) {
 		/* zsh's typtab not yet set, have to use ctype */
 		while (*++*argv)
-		    if (!isspace(**argv)) {
+		    if (!isspace(STOUC(**argv))) {
 			zerr("bad option string: `%s'", args, 0);
 			exit(1);
 		    }
diff -u -r os/params.c Src/params.c
--- os/params.c	Mon Feb 28 14:24:10 2000
+++ Src/params.c	Mon Feb 28 14:25:37 2000
@@ -1598,7 +1598,7 @@
 	return;
     if (!x)
 	x = getsparam("LANG");
-    setlocale((int) pm->data, x ? x : "");
+    setlocale((long) pm->data, x ? x : "");
 }
 #endif /* USE_LOCALE */
 

--
Sven Wischnowsky                         wischnow@informatik.hu-berlin.de


             reply	other threads:[~2000-02-28 13:31 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2000-02-28 13:30 Sven Wischnowsky [this message]
  -- strict thread matches above, loose matches on Subject: below --
2000-03-01 11:47 Sven Wischnowsky
2000-02-28  0:21 Bart Schaefer
2000-02-28  2:16 ` Geoff Wing
2000-02-29 10:33   ` Geoff Wing
2000-02-29 16:18     ` Bart Schaefer
2000-03-03  2:55       ` Geoff Wing
2000-02-28 14:49 ` Jos Backus
2000-03-20 18:36 ` Brian Boonstra

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200002281330.OAA03759@beta.informatik.hu-berlin.de \
    --to=wischnow@informatik.hu-berlin.de \
    --cc=zsh-workers@sunsite.auc.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).