[Mac-emacs-devel] "./configure --with-x --without-carbon" on MacOSX
Brought to you by:
akochoi
From: Nozomu A. <na...@ma...> - 2002-07-09 08:53:00
|
Hi, I had to compile emacs of current CVS tree with X window support on MacOSX. But ./configure --with-x --without-carbon did not work. I think there are two problems. P1. Some symbols conflict between code for X and code for Carbon. P2. Even when the abobe problem is solved, temacs linked with X dynlib cannot unexec. To solve the problem 1, I made small patch attached to this mail. I think I cannot solve the problem 2. But there is workaround. e.g.: W2a. make directory contains only statically-linked X library. % sudo mkdir /usr/X11R6/libstatic % cd /usr/X11R6/libstatic % sudo ln -s ../lib/lib*.a ../lib/X11 . W2b. configure Emacs with the libraries. % ./configure --without-carbon --with-x --x- libraries=/usr/X11R6/libstatic This emacs on XDarwin also works fine for me. I hope this helps. Nozomu Ando |