emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Emacs with X11 on Mac OS X


From: Andrew Choi
Subject: Re: Emacs with X11 on Mac OS X
Date: Mon, 26 Aug 2002 18:29:24 -0600

> I followed the instructions on making the statically-linked X11
> libraries, and configured Emacs like this:
> 
>   $ mkdir /usr/local/packages/emacs-21-2002-08-29
>   $ ./configure --without-carbon --with-x --x-libraries=/usr/X11R6/libstatic 
> --prefix=/usr/local/packages/emacs-21-2002-08-26
> 
> I then ran 'make bootstrap', which died here:
> 
> [...]
>
>   ld: Undefined symbols:
>   _init_mac_osx_environment
>   make[1]: *** [temacs] Error 1
>   make: *** [bootstrap-src] Error 2

Sorry I missed the following change yesterday.  In src/emacs.c (main)
change:

#ifdef MAC_OSX
  if (initialized)
    init_mac_osx_environment ();
#endif

to

#ifdef HAVE_CARBON
  if (initialized)
    init_mac_osx_environment ();
#endif

I'll check this in as soon as I can.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]