zsh-workers
 help / color / mirror / code / Atom feed
* Re: Mac OS X error
       [not found] <T56c5b55ad9c0a88d014f8@>
@ 2001-10-23 11:00 ` Peter Stephenson
  2001-10-24 18:18   ` Steven Farrier
       [not found]   ` <md5:DF57725346D4074870986C9E9FB61A22>
  0 siblings, 2 replies; 7+ messages in thread
From: Peter Stephenson @ 2001-10-23 11:00 UTC (permalink / raw)
  To: Zsh hackers list, Steven Farrier

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1594 bytes --]

Steven Farrier wrote:
> So I tried commenting out all commands that mentioned doc in the Makefile, 
> and in some places deleted the word doc.
>
> make: *** No rule to make target `install.man', needed by `install'.  
> Stop.

Looks to me like you've deleted too much in the top level Makefile.  If you
commented out

  # install/uninstall just the man pages
  install.man uninstall.man:
        @cd Doc && $(MAKE) $(MAKEDEFS) $@

then uncomment the first line and try again.

In fact, you're basically there --- the only step which didn't work is
installing the documentation you don't have anyway.  The shell, libraries
and functions should all be correctly installed.

You might want to look at 
  ftp://ftp.zsh.org/pub/development/
which has a reasonably recent development version including pre-built
manual pages.

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK                          Tel: +44 (0)1223 392070


**********************************************************************
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential 
and/or privileged material. 
Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by 
persons or entities other than the intended recipient is 
prohibited.  
If you received this in error, please contact the sender and 
delete the material from any computer.
**********************************************************************


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Mac OS X error
  2001-10-23 11:00 ` Mac OS X error Peter Stephenson
@ 2001-10-24 18:18   ` Steven Farrier
       [not found]   ` <md5:DF57725346D4074870986C9E9FB61A22>
  1 sibling, 0 replies; 7+ messages in thread
From: Steven Farrier @ 2001-10-24 18:18 UTC (permalink / raw)
  To: Peter Stephenson, Zsh hackers list


>
> Looks to me like you've deleted too much in the top level Makefile.  If you
> commented out
>
>   # install/uninstall just the man pages
>   install.man uninstall.man:
>         @cd Doc && $(MAKE) $(MAKEDEFS) $@
>

This made the compile work thank you.

>
> You might want to look at
>   ftp://ftp.zsh.org/pub/development/
> which has a reasonably recent development version including pre-built
> manual pages.

I tried to compiled this and it failed 

4.0.2 also failed to compile. Both compiles ended with this



( echo '#!'; cat builtin.syms compat.syms cond.syms exec.syms glob.syms 
hashtable.syms hist.syms init.syms input.syms jobs.syms lex.syms 
linklist.syms loop.syms math.syms mem.syms module.syms options.syms 
params.syms parse.syms pattern.syms prompt.syms signals.syms 
signames.syms string.syms subst.syms text.syms utils.syms watch.syms  | 
sed -n '/^X/{s/^X//;p;}' | sort -u ) > zsh.export
rm -f zsh
cc  -s  -o zsh main.o  `cat stamp-modobjs`   -lm  -lc
/usr/bin/ld: warning unused multiple definitions of symbol _glob
glob.o definition of _glob in section (__TEXT,__text)
/usr/lib/libm.dylib(glob.o) unused definition of _glob
/usr/bin/ld: can't use -s with input files containg indirect symbols 
(output file must contain at least global symbols, for maximum stripping 
use -x)
make[1]: *** [zsh] Error 1
make: *** [all] Error 1

Think it might be a problem with /usr/lib/libm.dylib

On this web site


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Mac OS X error
       [not found]   ` <md5:DF57725346D4074870986C9E9FB61A22>
@ 2001-10-25 10:36     ` Oliver Kiddle
  2001-10-25 23:16       ` Steven Farrier
       [not found]       ` <200110252317.f9PNHRn12245@mail.missoulaweb.com>
  0 siblings, 2 replies; 7+ messages in thread
From: Oliver Kiddle @ 2001-10-25 10:36 UTC (permalink / raw)
  To: Steven Farrier; +Cc: Zsh hackers list

Steven Farrier wrote:
> 
> > You might want to look at
> >   ftp://ftp.zsh.org/pub/development/
> > which has a reasonably recent development version including pre-built
> > manual pages.
> 
> I tried to compiled this and it failed
>
> 4.0.2 also failed to compile. Both compiles ended with this

Changes were made since 4.0.2 and since 4.1.0-dev-2 to fix the
problems. In this case, it needed to use the -Wl,-x option to ld
instead of -s.

Peter has just made 4.0.3 available so it is on ftp.zsh.org. If you
could check that on MacOS X, that would be very useful. It also will
contain the documentation so you won't have the problems with yodl
which you had with the snapshots.

Steven Farrier wrote:
> 
> Damn post sent before I finished
> 
> On this web site
> 
> http://fink.sourceforge.net/doc/porting/shared.php

Yes, their documentation was invaluable in getting zsh working with the
dlcompat library.

Anyway, if you still get the libm related errors with 4.0.3 then I'll
worry about it then. What version of MacOS X have you got?

Oliver

_____________________________________________________________________
This message has been checked for all known viruses by the 
MessageLabs Virus Scanning Service. For further information visit
http://www.messagelabs.com/stats.asp


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Mac OS X error
  2001-10-25 10:36     ` Oliver Kiddle
@ 2001-10-25 23:16       ` Steven Farrier
       [not found]       ` <200110252317.f9PNHRn12245@mail.missoulaweb.com>
  1 sibling, 0 replies; 7+ messages in thread
From: Steven Farrier @ 2001-10-25 23:16 UTC (permalink / raw)
  To: Oliver Kiddle; +Cc: Zsh hackers list

On Thursday 25 October 2001 03:36 am, Oliver Kiddle wrote:

> Anyway, if you still get the libm related errors with 4.0.3 then I'll
> worry about it then. What version of MacOS X have you got?
>
> Oliver

I have Mac OS X 10.1 which I believe has Darwin 14.1 kernel.

Steven


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Mac OS X error
       [not found]       ` <200110252317.f9PNHRn12245@mail.missoulaweb.com>
@ 2001-10-25 23:28         ` Steven Farrier
  0 siblings, 0 replies; 7+ messages in thread
From: Steven Farrier @ 2001-10-25 23:28 UTC (permalink / raw)
  To: Oliver Kiddle; +Cc: Zsh hackers list

On Thursday 25 October 2001 04:16 pm, Steven Farrier wrote:
> On Thursday 25 October 2001 03:36 am, Oliver Kiddle wrote:
> > Anyway, if you still get the libm related errors with 4.0.3 then I'll
> > worry about it then. What version of MacOS X have you got?
> >
> > Oliver
>
> I have Mac OS X 10.1 which I believe has Darwin 14.1 kernel.
>
> Steven

Whoops make the Darwin 1.4

Steven


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Mac OS X error
@ 2001-10-24 18:26 Steven Farrier
  0 siblings, 0 replies; 7+ messages in thread
From: Steven Farrier @ 2001-10-24 18:26 UTC (permalink / raw)
  To: zsh-workers

Damn post sent before I finished

On this web site

http://fink.sourceforge.net/doc/porting/shared.php

They talk about porting to Mac OS X and some pitfalls in doing so

I thing it talks about is .dylib files.

I not a programmer and don't have much experience with compiling programs.

But I would be willing to test out any patches you have.

Or has this been fixed in the snapshots?

I am using Mac OS X 10.1 with Darwin 14.1


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Mac OS X error
@ 2001-10-23 10:18 Steven Farrier
  0 siblings, 0 replies; 7+ messages in thread
From: Steven Farrier @ 2001-10-23 10:18 UTC (permalink / raw)
  To: zsh-workers

> That's O.K., zsh CVS snapshot requires yodl to build documentation
> (release comes with prebuilt docs). You can just comment out Doc subdir
> in top-level Makefile, that will give you functional (hopefully) zsh
> without manuals. Or install yodl; I do not have actual download
> location, sorry.

I tried to compile yodl but I could not get past ./configure

So I tried commenting out all commands that mentioned doc in the Makefile, 
and in some places deleted the word doc.

I managed to get to make install but at the end of that I got this.

rm -f /usr/local/bin/zsh.new
ln /usr/local/bin/zsh-4.1.0-dev-2 /usr/local/bin/zsh.new
mv /usr/local/bin/zsh.new /usr/local/bin/zsh
if test x/usr/local/share/zsh/4.1.0-dev-2/functions != x && test 
x/usr/local/share/zsh/4.1.0-dev-2/functions != xno; then \
   test x/usr/local/share/zsh/site-functions != xno && \
     /bin/sh ./mkinstalldirs /usr/local/share/zsh/site-functions; \
   sdir_top="." fndir="/usr/local/share/zsh/4.1.0-dev-2/functions" 
dir_top="." \
   FUNCTIONS_SUBDIRS="no" \
   INSTALL_DATA="/usr/bin/install -c -m 644" \
   DESTDIR="" VERSION="4.1.0-dev-2" \
   /bin/sh ./Config/installfns.sh || exit 1; \
fi; \
exit 0
mkdir /usr/local/share/zsh
mkdir /usr/local/share/zsh/site-functions
mkdir /usr/local/share/zsh/4.1.0-dev-2
mkdir /usr/local/share/zsh/4.1.0-dev-2/functions
make: *** No rule to make target `install.man', needed by `install'.  
Stop.

BTW, would it be helpful if I posted the text of some of these file on the 
web, if so you can tell me what files to put on the web.


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2001-10-25 23:29 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <T56c5b55ad9c0a88d014f8@>
2001-10-23 11:00 ` Mac OS X error Peter Stephenson
2001-10-24 18:18   ` Steven Farrier
     [not found]   ` <md5:DF57725346D4074870986C9E9FB61A22>
2001-10-25 10:36     ` Oliver Kiddle
2001-10-25 23:16       ` Steven Farrier
     [not found]       ` <200110252317.f9PNHRn12245@mail.missoulaweb.com>
2001-10-25 23:28         ` Steven Farrier
2001-10-24 18:26 Steven Farrier
  -- strict thread matches above, loose matches on Subject: below --
2001-10-23 10:18 Steven Farrier

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).