* xdisp.c (redisplay_window): Don't enforce scroll-margin when
[bpt/emacs.git] / nextstep / INSTALL
CommitLineData
4537179d
AR
1Copyright (C) 2008 Free Software Foundation, Inc.
2See the end of the file for license conditions.
3
4
5Compilation
6-----------
7
8In the top-level directory, use:
9
10 ./configure --with-ns
11 make -j2
12
13Make the -j higher on multi-core systems, usually one higher than number of
14cores is best.
15
16This will compile all the files, but emacs will not be able to be run except
17in -nw (terminal) mode.
18
19In order to run Emacs.app, you must run:
20
21 make install
22
23This will assemble the app in nextstep/Emacs.app.
24
25If you pass the --disable-ns-self-contained option to configure, the lisp
26files will be installed under whatever 'prefix' is set to (defaults to
27/usr/local). The bundle will be smaller, but depend on these resources (may
28require 'sudo' for "make install").
29
30On OS X you can also open Cocoa/Emacs.xcodeproj and build it again there. You
31may need to set some directories. (Note, ZeroLink currently does not work
32with Emacs owing to the use of private_extern in the code as well as some
33other, unidentifiable problem.) Before doing this you must run "make install"
34once as outlined above, to set up the lisp resources.
35
36On GNUstep, you CAN'T use ProjectCenter, since PC cannot work with files
37outside of its project directory.
38
39
40Installation
41------------
42
43Move nextstep/Emacs.app to any desired install location.
44
45
46Distributions and Universal Binaries
47------------------------------------
48
49Building as outlined above will create ordinary binaries running on your
50architecture only. To create universal binaries, set CFLAGS to include
51"-arch ppc -arch i386".
52
53
54Improve Ctrl-G Handling
55-----------------------
56
57To enable a version of the code that handles ctrl-g more responsively in
58certain cases -- but may introduce other glitches -- pass
59"--enable-cocoa-experimental-ctrl-g" to configure.
60
61
62
63\f
64This file is part of GNU Emacs.
65
66GNU Emacs is free software: you can redistribute it and/or modify
67it under the terms of the GNU General Public License as published by
68the Free Software Foundation, either version 3 of the License, or
69(at your option) any later version.
70
71GNU Emacs is distributed in the hope that it will be useful,
72but WITHOUT ANY WARRANTY; without even the implied warranty of
73MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
74GNU General Public License for more details.
75
76You should have received a copy of the GNU General Public License
77along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.