zsh-workers
 help / color / mirror / code / Atom feed
From: Oliver Kiddle <opk@u.genie.co.uk>
To: Zsh workers <zsh-workers@sunsite.auc.dk>
Subject: Compilation on IRIX 5.3
Date: Mon, 05 Jun 2000 21:58:50 +0100	[thread overview]
Message-ID: <393C148A.741A4904@u.genie.co.uk> (raw)

When compiling on IRIX 5.3, I get this:

Can't open -e
Can't open /^!MOD!)$/q;p

repeated several times. Wasn't this from one of the Solaris sed
fixes recently? If not, the last time I compiled Zsh on my Indigo
was 3.1.6-dev-21 so it is since then. I've stuck some more of
the output leading up to this on then end of this message.

Another thing which I've been meaning to look at for ages is that
I get the following repeatedly on an IRIX 5.3 build:

cfe: Warning 753: /usr/include/sys/types.h, line 111: declaration
must at least declare an identifier, tag, or the member of an
enumeration
 typedef        unsigned long   unsigned long ;          
 ^
cfe: Warning 645: /usr/include/sys/types.h, line 111: Duplicate 'unsigned'
 typedef        unsigned long   unsigned long ;          
 -------        -------------   ^

This has been around since about 3.1.5-dev-25 and was caused by
the long file support. I've also put the section of types.h on
the end of this message.

Despite these, Zsh does build successfully. I ran the tests an everything
passed until 53completion.ztst. It seems that zpty doesn't work but I
haven't got time to look at that at the moment. I've added a patch
though which just fixes the English in a few print statements in
comptest.

Oliver Kiddle

partial make output:
            set '' Zsh/mod_cap.yo Zsh/mod_clone.yo  Zsh/mod_compctl.yo Zsh/mod_complete.yo Zsh/mod_complist.yo  Zsh/mod_computil.yo  Zsh/mod_deltochar.yo Zsh/mod_example.yo Zsh/mod_files.yo  Zsh/mod_mapfile.yo Zsh/mod_mathfunc.yo Zsh/mod_parameter.yo Zsh/mod_sched.yo  Zsh/mod_stat.yo Zsh/mod_zftp.yo Zsh/mod_zle.yo Zsh/mod_zleparameter.yo  Zsh/mod_zutil.yo Zsh/mod_zprof.yo Zsh/mod_zpty.yo; \
            mod1= mod2= mod3=; \
            test ".$2" = . || \
                mod2=`sed -n '1{s|^COMMENT(!MOD!||;p;q;}' < ./$2`; \
            while test ".$2" != .; do \
                mod3=; \
                test ".$3" = . || \
                    mod3=`sed -n '1{s|^COMMENT(!MOD!||;p;q;}' < ./$3`; \
                echo "texinode(The $mod2 Module)(${mod3:+The $mod3 Module})(${mod1:+The $mod1 Module})(Zsh Modules)"; \
                echo "sect(The $mod2 Module)"; \
                echo "includefile(${2})`"; \
                shift; \
                mod1=$mod2; \
                mod2=$mod3; \
            done \
        ) > ./Zsh/modlist.yo
Can't open -e
Can't open /^!MOD!)$/q;p
Can't open -e
Can't open /^!MOD!)$/q;p

types.h (with line numbers added):

   104  #if (_MIPS_SZLONG == 32)
   105  typedef unsigned long   mode_t;         /* file attrs */
   106  typedef unsigned long   dev_t;          /* device type */
   107  typedef long            uid_t;
   108  typedef long            gid_t;
   109  typedef unsigned long   nlink_t;        /* used for link counts */
   110  typedef long            pid_t;          /* proc & grp IDs  */
   111  typedef unsigned long   ino_t;          /* <inode> type */
   112  #endif
   113  #if (_MIPS_SZLONG == 64)
   114  typedef __uint32_t      mode_t;         /* file attrs */
   115  typedef __uint32_t      dev_t;          /* device type */
   116  typedef __int32_t       uid_t;
   117  typedef __int32_t       gid_t;
   118  typedef __uint32_t      nlink_t;        /* used for link counts */
   119  typedef __int32_t       pid_t;          /* proc & grp IDs  */
   120  typedef __uint32_t      ino_t;          /* <inode> type */
   121  #endif

--- Test/comptest    Sun May 21 19:01:00 2000
+++ Test/comptest Mon Jun  5 22:56:01 2000
@@ -19,7 +19,7 @@
   zpty zsh "$comptest_zsh" -f
 
   zpty -r zsh log1 "*<PROMPT>*" || { 
-    print "first prompt doesn't appered."
+    print "first prompt hasn't appeared."
     return 1
   }
 
@@ -75,7 +75,7 @@
   print -lr - "$@" > $tmp
   zpty -w zsh ". $tmp"
   zpty -r zsh log_eval "*<PROMPT>*" || {
-    print "prompt doesn't appered."
+    print "prompt hasn't appeared."
     return 1
   }
   rm $tmp
@@ -85,7 +85,7 @@
   input="$*"
   zpty -n -w zsh "$input"$'\C-Z'
   zpty -r zsh log "*<WIDGET><finish>*<PROMPT>*" || {
-    print "finish widget doesn't invoked."
+    print "failed to invoke finish widget."
     return 1
   }



             reply	other threads:[~2000-06-05 23:03 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2000-06-05 20:58 Oliver Kiddle [this message]
2000-06-05 23:38 ` Bart Schaefer
2000-06-08 14:31   ` PATCH: " Oliver Kiddle

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=393C148A.741A4904@u.genie.co.uk \
    --to=opk@u.genie.co.uk \
    --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).